[google-appengine] Re: Working with mappings

2009-01-03 Thread Rodrigo Moraes
On Sat, Jan 3, 2009 at 10:02 PM, MajorProgamming wrote: > Firstly, Do these mappings also support regular expression mappings? They *are* regular expressions. That's how those expressions are evaluated. > Secondly, How can I use "dynamic mappings" (like instead of > http://example.com/article?id

[google-appengine] Re: Working with mappings

2009-01-03 Thread MajorProgamming
What's passed to the article_id parameter? How does GAE know what to pass? On Jan 3, 7:58 pm, "Rodrigo Moraes" wrote: > On Sat, Jan 3, 2009 at 10:02 PM, MajorProgamming wrote: > > Firstly, Do these mappings also support regular expression mappings? > > They *are* regular expressions. That's how

[google-appengine] Re: Working with mappings

2009-01-03 Thread Rodrigo Moraes
On Sat, Jan 3, 2009 at 11:16 PM, MajorProgamming wrote: > What's passed to the article_id parameter? The digits extracted from the matched url - using the rule regexp as below: >> ('/article/([\d]+)', Article) > How does GAE know what to pass? It simply passes all values captured by the regexp