/usr/share/doc/preprocess/TODO.txt is in preprocess 1.1.0+ds-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | # High Priority
- hans.txt:
googlecode release
pypi release
trentm.com update
- move BUGS.txt to issues on code site
- move to 1.0.x branch and start preprocess 2: if can justify the change for:
- string inter syntax that doesn't suffer from accidents (though that
creates a prob for maintain syntax validity in the document)
- stricter syntax to avoid accidental ##if
- bug: bin/preprocess.exe doesn't work now
- add issues for everything important here
- test/testsupport.py:64: DeprecationWarning: The popen2 module is deprecated. Use the subprocess module.
import popen2
- add issue from Mike Bauer:
Yes, that is a problem that I occassionally ran into, but mostly just hacked around because I didn't think it would be that common.
To "fix" this, I think I want to get strict about the preprocess.py directive by requiring no space between the second "#" and the directive name:
# #if ... (this works)
## if ... (this is not treated as a preprocess.py directive)
- add logging_patch_from_alfred.patch (Alfred Lorber)
- use path_from_path_patterns recipe to provide a simple facility for
recursively preprocessing a bunch of files, a dir, etc. As suggested by
Hans.
- fix MANIFEST.in processing from picking up README.txt in .svn dirs
- need eolconverter recipe for building dists on Windows
- "build sdist" broken on Windows
- "build webdist" not implemented on Windows
- should I do dists for both kinds of EOLs???
- convert to logging package
- put up on cheeseshop
# Medium Priority
- A better longterm fix for 0.9.2's copying content.types to the "binDir"
next to preprocess.py is to have the launcher stub NOT have the .py file
next to it. We should only be placing one preprocess.py in the lib dir.
Perhaps setuptools stub stuff can help here?
- test 'includePath' optional argument
- test cases for the module interface (do I have any?)
- test cases for -k|--keep-lines
- patchtemplate functionality: look at how the preprocessor.pl below does
this, perhaps this is an acceptible poorman's version
(Somewhat have this, see --substitute added in v0.6.0.)
- stealing from http://software.hixie.ch/utilities/unix/preprocessor/
- Should I really add #elifdef and #elifndef?
- Would #filter/#endfilter be useful?
- be more strict:
- perhaps add -W<arg> option to allow levels of strictness
- make #undef of undefined vars an error
- perhaps add #pragma to enable turning on of options: e.g.
# #pragma substitution
|