I needed a simple way to append new records from many Oracle dbs to
one Mysql db, and came up with this solution. As part of the mantra
"Release Early, Release Often" I'm putting it into a separate app,
making it more generic and releasing it on google code.
Code is at: http://code.google.com/
hi,
I do have only set SESSION_COOKIE_DOMAIN = '.dev.miadi.net' in both
sites
and now I am expecting to be able to set a value under
host1.dev.miadi.net and to read it under host2.dev.miadi.net - but
this does not work.
the browser does send the cookie he got from host1 to host2, but the
site se
When attempting to use a few management commands together, ala:
from django.core.management.base import NoArgsCommand
from django.core.management.commands import syncdb
from django.core.management.commands import runserver
class Command(NoArgsCommand):
def handle_noargs(self, **options):
On Fri, Sep 25, 2009 at 3:25 AM, skunkwerk wrote:
>
> Hi,
> I created a database dump using the 'dumpdata' command, and when I
> but am getting this error when I add the line:
> fixtures = ['test_fixture-24.09.09.json'] to my TestCase class:
>
> Problem installing fixture '//ites/bdl/match/trun
Is there a easy way to automatically change the default formatting of
DateTimeField's when they are used to be printed on the console/
html...
As i see in db/models/fields/__init__.py:
def value_to_string(self, obj):
val = self._get_val_from_obj(obj)
if val is None:
Hi, I am using Django 1.0
Suppose I have two models in one file:
class BaseModel(models.Model):
# attrs
creator = models.ForeignKey('User', related_name='%(class)
s_creator_set')
class User(BaseModel):
# attrs
That's perfectly OK.
But if I split them into two apps, say,
core/mode
Hi folks,
PyWebSF is a Python meet-up with a strong focus on Web technology in
the heart of San Francisco. From frameworks like
WSGI/Pylons/TurboGears/Django to libraries like httplib2 to using
emerging Web technologies like Amazon's AWS and Freebase - its all
covered.
The emphasis is on practic
Hi there,
I have a question on customize the db field. For this field, I want to
save integers in db, but want them to be my custom class when they are
used in Python code. In Django docs, it's said that I should set the
__metaclass__ to be models.SubfieldBase to make to_python() work. I
tried it
Strike what I said above. It's fixed.
@derekh
http://forum.python.su
--~--~-~--~~~---~--~~
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 unsub
The presave signal passes the instance of the updated object to the
signal automatically, so your code should work with minimal
modifications.
Try this:
from django.db.models.signals import post_save
def member_check(sender, **kwargs):
if Project.objects.filter(id__exact=self.id).count():
It's a trade-off. Loose coupling allows you to modify the structure of
your program easier, but doing so in this case is going to lead to a
performance hit.
That said, this isn't crazy coupling we're suggesting. It's not like
we need to know anything about the user model to do this or that
anythi
Yeah that was the problem, I overrode the TEMPLATE_CONTEXT_PROCESSORS
setting in settings.py which got rid of
django.core.context_processors.auth
On Sep 23, 9:56 pm, Karen Tracey wrote:
> On Wed, Sep 23, 2009 at 9:00 PM, Nakedsteve wrote:
>
> > Hey everyone, while playing around with an idea th
If i want to create a URL tag for feeds then where should the
path.to.view point to?
Should it point to urls.py or feeds.py?
or do i need to do something else entirely?
This is using the standard sydication framwork.
Thanks,
Andrew
--~--~-~--~~~---~--~~
You rec
> - in the view just get all the books, ordered by author
> - in the template iterate over the books, with an {% ifchanged
> book.author %} to display the author name
thanks Javier, I will try the 'ifchanged' template tag
(http://docs.djangoproject.com/en/dev/ref/templates/builtins/#ifchanged).
On Wed, Sep 23, 2009, M Godshall wrote:
>
>I have a Project model with a ManyToManyField called "members" to keep
>track of members of a project. Whenever the model is updated, I need
>to check if certain members need to be removed from or added to the
>m2m field.
I am trying to do exactly th
Ethan Jucovy wrote:
> What happens if you wrap the definition in a function?
> {{{
> def signins(): return models.IntegerField(...)
>
> class User(models.Model):
> name = models.IntegerField(...)
> signins = signins()
> }}}
Yeah, this is sort of what I ended up with:
from django.db import mod
On Thu, Sep 24, 2009, Daniele Procida wrote:
>>So, given a obj = Referrer("foo"), updating its many-to-many field can
>>happen only after obj.save() returns (this is documented in
>>http://www.djangoproject.com/documentation/models/many_to_many/ ).
>>
>>If you are not able to call obj.save() and
imports don't usually take up too much memory. I'd guess that even
importing a very large number of modules isn't going to grow your
process size by more than 10 MB.
imports are only evaluated once. So if you nest the import into a
view, your process will be smaller until the first time that view
On Thu, Sep 24, 2009 at 4:27 PM, JF Simon wrote:
>
> I launched form.as_table() in my terminal and the traceback is :
>
> File "", line 1, in ?
> File "/usr/lib/python2.4/site-packages/django/forms/forms.py", line
> 190, in as_table
>return self._html_output(u'%(label)s%(errors)s%
> (field)
Ah I found something ...
In my forms.MultiWidget subclass, "decompress" method was returning
None and not a couple of values !
I just done that :
def decompress(self, value):
if value is None:
return (None, None)
return value
I don't know if it's the best way, bu
I launched form.as_table() in my terminal and the traceback is :
File "", line 1, in ?
File "/usr/lib/python2.4/site-packages/django/forms/forms.py", line
190, in as_table
return self._html_output(u'%(label)s%(errors)s%
(field)s%(help_text)s', u'%s',
'', u'%s', False)
File "/usr/lib/pyt
Yes, I actually just tried that a few seconds ago and now it works.
Thanks
Andrew
On 24 Sep, 20:48, Emiel van de Laar wrote:
> On Sep 24, 2009, at 9:20 PM, W3 wrote:
>
>
>
> > Sorry the url.py is like so:
>
> > ('^myposts/$', 'myproject.myapp.views.blog'),
> > (r'^myposts/(?P.+)/$', 'myproject
On Thu, Sep 24, 2009 at 9:37 AM, Chris Withers wrote:
>
> Hi All,
>
> I tried this:
>
> from django.db import models
>
> signins = models.IntegerField(
> default=0,
> db_index=True,
> verbose_name='Total Signins'
> )
>
> class User(models.Model):
> name = models.CharField(
>
On Sep 24, 2009, at 9:20 PM, W3 wrote:
> Sorry the url.py is like so:
>
> ('^myposts/$', 'myproject.myapp.views.blog'),
> (r'^myposts/(?P.+)/$', 'myproject.myapp.views.title_view'),
>
> On 24 Sep, 20:17, When ideas fail wrote:
>> Hello, I was wondering if somebody could tell me what i'm doing
with another dump file, I get this error:
Problem installing fixture '/Users/imran/Sites/bdl/match/trunk/python/
bdl_site/match/fixtures/apps_fixture-24.09.09.json': Traceback (most
recent call last):
File "/Library/Python/2.5/site-packages/django/core/management/
commands/loaddata.py", line 11
changed that to:
handlers.send_pingback(sender=self.__class__, instance=self)
handlers.send_trackback(sender=self.__class__, instance=self)
it's now attempting to send the pingback and trackback :) I've
entered a new issue. thanks!
On Sep 24, 11:43 am, josebrw
On Thu, Sep 24, 2009 at 2:49 AM, dimitri pater - serpia
wrote:
>
> Hi,
>
> say, I have two related models:
>
> class Author(models.Model):
> name = models.CharField()
>
> class Book(models.Model):
> author = models.ForeignKey(Author)
> titel = models.CharField()
> isbn = models.CharField()
>
Hi group,
I was wondering about how to structure my import statements and it's
impact, if any, on the memory footprint of mod_python.
I'm importing some modules that i'm sure are huge in memory for
certain views. My question is: does it make any difference whether I
put the import statement at t
Sorry the url.py is like so:
('^myposts/$', 'myproject.myapp.views.blog'),
(r'^myposts/(?P.+)/$', 'myproject.myapp.views.title_view'),
On 24 Sep, 20:17, When ideas fail wrote:
> Hello, I was wondering if somebody could tell me what i'm doing wrong.
>
> I keep getting this error relating to a ur
Hi,
I created a database dump using the 'dumpdata' command, and when I
but am getting this error when I add the line:
fixtures = ['test_fixture-24.09.09.json'] to my TestCase class:
Problem installing fixture '//ites/bdl/match/trunk/python/bdl_site/
match/fixtures/test_fixture-24.09.09.json':
Hello, I was wondering if somebody could tell me what i'm doing wrong.
I keep getting this error relating to a url tag:
Traceback:
File "C:\Python26\lib\site-packages\django\core\handlers\base.py" in
get_response
92. response = callback(request, *callback_args,
**callback_kwarg
I tried this solution and that's what it was. I knew I was missing
something obvious. Thanks so much.
On Sep 23, 8:32 pm, Peter Coles wrote:
> Looks like your regex isn't matching:
>
> reverse('view-project', args=['blue-dog'])
>
> is trying the regex here:
>
> url(r'^(?P\w+)/$', 'view_p
I don't know Linode myself. But a friend of mine says good things about them.
On Wed, Sep 23, 2009 at 10:54 PM, neri...@gmail.com wrote:
>
> I think I'm ready to finally switch to a django vps host due to
> problems with django on DreamHost. Can anyone recommend a good vps
> host?
> >
>
--
2009/9/24 玉东 :
> Hi, guys,
>
> I've made a firefox search plugin for django documents. It can save your
> time if you often search the official django documents because you don't
> have to visit the djangoproject.com first. Just type in the search box,
> press enter and you'll see the page of the
Hi, Here's my save method:
def save(self):
super(Entry, self).save()
print "hello world from models"
signals.send_pingback.send(sender=self.__class__, instance=self)
signals.send_trackback.send(sender=self.__class__,
instance
Hi,
Is it possible to have a custom model field class inheriting from
ManyToManyField ?
I'd like to do something like this:
class CategoryLinkField(models.ManyToManyField):
def __init__(self, *args, **kwargs):
super(models.ManyToManyField, self).__init__(Category, *args,
Hi everyone,
I am in the process of trying to encrypt with ssl through apache
anything that is done in /admin.
Right now, I have an nginx proxy on port 80 that forwards anything to
an apache virtual host listening on a different port. I also have
another apache vhost listening on 443 but is not
Although I haven't yet deployed a Django application on them, I'm very
pleased with Slicehost in my other experiences with them.
--
-- Christophe Pettus
x...@thebuild.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Goog
You might look at Amazon's EC2 if you don't mind rolling your own.
On Sep 23, 6:54 pm, "neri...@gmail.com" wrote:
> I think I'm ready to finally switch to a django vps host due to
> problems with django on DreamHost. Can anyone recommend a good vps
> host?
Toodle-looo..
creecode
--~
Well, I guess the answer to the thread is looking like:
- a data warehouse is preferable to multiple db connections and cross-
vendor joins
But that's only because I haven't heard anyone voice support for the
multi-db idea.
Now the question is:
How should the warehouse be constructed in tandem
I would write a custom tag that wraps ugettext but checks for None.
http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#writing-custom-template-filters
http://docs.djangoproject.com/en/dev/topics/i18n/#standard-translation
On Sep 24, 10:14 am, Florian Schweikert
wrote:
> Hello,
>
>
I knew this would happen as soon as I hit submit to make a fool of
myself.
So I tried to use:
manage.py custom_command_name --pythonpath='/path/to/my/project'
but that had not worked either. The real path to the project is:
/home/webdev/django/fls
but I failed to put in:
manage.py custom_comm
Brian McKeever wrote:
> .count is definitely the way to go. Although, I would probably pass it
> to your template instead of determining it there.
What difference does it make?
Chris
--
Simplistix - Content Management, Batch Processing & Python Consulting
- http://www.simplistix.co
I think you'll have to write a custom template tag:
http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#parsing-until-another-block-tag-and-saving-contents
On Sep 24, 10:56 am, J wrote:
> Hello,
>
> How can I detect whether the template tag truncatewords_html has
> truncated the htm
Greetings all,
I'm having an issue running a custom command as a cron. Most resources
I've read have said that you can run your command from cron by simply
using the following syntax:
python manage.py custom_command_name
Frustratingly, that does not work for me. It results in "Unknown
command:
On Sep 24, 2009, at 9:53 AM, Brian McKeever wrote:
> I imagine request.path would do what you want:
> http://docs.djangoproject.com/en/dev/ref/request-response/#attributes
Perfect, thanks.
This inspires me to ask if there are known-pattern ways of
accomplishing the two things I need the URI f
Hello,
How can I detect whether the template tag truncatewords_html has
truncated the html text or not? My current template code is as follows:
{{ object.body|truncatewords_html:100|removetags:"span"|safe }}
{% trans "Read the rest" %}
»
However, I only want to dis
.count is definitely the way to go. Although, I would probably pass it
to your template instead of determining it there.
On Sep 24, 10:32 am, Chris Withers wrote:
> Chris Withers wrote:
> > objects = model.objects.all()
> > paginator = Paginator(objects,10)
> > return render_to_re
I imagine request.path would do what you want:
http://docs.djangoproject.com/en/dev/ref/request-response/#attributes
On Sep 24, 10:37 am, Christophe Pettus wrote:
> My apologies, because I am certain that this is documented somewhere,
> but I cannot seem to find it.
>
> Within my view function
My apologies, because I am certain that this is documented somewhere,
but I cannot seem to find it.
Within my view function, I need to retrieve the URI that requested
that particular view. Is there a straight-forward, portable way to do
that?
Many thanks!
--
-- Christophe Pettus
x...@
Chris Withers wrote:
> objects = model.objects.all()
> paginator = Paginator(objects,10)
> return render_to_response(
> 'index.html',dict(
> objects = paginator.page(page),
> total_objects = len(objects),
> )
> )
I'm guessing
Hi All,
I have the following in a view:
objects = model.objects.all()
paginator = Paginator(objects,10)
return render_to_response(
'index.html',dict(
objects = paginator.page(page),
total_objects = len(objects),
)
)
Is that
Are you implying you were using an older version?
I'm using latest SVN and still experiencing this issue.
On Aug 17, 10:36 pm, Cody Django wrote:
> sorry -- already a fix:
>
> http://code.google.com/p/django-tinymce/issues/detail?id=22&can=1&q=i...
>
> On Aug 17, 7:31 pm, Cody Django wrote:
>
Hello,
{% trans Pagetitle %} produces TemplateSyntaxError when there is no
Pagetitle given, without translation django ignores it.
Why i18n can't translate/ignore NoneType? I don't want to use if around all
this varibles. Is there any more confortable way?
greetings,
Florian
--~--~-~--~-
On Thu, Sep 24, 2009 at 2:52 AM, Brian McKeever wrote:
>
> I'm not too familiar with customizing the admin, but you want to use
> the range field lookup.
>
> http://docs.djangoproject.com/en/dev/ref/models/querysets/#range
Thanks McKeever, but that's actually the problem: I don't know the
date t
On Thu, Sep 24, 2009 at 6:19 AM, Daniel Roseman wrote:
>
> On Sep 24, 6:07 am, Alvaro Mouriño wrote:
>> Hi list.
>>
>> I'm developing a news application that handles articles, about 10 new
>> articles each day. The site administrator every morning selects from a
>> drop-down-list the ones that h
So the tighter coupling implied by each entry knowing about the user
profile shouldn't be a subject of concern?
On Sep 23, 11:05 pm, Brian McKeever wrote:
> I remember a quote from either headfirst java or design patterns that
> said something like:
> "The key to inheritance is to abstract func
On Thu, 2009-09-24 at 06:25 -0700, blumenkraft wrote:
> Hi,
>
> It seems that Django generates too many joins with chained filters:
>
> class Issue(models.Model):
> is_opened = models.BooleanField()
>
> class Advertisement(models.Model):
> issues = models.ManyToManyField(Issue, null = True)
Hi there!
Very useful! Thank you!
2009/9/24 玉东 :
> Hi, guys,
>
> I've made a firefox search plugin for django documents. It can save your
> time if you often search the official django documents because you don't
> have to visit the djangoproject.com first. Just type in the search box,
> press
On Thu, Sep 24, 2009 at 10:40 AM, JF Simon wrote:
>
> Ouh thanks ... because of the TEMPLATE_DEBUG setting, I though
> exceptions within templates were raised ... my sentence seems weird.
> Ill try that tonight.
> Thanks again.
>
>
No, TEMPLATE_DEBUG just adds some information (snippet of the tem
Python Developer / Open Source - (Graduate to Senior Developers)
£25-£45k + Share Option
Our client is an exciting, funded web startup that are looking for an
ambitious software engineer who is hungry to build awesome software that
millions of people use. Based in central London, our client is bui
Ouh thanks ... because of the TEMPLATE_DEBUG setting, I though
exceptions within templates were raised ... my sentence seems weird.
Ill try that tonight.
Thanks again.
JF
On 24 sep, 14:42, Karen Tracey wrote:
> On Thu, Sep 24, 2009 at 2:49 AM, JF Simon wrote:
>
> > Hi there !
>
> > I try to un
Hello,
I have a three level FK-relationship. For example:
DATA_PACKAGE
| DATA_GROUP
| DATA_ELEMENT
I can create an inline definition to edit DATA_GROUPs when I'm in
DATA_PACKAGE. Is there a way to have another inline definition on the
same form which allows me to directly edit associated
Hi All,
I tried this:
from django.db import models
signins = models.IntegerField(
default=0,
db_index=True,
verbose_name='Total Signins'
)
class User(models.Model):
name = models.CharField(
max_length=50,
primary_key=True,
verbose_name='Usern
But i just defined document.domain in my tinymce initializer, nowhere
else.. Is there anywhere else should I define it?
2009/9/24 Ali Rıza KELEŞ :
> Hi,
>
> i did this patch, but still doesn't work.
> http://code.djangoproject.com/attachment/ticket/10327/10327-r9969.diff
>
> I am using use the la
On Thu, Sep 24, 2009, mrts wrote:
>So, given a obj = Referrer("foo"), updating its many-to-many field can
>happen only after obj.save() returns (this is documented in
>http://www.djangoproject.com/documentation/models/many_to_many/ ).
>
>If you are not able to call obj.save() and then manually u
Hi,
It seems that Django generates too many joins with chained filters:
class Issue(models.Model):
is_opened = models.BooleanField()
class Advertisement(models.Model):
issues = models.ManyToManyField(Issue, null = True)
>>> x = models.Advertisement.objects.filter(issues__is_opened =
>>> Tr
+1 Linode. They've got great management tools. I've enjoyed their
service.
On Sep 24, 12:28 am, Kenneth Gonsalves wrote:
> On Thursday 24 Sep 2009 7:24:25 am neri...@gmail.com wrote:
>
> > I think I'm ready to finally switch to a django vps host due to
> > problems with django on DreamHost. Can
Never mind! I just figure it out that I had commented the id in the
model, causing this...
On 24 set, 09:49, Gustavo Senise wrote:
> Hi!
>
> I am having a hard time trying to delete a db register, but have no clue
> whats going on.
>
> I have already debuged but still dont know whats happening.
Hi,
i did this patch, but still doesn't work.
http://code.djangoproject.com/attachment/ticket/10327/10327-r9969.diff
I am using use the latest svn revision, -revision 11593-. Only in
options.py, new lines are not located as you mentioned in your patch.
There is not on line 681,
681
On Thu, Sep 24, 2009 at 2:49 AM, JF Simon wrote:
>
> Hi there !
>
> I try to understand why my form doesn't render anything. No exception
> is raised and i'm going crazy !
> In my forms.py I got these (simplified for instance) classes :
>
> [snip code]
>
> In my template I just put "form.as_table
Hi,
the code, which sends the trackbacks is not very well debugged. Please
make a small change in trackback/utils/handlers.py (Lines 28 & 42) and
add "fail_silently=False" to the function calls (it's already there
but commented out). This allows errors which occur while sending the
trackbacks to
Don't you find my problem really funny ?
--~--~-~--~~~---~--~~
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 this group, send em
> hi everybody, We want to develop a Bussiness web site with Django framework,
> but we can't decide django's performance. So, would you list some
> large-scale web sites that used django for us?
Define "large-scale".
--~--~-~--~~~---~--~~
You received this messag
On Thu, 2009-09-24 at 02:54 -0700, Michel Thadeu Sabchuk wrote:
> Wouldn't it be better to cache on the RAM? This way you won't need
> even these queries...
>
> I'm not a cache specialist, let me know if I miss something ;)
Yes it would be better, if you can afford it.
The website runs in singl
This is probably a dumb question, but I am working on some JSON views
that I need to apply authentication too. I thought maybe I could use
the Django built-in auth/session apps to wrapper the JSON View
methods, but when I do testing I am not seeing the session id being
sent back. I tried hitting
dijxtra wrote:
> Is it safe to use HttpResponseRedirect(request.META["HTTP_REFERER"])?
> Can a session be stolen using this coed by spoofing HTTP_REFERER?
Two things stand out to me:
1) HTTP_REFERER is not a required header, so if the browser
doesn't send it, your code won't do what you expect.
Hi guys,
> You're not going to get any meaningful feedback by looking at high
> profile sites, because you don't know if the backend is similar to yours
> or what they did for scaling.
Alexandru is right. The server arrangement can speed up your
performance.
> I'm currently developing a custom-
On Sep 24, 9:50 am, Paul Lundberg wrote:
> Thanks, I think I will have to do that, I just thought that there
> might be an easy way to do this that I missed!
>
> Paul Lundberg
There's various information about fields in a model's ._meta class.
For instance, Model._meta.fields will give you all
Great links guys, thanks. I'm still in the mindset of frameworks just making
JavaScript less painful too and I'm looking for ways to move beyond that. I
just started looking at Dojo before posting this and it definitely looks
like it has potential.
--~--~-~--~~~---~--~-
If he wants to discuss it here I can do that too. It was just a little off
topic, but not not too much I suppose.
On Thu, Sep 24, 2009 at 7:41 AM, nausikaa wrote:
>
>
> Hi Joshua
>
> Thanks for sharing your knowledge.
> Too bad, I would've liked to read your suggestion to Tony as well. ; )
> I'm
On Thu, 2009-09-24 at 16:06 +0800, Anrs wrote:
> hi everybody, We want to develop a Bussiness web site with Django
> framework, but we can't decide django's performance. So, would you
> list some large-scale web sites that used django for us?
You're not going to get any meaningful feedback by loo
On Sep 24, 6:07 am, Alvaro Mouriño wrote:
> Hi list.
>
> I'm developing a news application that handles articles, about 10 new
> articles each day. The site administrator every morning selects from a
> drop-down-list the ones that hit the front page. As time goes by this
> list grows bigger and b
> Well, I am not sure this is a good suggestion but the way to get
> around
> any template code would be to do it in the query.
> Have you tried something like this:
>
> your_list = [] # i don't know how to initialise an empty query set
> authors = Author.objects.order_by('name')
> for author in a
Hi, guys,
I've made a firefox search plugin for django documents. It can save your
time if you often search the official django documents because you don't
have to visit the djangoproject.com first. Just type in the search box,
press enter and you'll see the page of the results.
It is useful to m
Hi,
I want to modify the querying done for the admin's change_list view of a
model.
I have an "Article" model, and when viewing the change_list I want the
rows in the table to group_by('pack'), which is a foreign-key to model
ArticlePack.
Thanks,
--~--~-~--~~~---~-
Hi dimitri
Well, I am not sure this is a good suggestion but the way to get
around
any template code would be to do it in the query.
Have you tried something like this:
your_list = [] # i don't know how to initialise an empty query set
authors = Author.objects.order_by('name')
for author in aut
Thanks, I think I will have to do that, I just thought that there
might be an easy way to do this that I missed!
Paul Lundberg
On Sep 22, 11:56 am, Gonzalo Delgado
wrote:
> El Mon, 21 Sep 2009 08:43:57 -0700 (PDT)
> Paul Lundberg escribió:
>
>
>
> > Hi:
> > I have several Django applications r
I figured it out - you just have to overload the FormWizard method
parse_params, like so...
class CreateThingWizard(FormWizard):
def parse_params(self, request, *args, **kwargs):
current_step = self.determine_step(request, *args, **kwargs)
if request.method == 'GET' and curre
Hi Joshua
Thanks for sharing your knowledge.
Too bad, I would've liked to read your suggestion to Tony as well. ; )
I'm a just graduate and at work I'm working on something very similar
to what has been discussed here.
On Sep 23, 9:51 pm, Joshua Russo wrote:
> I have many years of database des
On Thu, Sep 24, 2009 at 9:06 AM, Anrs wrote:
> hi everybody, We want to develop a Bussiness web site with Django framework,
> but we can't decide django's performance. So, would you list some
> large-scale web sites that used django for us?
Out of interest as performance is always a hot topic, w
Is it safe to use HttpResponseRedirect(request.META["HTTP_REFERER"])?
Can a session be stolen using this coed by spoofing HTTP_REFERER?
Thanks in advance,
nick
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django
On Thu, Sep 24, 2009 at 10:06 AM, Anrs wrote:
> hi everybody, We want to develop a Bussiness web site with Django framework,
> but we can't decide django's performance. So, would you list some
> large-scale web sites that used django for us?
http://djangosites.org/
>
> thanks.
>
> --
> love, an
On Thursday 24 Sep 2009 1:36:37 pm Anrs wrote:
> hi everybody, We want to develop a Bussiness web site with Django
> framework, but we can't decide django's performance. So, would you list
> some
> large-scale web sites that used django for us?
http://djangosites.com
--
regards
kg
http://lawgon.
hi everybody, We want to develop a Bussiness web site with Django framework,
but we can't decide django's performance. So, would you list some
large-scale web sites that used django for us?
thanks.
--
love, anrs
--~--~-~--~~~---~--~~
You received this message bec
On 23 sep, 16:13, Joost Cassee wrote:
> The admin popup windows do set the document.domain, [...]
That would be "do not set", sorry.
- Joost
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To
You can try Dreamhost Private Server. Also they have added root access
for PS not long ago.
On 24 сен, 05:54, "neri...@gmail.com" wrote:
> I think I'm ready to finally switch to a django vps host due to
> problems with django on DreamHost. Can anyone recommend a good vps
> host?
--~--~-~
On Thu, Sep 24, 2009 at 3:54 AM, neri...@gmail.com wrote:
>
> I think I'm ready to finally switch to a django vps host due to
> problems with django on DreamHost. Can anyone recommend a good vps
> host?
try rimuhosting.com
> >
>
--~--~-~--~~~---~--~~
You receive
I think i tried a postsave signal a while back without luck, but I'll
give it another shot. In order to know which users to add to or
remove from the members field I have to process the data in the save
method itself. Can you show me how I could pass a list of users to
remove and add to the post
Hi,
say, I have two related models:
class Author(models.Model):
name = models.CharField()
class Book(models.Model):
author = models.ForeignKey(Author)
titel = models.CharField()
isbn = models.CharField()
and I want to group them and display them in a template like this:
Stephen King:
1 - 100 of 102 matches
Mail list logo