Re: I need help with Python Tools for Visual Studio 2010 and Django

2012-01-28 Thread JJ Zolper
and see if I can get input so I'm ready to go before I dive too deep into my development. Thanks to you and to everyone who has been very patient with me, given me so many tips, and stepped me through my setup! Much appreciation, JJ Zolper -- You received this message because you are

Re: I need help with Python Tools for Visual Studio 2010 and Django

2012-01-28 Thread JJ Zolper
ux and see if I can get input so I'm ready to go before I dive too deep into my development. Thanks to you and to everyone who has been very patient with me, given me so many tips, and stepped me through my setup! Much appreciation, JJ Zolper -- You received this message because you are

Re: I need help with Python Tools for Visual Studio 2010 and Django

2012-01-28 Thread JJ Zolper
and see if I can get input so I'm ready to go before I dive too deep into my development. Thanks to you and to everyone who has been very patient with me, given me so many tips, and stepped me through my setup! Much appreciation, JJ Zolper -- You received this message because you are

Re: I need help with Python Tools for Visual Studio 2010 and Django

2012-01-28 Thread JJ Zolper
and see if I can get input so I'm ready to go before I dive too deep into my development. Thanks to you and to everyone who has been very patient with me, given me so many tips, and stepped me through my setup! Much appreciation, JJ Zolper -- You received this message because you are

Re: I need help with Python Tools for Visual Studio 2010 and Django

2012-01-29 Thread JJ Zolper
Going forward I'll make sure to post only once. I don't use these Google Groups mailing lists that much besides the occasional community question so I'll make sure not to spam you all next time! : / Yes well I bought my laptop through my school (Virginia Tech) and we had a few options for engin

Re: I need help with Python Tools for Visual Studio 2010 and Django

2012-01-30 Thread JJ Zolper
I have never heard of Guess Additions thanks for the tip! Right now I am going to remove my Ubuntu installation and re-install to give it more RAM and Video memory as well as install guest Additions! Thanks, JJ -- You received this message because you are subscribed to the Google Groups "Dja

Re: I need help with Python Tools for Visual Studio 2010 and Django

2012-01-31 Thread JJ Zolper
Sam, Since I'm on Ubuntu know with my Python and Django I'm wondering which CPython I should download? I saw stackless python on the python.org site but I'm not sure if that's what CPython version I would need. I thought there was a standard CPython? Any help about my interpreter for Python on

CSRF verification failed. Request aborted.

2012-07-09 Thread JJ Zolper
fairly new to even 'POST' and 'GET' operations so I apologize haha. Anyways, I see the CSRF error and I was confused because i recall that having to do with security? An open operation from submission to a redirect page? I'm not sure. All I wanted to accomplish was to be a

Form 'POST' to a database

2012-07-10 Thread JJ Zolper
I honestly just have a general question. If I have one database set in my settings file in settings.py and I try to execute a simple HTML Form using 'POST' how do I get that data into my PostgreSQL database? In my view do I have to interface with my model and thus the model takes care of the r

Re: Form 'POST' to a database

2012-07-11 Thread JJ Zolper
base. Thanks, JJ On Wednesday, July 11, 2012 12:31:44 AM UTC-4, Lee Hinde wrote: > > > On Jul 10, 2012, at 8:48 PM, JJ Zolper wrote: > > I honestly just have a general question. > > If I have one database set in my settings file in settings.py and I try to > execute a

Re: CSRF verification failed. Request aborted.

2012-07-11 Thread JJ Zolper
you redirect (HttpResponseRedirect) to url, but > render (render_to_response) template with context > > also I changed action for form in tempalte to /about/ to handle POST and > GET requests in same view > > hope this helps > > 2012/7/10 JJ Zolper > >> Here is

Re: CSRF verification failed. Request aborted.

2012-07-11 Thread JJ Zolper
ontext_instance=RequestContext(request)) >> else: >> raise Http404() >> >> note that you redirect (HttpResponseRedirect) to url, but >> render (render_to_response) template with context >> >> also I changed action for form in tempalte to

