Re: Question about Django, Heroku, and MySQL

2014-01-07 Thread Mark Moss
Moreover, make sure that port 3306 is opened in the remote server to accept 
mysql connection. That's the easiest thing we sometimes overlook.

-
- Mark
Check this *Instant Django Hosting 
*. No setup needed. Works 
out-of-the-box!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6b84d2e6-4a7f-434b-9212-beaa5601ae24%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Incorporate jQuery grid with django

2014-01-07 Thread Thomas Murphy
Hi Igor,

I'm unsure about the usb issue, but the "Django" way is to place all of
your static files in a specific directory and use the manage.py
collectstatic command, then serve them from a static location. This will
allow you to offload your statics to a CDN as your site grows.

Have a look at this part of the docs for much more info:
https://docs.djangoproject.com/en/dev/howto/static-files/


On Tue, Jan 7, 2014 at 5:14 PM, Igor Korot  wrote:

> Hi, ALL,
> This is my first post to this group so please bear with me for a sec.
>
> I successfully installed django and followed the tutorial to create a
> project and an application.
> It connects to my DB (mySQL) and everything is good.
>
> Now in the part 3 of the tutorial I need to create a view.
> I did create the URL in the appropriate place, but now I want to display
> my table with jQuery Grid.
>
> So what I did is I downloaded the latest jQuery and placed it in the same
> html directory where my template is.
> Now in the index.html I placed following code:
>
> [code]
> 
>   jQuery(document).ready(function() {
> jQuery("#grid").jqGrid({
>   url: "displayusbtable.py",
>   datatype: "local",
> }).navGrid("#gridpager");
>  });
> 
> [/code]
>
> My views.py have this code:
> [code]
> def displayusbtable(request):
>  usb_list = USB.objects.all()
>  t = loader.get_template('html/index.html')
>  c = Context( { 'usb_list': usb_list, } )
>  returns HttpResponse(t.render(c))
> [/code]
>
> Now when I try to go to "127.0.0.1:8000/usb" I see following message:
>
> "GET /usb/jquery-1.10.2.js HTTP/1.1" 404 2063
>
> Checking the "Developer Tools" in IE8, I see an error in my index.html:
>
> Obect expected: line 8 character 5
> Expected identifier, string or number: line 20
> I think I need to make a "usb" folder somewhere, place the jquery.js file
> there and that's it. But I don't know where this folder should be located.
>
> Could someone please help?
>
> Thank you.
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/75d1321f-ba3a-49ae-8967-8f88c9fe41dd%40googlegroups.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALgvumUO_He4CgZRjqb0pWBzhHY3iJnHStHJUcE4bSNN2eqL2g%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Incorporate jQuery grid with django

2014-01-07 Thread Igor Korot
Hi, ALL,
This is my first post to this group so please bear with me for a sec.

I successfully installed django and followed the tutorial to create a 
project and an application.
It connects to my DB (mySQL) and everything is good.

Now in the part 3 of the tutorial I need to create a view.
I did create the URL in the appropriate place, but now I want to display my 
table with jQuery Grid.

So what I did is I downloaded the latest jQuery and placed it in the same 
html directory where my template is.
Now in the index.html I placed following code:

[code]

  jQuery(document).ready(function() {
jQuery("#grid").jqGrid({
  url: "displayusbtable.py",
  datatype: "local",
}).navGrid("#gridpager");
 });

[/code]

My views.py have this code:
[code]
def displayusbtable(request):
 usb_list = USB.objects.all()
 t = loader.get_template('html/index.html')
 c = Context( { 'usb_list': usb_list, } )
 returns HttpResponse(t.render(c))
[/code]

Now when I try to go to "127.0.0.1:8000/usb" I see following message:

"GET /usb/jquery-1.10.2.js HTTP/1.1" 404 2063

Checking the "Developer Tools" in IE8, I see an error in my index.html:

Obect expected: line 8 character 5
Expected identifier, string or number: line 20
I think I need to make a "usb" folder somewhere, place the jquery.js file 
there and that's it. But I don't know where this folder should be located.

Could someone please help?

