Is Django documentation translations to land in main repository ?

2012-12-14 Thread Amirouche B.
Héllo, Everything is in the title. Does Django core dev's want to have localized documentation in main repository or should it be managed by local DUG ? Thanks to Pilot Systems, I improved a bit the french documentation [1] basically what I've done is converted it to use the Sphinx support of

Re: Is Django documentation translations to land in main repository ?

2012-12-14 Thread Amirouche B.
On Saturday, December 15, 2012 5:05:36 AM UTC+1, Russell Keith-Magee wrote: > > > On Sat, Dec 15, 2012 at 11:53 AM, Amirouche B. > > > wrote: > >> Héllo, >> >> Everything is in the title. Does Django core dev's want to have localized >> docume

Re: Proposal: Django URL Admin (django-urls)

2012-12-14 Thread Amirouche B.
On Friday, December 7, 2012 9:07:32 PM UTC+1, Zach Borboa wrote: > > Does something like this exist already? If not, it should. How this can be useful ? You still need to write the view in Python then why not write the urls in Python too, like it's currently the way to go. If something in thi

Re: Django Admin Revamp - Any updates?

2012-12-14 Thread Amirouche B.
On Friday, April 27, 2012 1:06:06 AM UTC+2, Victor Hooi wrote: > Hi, > > Is there any news on the Django Admin rewrite front? > I'm very interested in this topic and have some time to kill so I started the wiki page don't hesitate to comment, correct, review and add you own ideas. https://code

Re: Django Admin Revamp - Any updates?

2012-12-15 Thread Amirouche B.
> > Is there any news on the Django Admin rewrite front? >> > > I'm very interested in this topic and have some time to kill so I started > the wiki page don't hesitate to comment, correct, review and add you own > ideas. > I made POC of django-hydro the widget composition framework using boot

Re: Django 2.0 - a case for a customizable pony

2012-12-15 Thread Amirouche B.
Héllo, Sorry, I also think you are vague -- or I'm not enough versed into Django developpers ecosystem and Python in general to understand. Admin - lacks abstraction, and therefore has some great tools that > can't really be used elsewhere (e.g., filter specs, sorting, etc.), lacks > usage

Re: DJango and OrientDB

2012-12-17 Thread Amirouche B.
Héllo, Sorry to shim in a probably a bit off and old topic discussion, I think we need to have this discussion, even if this is similar to any other nosql discussion, there is nothing really specific to OrientDB or any graphdb (Neo4J, Rexster server, ...). I have no particular experience with

[AdminNext] Updates (was: Django Admin Revamp - Any updates?)

2013-01-01 Thread Amirouche B.
Héllo, Since my initial introduction, I tempered my excitement and tried to have a better understanding of the issues faced by the admin following the Django's guide to contribute, which resulted in me writing a post

Re: About Understanding of source code

2013-01-08 Thread Amirouche B.
On Tuesday, January 8, 2013 6:54:41 PM UTC+1, ptone wrote: > > You might want to attempt to write a patch for an open issue - reading the > source code is one thing and you may learn a bit. But dissecting the source > code when you have the purpose to fix a problem, gives you a much better > u

Re: [Future feature?] Viewsets

2013-01-26 Thread Amirouche B.
Héllo Bertrand, Yesterday I read a Ruby on Rails tutorial and this gave me an idea of what > could IMO be a nice feature: viewsets. > I therefore started a tiny project, > django-viewsets > (djangonauts > have weird reflexes… ^^). *Everythin

Re: [Future feature?] Viewsets

2013-01-27 Thread Amirouche B.
> > What's in common between multiviews, composite, and viewsets: > >- Views are grouped in a class. >- Each view is tied to an URL pattern. >- All URL patterns of a group of views are accessible using nearly the >same syntax: GroupOfViews.urls() for multiviews, url('', >incl