Re: DB Router default issue

2020-07-14 Thread JJ Zolper
Has anyone experienced this same thing? Anyone have a lot of experience working with multiple databases using a router? It's just a little unclear how I'm supposed to better control it. On Friday, July 10, 2020 at 12:03:46 PM UTC-4, JJ Zolper wrote: > > Hello, I am trying to prevent

DB Router default issue

2020-07-10 Thread JJ Zolper
Hello, I am trying to prevent models in my api app from migrating into the default database but I'm confused about the router. It seems every time I run migrate even with the router it continues to migrate. #apps.py from django.apps import AppConfig class ApiConfig(AppConfig): name =

Re: Django ContentTypes required?

2020-07-10 Thread JJ Zolper
Dan, Thank you so much. I was able to get it figured out after I smoothed out an issue with the database. My assumption is something with the database was causing it to throw this confusing and unrelated error. I changed the settings files around too but really did not change or remove

DB Router default issue

2020-07-10 Thread JJ Zolper
Hello, I am trying to prevent models in my api app from migrating into the default database but I'm confused about the router. It seems every time I run migrate even with the router it continues to migrate. #apps.py from django.apps import AppConfig class ApiConfig(AppConfig): name =

Django ContentTypes required?

2020-07-06 Thread JJ Zolper
Hello, I am not using any of the ContentType relations, etc right now in my Django 2.12 Python 3.6 application, am I able to run the application without having django.contrib.contenttypes in the INSTALLED_APPS? Is there a piece I am not understanding that Django uses it for in the background?

Re: More controls on createsuperuser

2019-04-28 Thread JJ Zolper
at 11:24:57 PM UTC-4, JJ Zolper wrote: > > All, > > Curious what people think about more thought and control going into who > can run the createsuperuser method? > > For example say there's models that I don't want anyone to touch except > myself as a superuser. Is it not

More controls on createsuperuser

2019-04-28 Thread JJ Zolper
All, Curious what people think about more thought and control going into who can run the createsuperuser method? For example say there's models that I don't want anyone to touch except myself as a superuser. Is it not plausible that even if I make a Django Group around that model that someone

Re: Django says a modification was made to Auth user when I didn't, and migration has a timestamp from the future. Help?

2018-06-21 Thread JJ Zolper
It's Jun 21 at 11:30 pm in my world fyi. On Thursday, June 21, 2018 at 11:34:50 PM UTC-4, JJ Zolper wrote: > > Hey everyone, > > So I did inherit this from someone else but I cannot phanthom how a change > to the django auth user would be maintained by git between developers. >

Django says a modification was made to Auth user when I didn't, and migration has a timestamp from the future. Help?

2018-06-21 Thread JJ Zolper
Hey everyone, So I did inherit this from someone else but I cannot phanthom how a change to the django auth user would be maintained by git between developers. For some reason when I run makemigrations it thinks the django auth user email field needs to be altered via migration? I'm so lost

Running a live Django site

2015-10-28 Thread JJ Zolper
All, In an effort to continue to push the Django community towards a point where we provide our developers with more information on how to run a live Django site, I would like to again share the High Performance Django Videos Kickstarter:

High Performance Django Videos Kickstarter

2015-10-23 Thread JJ Zolper
I was one of the original backers for the book and now the Lincoln Loop guys are doing some High Performance Django Videos. For anyone that can help us push this Kickstarter over the top that would be greatly appreciated.

Re: Okay so has nothing to do with programming, and everything to do with the future of Humanity

2015-07-21 Thread JJ Zolper
I do want to append to my remarks that I am very appreciative of some of the new documentation under performance, optimization, etc. I just think if say we could bring in some big guns that have dealt with big time websites in the wild that would be super dynamic for our community. People who

Re: Okay so has nothing to do with programming, and everything to do with the future of Humanity

2015-07-21 Thread JJ Zolper
Brandon, I think we may be talking about different aspects of running a website. Using a CMS is another topic in relation to what I was aiming for. I'm referring to the skills involved in managing the server infrastructure of a live website, not managing the content of a live website. I'm

