#7198 - Better error message when app is missing models.py

2011-09-09 Thread Justin Lilly
Not sure why this particular ticket is marked as DDN, as it seems like a no-brainer. The patch provides a more clear error message when a user is attempting to load an app which doesn't have a models.py. https://code.djangoproject.com/ticket/7198 https://github.com/django/django/pull/39 Happy to

Re: #11930 - submitting patches against djangoproject.com files?

2010-12-05 Thread Justin Lilly
You can find it in the community_redux version of the code which will be deployed any day now. [0]: https://github.com/jacobian/djangoproject.com/tree/community_redux On Sat, Dec 4, 2010 at 8:48 PM, Greg Turner wrote: > Hi, > I have a patch for #11930 that in to be

Re: Allow slug to be prepopulated on edit

2010-10-25 Thread Justin Lilly
I don't believe there is. Historically, this is there because slug fields usually make their way to be used for URLs. As such, changing the title of an object shouldn't adjust its URL as that can be bad for SEO and folks who might have bookmarked it. You can, however, add your own javascript via

Re: #6375 -- Class Based Views: Opinions on commit plan

2010-10-14 Thread Justin Lilly
Because you asked, I think this sounds like a great idea. When you have decided you like the API for create/update views, please send another email to the list, so that we know we've hit a stable API to write documentation against. -justin -- You received this message because you are

Re: Inclusion of easy-thumbnails into Django Contrib

2010-09-16 Thread Justin Lilly
One of the criteria for django.contrib is that the item for inclusion is a "de facto standard implementation of common patterns"[0]. From your own admittance there are conflicting views about how this should be handled. Perhaps if someone abstracts this out a bit and has something like image

Re: Error email flooding on high traffic production sites

2010-09-08 Thread Justin Lilly
This seems applicable to dcramer's django-db-log. http://github.com/dcramer/django-db-log This might also dovetail with logging support which may make it into 1.3, so it might be worth looping in the folks involved in that. -justin -- You received this message because you are subscribed to

Re: Documenting new features: built-in obsolescence of the "versionadded" tag.

2010-07-23 Thread Justin Lilly
While I know it comes with extra work, I think the contents of the versionadded bits need to be reworked into the body of text. While I can't remember any specific examples, I remember reading docs a few times and coming across versionadded statements that were at the bottom of their section

Re: contrib.Auth

2010-02-08 Thread Justin Lilly
To add another point, this doesn't mean that the day 1.2 hits release that everyone is gung-ho on 1.3. If past releases are any indication, there is usually a refactory period of a few weeks when everyone is basking in post-release bliss. -justin On Mon, Feb 8, 2010 at 6:46 PM, Karen Tracey

Re: Django Design Czar

2010-02-06 Thread Justin Lilly
Just to hit on another point that might have been missed by Alex's -0/1 is that we don't have someone to pick the positions. When evaluating meritocracy, we've traditionally had someone who was able to do the selection. Some number of Jacob / Simon / Adrian / other commiter has effectively vetted

Re: #11716 - Bug fix ready for checking

2009-11-14 Thread Justin Lilly
The accepted tag is typically for someone triaging to accept that yes, this really is a bug (that we want to fix). You should not change this yourself. -justin On Fri, Nov 13, 2009 at 7:24 PM, Leo wrote: > Could I please get a core committer or a triager to take a

Re: shortcut proposal

2009-10-16 Thread Justin Lilly
Just to add something a little different, there is a 5th option, that may fall into place w/ #4. The @render_to decorator. works like: @render_to('myapp/mypage.html') def home(request, foo): return {'foo':foo} http://www.djangosnippets.org/snippets/821/ This isn't a 1:1 replacement, but

Re: URL of current page in Django Form

2009-08-06 Thread Justin Lilly
Hi Neal. You're looking for the django-users list. This is for talking about the core framework, not how to use it. Best of luck! -justin On Thu, 06 Aug 2009, NealWalters wrote: > > Is there a keyword that will automatically put the URL of the current > page in the Django form? > Or do

Re: Multi-DB Status Update

2009-07-28 Thread Justin Lilly
On Tue, 28 Jul 2009, Ricardo Santos wrote: > What is the current status of the multi version support? I mean will > it be merged with trunk any time soon? ... snip ... I think this is slated for the 1.2 timecycle. The GSoC istelf ends sometime in late August, so that's likely the earliest

