up vote 0 down vote favorite
share [g+] share [fb]

I would like to add a preprocessor to HTML pages. Basically, I have a program that takes the name of an HTML file containing preprocessor instructions and outputs the contents of the file after preprocessing to stdout. This mechanism could change if it makes things easier. All I want to do is hook this into Apache so that all the files that my website serves get put through the preprocessor before going out to the browser. A solution that works with other HTTP servers than Apache would be preferred, but is not required.

If my understanding is correct, this is roughly what PHP does.

If it makes any difference, the preprocessor is written in Python.

link|improve this question

2  
this is "exactly" what PHP does. – Aziz Sep 6 '09 at 15:50
feedback

1 Answer

up vote 4 down vote accepted

If you have Apache and a "preprocessor" written in python, why not go for mod_python?

link|improve this answer
Becuase mod_python doesn't do what I described. mod_python does essentially what I want my preprocessor to do. – Imagist Sep 6 '09 at 16:33
Take another look. With mod_pyhton, you can write filter handlers and unless your question doesn't describe what you really want, I'd say that the ability to plug in a filter is exactly what you want: modpython.org/live/current/doc-html/pyapi-filter.html – innaM Sep 6 '09 at 17:18
Ah, you're correct. Thanks for your response. – Imagist Sep 6 '09 at 19:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.