Okay so has nothing to do with programming, and everything to do with the future of Humanity

2015-07-19 Thread JJ Zolper
I just want to put it out there that even if I have received a lot of negative vibes from the posts I have made, my only intention is that I aim to bring about a positive future for Django but also those who want to change the world with their website applications. Maybe some of the posts I

Re: Render Django Form with Ajax Response

2015-01-09 Thread JJ Zolper
For anyone who is curious how to make this work in the future (I always appreciate people sharing) I got lucky this time. There were absolutely no signals to what the issues is so I started guessing. It ended up being that because of the nature of the comment form being rendered with ajax it

Render Django Form with Ajax Response

2015-01-09 Thread JJ Zolper
So like expected i made the post form work by only rendering it once and then using hidden fields to make the form work for my 3 feeds so posted would be created properly but i am still not sure if conceptually i understand why when the comment form is rendered with ajax for a that it doesnt

Render Django Form with Ajax Response

2015-01-09 Thread JJ Zolper
I'm almost positive there is some way to achieve this though. For example, in a facebook group for example when you scroll it loads a new set of posts and those posts are loaded with ajax and those posts have a comment form that was again obviously rendered with ajax. My situation is the same

Re: Question on Template placement in file system

2015-01-09 Thread JJ Zolper
Generally speaking my impression is most people next to their settings.py file have a "templates" folder. This folder of templates is for templates used across the site. If you are talking app specific then a "templates" folder inside that app is reasonable enough. So for generic templates

Render Django Form with Ajax Response

2015-01-09 Thread JJ Zolper
the relevant streams requested and that all works but so far I simply cannot make the form submit properly. The form shows up based on the template that is rendered but it is a no go when it comes to form submission it appears. Thanks for your insights. JJ Zolper -- You received this message

Re: Any interest in a multi email field in django?

2014-12-01 Thread JJ Zolper
Lachlan, Oh I absolutely understand. Don't get me wrong I prefer Django to be as lightweight as possible, and leave out things that aren't really that necessary. I'm with you. I have also seen some ideas that I have turn into something people like and wish to pursue (rare but it has happened)

Re: Any interest in a multi email field in django?

2014-12-01 Thread JJ Zolper
Carl, Thanks so much for your help, this suggestion will help a lot. I actually wasn't really aware that this was even possible until now. Would explain why I wasn't sure if it could be done. Thanks again, JJ -- You received this message because you are subscribed to the Google Groups

Re: Any interest in a multi email field in django?

2014-12-01 Thread JJ Zolper
Carl, I went ahead and tried your implementation suggestion and I am at a point now that I am not sure what to do next: # Athlete Email class AthleteEmail(models.Model): athlete = models.ForeignKey(Athlete) email = models.EmailField(unique=True) verified =

Re: Any interest in a multi email field in django?

2014-12-01 Thread JJ Zolper
jango because the User Model is > easily extensible - giving you or others the opportunity to extend it > as you see fit and to release it the world as fle has. > > See here: > > > https://docs.djangoproject.com/en/1.7/topics/auth/customizing/#extending-the-existing-user-mode

Any interest in a multi email field in django?

2014-12-01 Thread JJ Zolper
dd multiple emails to then verify their identities but also use some for recovery of an account for example. Does anyone agree with me that they would like to see this functionality native in Django? Thanks for your time, JJ Zolper -- You received this message because you are subscribed to the Google

Re: Using login_required decorator

2014-12-01 Thread JJ Zolper
The best way to require login to certain url and view hooks is the: @login_required decorator. Let me show you how I have it setup: My "Profile" view is the profile a user sees once they are logged in to then have the ability to edit their information so obviously this needs to have the login

Re: migrate and runserver commands hang, there is no traceback, no clue yet why (1.7.1)

