Modify ↓
Opened 18 years ago
Closed 12 years ago
#1422 closed enhancement (wontfix)
plugin should work in chroot environments where there is no /bin/sh
Reported by: | anonymous | Owned by: | Noah Kantrowitz |
---|---|---|---|
Priority: | normal | Component: | CombineWikiPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.10 |
Description
os.system requires /bin/sh which may not be available in some chroot environments. os.spawnlp can be used instead to provide more compatibility, since it does not require /bin/sh. Also this change should result in less overhead since a shell doesn't need to be forked first before htmldoc.
Attachments (0)
Change History (2)
comment:1 Changed 18 years ago by
comment:2 Changed 12 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Deprecated: Please try the TracWikiToPdfPlugin.
Note: See
TracTickets for help on using
tickets.
All of the
spawn*p
functions are not available on Windows, so I can't use them. This should probably be redone withsubprocess
.