Re: Multi-DB Week 0 Update

2009-05-29 Thread Justin Lilly
If you recall the conversation between Alex and Simon, it will support this. -justin On May 29, 2009, at 9:29 AM, Marco Louro wrote: > > Hey Alex, > > Not sure if this is the right place, but I guess you're the right > person to ask.. > > Will Multi-BD be flexible enough

Re: FK Autocomplete Widget [GSoC '09 Admin UI Improvements]

2009-05-25 Thread Justin Lilly
raft of an autocomplete widget for foreign keys in the admin. >> >> You can see a screenshot and a short write-up of the functionality on my >> blog >> here:http://inzain.net/blog/2009/05/a-foreign-key-autocomplete-widget-for-... >> >> Also, I've set up a Git

Re: History tracking for models

2009-05-13 Thread Justin Lilly
Take this question to django-users please. Also, check out marty alchin's pro django foe this snippet. -justin On May 13, 2009, at 3:36 AM, kailash wrote: > > Hi, >Just want to know is there any way of tracking the history in the > database of a model. > Like..every

Re: Posting to the wrong list (was: Re: Need Django Developer urgent)

2009-05-08 Thread Justin Lilly
As an alternative, we could try FRAMEWORK for extra emphasis. Perhaps a bit janky, though. -justin On May 8, 2009, at 9:24 AM, Marty Alchin wrote: > > On Fri, May 8, 2009 at 7:05 AM, Jacob Kaplan-Moss > wrote: >> """ >> Discussion group

Re: pagination django

2009-03-25 Thread Justin Lilly
This is a question more suited for django-users as this mailing list is for the development of the core framework. -justin On Mar 25, 2009, at 6:15 AM, nicemira wrote: > > please friends, > how can I paginate my product with this method: I want to do a newline >

Re: "Delete selected objects" in admin batch edit

2009-03-24 Thread Justin Lilly
It would seem to me that the method we're using for context_processors might be a good one. A list of things available by default, then you can override it in settings.py in order to provide different ones or remove some of the defaults. I think it could very well. Thoughts? -justin -- Justin

Re: #9282 (comment moderation features) and Akismet removal

2009-03-22 Thread Justin Lilly
t/9282 > > > -- > "Bureaucrat Conrad, you are technically correct -- the best kind of correct." > > > > -- Justin Lilly Web Developer/Designer http://justinlilly.com --~--~-~--~~~---~--~~ You received this message because you

Can I get another pair of eyes on a few tickets?

2009-03-22 Thread Justin Lilly
Just rounding up a list of tickets I've worked on which could use another pair of eyes. Consider this a call for reviews for the following tickets: 6273 support for passwd-like password changing http://code.djangoproject.com/ticket/6273 A new feature, albeit a small one, which adds a

Re: New Functionality: built-in Message Passing

2009-03-05 Thread Justin Lilly
is Python, and b) it is Django.  Add message passing to the mix (and > therefore the ability to construct highly secure systems - banking, > etc) and it becomes a lot more compelling for more corporate types to > use it. > > The only problem is I have 100 dozen other project

Re: Perl port of the django template system.

2008-12-16 Thread Justin Lilly
I find it interesting that no one has brought up jinja. They did something that follows django's template syntax, and have still built up a community. There is also the ruby version which is called liquid iirc that borrows heavily from django's syntax. Basically, it doesn't need django in

Re: Dropping Python 2.3 compatibility for Django 1.1

2008-11-27 Thread Justin Lilly
On Nov 27, 2008, at 8:20 AM, Tim Chase wrote: > > However, I haven't seen any/much expression of *want* that 2.4 be > dropped any time in the near future (and there are a much larger > number of 2.4 deployments). I wouldn't schedule that "2.4 will > be dropped in Django 1.3" timetable, but

Re: Proposal: installmedia command - A story for distributing media with apps

2008-09-16 Thread Justin Lilly
u're tracking trunk for a given app, when you SVN > update that app you want stale media files to be removed. > > Just some thoughts. > > > -- Justin Lilly Web Developer/Designer http://justinlilly.com --~--~-~--~~~---~--~~ You received this m

Re: Flatpages with multiple blocks/sections

2008-08-20 Thread Justin Lilly
You may want to check out django-chunks. I'm pretty sure it does what you are looking for. -justin On Aug 20, 2008, at 4:41 PM, lingrlongr <[EMAIL PROTECTED]> wrote: > > I have found that the Flatpages application is very useful, especially > in projects where you create a site for

Re: Django releases

2008-06-08 Thread Justin Lilly
o pick between stale and trunk, which > ends up with more people picking trunk. > > The longer you leave it, more incompatible changes are going to be > introduced between 0.96 and 1.0. If a release is made between then it > gives people a chance to update their sites to fix any p

Re: Django releases

2008-06-07 Thread Justin Lilly
ates. > Someone else could "own" the 0.98 release. Once 0.97 is no longer > supported, that frees me up to "own" another release. > > Just a thought. > > -Rob > > > -- Justin Lilly Web Developer/Designer http://justinlilly.com --~--~-~--~

Re: Databrowse - text overlapping

2008-06-06 Thread Justin Lilly
ame of the tables -on the left- is > > overlapping to the name of the objects -on the right-, when there are > > large names. > > Please log suspected errors and bugs in the ticket tracker. Bug > reports in the mailing list tend to get lost over time. > > Yours, > Russ Mage

Re: Which editor for Django code ??

2008-05-28 Thread Justin Lilly
" from the "View" menu to help spot the > inconsistency visually. > > Hope this helps, > Daniel > > On May 14, 9:31 am, "narendra.tumkur" <[EMAIL PROTECTED]> > wrote: > > Hi guys, > > Trying to edit django code and keep running into indentati

Re: SVN Milestones

2008-04-16 Thread Justin Lilly
would make things a lot > more sane to know where you're at, as everyones using SVN now, but SVN > changes so much from X revision to Y revision that there really needs > to be tagged releases. > > > -- Justin Lilly Web Devel

Re: Django Software Foundation

2008-04-01 Thread Justin Lilly
Awesome. Thanks! On Tue, Apr 1, 2008 at 10:27 PM, Jacob Kaplan-Moss < [EMAIL PROTECTED]> wrote: > > Hi Justin -- > > Yes, there is a Django Software Foundation. We're still working on > getting everything set up and all the paperwork filed, but it does > exist :) > &

Django Software Foundation

2008-04-01 Thread Justin Lilly
Hey guys, I remember hearing about the DSF at PyCon. Is it a reality yet? Is the official name the DSF? I could use a bit of guidance for an article I'm writing up. -justin -- Justin Lilly Web Developer/Designer http://justinlilly.com --~--~-~--~~~---~--~~ You

Re: Unfair ticket management

2008-03-31 Thread Justin Lilly
My patch is still better because it removes INVALID_PROJECT_NAMES that > became unnecessary -- all those names will be detected by __import__. > > Why the developers don't check for duplicate tickets? > > -- > Ivan > > > -- Justin

Re: Adding a relative option to FilePathField

2008-02-22 Thread Justin Lilly
Fair enough. Forget I mentioned it :-/ On Fri, Feb 22, 2008 at 1:20 PM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > I agree with Graham because you don't know where python will be > executed from what would the path be relative to? > > On Feb 22, 9:33 am, "Justi

Re: Adding a relative option to FilePathField

2008-02-22 Thread Justin Lilly
_FIELD would be relative to the django > python process's current working directory which seems a bit arbitrary. > Having an absolute path parameter seems a good thing, but storing this > prefix for each record seems redundant and inflexible. > > Graham > > On Fri, 2008-02-22 a

Re: Adding a relative option to FilePathField

2008-02-22 Thread Justin Lilly
current > behaviour by default. Actually i can't think when you would want > absolute paths but maybe someone does. > > Shall I create a ticket (and possibly a patch) for this? or am I missing > something? > > cheers, > Graham > > > > > -- Justin Lill

Re: Visual recognition of Django website

2007-09-17 Thread Justin Lilly
f strangers get better branding on their websites. I do see > the benefit strengthening the Django brand, however, since in open > source, more interest equals more momentum. > > I'm not denying that my motivation here is somewhat selfish, but this > would be a small and quick thing to do