2014-10-25 Thread JJ Zolper
bles the migrations need to touch. Any possibility that’s what > happened here? > > Carl > > On Oct 25, 2014, at 2:23 PM, JJ Zolper <jzt...@gmail.com > > wrote: > > I really wish I could give some useful information in the terms of a > traceback so others may have an

Re: migrate and runserver commands hang, there is no traceback, no clue yet why (1.7.1)

2014-10-25 Thread JJ Zolper
s > on the tables the migrations need to touch. Any possibility that’s what > happened here? > > Carl > > On Oct 25, 2014, at 2:23 PM, JJ Zolper <jzt...@gmail.com > > wrote: > > I really wish I could give some useful information in the terms of a > traceback so o

migrate and runserver commands hang, there is no traceback, no clue yet why (1.7.1)

2014-10-25 Thread JJ Zolper
actly like that. It seems like some sort of infinite recursion or something similar it can't get out of it. It can't identify the issue it gets thrown through and so it sits there endlessly. And yes again I am using 1.7.1, I just updated the other day. Thanks a lot, JJ Zolper -- You received

We can do this!

2014-06-05 Thread JJ Zolper
Hey everybody, I really feel I could learn a lot from the experiences of developers working on high profile Django sites as I am working hard to begin that journey as well. And that is why I would love to have this project funded to 15k:

New feature suggestion, but probably late to the party.

2014-04-22 Thread JJ Zolper
quot;now migrating" shirt. Cheers to all, JJ Zolper -- 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 p

Re: Render User Selected Communities (as Checkboxes) in Multiple Choice Form

2013-11-27 Thread JJ Zolper
So I guess no one knows what to do? No one has ever dealt with the multiple choice field or multiple choice selections and the UX for it? On Tuesday, November 26, 2013 9:48:03 AM UTC-5, JJ Zolper wrote: > > > I know it's sort of a need by case basis but has anyone tried to do this >

Re: Render User Selected Communities (as Checkboxes) in Multiple Choice Form

2013-11-26 Thread JJ Zolper
I know it's sort of a need by case basis but has anyone tried to do this before? Has anyone tried to render the choices a user has selected previously by rendering checked check boxes on a multiple choice field? Thanks, JJ -- You received this message because you are subscribed to the

Re: Render User Selected Communities (as Checkboxes) in Multiple Choice Form

2013-11-24 Thread JJ Zolper
lhc/UpLdm7GcUOI/AAM/TRLzmzDMFjY/s1600/showingcommunities.png> I was so focused on posting the code I forgot to attach the pictures, now I'm putting them in. On Monday, November 25, 2013 12:13:57 AM UTC-5, JJ Zolper wrote: > > Hello, > > Hopefully it becomes clear as well

Render User Selected Communities (as Checkboxes) in Multiple Choice Form

2013-11-24 Thread JJ Zolper
Hello, Hopefully it becomes clear as well from my code but, here is what is going on. There is an Athlete registration form which has a long list of choices or communities in the form of a multiple choices that the user can select to then become a part of the communities they select. Then what

Re: Django 1.5 Feature Suggestion

2013-08-16 Thread JJ Zolper
ul 30, 2013 at 8:37 AM, JJ Zolper <codin...@gmail.com > > wrote: > >> Russell Keith-Magee, >> >> Are you the one who is doing "Getting Started With Django" ? Sorry for >> getting off topic but just was curious. If so I donated money to that >&

Why can't a Model have the same name as a View?

