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 p

DB Router default issue

2020-07-10 Thread JJ Zolper
27;mydb'. I can specify 'mydb' and it says it works: python manage.py migrate --database=mydb but my concern is it always migrates into default even when I'm trying to tell it not to. In the future there will be models I do want to migrate into default, but not these i

Re: Django ContentTypes required?

2020-07-10 Thread JJ Zolper
anything that would have made a difference. Or should have. The app was not included, etc. Best, JJ On Monday, July 6, 2020 at 8:26:26 PM UTC-4, Dan Madere wrote: > > I agree that it should work. Django uses ContentType in the admin and user > authentication, but you mention that you hav

DB Router default issue

2020-07-10 Thread JJ Zolper
db == 'mydb'. I can specify 'mydb' and it says it works: python manage.py migrate --database=mosaic but my concern is it always migrates into default even when I'm trying to tell it not to. In the future there will be models I do want to migrate into default, but not thes

Django ContentTypes required?

2020-07-06 Thread JJ Zolper
rib.staticfiles', 'rest_framework', Was trying an attempt where I avoided migrating contenttypes into a legacy database. Best, JJ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop rec

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.

More controls on createsuperuser

2019-04-28 Thread JJ Zolper
sonal information somewhere when that should only be typed in. Open to ideas and thoughts, mostly just curious what could be a good answer. Best, JJ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

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
mething to migrate after it's been wiped clean. Thanks for your help. I'm out of ideas. Best, JJ -- 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 e

Re: Django custom auth_user_model error

2016-05-17 Thread JJ Williamson
I'm still a bit of a noob but I say you go back to default settings and create another model which has a OnetoOne relationship with the User model that way you can add additional fields about a user account & etc and not break things on the backend. from django.contrib.auth.models import User

Running a live Django site

2015-10-28 Thread JJ Zolper
-performance-django-videos If you are able to become a backer please do. We need to continue to push Django towards being the ultimate web developer platform. Thanks, JJ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

High Performance Django Videos Kickstarter

2015-10-23 Thread JJ Zolper
rategy General Linux configuration and server hardening Thanks to all, JJ -- 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...@goo

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

2015-07-21 Thread JJ Zolper
know first hand what to do with subjects such as load balancing, sharding, server crashes, scaling, monitoring, and every other fun thing one must deal with out in the wild. Thanks to all. <3 JJ -- You received this message because you are subscribed to the Google Groups "Django user

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

2015-07-21 Thread JJ Zolper
For client vs server side you would use AJAX / Javascript on the client and Django on the server side. The scores thing is something you will have to do some research on first. Learn the basics before you try to run. JJ -- You received this message because you are subscribed to the Google Grou

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

2015-07-19 Thread JJ Zolper
t of Django no matter what it has seemed to some. Thanks again, JJ -- 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.c

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 did

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 wor

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 si

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 her

Render Django Form with Ajax Response

2015-01-09 Thread JJ Zolper
es ajax to load 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 receiv

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

2014-12-01 Thread JJ Zolper
e best approach but that's how i think. When I have an idea i just go and come back later and refine. But you're totally right I should follow suit in terms of what django does on the athleteurl field. Thanks for the continued input, I've enjoyed the discussion. JJ -- You re

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 Goo

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

2014-12-01 Thread JJ Zolper
he current or logged in user profile and then for looping over those items in a form. To me that would be the way that then I could dynamically show them all emails they have and allow them to edit them. I believe if I could implement this I could figure out how to do the rest that I need.

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

2014-12-01 Thread JJ Zolper
use case could be a standard feature that is shipped, that's really all this is about. For the time being I am trying basically your route and am doing things as an extension of what already exists. Thanks a lot, JJ On Monday, December 1, 2014 8:05:41 PM UTC-5, Lachlan Musicman wrote: &

Any interest in a multi email field in django?

2014-12-01 Thread JJ Zolper
l as allow them to add 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

Re: Using login_required decorator

