Re: GSoC 2015: Improved URL Pattern Matching (Draft)

2015-03-28 Thread Alexander Patel
Thanks for the feedback, everyone. The final proposal can be found here . Let me know if you have any questions. Best, Alex On Wednesday, March 25, 2015 at 7:17:31 PM UTC-4, Alexander Patel wro

Re: GSoC 2015: Improved URL Pattern Matching (Draft)

2015-03-26 Thread Aymeric Augustin
Hi Alexander, I won’t repeat what Russell said, just add a few things. A few months ago I had a use case for internationalization that looked pretty simple but turned out to be tricky to implement: https://github.com/oscaro/django-o18n . Resolving is easy

Re: GSoC 2015: Improved URL Pattern Matching (Draft)

2015-03-26 Thread Alexander Patel
Russ - Thanks a ton for the feedback. I really appreciate you taking the time to look over my proposal. On Wednesday, March 25, 2015 at 11:11:02 PM UTC-4, Russell Keith-Magee wrote: > > Hi Alex, > > On Thu, Mar 26, 2015 at 7:03 AM, Alexander Patel < > alexand...@college.harvard.edu > wrote: >

Re: GSoC 2015: Improved URL Pattern Matching (Draft)

2015-03-25 Thread Russell Keith-Magee
Hi Alex, On Thu, Mar 26, 2015 at 7:03 AM, Alexander Patel < alexanderpa...@college.harvard.edu> wrote: > Hello, all, > My name is Alex Patel, and I am an undegraduate at Harvard College in the > United States studying mathematics and philosophy. I intend to submit a > proposal to work on Django's

GSoC 2015: Improved URL Pattern Matching (Draft)

2015-03-25 Thread Alexander Patel
Hello, all, My name is Alex Patel, and I am an undegraduate at Harvard College in the United States studying mathematics and philosophy. I intend to submit a proposal to work on Django's URL dispatch mechanism for this year's Google Summer of Code, and am posting to solicit any feedback, commen

Re: url pattern matching

2008-08-21 Thread Norman Harman
Tim Keefer wrote: > It appears the trunk has a problem with the url pattern matching. > Using the urlpatterns below, the url > /admin/invoicing/invoice/1/20080821.pdf is parsed into > '1/20080821.pdf' instead of '1'. > > urlpatterns = patterns('',

Re: url pattern matching

2008-08-21 Thread Malcolm Tredinnick
On Thu, 2008-08-21 at 00:05 -0700, Tim Keefer wrote: > It appears the trunk has a problem with the url pattern matching. > Using the urlpatterns below, the url > /admin/invoicing/invoice/1/20080821.pdf is parsed into > '1/20080821.pdf' instead of '1'. That'

url pattern matching

2008-08-21 Thread Tim Keefer
It appears the trunk has a problem with the url pattern matching. Using the urlpatterns below, the url /admin/invoicing/invoice/1/20080821.pdf is parsed into '1/20080821.pdf' instead of '1'. urlpatterns = patterns('', (r'^/?$', 'Billing2.invoic