Re: CSRF verification failed. Request aborted.

2012-07-11 Thread JJ Zolper
>>> the template, instead of Context. >>> your view should looks like >>> >>> def about(request): >>> if request.method == 'POST': >>> return HttpResponseRedirect('/about/') >>> elif request.method == &

Re: CSRF verification failed. Request aborted.

2012-07-11 Thread JJ Zolper
nse('page.html', {'form': form}) > >>> > >>> and it works! > >>> May be problem in your views.py? > >>> > >>> > >>> 2012/7/10 Сергей Фурсов > >>>> > >>>> as d

Re: Form 'POST' to a database

2012-07-11 Thread JJ Zolper
es? requesting the data form request.POST and then that variable.save() to store it in the database? JJ On Wednesday, July 11, 2012 12:31:44 AM UTC-4, Lee Hinde wrote: > > > On Jul 10, 2012, at 8:48 PM, JJ Zolper wrote: > > I honestly just have a general question. > > If I hav

Re: Form 'POST' to a database

2012-07-11 Thread JJ Zolper
I was able to make it work! from django.core.context_processors import csrf from django.template import RequestContext from django.http import HttpResponseRedirect from django.http import HttpResponse from django.shortcuts import render_to_response from MadTrak.manageabout.models import AboutMadtr

Re: Form 'POST' to a database

2012-07-11 Thread JJ Zolper
gest leveraging modelforms when ever possible - it saves > time and nerves. You get all the validation and other goodies for free. > > On Wed, Jul 11, 2012 at 8:09 PM, Dennis Lee Bieber > wrote: > >> On Wed, 11 Jul 2012 08:36:39 -0700 (PDT), JJ Zolper >> declaimed

Re: Form 'POST' to a database

2012-07-11 Thread JJ Zolper
> obj.attributea = request.POST['attributea'] > obj.attributeb = request.POST['attributeb'] > obj.save() > return HttpResponse(validparamshere) > except ObjectDoesNotExist: > return HttpResponse(show_some_error) > &g

Django 1.3 to 1.4

2012-07-11 Thread JJ Zolper
I made the mistake of not deleting the previous django files before I installed django 1.4 When I run: >>> import django >>> print(django.get_version()) 1.4 I see that. I'm sure I'm going beyond naive here but I just didn't want to assume that my django would be fine if I didn't uninstall 1.3

Re: Django 1.3 to 1.4

2012-07-11 Thread JJ Zolper
b/utils.py", line 51, in load_backend raise ImproperlyConfigured(error_msg) django.core.exceptions.ImproperlyConfigured: 'postgresql_psycopg2' isn't an available database backend. Try using django.db.backends.postgresql_psycopg2 instead. Error was: No module named postgresql_psycopg2.base On Wednesday, J

Tasking? A fluid user experience with Uploading Media.

2012-07-13 Thread JJ Zolper
blem to solve would be great. I'm looking for a logical, efficient but also fairly fast way to go about trying to head up these tasks to allow for a good user experience. Thanks for your time, JJ Zolper -- You received this message because you are subscribed to the Google Groups &quo

Re: Form 'POST' to a database

2012-07-13 Thread JJ Zolper
x27;POST': > form = MyForm(request.POST) > if form.is_valid(): > form.save() > return HttpResponseRedirect("/some/result/form") > else: > form = MyForm() > return HttpResponse("form/form.html", { 'for

Query Distances from User

2012-07-14 Thread JJ Zolper
will use the users location and last known GeoIP of the artist for example. I was curious if anyone had any ideas or better ideas then I had. Thanks so much, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this dis

Query Distance from User

2012-07-14 Thread JJ Zolper
because it will use the users location and last known GeoIP of the artist for example. I was curious if anyone had any ideas or better ideas then I had. Thanks so much, JJ Zolper -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Query Distance from User

2012-07-15 Thread JJ Zolper
n the same area > so I don't wanna get myself in trouble here :) > > On Sun, Jul 15, 2012 at 12:58 AM, JJ Zolper wrote: > >> So heres my goal: >> >> The user logins in and goes to a discover page. They enter a distance >> from their location as the reques