2014-12-01 Thread JJ Zolper
ss a restricted page when they are not logged in: https://docs.djangoproject.com/en/1.7/ref/settings/#std:setting-LOGIN_URL Once you review all this you will have a much cleaner and more concise implementation across your site. Cheers, JJ On Monday, December 1, 2014 6:59:00 PM UTC-5, Root

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

2014-10-25 Thread JJ Zolper
;t have to even think about this if improvements are made to this situation. I might follow option 1 with giving it migrations outside the app's own module, but for the time being my quick fix is leaving my athlete app unmigrated, whereas everything else is. JJ On Saturday, October 25, 2

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

2014-10-25 Thread JJ Zolper
ed to migrate but again it hangs there. As you can see so far I'm in a pretty big bind, I wish I had any sort of lead on this issue. Feel free to ask me for any other code etc or do any sort of method or operation to hopefully shed more light on this. Thanks a lot, JJ On Saturday, October

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

2014-10-25 Thread JJ Zolper
ied migrations dependency algorithm to avoid possible infinite recursion. on the new release notes: https://docs.djangoproject.com/en/1.7/releases/1.7.1/ and it honestly seems to sound exactly like that. It seems like some sort of infinite recursion or something similar it can't get out

We can do this!

2014-06-05 Thread JJ Zolper
unds to every single Django project I have come across and I think we can do this! Take it easy everyone, JJ -- 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 e

New feature suggestion, but probably late to the party.

2014-04-22 Thread JJ Zolper
y django 1.7 "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...@googleg

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 t

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 wel

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

2013-11-24 Thread JJ Zolper
tion every time I want to add a community I would have to add more fields on the model, when I'd prefer to just add to my ATHLETECOMMUNITIESCHOICES the new communities. I've been trying a lot but I really can't seem to find a resource that helps me simply just render what options we

Re: Django 1.5 Feature Suggestion

2013-08-16 Thread JJ Zolper
e was created it was fairly simple to "rename" the necessary parts so that it would operate as desired. Maybe this package could be reviewed, and moved into the contrib app like you said? Thanks, JJ On Monday, July 29, 2013 9:07:43 PM UTC-4, Russell Keith-Magee wrote: > > > On T

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

2013-08-08 Thread JJ Zolper
entirely separate entities? 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 be

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
My apologies for not making this quickly accessible. I meant to stick the link in there but it didn't make it into my previous post. It's been a long day. Here it is: https://github.com/Liberationtech/django-libtech-emailuser JJ On Monday, July 29, 2013 9:07:43 PM UTC-4, Russell K

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
verified, and 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 > > wrote: > >> Russell Keith-Magee, >> >> Are you the one who is doing "Getti

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
nating support will be critical if you are able 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 > > wrote: > >> Russell Keith-Magee, >> >> Are you the one who is doing "G

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
think might have already 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-

Help needed with Django Slug Url Caveat

2013-07-06 Thread JJ Zolper
be able to have it is I originally had it. I like how clean it is. I strongly desire the situation where I can host all the registration, login, logout, and any other systems that I desire following the artists/ but also want to be able to also cleanly host all artists usernames following the arti

Re: Django & Ember

2013-06-08 Thread JJ Zolper
page and handling it with ajax of sorts is a good decision. Thanks, JJ On Saturday, June 1, 2013 9:30:23 PM UTC-4, Toran Billups wrote: > > My small software company has a team of 4 python devs and we started using > ember earlier this year (here are a few things we learned alon

Django & Ember

2013-05-31 Thread JJ Zolper
like a powerful 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,

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

2013-05-26 Thread JJ Zolper
example. So any advice on how to make my chained queries 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

Re: GeometryField.geography = True Syntax Help GIS Model

2012-11-03 Thread JJ Zolper
true) I cannot find an single example where we specify that we want the geography type to be used instead of using geometries. All I need to know is if that is right? Is it a capitalized "true" so "TRUE" ? Thanks so much, JJ On Friday, November 2, 2012 10:15:40 PM UTC-4, Dum

Re: GeometryField.geography = True Syntax Help GIS Model

