Django app to manage PHP-composer repositories

2017-06-20 Thread Philipp Zedler
Hi Django Users, I'd like to manage composer packages using a Django App. (Composer is the git of PHP, roughly speaking.) Is there already some Django App that does this? Best wishes Philipp P.S. I know that the essential features of such an app are very simple. However, I p

django-cms apphook urls don't work with reverse() using Python shell

2014-08-19 Thread Philipp
Hi everyone, I've created a django CMS apphook. Unfortunately I'm not able to reverse apphook urls using the Python shell. The cms_app.py file looks like: class ArticleApp (CMSApp): name = _('Article App') app_name = 'article_app' urls = ['article.urls'] apphook_pool.register(Arti

Re: admin: add save -> error

2010-05-27 Thread Philipp
Thanks a lot Karen, I did google and found some more info here: http://trac.turbogears.org/ticket/2133#comment:11 just as a note, this is an issue on Django Developer Kit 1.2.1 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: admin: add save -> error

2010-05-27 Thread Philipp
I just realized, that I'm using python 2.4.4 which is not the latest, but within the django requirments. Thank you! Philipp -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googl

admin: add save -> error

2010-05-27 Thread Philipp
dev server. I tried different db backends with the similar effect. What can I look at next? Thanks a lot! Philipp -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To uns

Re: Clean URL Design: List Views and Details Views

2009-04-17 Thread Philipp Bosch
I agree on that it's not a good ideo to have actions in GET parameters. For things like sorting, pagination and the like it's propably a good idea because you are only changing the view on the same data. But "add" is a completely new thing. In HTTP terms it should propably be a PUT request to /pro

Re: Fetching related items

2006-06-22 Thread Philipp Klein
Damn. I knew it was something dumb. Thank you very much. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from t

Fetching related items

2006-06-22 Thread Philipp Klein
Hey, I'm writing a small blog application in order to learn a bit more about Django. Like every other nifty web 2.0 application mine has also got tags. ;) There are basically two tables: One for the entries and one for the tags. Here are my models: --snip-- class Tag(models.Model): tagtit