Thank you.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/75d1321f-ba3a-49ae-8967-8f88c9fe41dd%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Problem with using finders on multiple OSs

2014-01-07 Thread Shawn H
I figured it out.  I had to change my relative path to:

'../static/images/DallasDColor.JPG'


that loads it on several different Windows boxes, as well as my Red Hat 
box.   


On Tuesday, January 7, 2014 3:23:14 PM UTC-6, Shawn H wrote:
>
> I'm having a problem with trying to find an image file so I can embed it 
> in an openpyxl file.  What I want to do is be able to locate this file, 
> regardless of OS, and regardless of whether DEBUG is True or False.
>
> The problem is that I've got development occurring on both Windows and Mac 
> (and a Red Hat production server), and so my STATICFILES_DIRS setting has 
> paths for both OSs, plus a different STATIC_ROOT for production.  When I'm 
> using the {% static %} type operations in templates, there doesn't seem to 
> be any problem (i.e., all my javascript and css files work on all OSs and 
> in development and production), but in actually trying to locate a file 
> within a view, I'm getting a "The joined path 
> (C:\Users\Shawn\Sites\sdcgis\images\DallasDColor.JPG) is located outside of 
> the base path component (C:\Users\Shawn\Sites\sdcgis\static)".  Obviously, 
> that's because the first path in STATICFILES_DIRS  is a Mac, UNIX style 
> path, not a Windows path.
>
> The pattern I'm using to try and accomplish this is found 
> here.
>  
>  My code is currently:
>
> from django.contrib.staticfiles.finders import find
>
> ...
>
> img_path = '/images/DallasDColor.JPG'
> abs_path = find(img_path, True)
> logo = Image(abs_path)
>
>  ...
>
>
> How to accomplish what I need to given this scenario?  Thanks all.
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1980d890-d0d9-4a50-b216-a883fa23a4e6%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Problem with using finders on multiple OSs

2014-01-07 Thread Shawn H
I'm having a problem with trying to find an image file so I can embed it in 
an openpyxl file.  What I want to do is be able to locate this file, 
regardless of OS, and regardless of whether DEBUG is True or False.

The problem is that I've got development occurring on both Windows and Mac 
(and a Red Hat production server), and so my STATICFILES_DIRS setting has 
paths for both OSs, plus a different STATIC_ROOT for production.  When I'm 
using the {% static %} type operations in templates, there doesn't seem to 
be any problem (i.e., all my javascript and css files work on all OSs and 
in development and production), but in actually trying to locate a file 
within a view, I'm getting a "The joined path 
(C:\Users\Shawn\Sites\sdcgis\images\DallasDColor.JPG) is located outside of 
the base path component (C:\Users\Shawn\Sites\sdcgis\static)".  Obviously, 
that's because the first path in STATICFILES_DIRS  is a Mac, UNIX style 
path, not a Windows path.

The pattern I'm using to try and accomplish this is found 
here.
 
 My code is currently:

from django.contrib.staticfiles.finders import find

...

img_path = '/images/DallasDColor.JPG'
abs_path = find(img_path, True)
logo = Image(abs_path)

 ...


How to accomplish what I need to given this scenario?  Thanks all.
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/213e2cfa-63e3-48df-af54-858008f37648%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Question about Django, Heroku, and MySQL

2014-01-07 Thread carlos
Hi you check this link
https://devcenter.heroku.com/articles/getting-started-with-django
maybe help you !!

Cheers


On Tue, Jan 7, 2014 at 1:17 PM, ET  wrote:

> Hi,
>
> I am currently attempting to deploy a basic Django app to Heroku. Ideally,
> I would like to use a remote MySQL db instead of Heroku's datastore. I have
> the app running locally, where it connects with the db fine.
>
> Does anyone have any pointers or tutorials on how to deploy this to
> Heroku? Currently, every tutorial I have found for connecting a Heroku app
> with a remote db either involves RoR or only discusses Amazon MySQL dbs.
>
> Thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/35b4e4a2-c4d6-4227-846c-7b2cf0580b09%40googlegroups.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAM-7rO1%3DNza8%2BPOhyttzh9xbtARexLspi0AR7_XK65CLWoW28w%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Question about Django, Heroku, and MySQL