Re: Query Distance from User

2012-07-15 Thread JJ Zolper
y if that data checks out they get and even more accurate representation of the artists in their area. Any thoughts or opinions on how you think I should go about this? 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
I appreciate the input! I've given the whole GeoIP and geolocation idea some thought and for me I think I've decided for my desktop version to steer clear of those sort of options for the time being. Why? Well I want their to be extreme flexibility but also very accurate information. What do I m

Re: Query Distance from User

2012-07-15 Thread JJ Zolper
Thanks for the tip! I will keep record of this! On Sunday, July 15, 2012 11:31:40 AM UTC-4, Markus Gattol wrote: > > I can also recommend https://github.com/HPNeo/gmaps as a wrapper, speeds > up and simplifies dealing with Google's API a lot. > > On Sunday, 15 July 2012 17:30:16 UTC+2, Markus Gat

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 t

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
a circle and with some basic math you > 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: >>> >>>

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

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-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 th

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

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

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

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
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/django-users/-

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

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

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: Models: Referencing A Model In Another App and Different Project

2012-07-26 Thread JJ Zolper
two applications into one > project. > > good 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 Mode

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-29 Thread JJ Zolper
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

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 django.get_versio

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

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
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 ri

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

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-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
> it said cannot create directory permission denied so i tired sudo make >>> install after what I had just done ( "make" ). >>> >>> and then it said whats in the second image. >>> >>> When I tried to run: >>> >>> ./manage.py r

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

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

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 feeds

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 %} http://www.madtrak.com/a

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

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
Django has 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 w

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: My "Contributors" page Conundrum