2012-11-02 Thread JJ Zolper
Field(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. > >

Geometry vs Geography Data Type for PostGIS PostgreSQL database

2012-10-20 Thread JJ Zolper
If you could help me resolve my confusion 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/-/O81m

GeometryField.geography = True Syntax Help GIS Model

2012-10-20 Thread JJ Zolper
h=30) country = models.CharField(max_length=50) website = models.URLField() objects = models.GeoManager() def __unicode__(self): return self.name Thanks so much, JJ -- You received this message because you are subscribed to the Google Groups "Django user

Re: Help getting my GeoDjango setup.

2012-10-18 Thread JJ Zolper
ried about moving the data. JJ On Thursday, October 18, 2012 4:07:11 PM UTC-4, smcoll wrote: > > Last i checked, WebFaction will set up a database for you with the PostGIS > template if you submit a ticket to support. i bet they could also point to > you some documentation or a forum

Re: Help getting my GeoDjango setup.

2012-10-17 Thread JJ Zolper
ostgis database right? How do I then utilize GDAL, PROJ.4, and GEOS if my database gets set up as postgis? Thanks for sticking it out through all the questions. I'm really not sure how to do this and what's the best way. Thanks! JJ On Tuesday, October 16, 2012 10:57:58 AM UTC-4, smc

Help getting my GeoDjango setup.

2012-10-15 Thread JJ Zolper
emove my old one? If I do this is the idea that I have those extra features that I need in my spatial database for GeoDjango and I then have the option on when to use that functionality within each django app I build? Any advice regarding the integration of GeoDjango into a current django projec

Re: CSS not rendering on local server development

2012-10-02 Thread JJ Zolper
clear my browsing data. That way the files propagate through to my browser. Here's how to do that: http://www.wikihow.com/Clear-Your-Browser's-Cache#Chrome_v10_.2B Did you run python manage.py collectstatic? and restart your local development server with python manage.py runserver?

URL Hierarchy on a given page

2012-10-02 Thread JJ Zolper
desired. It would then 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 user

Re: Django on Bluehost

2012-09-29 Thread JJ Zolper
an e-mail at jzth...@gmail.com and I can tell you more about it. If you feel that it suits what you want to do better I would be happy if you listed me as an affiliate! (Which I can explain if the time comes) See ya later. JJ On 09/24/2012 12:21 AM, Zach wrote: Hey everyone, I have recently

Re: My "Contributors" page Conundrum

2012-09-22 Thread JJ Zolper
te: {{ Contributor.website }} {% endfor %} {% endblock %} Thanks again for the great advice. Currently this is my best implementation of my about contributor page. I really appreciate your kind words and help when doing this. If there is a better way I'm all ears! But this is what I'

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
Melyvn, Thanks for the tip but I'm still having trouble understand how to make this work. If you see the post I sent to Nick that should explain my problem in enough detail. Maybe you can give some advice or any example of some sort? Thanks, JJ On Tuesday, August 28, 2012 2:24:03 AM

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.

Re: Customizing the Django Admin Interface

2012-09-17 Thread JJ Zolper
other then that text change and the colors I'm not sure what you are asking? What is: I cannot seem to find the source text, for example, for "Select ... to change" and would appreciate seeing/knowing how you did it. referring to? JJ On Monday, September 17, 2012 3:09:26 AM UTC

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 for

Re: Customizing the Django Admin Interface

2012-09-17 Thread JJ Zolper
Hevok so what are the steps for doing this? Sure I know where the admin files are located but once I have copied them does magic just happen and Django uses my new configurations? Thanks, JJ PS. apparently after I left my website alone for a little the CSS propagated through and now I see

Customizing the Django Admin Interface

2012-09-15 Thread JJ Zolper
my server. 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 d

Re: Output of form in Extjs

2012-09-05 Thread JJ
etion yet, but the broader aim still stands -- rather > than try an encode every possible output format, we'd like to move to > a place where an end user can plug in any output format. To that end, > your ext2js renderer would be an end-user plugin, rather than > something bui

Output of form in Extjs