2013-08-08 Thread JJ Zolper
I'm by all means okay with going in and changing the names of the view or model to something slightly different so everything works, I just would like to understand conceptually why it is an issue? Thanks a lot, JJ Zolper -- You received this message because you are subscribed to the Goo

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
wrote: > > > On Tue, Jul 30, 2013 at 8:37 AM, JJ Zolper <codin...@gmail.com > > wrote: > >> Russell Keith-Magee, >> >> Are you the one who is doing "Getting Started With Django" ? Sorry for >> getting off topic but just was curious. If s

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
ultimately merged into Django? Thanks, JJ On Monday, July 29, 2013 9:07:43 PM UTC-4, Russell Keith-Magee wrote: > > > On Tue, Jul 30, 2013 at 8:37 AM, JJ Zolper <codin...@gmail.com > > wrote: > >> Russell Keith-Magee, >> >> Are you the one who is doing &quo

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
to help. JJ On Monday, July 29, 2013 9:07:43 PM UTC-4, Russell Keith-Magee wrote: > > > On Tue, Jul 30, 2013 at 8:37 AM, JJ Zolper <codin...@gmail.com > > wrote: > >> Russell Keith-Magee, >> >> Are you the one who is doing "Getting Started With Django

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
banged this out but I'm not sure I'm the best bet. However, I did go ahead and open a ticket: https://code.djangoproject.com/ticket/20824 Thanks again to all the Django developers for their hard work, JJ On Friday, July 26, 2013 9:21:04 PM UTC-4, Russell Keith-Magee wrote: > > > On F

Help needed with Django Slug Url Caveat

