1
vote
1answer
32 views

Webapp2 strict_slash returns KeyError: 'Missing Argument' for url with trailing slash when method has 2 or more args… Bug?

I've built my urls as such: #url = /index/test/argument/second # Maps to the Index handler's test method and passes in the optional arguments 'argument' and 'second' # So the handler function looks ...
1
vote
1answer
56 views

Redirect to a URL which contains a 'variable part' in Flask (Python)

I'm trying to redirect to a URL in Flask. The target URL that I'm trying to redirect to has a variable like this /dashboard/<username> which has a view as follows, ...
0
votes
3answers
81 views

Routes with trailing slashes in Pyramid

Let's say I have a route '/foo/bar/baz'. I would also like to have another view corresponding to '/foo' or '/foo/'. But I don't want to systematically append trailing slashes for other routes, only ...
0
votes
1answer
104 views

bottle.py URL routing & reverse howto?

Sample Bottle.py code: @route('/show_<name>') def show(name): return '' My question is: Given a URL, how do we get the view function? E.g. the URL is /show_magic, I need to know the ...
0
votes
1answer
69 views

Django passing select url arguments to a view

Let's say I have a url which captures several argument. E.g: url(r'^(?P<l_slug>[-\w]+)/(?P<t_slug>[-\w]+)/(?P<event_id>\d+)/$', 'views.SomeView'), And in some cases, SomeView ...
2
votes
2answers
67 views

Dynamic redirecting pages in Django with regular expressions?

I have problem with url.py in django. In my app i have many urls like: aaa-2011-bbb aaa-2011 and i would like redirect these urls to new url without year. So i need remove year from url. Is it ...
3
votes
2answers
99 views

Pyramid: extend query string for every URL constructed by route_url

I'm using the Webframework Pyramid and URL Dispatch where I defined a lot of Routes like config.add_route('login', '/login') config.add_route('logout', '/logout') Now I want to append something to ...
0
votes
2answers
324 views

Flask url_for generating http URL instead of https

I an using url_for to generate redirect url when a user has logged out. return redirect(url_for('.index', _external=True)) However when I changed the page to a https connection, the url_for still ...
1
vote
3answers
68 views

Should I use pk or a unique slug in my url?

I want to write the URLconf for a shopping cart app I wrote in django. I wonder what is the preferred way of constructing URLs. The URL is accessible by the users via a hyperlink(They are not ...
1
vote
2answers
47 views

Django: is it possible to specify accept method for a view in urls

I'm curious about setting urls accept_method directly when defining url like url(r'some-pattern', 'view_name', name='url_name', accept_method='GET|POST') I know there're view decorators like ...
1
vote
1answer
68 views

How can I put in a form where user-uploaded files are parsed and then displayed on a new url?

Ultimately, I want it so that when users upload a file, it parses the file and then creates a new url (using save_url) where it displays the output of that parsing. Here is the edit.pt that renders ...
0
votes
1answer
68 views

What is the best way in python/django to let users add files to the database?

I am trying to let users create html pages that they can view on my website. So the homepage would just have a place for file upload, then some script on my site would take the file and convert it ...
2
votes
2answers
257 views

Flask URL Route: Route All other URLs to some function

I am working with Flask 0.9. I have experience with Google App Engine. In GAE, the url match patterns are evaluated in the order they appear, first come first serve. Is it the same case in Flask? In ...
1
vote
2answers
134 views

Flask URL Route: Route Several URLs to the same function

I am working with Flask 0.9. Now I want to route three urls to the same function: /item/<int:appitemid> /item/<int:appitemid>/ /item/<int:appitemid>/<anything can be here> ...
0
votes
1answer
174 views

Import Handlers - App Route with Flask

My File Directory: app/ app.py app/server/ views.py I don't get any import errors with views, but I am not able to URL route to Views - I can only do it from app.py - how can I fix this issue? ...
4
votes
2answers
321 views

Optional URL variables

Is there a way to define URLs with optional URL params in Flask? Essentially, what I'd like to do is define rules that allow for optionally specified languages: / /de -> matches / (but doesn't ...
0
votes
1answer
162 views

Accessing Primary Key from URL in Django View Class

I have a URL pattern mapped to a custom view class in my Django App, like so: url( r'^run/(?P<pk>\d+)/$', views.PerfRunView.as_view( )) The problem is, I cannot figure out how I can access ...
1
vote
1answer
66 views

{% url %} tag add twice the localized prefix in django

With Django version 1.5.dev17942 I have this setup: settings.py: MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', 'django.middleware.locale.LocaleMiddleware', ...
1
vote
1answer
509 views

Pyramids route_url with additional query arguments

In Pyramids framework, functions route_path and route_url are used to generate urls from routes configuration. So, if I have route: config.add_route('idea', 'ideas/{idea}') I am able to generate ...
2
votes
1answer
521 views

Optional URL Parameter in Route GAE webapp2

I'm really new to Python and GAE. I'm setting up a basic CRUD app for some test data and am trying to get some routing for the admin pages going. I'd like to use the same page for creating and ...
2
votes
1answer
140 views

Django optional url parameter for each url() in a pattern()

In Django's urls.py, I know that you can specify an optional parameter to pass to a view for a single url() object. My question is, is it possible to specify the same optional parameter and have it ...
0
votes
1answer
127 views

How to ignore repeated slashes in Pyramid

I'd like to make sure that the following two urls are handled in the same way (there's an existing client which sends requests this way): /resource //resource Unfortunately I cannot add both urls ...
1
vote
1answer
408 views

