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

Older

  • Oct 22, 2009
    issue 2 (Please support option lists) Status changed by kumar.mcmillan   -  
    Status: Fixed
    Status: Fixed
  • Sep 01, 2009
    issue 5 (header levels seem to be off by one (w/ suggested patch)) reported by zungbang   -   What steps will reproduce the problem? 1. convert rst file with multilevel sections to google wiki What is the expected output? What do you see instead? the second encountered section adornment should produce heading 2 markup (==), but instead produces heading 1 markup (=), and all the following levels are off by one What version of the product are you using? On what operating system? SVN r41, Debian GNU/Linux Please provide any additional information below. I've attached a patch that fixes this, a test case (test.rst), bad output before applying the patch (test-bad.wiki), and good output after applying the patch (test-good.wiki)
    What steps will reproduce the problem? 1. convert rst file with multilevel sections to google wiki What is the expected output? What do you see instead? the second encountered section adornment should produce heading 2 markup (==), but instead produces heading 1 markup (=), and all the following levels are off by one What version of the product are you using? On what operating system? SVN r41, Debian GNU/Linux Please provide any additional information below. I've attached a patch that fixes this, a test case (test.rst), bad output before applying the patch (test-bad.wiki), and good output after applying the patch (test-good.wiki)
  • May 15, 2009
    issue 4 (New lines are not always converted into spaces) Status changed by kumar.mcmillan   -   oh whoops, I misread that. I see exactly what's happening now and I fixed it. Committed and released as version 0.4.1 -- you can grab it with easy_install -U wikir
    Status: Fixed
    oh whoops, I misread that. I see exactly what's happening now and I fixed it. Committed and released as version 0.4.1 -- you can grab it with easy_install -U wikir
    Status: Fixed
  • May 15, 2009
    r43 ('creating tag https://wikir.googlecode.com/svn/tags/rel_0_4_...) committed by kumar.mcmillan   -   'creating tag https://wikir.googlecode.com/svn/tags/rel_0_4_1 from https://wikir.googlecode.com/svn/trunk'
  • May 15, 2009
    r42 (bumped version for bugfix ) committed by kumar.mcmillan   -   bumped version for bugfix
    bumped version for bugfix
  • May 15, 2009
    r41 (Added fix for http://code.google.com/p/wikir/issues/detail?i...) committed by kumar.mcmillan   -   Added fix for http://code.google.com/p/wikir/issues/detail?id=4 : converting new lines to spaces
    Added fix for http://code.google.com/p/wikir/issues/detail?id=4 : converting new lines to spaces
  • May 15, 2009
    issue 2 (Please support option lists) commented on by kumar.mcmillan   -   ok, I released this as version 0.4. easy_install -U wikir to grab it. I will do another bugfix if you or anyone has a fix for the commas. Thanks for following up on this.
    ok, I released this as version 0.4. easy_install -U wikir to grab it. I will do another bugfix if you or anyone has a fix for the commas. Thanks for following up on this.
  • May 15, 2009
    r40 ('creating tag https://wikir.googlecode.com/svn/tags/rel_0_4_...) committed by kumar.mcmillan   -   'creating tag https://wikir.googlecode.com/svn/tags/rel_0_4_0 from https://wikir.googlecode.com/svn/trunk'
  • May 15, 2009
    r39 (do not tag dev eggs! ) committed by kumar.mcmillan   -   do not tag dev eggs!
    do not tag dev eggs!
  • May 15, 2009
    issue 2 (Please support option lists) commented on by kumar.mcmillan   -   Oh, duh, they are in the source. Right you are! I gave it another try and I can't get it to work. The node structure for this is lost on me. Oh well, it should still be readable without the commas so it's better than getting a traceback. I'll release as is but if you want to take a stab yourself, you can edit wikir/tests/test_syntax.py and comment out the failing part of test_option_list() and run the tests like: virtualenv _env source _env/bin/activate python setup.py develop easy_install nose nosetests -a '!deferred'
    Oh, duh, they are in the source. Right you are! I gave it another try and I can't get it to work. The node structure for this is lost on me. Oh well, it should still be readable without the commas so it's better than getting a traceback. I'll release as is but if you want to take a stab yourself, you can edit wikir/tests/test_syntax.py and comment out the failing part of test_option_list() and run the tests like: virtualenv _env source _env/bin/activate python setup.py develop easy_install nose nosetests -a '!deferred'
  • May 15, 2009
    r38 (Added some comments while attempting to add commas to option...) committed by kumar.mcmillan   -   Added some comments while attempting to add commas to option lists
    Added some comments while attempting to add commas to option lists
  • May 15, 2009
    issue 2 (Please support option lists) commented on by pronus   -   Well, commas are in the source document, rst2html preserves them, so I think rwiki should preserve them too.
    Well, commas are in the source document, rst2html preserves them, so I think rwiki should preserve them too.
  • May 15, 2009
    issue 4 (New lines are not always converted into spaces) commented on by pronus   -   I didn't want newlines to be converted to line breaks but to _spaces_.
    I didn't want newlines to be converted to line breaks but to _spaces_.
  • Mar 26, 2009
    r37 (sorta working command line option lists per Issue 2 ) committed by kumar.mcmillan   -   sorta working command line option lists per Issue 2
    sorta working command line option lists per Issue 2
  • Mar 26, 2009
    issue 2 (Please support option lists) commented on by kumar.mcmillan   -   Well, this one was harder. But I got it to convert to this: `-h` `--help` display this help and exit `--version` output version information and exit `-p` `--ping=VERBOSITY` use the machine that goes PING Is that useful? I am not sure what the `one`, `two` items separated by commas are for. Can you send me a link to where this is documented in Google Wiki markup?
    Well, this one was harder. But I got it to convert to this: `-h` `--help` display this help and exit `--version` output version information and exit `-p` `--ping=VERBOSITY` use the machine that goes PING Is that useful? I am not sure what the `one`, `two` items separated by commas are for. Can you send me a link to where this is documented in Google Wiki markup?
  • Mar 26, 2009
    issue 4 (New lines are not always converted into spaces) Status changed by kumar.mcmillan   -   In docutils land, you can't really make a new line with a single line break. What you have to do instead is: publish_string('foo *bar*\n\nquux') that is, add two new lines to create a single line break. It's just the nature of how restructured text is parsed. This is to make it easier to type paragraphs.
    Status: WontFix
    In docutils land, you can't really make a new line with a single line break. What you have to do instead is: publish_string('foo *bar*\n\nquux') that is, add two new lines to create a single line break. It's just the nature of how restructured text is parsed. This is to make it easier to type paragraphs.
    Status: WontFix
  • Mar 26, 2009
    issue 3 (Please support definition lists) Status changed by kumar.mcmillan   -   whoa, my bad. somehow issue notifications were off and I only just saw this. I committed this fix to trunk and will take a look at your other issues. Should be released soon. Thanks for the example code and sorry about the delay.
    Status: Fixed
    whoa, my bad. somehow issue notifications were off and I only just saw this. I committed this fix to trunk and will take a look at your other issues. Should be released soon. Thanks for the example code and sorry about the delay.
    Status: Fixed
  • Mar 26, 2009
    r36 (added support for definition terms per Issue 3) committed by kumar.mcmillan   -   added support for definition terms per Issue 3
    added support for definition terms per Issue 3
  • Mar 26, 2009
    r35 ( * updated --help output after running tests in 2.5 * bumpe...) committed by kumar.mcmillan   -   * updated --help output after running tests in 2.5 * bumped version to 0.4 for development
    * updated --help output after running tests in 2.5 * bumped version to 0.4 for development
  • Mar 26, 2009
    issue 1 (doesn't start) Status changed by kumar.mcmillan   -   thanks for following up. closing.
    Status: Invalid
    thanks for following up. closing.
    Status: Invalid
  • Jan 17, 2009
    issue 4 (New lines are not always converted into spaces) reported by pronus   -   >>> from wikir import publish_string >>> publish_string('foo *bar*\nquux') 'foo *bar*quux\n\n'
    >>> from wikir import publish_string >>> publish_string('foo *bar*\nquux') 'foo *bar*quux\n\n'
  • Jan 17, 2009
    issue 3 (Please support definition lists) reported by pronus   -   It would be nice if wikir supported definition lists. For example, the following rST code: Tyrannosaurus Rex : carnivore Big and scary; the "Tyrant King". Brontosaurus : herbivore All brontosauruses are thin at one end, much much thicker in the middle and then thin again at the far end. should be converted to something like: Tyrannosaurus Rex : _carnivore_ Big and scary; the "Tyrant King". Brontosaurus : _herbivore_ All brontosauruses are thin at one end, much much thicker in the middle and then thin again at the far end.
    It would be nice if wikir supported definition lists. For example, the following rST code: Tyrannosaurus Rex : carnivore Big and scary; the "Tyrant King". Brontosaurus : herbivore All brontosauruses are thin at one end, much much thicker in the middle and then thin again at the far end. should be converted to something like: Tyrannosaurus Rex : _carnivore_ Big and scary; the "Tyrant King". Brontosaurus : _herbivore_ All brontosauruses are thin at one end, much much thicker in the middle and then thin again at the far end.
  • Jan 17, 2009
    issue 2 (Please support option lists) reported by pronus   -   I would be nice if wikir supported option lists. For example, the following rST code: -h, --help display this help and exit --version output version information and exit -p, --ping=VERBOSITY use the machine that goes PING should be converted to something like: `-h`, `--help` display this help and exit `--version` output version information and exit `-p`, `--ping=`_VERBOSITY_ use the machine that goes PING
    I would be nice if wikir supported option lists. For example, the following rST code: -h, --help display this help and exit --version output version information and exit -p, --ping=VERBOSITY use the machine that goes PING should be converted to something like: `-h`, `--help` display this help and exit `--version` output version information and exit `-p`, `--ping=`_VERBOSITY_ use the machine that goes PING
  • Nov 15, 2008
    issue 1 (doesn't start) commented on by ericaro   -   I've reinstalled python, and all the other modules, and it seems to work now ( I think that docutils was somehow corrupted) Sorry for the bug-that-is-not-a-bug. An it works fine enough for me
    I've reinstalled python, and all the other modules, and it seems to work now ( I think that docutils was somehow corrupted) Sorry for the bug-that-is-not-a-bug. An it works fine enough for me
  • Nov 12, 2008
    issue 1 (doesn't start) reported by ericaro   -   What steps will reproduce the problem? 1. easy_install wikir 2. in a cmd shell type 'wikir' 3. get :\src>wikir Traceback (most recent call last): File "C:\Program Files\Python\Scripts\wikir-script.py", line 8, in <module> load_entry_point('wikir==0.3', 'console_scripts', 'wikir')() File "C:\Program Files\Python\lib\site-packages\setuptools-0.6c9-py2.5.egg\pkg_resources.py", line 277, in load_entry_point File "C:\Program Files\Python\lib\site-packages\setuptools-0.6c9-py2.5.egg\pkg_resources.py", line 2180, in load_entry_point File "C:\Program Files\Python\lib\site-packages\setuptools-0.6c9-py2.5.egg\pkg_resources.py", line 1913, in load File "C:\Program Files\Python\lib\site-packages\wikir-0.3-py2.5.egg\wikir\__init__.py", line 263, in <module> File "C:\Program Files\Python\lib\site-packages\wikir-0.3-py2.5.egg\wikir\wikir.py", line 4, in <module> ValueError: bad marshal data What is the expected output? What do you see instead? well... What version of the product are you using? On what operating system? winXP, and I'm a python developper too Please provide any additional information below. do not hesitate to contact me I can help 'cause I love the idea tx, Eric,
    What steps will reproduce the problem? 1. easy_install wikir 2. in a cmd shell type 'wikir' 3. get :\src>wikir Traceback (most recent call last): File "C:\Program Files\Python\Scripts\wikir-script.py", line 8, in <module> load_entry_point('wikir==0.3', 'console_scripts', 'wikir')() File "C:\Program Files\Python\lib\site-packages\setuptools-0.6c9-py2.5.egg\pkg_resources.py", line 277, in load_entry_point File "C:\Program Files\Python\lib\site-packages\setuptools-0.6c9-py2.5.egg\pkg_resources.py", line 2180, in load_entry_point File "C:\Program Files\Python\lib\site-packages\setuptools-0.6c9-py2.5.egg\pkg_resources.py", line 1913, in load File "C:\Program Files\Python\lib\site-packages\wikir-0.3-py2.5.egg\wikir\__init__.py", line 263, in <module> File "C:\Program Files\Python\lib\site-packages\wikir-0.3-py2.5.egg\wikir\wikir.py", line 4, in <module> ValueError: bad marshal data What is the expected output? What do you see instead? well... What version of the product are you using? On what operating system? winXP, and I'm a python developper too Please provide any additional information below. do not hesitate to contact me I can help 'cause I love the idea tx, Eric,
 
Hosted by Google Code