2013-07-06 Thread JJ Zolper
Hello fellow Django developers, I would like to request your assistance on a caveat I ran into when doing slugs in the django url's. First off please let me lay out what I've been building: Here are the internals of my urls.py: (r'^artists/register/$',

Re: Django & Ember

2013-06-08 Thread JJ Zolper
-ember-data-example > > Also I'm up for a pairing session or discussion over email if you decide > to jump in and need some pointers to get started > > Toran > tor...@gmail.com > > On Saturday, June 1, 2013 12:34:01 AM UTC-5, JJ Zolper wrote: >> >> Hello, >>

Django & Ember

2013-05-31 Thread JJ Zolper
solution for handling large amounts of data? Really any information would be wonderful, better than nothing for sure... I need high performance and power for processing quickly and giving the users a seamless experience and I'm wondering if this might be the ticket? Thanks so much, JJ Zolper -- You

2 Questions: Passing Filter Options to a View & Efficient QuerySet Evaluation

2013-05-26 Thread JJ Zolper
es extremely efficient would be great! If I have no given enough information I would be more then happy to dive into more detail on each specific thing. The django community is the best in my opinion so I'm willing to go the extra mile and try to explain myself more for the chance for more gre

Re: GeometryField.geography = True Syntax Help GIS Model

2012-11-03 Thread JJ Zolper
t done. > > https://docs.djangoproject.com/en/dev/ref/contrib/gis/tutorial/ > > If you are not familiar with geo concepts, I recommend to take a look at > http://geodjango.org/presentations/ > > Hope that helps you > > > > > On Fri, Nov 2, 2012 at 11:30 PM, JJ Z

Re: GeometryField.geography = True Syntax Help GIS Model

2012-11-02 Thread JJ Zolper
(max_length=50, GeometryField.geography = true) ??? On Saturday, October 20, 2012 1:22:32 PM UTC-4, JJ Zolper wrote: > > Hello everyone, > > So I've decided for my GeoDjango application I want WGS84 along with a > geography database column, rather than geometry. > > I was re

Geometry vs Geography Data Type for PostGIS PostgreSQL database

2012-10-20 Thread JJ Zolper
sion I would really appreciate it. Thanks so much, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/O81mWk74AocJ. To post to this group, sen

GeometryField.geography = True Syntax Help GIS Model

2012-10-20 Thread JJ Zolper
Hello everyone, So I've decided for my GeoDjango application I want WGS84 along with a geography database column, rather than geometry. I was reading here: https://docs.djangoproject.com/en/1.4/ref/contrib/gis/model-api/#geography

Re: Help getting my GeoDjango setup.

2012-10-18 Thread JJ Zolper
That's good advice! I forgot all about the tickets for a minute there on webfaction. I have just sent one. I just want to do it correctly because basically this database is going to have to handle everything I do. Thanks for helping to try and move my data. I'm just not that worried about

Re: Help getting my GeoDjango setup.

2012-10-17 Thread JJ Zolper
ing on your Postgres db before loaddata: > > =# delete from auth_group_permissions; delete from auth_permission; delete > from django_admin_log; delete from django_content_type; > > Hope that helps. > > > On Monday, October 15, 2012 11:04:02 PM UTC-5, JJ Zolper wrote: >> >&g

Help getting my GeoDjango setup.

2012-10-15 Thread JJ Zolper
y advice regarding the integration of GeoDjango into a current django project environment would be really useful! Thanks so much for your time. JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on th

Re: CSS not rendering on local server development

2012-10-02 Thread JJ Zolper
Off the top of my head I forget what kinks I ran into when trying to get CSS to load on my development server. I'll try and come up with things I remembered and let you know if I do. One thing in Chrome that I tend to have to do (probably why firefox is better in this case) is I have to clear

URL Hierarchy on a given page

2012-10-02 Thread JJ Zolper
en get the URL hierarchy above it (including the current page) and display that in a very quick and easy way to navigate through the website! Thanks so much for your time, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To vi

Re: Django on Bluehost

2012-09-29 Thread JJ Zolper
I hate to be that guy but... I was on Bluehost for a while but I just ended up deciding the benefits of switching to WebFaction far outweighed the benefits of staying on Bluehost as a Django user. If you're interested in joining WebFaction or hearing more about it feel free to send me an

Re: My "Contributors" page Conundrum

2012-09-22 Thread JJ Zolper
tor_page(request, contribname): > contrib_object = Contributor.objects.filter(name=contribname) > return render_to_response('contributor.html', {'Contributor': > contrib_object}, context_instance = RequestContext(request)) > > Then, in outputting your links, you can put the relevan

Re: My "Contributors" page Conundrum

2012-09-21 Thread JJ Zolper
Thanks Thomas. Now does anyone have any legitimate help? Because I'm stuck. Thanks, JJ On Thursday, September 20, 2012 8:53:59 PM UTC-4, Thomas wrote: > > On 9/20/12 5:28 PM, JJ Zolper wrote: > > Anyone have any ideas? > > Yes, Melvyn did. > > hth > >

Re: My "Contributors" page Conundrum

2012-09-20 Thread JJ Zolper
Anyone have any ideas? Thanks! JJ Zolper On Tuesday, August 28, 2012 2:24:03 AM UTC-4, Melvyn Sopacua wrote: > > On 28-8-2012 6:58, JJ Zolper wrote: > > > My problem is that I want each contributor to have their own separate > page. > > So if the first guys name

Re: My "Contributors" page Conundrum

2012-09-18 Thread JJ Zolper
, Melvyn Sopacua wrote: > > On 28-8-2012 6:58, JJ Zolper wrote: > > > My problem is that I want each contributor to have their own separate > page. > > So if the first guys name for some example is Mike Smith then if you > were > > to click his name for example

Re: My "Contributors" page Conundrum

2012-09-18 Thread JJ Zolper
Nick, Sorry my other very long posted vanished so I'm going to keep it shorter this time. So I was able to implement what you said. Thanks a lot! Only tricky part is I had to change my name in the database to "JJZolper" instead of "JJ Zolper" so that it could find me. So

Re: Customizing the Django Admin Interface

2012-09-17 Thread JJ Zolper
s changed how it is > works since they were written. > > Thanks > Derek > > On Sunday, 16 September 2012 08:25:18 UTC+2, JJ Zolper wrote: >> >> Hello, >> >> I was able to locate the Django files for the admin under contrib in the >> source. I was curious

Re: Customizing the Django Admin Interface

2012-09-17 Thread JJ Zolper
Pretty sure you're in the wrong thread bud. On Sunday, September 16, 2012 2:52:34 AM UTC-4, Gutso wrote: > > Hi Everyone, > > I have one query: > > Should we change the database(mySQL) table's engine through migration > scripts or not? If not then why? > > Following were my proposal: > > def

Re: Customizing the Django Admin Interface

2012-09-17 Thread JJ Zolper
s > would disappear as soon as you deploy or setup-up your project on a > different computer/virtual environment. > > Try F5, CTRL-F5 or CTRL-R to reload CSS in the browser as they are often > kept in cache. > > Best regards, > Hevok > > > On Sunday, September

Customizing the Django Admin Interface

2012-09-16 Thread JJ Zolper
. Is there some sort of collectstatic command that needs to be run? Any input on how to propagate these CSS files through would be great. Thanks, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion

My "Contributors" page Conundrum

2012-08-27 Thread JJ Zolper
Hello, I'm trying to develop a simple hyperlink between two pages. It sounds simple but it's a little bit more complex then that. Here is the template code that proceeds through the database of contributors: Contributors {% for Contributor in Contributors_List %}

Question about RSS Feeds and a Weblog

2012-08-21 Thread JJ Zolper
Hello, I'm considering the act of starting a weblog like the Django one here: https://www.djangoproject.com/weblog/ on my personal website. This might be a super noob question but does anyone know what that runs on? Is it indeed a "blog" underneath the hood? I've seen that Django has RSS

Re: I LOVE THIS COMMUNITY!

2012-08-21 Thread JJ Zolper
I agree too! On Tuesday, August 21, 2012 7:38:45 PM UTC-4, Peith wrote: > > i agree -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/eqKeF9UQshwJ. To post

Re: Issue Deploying Django

2012-08-11 Thread JJ Zolper
Thank you mark for the great response. Let me add on to the reason I started this thread for any who missed it. I need to be able to have the capability to install geospatial libraries such as GEOS, PROJ, PostGIS, and possibly GDAL. On my current host i do not have root privleges and so if for

Re: Setting APPEND_SLASH = False and PREPEND_WWW = True

2012-08-10 Thread JJ Zolper
Such a clean cut and knowledgeable answer. 10/10 thanks so much Russell! I'll make sure to add both to my settings file. Cheers, JJ On Thursday, August 9, 2012 10:50:26 PM UTC-4, Russell Keith-Magee wrote: > > On Fri, Aug 10, 2012 at 10:41 AM, JJ Zolper <codin...@gmail.com&

Re: Issue Deploying Django

2012-08-10 Thread JJ Zolper
may crop up without a good "open" system (such as a VPS, Cloud Server) > or a web host who explicitly supports Django. > > On Fri, Aug 3, 2012 at 10:18 AM, JJ Zolper <codin...@gmail.com > > wrote: > >> >Agreed that virtualenv will allow you to install pytho

Setting APPEND_SLASH = False and PREPEND_WWW = True

2012-08-09 Thread JJ Zolper
expected them and I don't want to go through my Django source trying to helplessly find it. Thanks a lot, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/dj

Re: Issue Deploying Django

2012-08-03 Thread JJ Zolper
ualenv and set your PREFIX. >> >> Either way, happy hacking! >> On Aug 1, 2012 8:32 PM, "JJ Zolper" <codinga...@gmail.com> wrote: >> >>> I'm trying to install GEOS and on my bluehost account under my >>> django_src folder and what happened

Re: Issue Deploying Django

2012-08-03 Thread JJ Zolper
;wrote: > You are trying to install packages system-wide when you don't have > credentials to do so. > > You can install everything you need without cluttering the system itself. > > For instance, use a virtualenv and set your PREFIX. > > Either way, happy hacking! > O

Re: Issue Deploying Django

2012-08-03 Thread JJ Zolper
really good support--I'd tell > them your use case and ask them if it would work with them. Even though > it's shared hosting, I do have ssh--though not root > > William > > > On Thu, Aug 2, 2012 at 6:03 PM, JJ Zolper <codinga...@gmail.com> wrote: > >> Yes it

Re: Issue Deploying Django

2012-08-02 Thread JJ Zolper
Yes it seems that way. Thats because its shared hosting and i dont have root privleges. bluehost has hindered what I can do with Django. But does a cloud server at rackspace have root privleges like a vps? because i think i need to install these geospatial libraries to be able to really make

Re: Issue Deploying Django

2012-08-01 Thread JJ Zolper
s. I feel like one was called "libpq-dev" actually. Thanks for the help. JJ On Wednesday, August 1, 2012 2:07:54 AM UTC-4, lawgon wrote: > > On Tue, 2012-07-31 at 20:52 -0700, JJ Zolper wrote: > > Do I need to go through and install the python like adapters is that &g

Re: Error in Brand New Django 1.4.1 released Yesterday

2012-07-31 Thread JJ Zolper
Nope. Not Python 1.4. Django 1.4. http://pypi.python.org/pypi/Django/1.4#downloads I ran the following commands in the python interpreter and saw the following: >>> import django >>> print django.get_version() 1.4 I'm good to go. Not sure if the 1.4.1 file off of djangoproject.com is in the

Re: Error in Brand New Django 1.4.1 released Yesterday

2012-07-31 Thread JJ Zolper
://www.djangoproject.com/download/ that's what I saw, 1.5. On Tuesday, July 31, 2012 3:45:50 AM UTC-4, James Bennett wrote: > > On Tue, Jul 31, 2012 at 2:42 AM, JJ Zolper <codinga...@gmail.com> wrote: > > What about if you download it from the link I put. > > When I said "I d

Re: Error in Brand New Django 1.4.1 released Yesterday

2012-07-31 Thread JJ Zolper
What about if you download it from the link I put. I mean I'm sure it's fine just pointing out that where I got it from it said 1.5 On Tuesday, July 31, 2012 3:30:31 AM UTC-4, James Bennett wrote: > > On Tue, Jul 31, 2012 at 2:15 AM, JJ Zolper <codinga...@gmail.com> wrote: > >

Error in Brand New Django 1.4.1 released Yesterday

2012-07-31 Thread JJ Zolper
Hello all, I didn't realize a new release was put out until something weird happened. I'm installing DJ on my production server now and when I was downloading a copy from https://www.djangoproject.com/download/ and installed it and went into python: >>> import django>>> print

Re: Models: Referencing A Model In Another App and Different Project

2012-07-29 Thread JJ Zolper
tty of mode/view/form construction? > > It seems there are an increasing number of "newbies" flocking to Django, > with perhaps little or no background in CS fundamentals, and guidelines > like these would be a good place to point them at! > > > On Thursday, 26 July 2012 0

Re: Models: Referencing A Model In Another App and Different Project

2012-07-28 Thread JJ Zolper
Okay well atleast im learning from my mistake! The reason I thought multiple projects was needed was because in each settings file I was tied to a database and i felt I need 5 databases. But it seems clear that i dont need that many projects. When you said "you should allocate webserver

Re: Models: Referencing A Model In Another App and Different Project

2012-07-26 Thread JJ Zolper
od luck, > > Michael > > > -Original Message- > From: django-users@googlegroups.com on behalf of JJ Zolper > Sent: Thu 7/26/2012 3:12 AM > To: django-users@googlegroups.com > Subject: Models: Referencing A Model In Another App and Different Project > > He

Models: Referencing A Model In Another App and Different Project

2012-07-25 Thread JJ Zolper
n't Repeat Yourself) methodolgy and try to reference the Artist database and do the actual processing in the discover application. Thanks a lot for your advice, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discuss

Re: Query Distances from User

2012-07-25 Thread JJ Zolper
I agree I can have the user input city and state and do a lat lon as a basic search and let the user put in their home address or pan on a map for an advanced search. However given the large amounts of data Im striving for pure speed and efficiency. By possibly deciding againist geolocation and

Re: Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
Artists project database and perform operations on it within my GeoDjango project. Thanks, JJ On Tuesday, July 24, 2012 11:48:06 AM UTC-4, JJ Zolper wrote: > > Hello fellow Django developers, > > So here is my model that interfaces with my Artists database: > > > > from

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
I apologize for posting more than once I just wanted to make changes. I appreciate the help in advance! JJ -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit

Re: Query Distances from User

2012-07-24 Thread JJ Zolper
I dont believe I said it wasnt supported. Currently I am interested in having the user have the flexibility to change and update their location manually so they can find results in their area. I dont believe geolocation is the answer for that. I have the user input city and state and use WGS84

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
n't Repeat Yourself) methodolgy and try to reference the Artist database and do the actual processing in the discover application. Thanks a lot for your advice, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view thi

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
n't Repeat Yourself) methodolgy and try to reference the Artist database and do the actual processing in the discover application. Thanks a lot for your advice, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view thi

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
n't Repeat Yourself) methodolgy and try to reference the Artist database and do the actual processing in the discover application. Thanks a lot for your advice, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view thi

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
ing to use Django's DRY (Don't Repeat Yourself) methodolgy and try to reference the Artist database and do the actual processing in the discover application. Thanks a lot for your advice, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users&quo