2014-01-07 Thread ET
Hi, 

I am currently attempting to deploy a basic Django app to Heroku. Ideally, 
I would like to use a remote MySQL db instead of Heroku's datastore. I have 
the app running locally, where it connects with the db fine. 

Does anyone have any pointers or tutorials on how to deploy this to Heroku? 
Currently, every tutorial I have found for connecting a Heroku app with a 
remote db either involves RoR or only discusses Amazon MySQL dbs. 

Thanks. 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/35b4e4a2-c4d6-4227-846c-7b2cf0580b09%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Startproject failing on Django 1.6

2014-01-07 Thread trojactory
Hi Steve,

This is usually due to a path issue or an environment variable being 
previously set. Did you try using virtualenv? It is designed for isolating 
one python installation from another. I recently documented my experience 
on installing Python 3 on Windows and running virtualenv here: 
http://arunrocks.com/guide-to-install-python-or-pip-on-windows/

Hope it helps.

Regards,
Arun

On Tuesday, November 12, 2013 10:44:27 PM UTC+5:30, Steve Sawyer wrote:
>
> Django 1.6
> Python 3.3
> Windows 7 pro
>
> I've been anxiously awaiting Django 1.6 as I've been learning Python 3 for 
> the last year. 
>
> I tried unsuccessfully to go through the tutorial using Django 1.5.5, and 
> figured I should wait 
> for 1.6 to be released so I could avoid having to research and resolve 
> version incompatibility issues.
>
> However, today I removed my prior Django installation, successfully installed 
> Django 1.6, and 
> started into the tutorial, but am again failing on this step:
>
> django-admin.py startproject mysite
>
> I'm getting an ImportError: No module named 'http.cookies'
>
> Note that I've verified that I have a folder named 'http', that this folder 
> is in my PYTHONPATH, that it
> contains a module named cookies.py and that the folder contains an 
> __init__.py file.
>
> Any suggestions as to what I need to do to resolve this? I'm not making much 
> progress with the tutorial! :-)
>
>
> Thanks.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/24001e82-f2f5-4cee-b891-fabbc646b0bb%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Question about Django X_FRAME_OPTIONS setting

2014-01-07 Thread Chen Xu
Hi

I have a question about Django X_FRAME_OPTIONS setting, I am wondering how
to set X_FRAME_OPTIONS to allow from, and how to specify a list of hosts
that are able to display my page in their frames?


Thanks in advance

-- 
⚡ Chen Xu ⚡

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACac-qYf7dQ6W1%3DimEyBFrKDVU7s2C2HjN0y5HWwvXHeQVe6Sw%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Startproject failing on Django 1.6

2014-01-07 Thread Petra Moessner
Probably your versions of Python and Django aren't compatible. I got the 
same error using Python 2.7.3 and Django 1.6. I upgraded to Python 2.7.6 
and the error error went away.

On Thursday, November 14, 2013 11:17:53 AM UTC-6, Steve Sawyer wrote:
>
> Ramiro - I only have a single version of Python installed (I have the 
> luxury of being able to keep things simple).
>
> I just tried this again though, using the explicit pathing you recommend. 
> I note that I have two copies of django-admin.py, but they're identical - 
> one in C:\Python33\Scripts, and the other in site-packages. In any case, 
> I'm still getting the ImportError.
>
> I can see that there is an http package that apparently belongs to the 
> python standard library, contains a cookies.py module and is located here:
>
> C:\Python33\Lib\http
>
> However, Django installs another http package
>
> C:\Python33\Lib\site-packages\django\http
>
> And this folder contains a file "cookie.py" (singular).
>
> In any case, I'm not sure what module is expected to be imported. However, 
> I note that if I try to import http from an interactive session, the 
> __init__.py in the Django http package is executed, and I end up getting 
> the same ImportError.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/75603a30-3e3d-45f3-9cfb-78f3a159da6b%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Problem with jdbc postgresql driver

2014-01-07 Thread Ruth Fong
Hi Hugo + everyone,