Using Django's new i18n_patterns: How to fall back to the default language specified in the settings module?

I'm using the new i18n_patterns of Django 1.4: from django.conf.urls import patterns, include, url from django.conf.urls.i18n import i18n_patterns from django.contrib import admin ...
3
votes
0answers
223 views

How do I manipulate subdomains with Pyramid's url dispatch? [duplicate]

Possible Duplicate: Multiple domains and subdomains on a single Pyramid instance I can not seem to find any documentation on working with subdomains with the Pyramid framework. There is one ...
3
votes
1answer
249 views

Basic html-mapping or url-rewriting for google appengine (python)

I'm trying to rewrite urls for a static site on Google Appengine. I only want http://www.abc.com/about for http://www.abc.com/about.html I don't need rewriting for stuff like abc.com/page?=1 or ...
1
vote
3answers
918 views

Django isn't serving static files, getting 404 errors

I can't seem to get my static files to load from my templates. I've followed the official documentation but I must be missing something. My directory layout (generated by Django, most files omitted): ...
1
vote
1answer
437 views

Dynamic routing in flask & order of operations when processing routes

With flask I'm hoping to do something like mydomain.com/groupname Where the groupname could be anything and will be the variable used to search a database. Problem is, I will also need this URL ...
1
vote
2answers
220 views

CSS mapping issue in Google App Engine

