On Mon, May 26, 2008 at 11:05 PM, Chris Moffitt <[EMAIL PROTECTED]> wrote:
> I am very happy to announce the immediate availability of Satchmo version
> 0.7.
Congratulations to you Chris and the rest of the team. I'm looking
forward to digging into all the new features. Good work.
Michael Trie
So I'm really confused. You asked this same question on 12/14:
http://groups.google.com/group/django-users/browse_frm/thread/3415d1b0bf21cf7a/c26747fb42ae3b24?lnk=st&q=AJAXWidgetComboBox#c26747fb42ae3b24
The original author of the Wiki page that you're referring to
responded. The code is a year
http://www.djangoproject.com/documentation/django-admin/#runserver-optional-port-number-or-ipaddr-port
"Note that the default IP address, 127.0.0.1, is not accessible from
other machines on your network. To make your development server
viewable to other machines on the network, use its own IP add
> Hi everyone,
> Its almost the new year here, so Happy new year!
> Let me just say a big thanks to every one on the django-users list,
> who helped me with most of my questions, many of them inane. In
> particular James Bennet and Malcolm Tredinnick were very helpul.
> Django wont be as much fun
You need to provide more information. Django doesn't serve your
media, so what are you using to serve media? Is it apache? If so you
probably need to provide your apache conf for your site and
information on where in your filesystem your media is stored.
Michael Trier
blog.michaeltrier.com
On
> I'm making a list of objects, and only including some of them in the output:
>
> {% for thing in mylist %}
>{% if thing.test %}
> {{thing}}
>{% endif %}
> {% endfor %}
>
> Now if I want to comma-separate the list, how do I do it? The natural
> thing to my mind
> Also, I don't understand what the last tag is for, either. Any
> help would be greatly appreciated.
>
The last form tag is an error. It should be the closing form tag
Fix that and see if your problem persists.
Michael Trier
blog.michaeltrier.com
--~--~-~--~~~---
On Dec 27, 2007 5:22 PM, Robert <[EMAIL PROTECTED]> wrote:
>
> Hi, Sorry about the misunderstanding.
>
> I am supposed to get this message when I try to add a new object:
>
>
> However, after having added a foreign key in the poll class I receive
> this error instead:
>
> "Poll has no attribute c
I'm not seeing the problem. You might try doing a reset (if you don't
mind losing all your data) to be sure that the database is in sync.
Michael Trier
blog.michaeltrier.com
On Dec 27, 2007 10:36 AM, Robert <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I wanted to expand the Poll example in the first
> Thanks for the reply I tried using the method you described and
> searched the __init__.py, but just couldnt make any sense of it,
>
> def my_callback(field, **kwargs):
> if f.name == 'customer':
>return f.formfield(formfclass=forms.HiddenInput)
Since you're receiving the fi
> Add this line in the urls.py
> (r'^$','temp.helloworld.index'),
>
Your url pattern is not going to match a subfolder. Remember as you
have it setup everything after the http://localhost/ is what will be
sent to be matched. If you want to use /temp in apache as a sub, then
you need also spe
> I have a lot of models for classifications. All of them have similar
> attributes. When I try to use inheritance in the models design, the
> admin interface doesn't work with ForeignKey fields.
>
> Example:
>
> class BasicModel(models.Model):
> name=models.CharField(maxlength=30)
> def _
> I have from time to time tried to bump into someone on the #django IRC.
> Unfortunately, I always get a blank.
> It seems the french and german #django channels are more active?
> or maybe its my timezone (africa/lagos)?
> can someone plese give me a hand on when i am likely to meet people on
>
> I'm having some problems to serve static files in the development
> environment.
>
First, have you read this:
http://www.djangoproject.com/documentation/static_files/
> The directory that actually contains the static files under OSX is:
>
> /Users/paolo/Sites/SF06/sensationalfly/media/
>
>
> I
> Well, not universally true. There are a lot of cases where this would,
> in fact, be useful information (e.g. last HTTP return code and message
> when editing an RSS feed entry for a planet syndication application, or
> the mail refusal code for a person's entry in newsletter software so you
> c
>
> So I've discovered that I can get the admin page to show up if I add '/
> System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/
> site-packages/django/contrib/admin/templates' to TEMPLATE_DIRS in the
> settings.py file for my project (for some reason this doesn't work in
> glo
On Dec 21, 2007 4:50 PM, SmileyChris <[EMAIL PROTECTED]> wrote:
>
> After reading this thread the other day, I decided to write up a patch
> [1].
>
> [1] http://code.djangoproject.com/ticket/6262
Of course you did. Always with the patches. :)
P.S. Thank you
Michael Trier
blog.michaeltrier.com
That's not an error. That's telling you that there is nothing in your
Publisher table. Put some data in there and you'll get a result back.
Michael Trier
blog.michaeltrier.com
On Dec 21, 2007 3:51 PM, newDjangoer <[EMAIL PROTECTED]> wrote:
>
> When I follow the book tutorial. I create p1 and p
You need to have a settings file specified. Read this:
http://www.djangoproject.com/documentation/settings/
If you have a project, you need to make sure you are in the project
directory and using ./manage.py shell so all the right stuff gets
loaded up for you.
Michael Trier
blog.michaeltrier.c
This is not a very secure thing to do. But if you must, then just use
initial to set the value.
Michael Trier
blog.michaeltrier.com
On Dec 20, 2007 2:32 PM, mike <[EMAIL PROTECTED]> wrote:
>
> Hello, I am looking for a way to auto-populate a newforms field, I
> would like to have the input hidd
> I'll look into it, but before I go too far down one track, could
> anybody give some advice on how to approach it using sessions?
Here's an example:
http://staticallytyped.com/2007/05/17/rails-flash-now-for-django/
It's simply middleware that handles stuffing, retrieving, and clearing.
Micha
I'm not sure where you are getting the "u" from. It should be user, such as:
AppointmentParticipant.objects.filter(participant_user__pk=user.id).select_related()
You don't really need the depth in this case, unless you have more to
your models I'm not seeing.
The rest of it looks fine.
Michae
On Dec 14, 2007 7:44 PM, James Bennett <[EMAIL PROTECTED]> wrote:
>
> On Dec 14, 2007 5:55 PM, Empty <[EMAIL PROTECTED]> wrote:
> > As an aside, if the database backends were truly pluggable, like
> > sessions, then we could prove the stability, usability, and commit
I'm also quite interested in this. It was the first thing I thought
of when I received the announcement today. You do great work with the
boto library and I'm excited to see that you're looking into this.
As an aside, if the database backends were truly pluggable, like
sessions, then we could p
Wouldn't it just involve creating a backend that has nothing to do
with a database? Seems pretty straightforward to me.
Michael
blog.michaeltrier.com
On Dec 12, 2007 1:52 PM, Nathan Fiedler <[EMAIL PROTECTED]> wrote:
>
> This topic has come up once or twice before, but it doesn't seem like
> a
Added ticket http://code.djangoproject.com/ticket/6155 with patch.
Still need to write tests.
Michael
On Dec 7, 2007 3:15 PM, Karen Tracey <[EMAIL PROTECTED]> wrote:
>
> On Dec 7, 2007 2:31 PM, Empty <[EMAIL PROTECTED]> wrote:
>
>
> >
> >
> > > Seems
> Seems dumpdata is coded to require a Manager named 'objects' for the Models
> it dumps, even though (as described here:
> http://www.djangoproject.com/documentation/model-api/#manager-names), Django
> does not require that a Manager named objects exists for all Models.
> Whether this is just an
> to the apache httpd.conf file
> but when i turn off debug in the settings file as well as turning
> PythonDebug Off in the httpd.conf,
> my media files (css,images,...) disappear.
> I have also done
>
> SetHandler None
>
> as well as
>
> SetHandler None
>
> I have read that my media files sh
Well each field has and id that in your case here appears as 'id_age'.
So you can attach a style sheet item to that field directly but that
will not do anything for the whole row.
If you just wanted to add something to the label like 'Age *" so the
user can see that it's required that way, then
Read this:
http://www.mail-archive.com/django-users@googlegroups.com/msg37967.html
and this:
http://www.djangoproject.com/documentation/db-api/#order-by-fields
Michael Trier
blog.michaeltrier.com
On Dec 6, 2007 10:21 AM, sector119 <[EMAIL PROTECTED]> wrote:
>
> Hi!
>
> I use current trunk and
Nice info. This was just asked on the IRC channel a couple nights
ago. I'll be sure to pass it on.
Michael Trier
blog.michaeltrier.com
On Dec 5, 2007 7:09 PM, Michal Ludvig <[EMAIL PROTECTED]> wrote:
>
> Michal Ludvig wrote:
>
> > for the project I'm working on I needed to create a custom temp
Would it not be possible to run it through the striptags filter first
and then pass it into markdown?
Michael Trier
blog.michaeltrier.com
On Dec 2, 2007 9:50 PM, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote:
>
>
> On Sun, 2007-12-02 at 18:26 -0800, [EMAIL PROTECTED] wrote:
> > i have field like
I could be off base here but in regards to the the execution of
translation initialization I believe that is occurring because the
django.core.management.base attempts to switch the translation to
english if the can_import_settings attribute is set:
if self.can_import_settings:
from django.ut
I'm not sure I follow you completely, but I think my blog post on the
subject of finding lookup items that are not being used may get you
going in the right direction.
http://blog.michaeltrier.com/2007/8/12/finding-lookup-items-that-are-not-used
I hope it helps.
Michael
On Nov 23, 2007 5:54 AM
http://code.google.com/p/counterpoint/
Empty
blog.michaeltrier.com
On 8/30/07, daev <[EMAIL PROTECTED]> wrote:
>
> http://code.google.com/p/diamanda/
>
>
>
> >
>
--~--~-~--~~~---~--~~
You received this message because you are s
might be wacky with your install.
> > Are the permissions on that directory and every directory above it
> > such that the webserver can read them?
>
> yes
Empty
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Goog
I have pulled together pieces to do this. I posted about it here:
http://blog.michaeltrier.com/2007/7/30/json-generic-serializer
I don't know if it's exactly what you're looking for, but check it out.
Empty
On 7/26/07, Eric St-Jean <[EMAIL PROTECTED]> wrote:
>
> H
37 matches
Mail list logo