I've been thinking about this. The fact is, we probably should *not* be automatically trying to determine the URLs.
It would be nearly trivial to have people add it to their base URLs, and then we get: 1) Faster startup 2) More compatibility with "the way things are done" in standard Django apps. 3) More clarity 4) (most importantly to me) No possibility of people accidentally enabling test mode in live stores. In a live store, this stuff should be set in stone, we don't get a lot by auto-determining the URLs. Thoughts? On Sun, Jul 19, 2009 at 5:28 PM, Chris Moffitt <[email protected]> wrote: > The issue seems to be with the way we're handling the payment urls. I've > made some progress on the issue but having resolved one issue another has > reared it's ugly head. > > If you're just trying to get things running, you can comment out the line: > urlpatterns += make_urlpatterns() > > in the file satchmo/apps/payment/urls.py > > Obviously you're payment modules won't work, but the rest of the site > should work. > > I'll keep the group informed as we work on it. Oh yeah, I'm open to help > too ;) > > Thanks, > > -Chris > > > On Sun, Jul 19, 2009 at 5:19 PM, Matt <[email protected]> wrote: > >> >> Ok. Thanks for the update. >> >> Cheers, >> Matt >> >> On Jul 19, 8:04 am, Chris Moffitt <[email protected]> wrote: >> > In the interest of keeping folks up to speed, this error is most likely >> do >> > to the recent inclusion of support for namespaces in urls. >> > >> > You can see the changeset here - >> http://code.djangoproject.com/changeset/11250 >> > >> > I'm not 100% sure what I need to do to fix it yet but I'm pretty sure >> this >> > is the issue. >> > >> > -Chris >> > >> > On Fri, Jul 17, 2009 at 10:40 PM, Chris Moffitt <[email protected]> >> wrote: >> > > Looks like something broke it in Django trunk. >> > >> > > I am getting the same error with Django SVN-11268 but was not getting >> it >> > > with SVN-10865 >> > >> > > I'm not sure what backwards incompatible changes might have happened >> or >> > > other change that's causing the issue. >> > >> > > I'm not sure I'll be able to check it out right now but hopefully it's >> not >> > > too difficult to figure out what changed and might be causing the >> issue. >> > >> > > Thanks for posting the bug report. Hopefully it's not too difficult to >> id >> > > and fix. >> > >> > > -Chris >> > >> > > On Fri, Jul 17, 2009 at 3:02 PM, davis <[email protected]> wrote: >> > >> > >> I just updated satchmo trunk on my dev site and developed the same >> > >> problem. I haven't been able to figure out what the problem is so >> far. >> > >> My Django/Satchmo versions are: >> > >> > >> Using Django version 1.1 beta 1 SVN-11265 >> > >> Using Satchmo version 0.9-pre hg-unknown >> > >> > >> And the traceback I got is here:http://dpaste.org/BEPc/ >> > >> > >> I'll let you know if I get anywhere with it. >> > >> > >> On Jul 17, 1:58 am, Matt <[email protected]> wrote: >> > >> > Hi there, >> > >> > >> > I've installed Satchmo (trunk) today following the instructions >> given >> > >> > on the site. >> > >> > >> > But I've run into a small issue which I was hoping you might be >> able >> > >> > to help me with. >> > >> > >> > Whenever I try and run either my own project or one of the default >> > >> > included projects (simple, etc). >> > >> > >> > I get the following error(s): >> > >> > >> > TemplateSyntaxError at /store/ >> > >> > >> > Caught an exception while rendering: need more than 1 value to >> unpack >> > >> > >> > In template /Library/Python/2.5/site-packages/Satchmo-0.9_pre- >> > >> > py2.5.egg/satchmo_store/shop/templates/base.html, error at line 48 >> > >> > >> > Which turns out to be >> > >> > >> > 47 <h3>{% trans "Quick Links" %}</h3> >> > >> > 48 {% url satchmo_product_recently_added as recenturl %} >> > >> > 49 {% if recenturl %}<a href="{{ recenturl }}">{% trans >> "Recently >> > >> > Added" %}</a>{% endif %} >> > >> > 50 {% url satchmo_product_best_selling as popularurl %} >> > >> > >> > Any ideas why this might be happening? Is this potentially a bug? >> > >> > >> > NB: Is also happened with the {% satchmo_search_form %} and {% >> > >> > category_tree %} I temporarily commented them out but that just >> kept >> > >> > moving the problem elsewhere. >> > >> > >> > Thanks in advance, >> > >> > Matt >> >> > > > > -- Bruce Kroeze http://solidsitesolutions.com Dynamic Designs, Optimized --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en -~----------~----~----~----~------~----~------~--~---