2012-09-04 Thread JJ
Hi all, I created parse django to extjs in modelforms and forms. Basically works as form.as_p but is form.extjs_output. I mapped all widgets fields to extjs. I would like to submit this code to django-project. What do you think? Thank you. João Júnior -- You received this message because you a

My "Contributors" page Conundrum

2012-08-27 Thread JJ Zolper
ects.filter(name='Mike Smith') return render_to_response('mikesmith.html', {'Contributor': mikesmith}, context_instance = RequestContext(request)) I have that repeated for each and every contributor. This goes againist Django's DRY mentality so I have a feeling

Question about RSS Feeds and a Weblog

2012-08-21 Thread JJ Zolper
that Django has RSS feeds and that sounds cool too so I wasn't sure if that's what the above link runs on? Any input on going about a sort of "timeline" esque page with entries similar to the one of above would be great! JJ -- You received this message because you are subscr

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
being the right choice. Thanks to everyone for their time! JJ -- 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/-/7hRN8BTNc6UJ. To post to this g

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 > > wrote: > >

Re: Issue Deploying Django

2012-08-10 Thread JJ Zolper
headaches > that 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 > > 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/m

Re: Issue Deploying Django

2012-08-03 Thread JJ Zolper
PM UTC-4, trevorj 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

Re: Issue Deploying Django

2012-08-03 Thread JJ Zolper
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! > On Aug 1, 2012 8:32 PM, "

Re: Issue Deploying Django

2012-08-03 Thread JJ Zolper
--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 wrote: > >> Yes it seems that way. Thats because

Re: Issue Deploying Django

2012-08-02 Thread JJ Zolper
forward progress with my site. I bought this hosting at bluehost a while ago but i didnt know as much as i do know about django and what i need etc so im thinking a new host. Either slicehost, maybe a cloud server, something like that with full control like root. JJ -- You received this

Re: Issue Deploying Django

2012-08-01 Thread JJ Zolper
discussions. 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 i

Re: Error in Brand New Django 1.4.1 released Yesterday

2012-07-31 Thread JJ Zolper
goproject.com is in the right shape so I went with what I knew, 1.4. Cheers, JJ -- 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/-/PprM-ZVPHDsJ. To

Re: Error in Brand New Django 1.4.1 released Yesterday

2012-07-31 Thread JJ Zolper
file from https://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 wrote: > > What about if you download it from the link I put. > > When I said "I down

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 wrote: > >>>&

Error in Brand New Django 1.4.1 released Yesterday

2012-07-31 Thread JJ Zolper
the brand new release? Cheers to all! JJ -- 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/-/sN647bh67AAJ. To post to this group, send email to dj

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

2012-07-29 Thread JJ Zolper
"As a general remark related to the issues that JJ has described... are there perhaps - or rather, should there be - pointers from the Django site that discuss some good practices to the overall approach of designing and building sites/projects/apps/databases - as opposed to the tech

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 locatio

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

2012-07-26 Thread JJ Zolper
Artist project? If it makes sense what I'm doing (Querying the Artist database in the Artist project with the GeoDjango cod) then what do you reccomend I do? Thanks, JJ On Thursday, July 26, 2012 9:14:08 AM UTC-4, (unknown) wrote: > > I'm not sure whether there is a good solut

Models: Referencing A Model In Another App and Different Project

2012-07-25 Thread JJ Zolper
am striving 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 &q

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
data in my 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: > > >

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 https://groups.google.com/d/msg/dj

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 i

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
am striving 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 Group

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
am striving 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 Group

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
am striving 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 Group

Discovering Artists through GeoDjango by referencing my Artists database

2012-07-24 Thread JJ Zolper
. Any input is welcome. I am striving 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 subsc

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 t

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 us

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
^2 +y^2 = 25 mi ^2? Sorry if i seem slow. Still new to this. JJ -- 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/-/yUDYlBFabCgJ. To post to this g

Re: Query Distance from User

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

Re: Query Distance from User

2012-07-15 Thread JJ Zolper
out meters 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 > declaimed the following in > gmane.comp.python.django.user: > > > > First the use

  1   2   3   >