vote up 0 vote down star

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.

flag

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

1 Answer

vote up 4 vote down check

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

link|flag
Becuase mod_python doesn't do what I described. mod_python does essentially what I want my preprocessor to do. – Imagist Sep 6 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/… – Manni Sep 6 at 17:18
Ah, you're correct. Thanks for your response. – Imagist Sep 6 at 19:11

Your Answer

Get an OpenID
or

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