Re: Query Distances from User

2012-07-24 Thread JJ Zolper
Thank you for the great information! Currently I'm focused on my desktop browser platform but if I move to mobile I'll consider GeoLocation! JJ On Tuesday, July 24, 2012 10:56:34 AM UTC-4, Melvyn Sopacua wrote: > > On 15-7-2012 4:30, JJ Zolper wrote: > > > So i was thinking ma

Re: Query Distance from User

2012-07-16 Thread JJ Zolper
Just use Lat/Lon. You can fidget over which ojection to use later as long as your data is good. (WGS84 is the best btw) I agree lat long sounds beautiful to me! Well thats good. For geolocation, you can use the HTML5 Geolocation API that will use the person's browser to give you a location

Re: Query Distance from User

2012-07-16 Thread JJ Zolper
I absolutely agree! That sounds like a much better way to install postgis and the other various packages. No more fiddling with my configure issues. I will try installing all of it tomorrow. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Query Distance from User

2012-07-16 Thread JJ Zolper
So wait, Does UTM have to do with the timezones in the USA? Do some of the lines match to tomezone lines? You also never really answered my question before. Sure it sounds like you know what UTM is but I sure dont and thats all youre talking about. If this is about the timezones or whatever

Re: Query Distance from User

2012-07-15 Thread JJ Zolper
uch any > coordinate system and you get the results you want. No math involved. > > On Mon, Jul 16, 2012 at 2:12 AM, JJ Zolper <codinga...@gmail.com> wrote: > >> I'm also thinking since Northern VA is so big in terms of people if I get >> a good thing going here I can