2012-09-18 Thread JJ Zolper
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 for some example is Mike Smith then if you > were > > to click his name for ex

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-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-22 Thread JJ Zolper
take that parameter and look up the relevant > contributor and make the view generic to something like: > > def contributor_page(request, contribname): > contrib_object = Contributor.objects.filter(name=contribname) > return render_to_response('contributor.html', {'Cont

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 e-m

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

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: Help getting my GeoDjango setup.

2012-10-17 Thread JJ Zolper
itial-data flag. Otherwise, you may need to > run something like the following 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. > > >

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 movi

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 GeometryField.geography

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

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. > >

Re: GeometryField.geography = True Syntax Help GIS Model

2012-11-03 Thread JJ Zolper
get it 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,

Installation of Django

2011-11-24 Thread JJ Zolper
Hello, I am new to Django! I was able to download and install: Python 2.7.2 x86 64 on my Windows 7 64 bit machine. I think that is all that I will need to execute the command line? I installed Python to C:/Python27 as the program intended. I then downloaded: Django-1.3.1.tar.gz file and was try

Re: Installation of Django

2011-11-24 Thread JJ Zolper
. :/ Cheers JJ On Nov 24, 10:37 am, Tom Evans wrote: > On Thu, Nov 24, 2011 at 5:00 AM, JJ Zolper wrote: > > Hello, > > > I am new to Django! I was able to download and install: Python 2.7.2 > > x86 64 on my Windows 7 64 bit machine. I think that is all that I will > &g

Re: Installation of Django

2011-11-24 Thread JJ Zolper
will handle the rest. Just a suggestion. > > -- > Joey "JoeLinux" Espinosa > Software Developerhttp://about.me/joelinux > On Nov 24, 2011 10:37 AM, "Tom Evans" wrote: > > > > > > > > > On Thu, Nov 24, 2011 at 5:00 AM, JJ Zolper wrote:

Re: Installation of Django

2011-11-24 Thread JJ Zolper
5:06 UTC, JJ Zolper wrote: >> >> JoeLinux, >> >> Oh interesting. It seems the 64 bit version is sort of unclear. Any >> help there? >> >> Would I be able to install my Python is well with a smaller command? I >> am back at ground zero because I had to

Re: Basic installation

2011-11-25 Thread JJ Zolper
Dont worry that it was hard to understand just how to set it up. I had a tough time understanding the directions too! - JJ On Nov 24, 2011, at 11:59 PM, Timothy Makobu wrote: > Install setup tools http://pypi.python.org/pypi/setuptools/0.6c11 > Go to the command line (cmd.exe) and type > ea

Re: Basic installation

2011-11-25 Thread JJ Zolper
u are installing django using > one version of python and trying to use it running another version of > python and that would explain your current difficulties.. > > On 11/25/11, JJ Zolper wrote: > > Dont worry that it was hard to understand just how to set it up. I had a > >

Re: Installation of Django

2011-11-25 Thread JJ Zolper
ot needed by django, but very useful, as you >       will see when you come to running "python manage.py shell" > > That's all! > > > > > > > > On Fri, Nov 25, 2011 at 3:59 AM, JJ Zolper wrote: > > Okay just so everyone knows! > > > I w

Re: Basic installation

2011-11-25 Thread JJ Zolper
I was able to install Python 2.7 64-bit for Windows 7. I then downloaded the ez_setup.py and ran it. It installed the .egg file. I then attemped the Python command line: - easy_install django - easy_install ipython However I had no success installing the packages. I posted my error output on my

Re: Basic installation

2011-11-25 Thread JJ Zolper
files were copied to the Python27 directory... or so I believe. http://madtrak.com/isitdone.png So yes did I make it work and install correctly? JJ On Nov 25, 11:21 am, Tom Evans wrote: > On Fri, Nov 25, 2011 at 4:12 PM, JJ Zolper wrote: > > I was able to install Python 2.7 64-bit fo

Re: Basic installation

2011-11-25 Thread JJ Zolper
copied to the Python27 directory... or so I believe. http://madtrak.com/isitdone.png So yes did I make it work and install correctly? JJ On Nov 25, 11:21 am, Tom Evans wrote: > On Fri, Nov 25, 2011 at 4:12 PM, JJ Zolper wrote: > > I was able to install Python 2.7 64-bit for Windows 7. I

Re: Installation of Django

2011-11-25 Thread JJ Zolper
key > > I think before starting django, you might want to spend a bit of time > playing with python.   My students liked "coding bat", but there > should be a number of tutorials on the web. > > On 11/25/11, JJ Zolper wrote: > > > > > > > >

Re: Installation of Django

2011-11-25 Thread JJ Zolper
all! > > > > > > > > On Fri, Nov 25, 2011 at 3:59 AM, JJ Zolper wrote: > > Okay just so everyone knows! > > > I was able to extract the .tar file and I now see the files. > > > In order to import these files correctly should I place these files in t

Re: Installation of Django

2011-11-25 Thread JJ Zolper
running "python manage.py shell" > > That's all! > > > > > > > > On Fri, Nov 25, 2011 at 3:59 AM, JJ Zolper wrote: > > Okay just so everyone knows! > > > I was able to extract the .tar file and I now see the files. > > > In order to

Re: Installation of Django

2011-11-25 Thread JJ Zolper
at 1:20 PM, Timothy Makobu wrote: > Hi, you're welcome. > > Easy install is usually in C:\Python27\Scripts > > you can go there from within cmd.exe and run "easy_install.exe ipython" > It should work. > > > On Fri, Nov 25, 2011 at 7:56 PM, JJ Zolper wrot

Re: Installation of Django

2011-11-26 Thread JJ Zolper
gt; > This link shows you how: > http://geekswithblogs.net/renso/archive/2009/10/21/how-to-set-the-windows-path-in-windows-7.aspx > > > > > On Sat, Nov 26, 2011 at 12:49 AM, JJ Zolper wrote: > >> Tim, >> >> Okay I was able to get something to go there.

Re: Installation of Django

2011-11-26 Thread JJ Zolper
Looks like I am in good shape! Thanks so much man! http://madtrak.com/success.png JJ On Sat, Nov 26, 2011 at 1:51 PM, JJ Zolper wrote: > Thanks! Yes sounds like something from my UNIX class. I have now added it. > > What will django-admin.py do for me? Oh are you just saying I c

  1   2   >