My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Oct 08, 2009
    issue 7 (bib4txt does not support macro expansion) reported by sebastien.barthelemy   -   What steps will reproduce the problem? 1. create a bib file with macro, such as the attached 2. run bib4txt on it. What is the expected output? What do you see instead? I get this message WARNING: Entry at line 6 has comment syntax but entry_type is InProceedings and the entry is skipped What version of the product are you using? On what operating system? 1.13, ubuntu karmic
    What steps will reproduce the problem? 1. create a bib file with macro, such as the attached 2. run bib4txt on it. What is the expected output? What do you see instead? I get this message WARNING: Entry at line 6 has comment syntax but entry_type is InProceedings and the entry is skipped What version of the product are you using? On what operating system? 1.13, ubuntu karmic
  • Sep 30, 2009
    issue 6 (styles/examples_numbered does not work) commented on by matthew.m.mccormick   -   Thank you very much! I've tested the lastest svn and it works.
    Thank you very much! I've tested the lastest svn and it works.
  • Sep 29, 2009
    r58 (Bug fix (issue 6).) committed by alan.isaac   -   Bug fix ( issue 6 ).
    Bug fix ( issue 6 ).
  • Sep 29, 2009
    issue 6 (styles/examples_numbered does not work) changed by alan.isaac   -  
    Status: Fixed
    Owner: alan.isaac
    Cc: dschwilk
    Status: Fixed
    Owner: alan.isaac
    Cc: dschwilk
  • Sep 29, 2009
    issue 5 (fix variable name in bibstyles/example_numbered.py) changed by alan.isaac   -  
    Status: Fixed
    Owner: alan.isaac
    Cc: dschwilk
    Status: Fixed
    Owner: alan.isaac
    Cc: dschwilk
  • Sep 29, 2009
    r57 (Bug fix (issue 5).) committed by alan.isaac   -   Bug fix ( issue 5 ).
    Bug fix ( issue 5 ).
  • Sep 29, 2009
    issue 3 (SyntaxWarning: assertion is always true) changed by alan.isaac   -  
    Status: Fixed
    Owner: alan.isaac
    Cc: dschwilk
    Status: Fixed
    Owner: alan.isaac
    Cc: dschwilk
  • Sep 29, 2009
    issue 3 (SyntaxWarning: assertion is always true) commented on by alan.isaac   -   Fixed.
    Fixed.
  • Sep 29, 2009
    r56 (Bug fix (issue 3).) committed by alan.isaac   -   Bug fix ( issue 3 ).
    Bug fix ( issue 3 ).
  • Sep 29, 2009
    issue 6 (styles/examples_numbered does not work) reported by matthew.m.mccormick   -   What steps will reproduce the problem? 1. run bib4txt.py with '-s example_numbered' 2. 3. What is the expected output? What do you see instead? Traceback (most recent call last): File "/usr/lib/python2.6/site-packages/rpdb2.py", line 14514, in <module> ret = rpdb2.main() File "/usr/lib/python2.6/site-packages/rpdb2.py", line 14485, in main StartServer(_rpdb2_args, fchdir, _rpdb2_pwd, fAllowUnencrypted, fAllowRemote, secret) File "/usr/lib/python2.6/site-packages/rpdb2.py", line 14235, in StartServer imp.load_source('__main__', _path) File "/usr/bin/bib4txt.py", line 249, in <module> main() File "/usr/bin/bib4txt.py", line 240, in main citations_only = not options.entire_doc) File "/usr/bin/bib4txt.py", line 120, in make_text_output result = citation_manager.make_citations() File "/usr/lib/python2.6/site-packages/bibstyles/shared.py", line 438, in make_citations entries.sort(key=self.sortkey) #TODO!!! use more sensible approach (also: 2.4 dependency) File "/usr/lib/python2.6/site-packages/bibstyles/example_numbered.py", line 65, in sortkey return self.get_citation_rank(bibentry) File "/usr/lib/python2.6/site-packages/bibstyles/shared.py", line 398, in get_citation_rank if entry.citekey not in keys: TypeError: argument of type 'NoneType' is not iterable What version of the product are you using? On what operating system? bibstuff-1.0.0 python 2.6.2 gentoo Please provide any additional information below. running in a debugger it appears that self._keys is None at that point.
    What steps will reproduce the problem? 1. run bib4txt.py with '-s example_numbered' 2. 3. What is the expected output? What do you see instead? Traceback (most recent call last): File "/usr/lib/python2.6/site-packages/rpdb2.py", line 14514, in <module> ret = rpdb2.main() File "/usr/lib/python2.6/site-packages/rpdb2.py", line 14485, in main StartServer(_rpdb2_args, fchdir, _rpdb2_pwd, fAllowUnencrypted, fAllowRemote, secret) File "/usr/lib/python2.6/site-packages/rpdb2.py", line 14235, in StartServer imp.load_source('__main__', _path) File "/usr/bin/bib4txt.py", line 249, in <module> main() File "/usr/bin/bib4txt.py", line 240, in main citations_only = not options.entire_doc) File "/usr/bin/bib4txt.py", line 120, in make_text_output result = citation_manager.make_citations() File "/usr/lib/python2.6/site-packages/bibstyles/shared.py", line 438, in make_citations entries.sort(key=self.sortkey) #TODO!!! use more sensible approach (also: 2.4 dependency) File "/usr/lib/python2.6/site-packages/bibstyles/example_numbered.py", line 65, in sortkey return self.get_citation_rank(bibentry) File "/usr/lib/python2.6/site-packages/bibstyles/shared.py", line 398, in get_citation_rank if entry.citekey not in keys: TypeError: argument of type 'NoneType' is not iterable What version of the product are you using? On what operating system? bibstuff-1.0.0 python 2.6.2 gentoo Please provide any additional information below. running in a debugger it appears that self._keys is None at that point.
  • Sep 29, 2009
    issue 5 (fix variable name in bibstyles/example_numbered.py) reported by matthew.m.mccormick   -   What steps will reproduce the problem? 1. run bib4txt.py with '-s example_numbered' option 2. 3. What is the expected output? What do you see instead? Traceback (most recent call last): File "/usr/bin/bib4txt.py", line 249, in <module> main() File "/usr/bin/bib4txt.py", line 240, in main citations_only = not options.entire_doc) File "/usr/bin/bib4txt.py", line 120, in make_text_output result = citation_manager.make_citations() File "/usr/lib/python2.6/site-packages/bibstyles/shared.py", line 438, in make_citations entries.sort(key=self.sortkey) #TODO!!! use more sensible approach (also: 2.4 dependency) File "/usr/lib/python2.6/site-packages/bibstyles/example_numbered.py", line 65, in sortkey return self.get_citation_rank(entry) What version of the product are you using? On what operating system? bibstuff-1.0.0 gentoo python 2.6.2 Please provide any additional information below.
    What steps will reproduce the problem? 1. run bib4txt.py with '-s example_numbered' option 2. 3. What is the expected output? What do you see instead? Traceback (most recent call last): File "/usr/bin/bib4txt.py", line 249, in <module> main() File "/usr/bin/bib4txt.py", line 240, in main citations_only = not options.entire_doc) File "/usr/bin/bib4txt.py", line 120, in make_text_output result = citation_manager.make_citations() File "/usr/lib/python2.6/site-packages/bibstyles/shared.py", line 438, in make_citations entries.sort(key=self.sortkey) #TODO!!! use more sensible approach (also: 2.4 dependency) File "/usr/lib/python2.6/site-packages/bibstyles/example_numbered.py", line 65, in sortkey return self.get_citation_rank(entry) What version of the product are you using? On what operating system? bibstuff-1.0.0 gentoo python 2.6.2 Please provide any additional information below.
  • Sep 29, 2009
    issue 3 (SyntaxWarning: assertion is always true) commented on by matthew.m.mccormick   -   patch attached
    patch attached
  • Sep 28, 2009
    issue 4 (bibname.py needs to be added to the installed scripts) reported by matthew.m.mccormick   -   What steps will reproduce the problem? 1. install the package 2. 3. What is the expected output? What do you see instead? bibname.py is not installed as a script What version of the product are you using? On what operating system? 1.0.0 gentoo Please provide any additional information below.
    What steps will reproduce the problem? 1. install the package 2. 3. What is the expected output? What do you see instead? bibname.py is not installed as a script What version of the product are you using? On what operating system? 1.0.0 gentoo Please provide any additional information below.
  • Sep 28, 2009
    issue 3 (SyntaxWarning: assertion is always true) reported by matthew.m.mccormick   -   What steps will reproduce the problem? 1. run a script that uses bibstyles/shared 2. 3. What is the expected output? What do you see instead? Still works, but get the following warning /tmp/bibstuff-1.0.0/bibstyles/shared.py:297: SyntaxWarning: assertion is always true, perhaps remove parentheses? assert(isinstance(template,str), "Must provide a name-template string to make a NameFormatter object.") What version of the product are you using? On what operating system? bibstuff 1.0.0 python 2.6.2 gentoo Please provide any additional information below.
    What steps will reproduce the problem? 1. run a script that uses bibstyles/shared 2. 3. What is the expected output? What do you see instead? Still works, but get the following warning /tmp/bibstuff-1.0.0/bibstyles/shared.py:297: SyntaxWarning: assertion is always true, perhaps remove parentheses? assert(isinstance(template,str), "Must provide a name-template string to make a NameFormatter object.") What version of the product are you using? On what operating system? bibstuff 1.0.0 python 2.6.2 gentoo Please provide any additional information below.
  • Apr 30, 2009
    r55 (Trivial description change.) committed by alan.isaac   -   Trivial description change.
    Trivial description change.
  • Mar 11, 2009
    issue 2 (ä {\"a} not handled?) commented on by arnauramisa   -   It does, thank you!
    It does, thank you!
  • Mar 11, 2009
    issue 2 (ä {\"a} not handled?) commented on by alan.isaac   -   Should work now. (Get bibgrammar.py from SVN.)
    Should work now. (Get bibgrammar.py from SVN.)
  • Mar 11, 2009
    r54 (Small change to quotes_string in bibgrammar.py. Add a test t...) committed by alan.isaac   -   Small change to quotes_string in bibgrammar.py. Add a test to example.
    Small change to quotes_string in bibgrammar.py. Add a test to example.
  • Mar 11, 2009
    issue 2 (ä {\"a} not handled?) commented on by arnauramisa   -   Ok seems to be only in the case of an entry like: author = "S. G{\"a}chter and T. Pajdla", instead this works: author = {S. G{\"a}chter and T. Pajdla}, I'm not sure if the first one was meant to be handled (?) cheers
    Ok seems to be only in the case of an entry like: author = "S. G{\"a}chter and T. Pajdla", instead this works: author = {S. G{\"a}chter and T. Pajdla}, I'm not sure if the first one was meant to be handled (?) cheers
  • Mar 11, 2009
    issue 2 (ä {\"a} not handled?) reported by arnauramisa   -   What steps will reproduce the problem? 1. Parsing a bibliography with an author name containing the {\"a} character What is the expected output? What do you see instead? The bib entry is not loaded What version of the product are you using? On what operating system? 1.0.0 Please provide any additional information below.
    What steps will reproduce the problem? 1. Parsing a bibliography with an author name containing the {\"a} character What is the expected output? What do you see instead? The bib entry is not loaded What version of the product are you using? On what operating system? 1.0.0 Please provide any additional information below.
  • Feb 13, 2009
    bibstuff-1.0.0.tar.gz (bibstuff release version 1.0.0) file uploaded by dschwilk   -  
    Labels: Type-Archive OpSys-All Featured
    Labels: Type-Archive OpSys-All Featured
  • Feb 13, 2009
    r53 (Tag release 1.0.0) committed by dschwilk   -   Tag release 1.0.0
    Tag release 1.0.0
  • Feb 13, 2009
    r52 (Creating release branch 1.0.0) committed by dschwilk   -   Creating release branch 1.0.0
    Creating release branch 1.0.0
  • Feb 13, 2009
    r51 (update version numbers for release) committed by dschwilk   -   update version numbers for release
    update version numbers for release
  • Feb 13, 2009
    r50 (Modify default citation post-processor to produce some Latin...) committed by alan.isaac   -   Modify default citation post-processor to produce some Latinization. This is a temporary fix until there is time to implement a real translation.
    Modify default citation post-processor to produce some Latinization. This is a temporary fix until there is time to implement a real translation.
  • Feb 12, 2009
    r49 (Slight change in string def in bibgrammar.py -> much better ...) committed by alan.isaac   -   Slight change in string def in bibgrammar.py -> much better speed. Add default post-processing to DEFAULT_CITATION_TEMPLATE in default_templates.py.
    Slight change in string def in bibgrammar.py -> much better speed. Add default post-processing to DEFAULT_CITATION_TEMPLATE in default_templates.py.
  • Jan 15, 2009
    r48 (Minor cleanup of bibname.py. (Retab; delete obsolete comment...) committed by alan.isaac   -   Minor cleanup of bibname.py. (Retab; delete obsolete comments.)
    Minor cleanup of bibname.py. (Retab; delete obsolete comments.)
  • Jan 14, 2009
    r47 (Mnor changes to bibname.py command-line script: process exis...) committed by alan.isaac   -   Mnor changes to bibname.py command-line script: process existing .bib files when some files missing.
    Mnor changes to bibname.py command-line script: process existing .bib files when some files missing.
  • Jan 14, 2009
    r46 (Allow setting bib4txt logger level at command line with -L o...) committed by alan.isaac   -   Allow setting bib4txt logger level at command line with -L option.
    Allow setting bib4txt logger level at command line with -L option.
  • Jan 14, 2009
    r45 (Allow apostrophe in cite key. (Is this BibTeX conformable? C...) committed by alan.isaac   -   Allow apostrophe in cite key. (Is this BibTeX conformable? Check.)
    Allow apostrophe in cite key. (Is this BibTeX conformable? Check.)
  • Jan 02, 2009
    r44 (Try to fix name parsing (for special characters).) committed by alan.isaac   -   Try to fix name parsing (for special characters).
    Try to fix name parsing (for special characters).
  • Jan 02, 2009
    r43 (Minor changes to add2bib.py.) committed by alan.isaac   -   Minor changes to add2bib.py.
    Minor changes to add2bib.py.
  • Jan 02, 2009
    r42 (First pass at handling crossref field.) committed by alan.isaac   -   First pass at handling crossref field.
    First pass at handling crossref field.
  • Jan 01, 2009
    r41 (Change bibfile grammar to fix (I hope) macro handling.) committed by alan.isaac   -   Change bibfile grammar to fix (I hope) macro handling.
    Change bibfile grammar to fix (I hope) macro handling.
  • Jan 01, 2009
    r40 (Allow multiple .bib files for bib4txt.py.) committed by alan.isaac   -   Allow multiple .bib files for bib4txt.py.
    Allow multiple .bib files for bib4txt.py.

Older

  • Oct 28, 2008
    r39 (Improve add2bib handling of techreport.) committed by alan.isaac   -   Improve add2bib handling of techreport.
    Improve add2bib handling of techreport.
  • Oct 24, 2008
    r38 (Add latex_codec.py, contributed by David Epstein. (Currently...) committed by alan.isaac   -   Add latex_codec.py, contributed by David Epstein. (Currently identical to his latex.py, except for the new MIT license.)
    Add latex_codec.py, contributed by David Epstein. (Currently identical to his latex.py, except for the new MIT license.)
  • Oct 14, 2008
    r37 (Add example usage to NamesFormatter class.) committed by alan.isaac   -   Add example usage to NamesFormatter class.
    Add example usage to NamesFormatter class.
  • Sep 29, 2008
    r36 (Patch rst_input.txt as suggested by Andrew Straw.) committed by alan.isaac   -   Patch rst_input.txt as suggested by Andrew Straw.
    Patch rst_input.txt as suggested by Andrew Straw.
  • Sep 05, 2008
    r35 (Fix HTML and text formatting for isbn2bib.) committed by alan.isaac   -   Fix HTML and text formatting for isbn2bib.
    Fix HTML and text formatting for isbn2bib.
  • Sep 05, 2008
    r34 (Add new script isbn2bib.py and associated address data.) committed by alan.isaac   -   Add new script isbn2bib.py and associated address data.
    Add new script isbn2bib.py and associated address data.
 
Hosted by Google Code