Re: Query Distance from User

2012-07-15 Thread JJ Zolper
confuses me. Whats the benefit of the portion at the end? On Sunday, July 15, 2012 4:23:34 PM UTC-4, Dennis Lee Bieber wrote: > > On Sun, 15 Jul 2012 09:47:12 -0700 (PDT), JJ Zolper > <codinga...@gmail.com> declaimed the following in > gmane.comp.python.django.user: > > &

Re: Query Distance from User

2012-07-15 Thread JJ Zolper
ou > go through your db checking if any artist > are inside the limit of that circle. > > >> Thanks so much! >> >> JJ >> >> On Sunday, July 15, 2012 10:22:53 AM UTC-4, Nicolas Emiliani wrote: >>> >>> >>> >>> On Sun, Jul

Re: Query Distance from User

2012-07-15 Thread JJ Zolper
Awesome sounds like lat long is the way to go to be able to cover the entire US. And yeah im pretty good at math thanks for the tip Ill work on that soon! -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit

RE: Query Distance from User

2012-07-15 Thread JJ Zolper
Well as far as what I want to do I explained that above. User requests in all directions a circle spanse of 25 miles i.e. and theres a return of artists in that area. As far as the area I want to cover I would like to start with the northern virginia area and expand from there. A goal set for

  1   2   >