I'm writing a python webapp application for Google App Engine and I'm having some issues with the URL mapping. For some reason, we wanted to put the index.html file inside another folder (not in the ...
0
votes
1answer
386 views

When to use route_url or route_path in Pyramid?

I have an issue with route_url and my setup. On the server I have a paster server which listen on 127.0.0.1 on port 6543 and a nginx server which does reverse proxying from port 80 to port 6543. I'm ...
1
vote
1answer
514 views

django url name lookup

I have three url pattern match to the same url name url(r'^report/newreport/(?P<number>\w+)/$', 'report.views.newreport',name='report_newreport'), ...
5
votes
1answer
480 views

SQLAlchemy and Pyramid, how to get resources out of context?

I'm having a problem wrapping my head around my Pyramid web application. I have it structured very much like the one described by Michael Merickel here, except I'm using pure traversal to find my ...
0
votes
1answer
75 views

Is is possible to determine the local path from url?

I have access to apache web server. It is a web service application using Python. I would like to access a file (100% sure reside in the local which is the web server itself) but I have only the url. ...
1
vote
1answer
88 views

Django:How to let 3rd party sites access images on your server.(limited access i.e. only to that folder)

I am working in Django.I am trying to connect my website to Facebook. What i want to do is 1)Send post_data post_data = [('access_token',access_token), ('message', message), ('link', ...
13
votes
1answer
2k views

URL building with Flask and non-unique handler names

Flask provides a url_for function to generate URLs to handlers based on the URL pattern. But this would imply that the handler functions must have unique names across the entire application. Is that ...
1
vote
2answers
421 views

Problem with django urls which have a hyphen in them

I have a simple set of urls in a Django url conf file which points to some object detail generic views. urlpatterns = patterns('', url(r'^projects/(?P<slug>[\w-]+)/$', ...
4
votes
2answers
1k views

Help understanding resource and context in Pyramid

Please bear with me, since I am just getting started with Pyramid. I am having trouble understanding context and resource in Pyramid, with regards to URL Dispatch. I'm not quite sure what it means ...
1
vote
1answer
547 views

DJANGO translation - Translate models including “slugs” with django-datatrans

I'm reviewing django-datatrans to use it in parallel with django-localeurl. What I want to do is translate slugs so that my translated object is accessed as follows: www.mysite.com/fr/bonjour (in ...
4
votes
1answer
545 views

Routing subdomains in Pyramid

In Pylons 1.0 I could go into config/routing.py and add map.connect('/', controller='index', conditions=dict(sub_domain=False)) map.connect('/', controller='mobileindex', ...
1
vote
4answers
728 views

Regex for capturing all occurrences of text delimited by a sequence of characters

Is it possible to construct a regular expression that captures all occurrences of text delimited by a sequence of characters? In other words, I am looking for an equivalent of standard .split() ...
0
votes
1answer
281 views

Django: Name error at ROUTE/

I've a Django project advisor with core application. My routes are separated into a small group of files. I try to include them from the main urls.py, but django fails with the following exception ...
0
votes
2answers
608 views

Django redirect the right way?

I have a similar question to this - Conditional login redirect in Django But I couldn't understand how to achieve the result from answers there. I am relatively new to django. I reused this code ...
0
votes
2answers
326 views

Pylons - url.current() incorrect, for '/test' shows '/test/test'?

I've got a pylons setup, using flup with nginx, and url.current() always returns totally wrong. I have a route: map.connect('testpage', '/test', controller='Main', action='test') And in that ...
2
votes
1answer
3k views

Redirecting an old URL to a new one with Flask micro-framework

I'm making a new website to replace a current one, using Flask micro-framework (based on Werkzeug) which uses Python (2.6 in my case). The core functionality and many pages are the same. However by ...
1
vote
3answers
640 views

Multilanguage URLs in Django

What is the best way to support multilanguage URLs in Django? Like: http://myenglishwebsite.com/user/foo http://mygermanwebsite.com/benutzer/foo Should I use multilang in urls.py like: ...
6
votes
1answer
4k views

Including a Django app's url.py is resulting in a 404

I have the following code in the urls.py in mysite project. /mysite/urls.py from django.conf.urls.defaults import * urlpatterns = patterns('', (r'^gallery/$', include('mysite.gallery.urls')), ) ...
2
votes
1answer
323 views

How should I convert this long and complex PHP style URL query string to a Django url?

I'm converting a small PHP application to Django. One section has a long query string, indicating how a widget is to be displayed. There are a few required parameters and several optional ones. The ...
5
votes
2answers
2k views

Python Selector (URL routing library), experience/opinions?

Does anyone have opinions about or experience with Python Selector? It looks great, but I'm a bit put off by its "Alpha" status on pypi and lack of unit tests. I mostly like that its simple, self ...
0
votes
2answers
200 views

Dealing with dynamic urls

Let's say my main controller 'hotels' has a pattern for the url, such as: /hotels/colorado/aspen/hotel-name/ How should I program my controller ( keep in mind I'm still learning MVC ) to handle this ...
1
vote
5answers
186 views

how would i design a db to contain a set of url regexes (python) that could be matched against an incoming url

Say I have the following set of urls in a db url data ^(.*)google.com/search foobar ^(.*)google.com/alerts barfoo ^(.*)blah.com/foo/(.*) foofoo ... 100's more Given any ...
1
vote
2answers
2k views

Does main.py or app.yaml determine the URL used by the App Engine cron task in this example?

In this sample code the URL of the app seems to be determined by this line within the app: application = webapp.WSGIApplication([('/mailjob', MailJob)], debug=True) but also by this line within the ...

1 2