On 22 May 2016 at 09:37, Sapphira Armageddos <[email protected]> wrote: > Hey everyone! I'm sure everyone's heard of the python3 port that pepr was > doing: > > https://github.com/pepr/asciidoc/tree/py3dev > > I decided to undertake the task of finishing the initial port (with at least > making it run and pass the tests): > > https://github.com/ShadowKyogre/asciidoc/tree/py3dev
Great!!! > > The main concern that bugs me about the finished port is which file I should > modify to add base64-pipe.py to a system installation. It's an internal > command I made from the repeated bits of base64 encoding I noticed repeated > in the html backends a lot. This is probably part of the reason why its embedded in the backends, no install issues. Why not put it in the same place as the asciidoc config, thats a prefix that asciidoc knows and you should be able to add it in front of the filename to make it an absolute pathname. I don't recommend it be added to the asciidoc directory on install as some distros are a bit funny about putting Python scripts in system binary directories. > > Also, how many people on here have access to python 2.6? I only have access > to python 2.7 and python 3.5 on my machine, so any additional hands at > testing it would be greatly appreciated. I would have said don't worry about Python 2.6, if you look at the Travis results you will see that current asciidoc apparently contains syntax (in a filter) that breaks 2.6. My understanding was that support for old versions of Python 2 were for Jython, but it now supports 2.7 so it should be ok. I can't test, but if it passes the regression tests thats a good start. When you think its ready we should make a repository for it under the asciidoc organisation so it can get wider visibility and be available for distros to package. Well done. Cheers Lex > > -- > You received this message because you are subscribed to the Google Groups > "asciidoc" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/asciidoc. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "asciidoc" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/asciidoc. For more options, visit https://groups.google.com/d/optout.
