Hi I'm looking into using twisted and possibly twisted web in a small project I'm doing.<br><br>I've been fumbling through the documentation trying to figure out how url rewriting works, or a way to short circuit request processing.
<br><br>Bascially I want to serve dynamic images but the clients are all expecting pretty urls that end in the correct file extension.<br><br>An example might be<br><br><a href="http://someserver.com/images/600x800/watermark/file_a.png">
http://someserver.com/images/600x800/watermark/file_a.png</a><br><br>where 600x800 and watermark are file parameters<br><br>since obviously I won't have '600x800', 'watermark', and 'file_a.png' as resources I either need to stop processing with the 'image' resource,&nbsp; or
<br><br>rewrite the request as&nbsp; /image/getImage.rpy?size=600x800&amp;wm=watermark<br><br>But I can't seem to find an example of terminating a request early or how to correctlly setup the a rewrite object.<br><br>If anyone knows of where to go look at examples of such usage that would be great.
<br>