Was there any resolution to this problem? I'm experiencing a similar error 
and any help would be appreciated! :)

- Ruth

I've installed Jython2.5.2, Django-1.4, and django-jython-1.3.0.

Following the JythonBook tutorial 
(http://jython.org/jythonbook/en/1.0/JythonDjango.html),

1. I've created a project 'pollsite'

2. I've changed the following in settings.py:

DATABASES = {
'default': {
'ENGINE': 'doj.backends.zxjdbc.mysql',
'NAME': 'mysite',
'USER': 'root',
'PASSWORD': 'root',
'HOST': '0.0.0.0',
'PORT': '8889',
}
}

3. I am using mysql-connector-java-5.1.10-bin.jar and set CLASSPATH 
appropriately.

4. I ran "jython manage.py syncdb" and had the following error:
admins-MacBook-Air-3:pollsitejython admin$ jython manage.py syncdb
Traceback (most recent call last):
  File "manage.py", line 10, in 
execute_from_command_line(sys.argv)
  File 
"/Users/admin/jython2.5.2/Lib/site-packages/django/core/management/__init__.py",
 
line 443, in execute_from_command_line
utility.execute()
  File 
"/Users/admin/jython2.5.2/Lib/site-packages/django/core/management/__init__.py",
 
line 382, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
  File 
"/Users/admin/jython2.5.2/Lib/site-packages/django/core/management/__init__.py",
 
line 261, in fetch_command
klass = load_command_class(app_name, subcommand)
  File 
"/Users/admin/jython2.5.2/Lib/site-packages/django/core/management/__init__.py",
 
line 69, in load_command_class
module = import_module('%s.management.commands.%s' % (app_name, name))
  File 
"/Users/admin/jython2.5.2/Lib/site-packages/django/utils/importlib.py", 
line 35, in import_module
__import__(name)
  File 
"/Users/admin/jython2.5.2/Lib/site-packages/django/core/management/commands/syncdb.py",
 
line 8, in 
from django.core.management.sql import custom_sql_for_model, 
emit_post_sync_signal
  File 
"/Users/admin/jython2.5.2/Lib/site-packages/django/core/management/sql.py", 
line 6, in 
from django.db import models
  File "/Users/admin/jython2.5.2/Lib/site-packages/django/db/__init__.py", 
line 40, in 
backend = load_backend(connection.settings_dict['ENGINE'])
  File "/Users/admin/jython2.5.2/Lib/site-packages/django/db/__init__.py", 
line 34, in __getattr__
return getattr(connections[DEFAULT_DB_ALIAS], item)
  File "/Users/admin/jython2.5.2/Lib/site-packages/django/db/utils.py", 
line 93, in __getitem__
conn = backend.DatabaseWrapper(db, alias)
  File 
"/Users/admin/jython2.5.2/Lib/site-packages/doj/backends/zxjdbc/mysql/base.py", 
line 156, in __init__
self.ops = DatabaseOperations()
TypeError: __init__() takes exactly 2 arguments (1 given)

On Friday, July 2, 2010 4:29:19 AM UTC+3, Hugo wrote:
>
> Hi everyone, 
>
> I am experiencing a funny issue with the jdbc driver when trying to 
> run syncdb. 
>
> I've installed jython2.5.1, Django-1.2.1 and django-jython-1.1.1 
>
> 1. I create a project 'mysite'... 
>
> 2. change settings.py: 
>  DATABASE_ENGINE = 'doj.backends.zxjdbc.postgresql' 
>  DATABASE_NAME = 'mysite' # Or path to database file if 
> using sqlite3. 
>  DATABASE_USER = 'hugo' # Not used with sqlite3. 
>  DATABASE_PASSWORD = 'newuser1' # Not used with sqlite3. 
>  DATABASE_HOST = '' # Set to empty string for localhost. 
> Not used with sqlite3. 
>  DATABASE_PORT = '' # Set to empty string for default. Not 
> used with sqlite3. 
>
> 3. set my CLASSPATH=/path/to/jdbc/postgresql/jar.file 
>
> 4. run jython manage.py syncdb 
>
>
> The problem is I get the following error: 
>
> Traceback (most recent call last): 
>   File "manage.py", line 11, in  
> execute_manager(settings) 
>   File "/opt/jython2.5.1/Lib/site-packages/django/core/management/ 
> __init__.py", line 438, in execute_manager 
> utility.execute() 
>   File "/opt/jython2.5.1/Lib/site-packages/django/core/management/ 
> __init__.py", line 379, in execute 
> self.fetch_command(subcommand).run_from_argv(self.argv) 
>   File "/opt/jython2.5.1/Lib/site-packages/django/core/management/ 
> __init__.py", line 257, in fetch_command 
> klass = load_command_class(app_name, subcommand) 
>   File "/opt/jython2.5.1/Lib/site-packages/django/core/management/ 
> __init__.py", line 257, in fetch_command 
> klass = load_command_class(app_name, subcommand) 
>   File "/opt/jython2.5.1/Lib/site-packages/django/core/management/ 
> __init__.py", line 67, in load_command_class 
> module = import_module('%s.management.commands.%s' % (app_name, 
> name)) 
>   File "/opt/jython2.5.1/Lib/site-packages/django/utils/importlib.py", 
> line 35, in import_module 
> __import__(name) 
>   File "/opt/jython2.5.1/Lib/site-packages/django/core/management/ 
> commands/syncdb.py", line 7, in  
> from django.core.management.sql import custom_sql_for_model, 
> emit_post_sync_signal 
>   File "/opt/jython2.5.1/Lib/site-packages/django/core/management/ 

Re: building multiple dynamic websites on the fly

2014-01-07 Thread Rafael E. Ferrero
Django its not a DNS Server you need one (like BIND) to point yours domains
IMHO you can use python scripts for automate Bind config files.

See u.


2014/1/7 Mrinmoy Das 

> Hi,
>
> Is there a pure django solution towards this problem?
>
>
> Mrinmoy Das
> http://goromlagche.in/
>
>
> On Tue, Jan 7, 2014 at 6:49 PM, Rafael E. Ferrero <
> rafael.ferr...@gmail.com> wrote:
>
>>
>> 2014/1/7 Mrinmoy Das 
>>
>>> Yeah I am working with django. Thing is I want the users to have their
>>> own domain names. Which I will store on my database and there site will be
>>> running on that domain name. But all these will be under a single django
>>> project. So how do I solve the urls and domain names?
>>>
>>> Mrinmoy Das
>>> http://goromlagche.in/
>>>
>>> Maybe you must to create an script for create DNS config files ?
>> If the user want to use his own .com or .net or whatever... they must to
>> point his domain to a DNS Service... if you has your own domain and every
>> user has his own SUBdomain from you then you must create that on your own
>> DNS.
>>
>> Hope to help you!
>>
>>
>>>
>>>  On Tue, Jan 7, 2014 at 6:25 PM, Mark Moss  wrote:
>>>
 So, you are trying to create a "website builder". instead of asking how
 to build the entire project, break the project into smaller chunks (like,
 login, profile mgmt, site creator, preview manager etc). Then start
 building it yourself and start asking your questions when you face
 challenges.

 -
 - Mark
 Try *Pre-installed Django Framework
 * that works instantly
 out-of-the box!

 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To post to this group, send email to django-users@googlegroups.com.
 Visit this group at http://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/1f49e1a2-f92f-477a-a8e2-6f5f00978106%40googlegroups.com
 .

 For more options, visit https://groups.google.com/groups/opt_out.

>>>
>>>  --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAFWA-MP8tB0uKrb8zRdym%2BXSSv%2BX3KHk6UZ8B6D-9jSYb%3DC0Vg%40mail.gmail.com
>>> .
>>>
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>
>>
>> --
>> Rafael E. Ferrero
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJJc_8V1rJQPQvph83UORPRh_0-yZ-YdMu5A5iO_PYJvg9C-PA%40mail.gmail.com
>> .
>>
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFWA-MOXmT9o7oUSx0dCP0ZzUt6m4vZCyLuNk2dAXJvXUEFirw%40mail.gmail.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Rafael E. Ferrero

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJJc_8VZrnkWjafO8tdwOuChzFOJHOYYwL%3DZMUNJHwN2RR%2Bm%3Dw%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: building multiple dynamic websites on the fly

2014-01-07 Thread Mrinmoy Das
Hi,

Is there a pure django solution towards this problem?


Mrinmoy Das
http://goromlagche.in/


On Tue, Jan 7, 2014 at 6:49 PM, Rafael E. Ferrero
wrote:

>
> 2014/1/7 Mrinmoy Das 
>
>> Yeah I am working with django. Thing is I want the users to have their
>> own domain names. Which I will store on my database and there site will be
>> running on that domain name. But all these will be under a single django
>> project. So how do I solve the urls and domain names?
>>
>> Mrinmoy Das
>> http://goromlagche.in/
>>
>> Maybe you must to create an script for create DNS config files ?
> If the user want to use his own .com or .net or whatever... they must to
> point his domain to a DNS Service... if you has your own domain and every
> user has his own SUBdomain from you then you must create that on your own
> DNS.
>
> Hope to help you!
>
>
>>
>> On Tue, Jan 7, 2014 at 6:25 PM, Mark Moss  wrote:
>>
>>> So, you are trying to create a "website builder". instead of asking how
>>> to build the entire project, break the project into smaller chunks (like,
>>> login, profile mgmt, site creator, preview manager etc). Then start
>>> building it yourself and start asking your questions when you face
>>> challenges.
>>>
>>> -
>>> - Mark
>>> Try *Pre-installed Django Framework
>>> * that works instantly
>>> out-of-the box!
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/1f49e1a2-f92f-477a-a8e2-6f5f00978106%40googlegroups.com
>>> .
>>>
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAFWA-MP8tB0uKrb8zRdym%2BXSSv%2BX3KHk6UZ8B6D-9jSYb%3DC0Vg%40mail.gmail.com
>> .
>>
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>
>
> --
> Rafael E. Ferrero
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJJc_8V1rJQPQvph83UORPRh_0-yZ-YdMu5A5iO_PYJvg9C-PA%40mail.gmail.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFWA-MOXmT9o7oUSx0dCP0ZzUt6m4vZCyLuNk2dAXJvXUEFirw%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: building multiple dynamic websites on the fly

2014-01-07 Thread Rafael E. Ferrero
2014/1/7 Mrinmoy Das 

> Yeah I am working with django. Thing is I want the users to have their own
> domain names. Which I will store on my database and there site will be
> running on that domain name. But all these will be under a single django
> project. So how do I solve the urls and domain names?
>
> Mrinmoy Das
> http://goromlagche.in/
>
> Maybe you must to create an script for create DNS config files ?
If the user want to use his own .com or .net or whatever... they must to
point his domain to a DNS Service... if you has your own domain and every
user has his own SUBdomain from you then you must create that on your own
DNS.

Hope to help you!


>
> On Tue, Jan 7, 2014 at 6:25 PM, Mark Moss  wrote:
>
>> So, you are trying to create a "website builder". instead of asking how
>> to build the entire project, break the project into smaller chunks (like,
>> login, profile mgmt, site creator, preview manager etc). Then start
>> building it yourself and start asking your questions when you face
>> challenges.
>>
>> -
>> - Mark
>> Try *Pre-installed Django Framework
>> * that works instantly
>> out-of-the box!
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/1f49e1a2-f92f-477a-a8e2-6f5f00978106%40googlegroups.com
>> .
>>
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFWA-MP8tB0uKrb8zRdym%2BXSSv%2BX3KHk6UZ8B6D-9jSYb%3DC0Vg%40mail.gmail.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Rafael E. Ferrero

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJJc_8V1rJQPQvph83UORPRh_0-yZ-YdMu5A5iO_PYJvg9C-PA%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: building multiple dynamic websites on the fly

2014-01-07 Thread Mrinmoy Das
Yeah I am working with django. Thing is I want the users to have their own
domain names. Which I will store on my database and there site will be
running on that domain name. But all these will be under a single django
project. So how do I solve the urls and domain names?

Mrinmoy Das
http://goromlagche.in/


On Tue, Jan 7, 2014 at 6:25 PM, Mark Moss  wrote:

> So, you are trying to create a "website builder". instead of asking how to
> build the entire project, break the project into smaller chunks (like,
> login, profile mgmt, site creator, preview manager etc). Then start
> building it yourself and start asking your questions when you face
> challenges.
>
> -
> - Mark
> Try *Pre-installed Django Framework
> * that works instantly
> out-of-the box!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1f49e1a2-f92f-477a-a8e2-6f5f00978106%40googlegroups.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFWA-MP8tB0uKrb8zRdym%2BXSSv%2BX3KHk6UZ8B6D-9jSYb%3DC0Vg%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: building multiple dynamic websites on the fly

2014-01-07 Thread Mark Moss
So, you are trying to create a "website builder". instead of asking how to 
build the entire project, break the project into smaller chunks (like, 
login, profile mgmt, site creator, preview manager etc). Then start 
building it yourself and start asking your questions when you face 
challenges.

-
- Mark
Try *Pre-installed Django Framework 
* that works instantly 
out-of-the box!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1f49e1a2-f92f-477a-a8e2-6f5f00978106%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Broken links even after change the site information

2014-01-07 Thread trojactory
Hi Carlos,

The sites framework is used for storing a human readable name of a domain 
(in case you are serving your site from multiple domains). It does not 
change or modify the url structure of your site.

There are only two places where you can actually change the URL structure. 
First option is to specify the exact URLs in urls.py. The second option is 
outside Django and involves manipulating the URL by the webserver or using 
WSGI middleware. For example, if you are using Apache as your web server 
you can trivially perform URL rewriting using .htaccess files (
http://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/
)

In your case, I suggest the first option. I guess you are using 
django-registrations app, then you will need to modify the urls app as 
follows: url(r'^accounts/formhub/', include(
'registration.backends.simple.urls')),

Regards,
Arun

On Tuesday, January 7, 2014 5:22:36 AM UTC+5:30, Carlos Quiros wrote:
>
> Hello.
>
> I have a Django application running in my server 
> http://data.ilri.org/formhub
>
> However the links of the application are broken for example 
> *http://data.ilri.org/accounts/register/ 
> * instead of 
> *http://data.ilri.org/formhub/accounts/register/ 
>  *
>
> I been looking on the internet and also configured the site framework with:
>
> python manage.py shell
> >>> from django.contrib.sites.models import Site
> >>> one = Site.objects.all()[0]
> >>> one.domain = 'http://data.ilri.org/formhub/'
> >>> one.name = 'Formhub'
> >>> one.save()
> >>> quit()
> (formhub-env)[cquiros@rmg formhub]$ python manage.py dumpdata sites
> Your environment is:"formhub.preset.default_settings"
> [{"pk": 1, "model": "sites.site", "fields": {"domain": "
> http://data.ilri.org/formhub/;, "name": "Formhub"}}](formhubnv)
>
> But still the links are broken.
>
> What else do I need to do?
>
> Any help is much appreciated.
>
> Carlos.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/331ed190-f6f9-4e97-8319-8f565ea7f58c%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: building multiple dynamic websites on the fly

2014-01-07 Thread Erik Cederstrand
Den 07/01/2014 kl. 11.03 skrev Mrinmoy Das :

> I am thinking of building an application which will enable users to build 
> their own websites on the fly. On my app you will need to sign-up and then 
> from their you can make your own websites from your profile (with your own 
> domain name). Can anyone guide me on the right way? 

You need to be much more specific. What tasks do you need help with? Nobody is 
going to give you a complete manual to create a new divshot.com or wix.com :-)

Erik

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8D5EEE16-9A99-4FD3-9761-8426E75B9872%40cederstrand.dk.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Deploying to Heroku for first time, Dynos is blank, not recognizing Procfile

2014-01-07 Thread James Turley
Do you have a requirements.txt file (with all your requirements therein)?
Heroku recognises python apps by its presence (although I'm told this is
not yet 100% reliable - never tried myself).


On Tue, Jan 7, 2014 at 9:55 AM, Vibhu Rishi  wrote:

> yes. just create a text file with no extension. Here's mine for reference
> :
>
> $ cat Procfile
> web: gunicorn qj.wsgi
>
>
> V.
>
>
> On Tue, Jan 7, 2014 at 9:31 AM, Scott Meyers wrote:
>
>> Programming newb, Trying to use Heroku for the first time for a Django
>> app. After I push it to Heroku, the Dynos field is blank. I expected to see
>> my procfile: web: python manage.py runserver 0.0.0.0:$PORT --noreload
>>
>> Of course, when I try to open the application on Heroku, I get: An error
>> occurred in the application and your page could not be served. Please try
>> again in a few moments.
>>
>> If you are the application owner, check your logs for details
>>
>> Could this be because I don't have an extension on my procfile?
>>
>> My Procfile should just be a file I created in my text editor, right?
>>
>> Here is the log:
>>
>> 2014-01-06T07:34:17.321925+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/ host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:34:17.778360+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/favicon.ico host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:35:01.608749+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/ host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:35:01.868486+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/favicon.ico host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:46:57.862560+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/ host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> 2014-01-06T07:46:58.114270+00:00 heroku[router]: at=error code=H14
>> desc="No web processes running" method=GET path=/favicon.ico host=
>> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
>> service= status=503 bytes=
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/293796b7-2700-4c95-ac02-25c512ea41b0%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>
>
> --
> Simplicity is the ultimate sophistication. - Leonardo da Vinci
> Life is really simple, but we insist on making it complicated. - Confucius
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAPiONwkA87ecejWXLMrvjUgmTE8z3pbZ%2B1N1t%3DyPJ85xYyb2DQ%40mail.gmail.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAAb4X%3DwJczRTTP1ejYs0jO3VFEUViM4WvHO44JGC4%2BHUyMFApQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


building multiple dynamic websites on the fly

2014-01-07 Thread Mrinmoy Das
Hi,

I am thinking of building an application which will enable users to build
their own websites on the fly. On my app you will need to sign-up and then
from their you can make your own websites from your profile (with your own
domain name). Can anyone guide me on the right way?


Mrinmoy Das
http://goromlagche.in/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFWA-MMvS4%3Drfsr0yTPf-FFx4VjpL2pFvNbO8nRH%2B4AOSSuJMg%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Deploying to Heroku for first time, Dynos is blank, not recognizing Procfile

2014-01-07 Thread Vibhu Rishi
yes. just create a text file with no extension. Here's mine for reference :

$ cat Procfile
web: gunicorn qj.wsgi


V.


On Tue, Jan 7, 2014 at 9:31 AM, Scott Meyers wrote:

> Programming newb, Trying to use Heroku for the first time for a Django
> app. After I push it to Heroku, the Dynos field is blank. I expected to see
> my procfile: web: python manage.py runserver 0.0.0.0:$PORT --noreload
>
> Of course, when I try to open the application on Heroku, I get: An error
> occurred in the application and your page could not be served. Please try
> again in a few moments.
>
> If you are the application owner, check your logs for details
>
> Could this be because I don't have an extension on my procfile?
>
> My Procfile should just be a file I created in my text editor, right?
>
> Here is the log:
>
> 2014-01-06T07:34:17.321925+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/ host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:34:17.778360+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/favicon.ico host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:35:01.608749+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/ host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:35:01.868486+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/favicon.ico host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:46:57.862560+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/ host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> 2014-01-06T07:46:58.114270+00:00 heroku[router]: at=error code=H14
> desc="No web processes running" method=GET path=/favicon.ico host=
> aqueous-dawn-4712.herokuapp.com fwd="98.232.45.58" dyno= connect=
> service= status=503 bytes=
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/293796b7-2700-4c95-ac02-25c512ea41b0%40googlegroups.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Simplicity is the ultimate sophistication. - Leonardo da Vinci
Life is really simple, but we insist on making it complicated. - Confucius

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPiONwkA87ecejWXLMrvjUgmTE8z3pbZ%2B1N1t%3DyPJ85xYyb2DQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.