Re: Django version 4.2.5 not path in Windows 10

2023-09-20 Thread Agbeniga Ambali
ure that Django is correctly installed on your system. You >> can do this by opening a command prompt and running the following command: >> python -m django --version >> >> 2. Add Django to the PATH: >> To access Django globally from the command line, you need to ad

Re: Django version 4.2.5 not path in Windows 10

2023-09-20 Thread Agbeniga Ambali
have not solved it, I believe this will work. > > 1. Verify Django Installation: > First, make sure that Django is correctly installed on your system. You > can do this by opening a command prompt and running the following command: > python -m django --version > > 2. Add Dj

Re: Django version 4.2.5 not path in Windows 10

2023-09-19 Thread Agbeniga Ambali
If you have not solved it, I believe this will work. 1. Verify Django Installation: First, make sure that Django is correctly installed on your system. You can do this by opening a command prompt and running the following command: python -m django --version 2. Add Django to the PATH: To access

Django version 4.2.5 not path in Windows 10

2023-09-17 Thread Mehran Aliyari
Hello Sorry, Django version 4.2.5 is installed in Windows 10, but the path is not available. How can I fix this, please help me. I just started, but I still haven't passed the path stage, please help me -- You received this message because you are subscribed to the Google Groups "Dj

Re: save_model doesn't run on Django version 4

2022-09-13 Thread Mike Kilmer
One thing I'm not sure of it, how to tell if a particular Admin page is triggering a particular Admin instance. On Tuesday, September 13, 2022 at 11:27:54 AM UTC-5 Mike Kilmer wrote: > After having upgraded from Django 3 to 4 the save_model() method isn't > running, though the form it imports d

save_model doesn't run on Django version 4

2022-09-13 Thread Mike Kilmer
After having upgraded from Django 3 to 4 the save_model() method isn't running, though the form it imports does. ``` class MyCoolMapAdmin(SuperUserChangeOnlyMixIn, FilterByOwnerAdmin): form = MyCoolModelForm print("this prints on app initialization") def save_model(self, request,

hello everyone please can someone help me with my problem is very important please Environment: Request Method: GET Request URL: http://127.0.0.1:8000/user/ Django Version: 4.0.4 Python Version: 3

2022-04-30 Thread ray nkamwa
ogle.com/d/msgid/django-users/afc98569-1c64-4322-a533-d62a1a297115n%40googlegroups.com. Environment: Request Method: GET Request URL: http://127.0.0.1:8000/user/ Django Version: 4.0.4 Python Version: 3.10.4 Installed Applications: ['django.contrib.admin',

Re: Django Version to be used on for Windows Server 2016 and MS SQL 2016

2019-09-03 Thread Daniel Angel
[image: image.png] *settings* DATABASES = { 'default': { 'ENGINE': 'sql_server.pyodbc', 'NAME': 'PRUEBA_PYTHON_DJANGO', 'HOST': ' MSSQLSERVER_2014', 'USER': 'sa', 'PORT': '1433', 'PASSWORD': '@d', 'OPTIONS': { 'driver': '

Re: Django Version to be used on for Windows Server 2016 and MS SQL 2016

2019-09-03 Thread RONAK JAIN
Hi Django-user, You can do simply change in* Settings.py.* 1. *First go on settings.py and look data base connection which is connect with default dbsqlite3.* 2. *Remove there.* 3. *Search on google how to integrate mysql with django..* 4. *then connect with your django* 5. *Ma

Django Version to be used on for Windows Server 2016 and MS SQL 2016

2019-09-02 Thread Mahaveerchand Jain
Dear All, I have Windows Server 2016 , IIS 10 and the Database is MS SQL 2016. I am not sure about the compatibility and version of Django to use on Windows Server 2016 with IIS 10 and I want the Django to be integrated seamlessly with MS SQL server 2016 so any module or library suggestion

Re: sqlite update on CentOS 7 for latest django version

2019-07-18 Thread Tal
Got it. For anyone also trying this, on a fresh CentOS 7 minimal install, do this as root: - yum groupinstall "Development Tools" - yum install tcl - curl -O https://www.sqlite.org/src/tarball/sqlite.tar.gz - tar -xvf sqlite.tar.gz - cd sqlite/ - ./configure - make - cp -v

Re: sqlite update on CentOS 7 for latest django version

2019-07-18 Thread Tal
Yoo - this is a known problem. It has nothing to do with running "migrate", being in a virtual environment, or settings.py. Jani - I tried compiling the latest Python manually - it was actually super easy - but even with the latest Python, importin

Re: sqlite update on CentOS 7 for latest django version

2019-07-18 Thread Jani Tiainen
Hi. I think Python has built in version so you might need to build custom version of python. Pyenv is pretty neat tool to handle custom python builds. ke 17. heinäk. 2019 klo 21.36 Tal kirjoitti: > Or is Python's sqlite built into Python, not depending on /usr/bin/sqlite3 > at all? > Would I h

Re: sqlite update on CentOS 7 for latest django version

2019-07-17 Thread Yoo
Hm did you first do ./manage.py migrate? Maybe your db.sqlite file doesn't exist... Check! Additionally, if there IS a file that is similar to a db name, like blah.db, make sure in your "database" settings in settings.py points to that file. Sqlite3 isn't old; it's not going away, either. With t

Re: sqlite update on CentOS 7 for latest django version

2019-07-17 Thread Tal
Or is Python's sqlite built into Python, not depending on /usr/bin/sqlite3 at all? Would I have to recompile Python for a newer version of sqlite that django can use? PS. I know I can downgrade django. I'm wondering how complex it is to compile a new version of sqlite for it to use. On Wednesd

sqlite update on CentOS 7 for latest django version

2019-07-17 Thread Tal
When using the latest django from PyPI in CentOS 7, running "./manage.py runserver" gives an error about sqlite being too old. Since there's no newer sqlite version in the CentOS repos, I tried building sqlite from scratch: curl -L https://www.sqlite.org/2019/sqlite-amalgamation-329.tar.gz >

Re: “python -m django --version” 1.11.18 Cannot update to 2.1

2019-02-10 Thread sachin thakur
the system at-large. > > You can search on pip and virtualenvwrapper to get an an idea on what each > of these does. > > On Sun, Feb 10, 2019 at 8:44 PM Dom Delbuco wrote: > >> I'm new to Python and Django, I watched a tutorial that requires me to >> have Dj

Re: “python -m django --version” 1.11.18 Cannot update to 2.1

2019-02-10 Thread JP Smith
M Dom Delbuco wrote: > I'm new to Python and Django, I watched a tutorial that requires me to > have Django 2.1. When I type in "python -m django --version" - my Ubuntu > terminal says 1.11.18 But, when I type "django-admin --version" - terminal > says 2.1 This

“python -m django --version” 1.11.18 Cannot update to 2.1

2019-02-10 Thread Dom Delbuco
I'm new to Python and Django, I watched a tutorial that requires me to have Django 2.1. When I type in "python -m django --version" - my Ubuntu terminal says 1.11.18 But, when I type "django-admin --version" - terminal says 2.1 This didn't bother me until I reac

Re: python -m django --version

2018-08-22 Thread Franklin Sarmiento
hi Basavaraj, you can use the command $ python -V for more commands you can use $ python --help I hope this helps you *Franklin Sarmiento* *Full-stack developer* *skype: franklin.s.dev* *Twitter: @franklinitiel* *linkedin: Franklin Sarmiento

Re: python -m django --version

2018-08-22 Thread Jason
basic python command line arg. you can see it when executing `python --help` in the terminal. -m mod : run library module as a script (terminates option list) -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

python -m django --version

2018-08-22 Thread Basavaraj Halgali
Hi What is usage of -m command in this command line "python -m django --version". Regards, Basav -- 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

Re: Django Version update for my project

2018-03-31 Thread Andréas Kühne
Hi - see my comments below. 2018-03-30 8:44 GMT+02:00 Haroon Ahmed : > Hi, > > I want to update my Django version from Django 1.9.8 to Django 2.0.3 > because it is mentioned in the Django 1.9.8 official document that this > version has security issues. > > https://docs.dja

Django Version update for my project

2018-03-30 Thread Haroon Ahmed
Hi, I want to update my Django version from Django 1.9.8 to Django 2.0.3 because it is mentioned in the Django 1.9.8 official document that this version has security issues. https://docs.djangoproject.com/en/1.9/internals/release-process/#backwards-compatibility-policy 'This document i

Problems changing django version of docs with non engligh languages

2016-04-22 Thread Miguel Coronado
t work very well. I think the solution should be to allow go back to other django version even if they are not allowed in the selected language. Best -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group an

Re: How to know our Django version

2016-02-04 Thread James Bennett
sing Django. On Thu, Feb 4, 2016 at 8:15 AM, wrote: > Hello >> > > because i want to know if its possible to have "featured news" in our news > section. > > as i looked on a tutorial, its included in Django version xxx, but not in > our, so i wanted to know wh

Re: How to know our Django version

2016-02-04 Thread Sergiy Khohlov
a tutorial, its included in Django version xxx, but not in > our, so i wanted to know what is our version to know what would include to > make an update of our django version. > > excuse me foor my poor english. > > -- > You received this message because you are subscribed to the

Re: How to know our Django version

2016-02-04 Thread communication
> > Hello > because i want to know if its possible to have "featured news" in our news section. as i looked on a tutorial, its included in Django version xxx, but not in our, so i wanted to know what is our version to know what would include to make an update of

Re: How to know our Django version

2016-02-03 Thread Tomas Tombakas
If you don't have access to the shell, why are you concerned with the django version? On 3 February 2016 at 13:05, wrote: > Hello, > > and if not ? > > i have actually only acces to the web part. > > Le mardi 2 février 2016 18:43:56 UTC+1, James Bennett a écrit :

Re:Re: How to know our Django version

2016-02-03 Thread 林攀
django --version -- 林攀 在 2016-02-03 19:05:01,communicat...@domainedemanville.fr 写道: Hello, and if not ? i have actually only acces to the web part. Le mardi 2 février 2016 18:43:56 UTC+1, James Bennett a écrit : As long as you have access to a shell, you can do python manage.py

Re: How to know our Django version

2016-02-03 Thread communication
Hello, and if not ? i have actually only acces to the web part. Le mardi 2 février 2016 18:43:56 UTC+1, James Bennett a écrit : > > As long as you have access to a shell, you can do > > python manage.py shell > > Then in the interpreter, do > > import django > print(django.get_version()) > > O

Re: How to know our Django version

2016-02-02 Thread James Bennett
As long as you have access to a shell, you can do python manage.py shell Then in the interpreter, do import django print(django.get_version()) On Tue, Feb 2, 2016 at 6:59 AM, wrote: > Hello all, > > thanks in advance for your help. > > i'm just integrating new office and they actually have a

How to know our Django version

2016-02-02 Thread communication
Hello all, thanks in advance for your help. i'm just integrating new office and they actually have a website based on Django. but we have no more contact with the web agency who developp this site. So i wanted to know what is the version of Django used by our site ? Could you please help

Re: custom model fields with to_python()/from_db_value() for different django version...

2015-06-17 Thread Simon Charette
Hi Jens, I haven't tested your alternative but it looks like it would work. I prefer the explicit check against django.VERSION since it makes it easy to search for dead code branch when dropping support a version of Django. Simon Le mercredi 17 juin 2015 10:59:27 UTC-4, Jens Diemer a écrit : >

custom model fields with to_python()/from_db_value() for different django version...

2015-06-17 Thread Jens Diemer
("Moved" from django-developers list) Am 17.06.2015 um 16:48 schrieb charettes:> Hi Jens, > > I'm not sure I understand what you are trying to achieve but I assume you want > to write a third-party field that supports both Django 1.7 and 1.8 without > raising deprecating warnings? > > I suggest y

Re: how to uninstall the django version

2015-06-06 Thread Luis Zárate
If you do a virtual environment with pip it is easy. $ pip uninstall django 2015-06-02 23:45 GMT-06:00 Siddharth Tanna : > copy the file named django-admin from django folder in c: and paste it in > python folder[root directory] > > -- > You received this message because you are subscribed to

Re: how to uninstall the django version

2015-06-03 Thread Siddharth Tanna
copy the file named django-admin from django folder in c: and paste it in python folder[root directory] -- 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-u

Re: Problem with google calendar on ancient django version

2014-12-23 Thread Roy Smith
Heh, I figured it out (a good night's sleep helped). I've got Privacy Badger installed. Disabling that lets the the file load properly :-) I guess for completeness, the answers to my questions are: 1) Probably not 2) No clue 3) "Will not fix -- working as designed" :-) 4) No On Dec 22, 20

Problem with google calendar on ancient django version

2014-12-22 Thread Roy Smith
I'm in the process of incrementally upgrading a site running some ancient software (django 1.3.1 and django-cms 2.2). I've got a development version of the site running django-cms 2.3.8 (and still django 1.3.1) for testing. The plan is to get it up to modern versions of both, but one step at a

Re: error in "makemessages" command on latest django version (1.8dev)

2014-05-02 Thread Fabio Caritas Barrionuevo da Luz
Sorry, I did not see there was already an open issue to handle this problem https://code.djangoproject.com/ticket/22328 Em quarta-feira, 30 de abril de 2014 18h52min41s UTC-3, Fabio Caritas Barrionuevo da Luz escreveu: > > hello, was testing in the latest version of Django[1] directly from Gi

Re: error in "makemessages" command on latest django version (1.8dev)

2014-05-02 Thread Fabio Caritas Barrionuevo da Luz
it was really a bug fixed in https://github.com/django/django/commit/d1799233f46c39379fe429a4ece128d96b128006 Thanks Em quarta-feira, 30 de abril de 2014 18h52min41s UTC-3, Fabio Caritas Barrionuevo da Luz escreveu: > > hello, was testing in the latest version of Django[1] directly from Githu

error in "makemessages" command on latest django version (1.8dev)

2014-04-30 Thread Fabio Caritas Barrionuevo da Luz
hello, was testing in the latest version of Django[1] directly from Github and am having this problem *optparse.OptionConflictError: option -e/--extension: conflicting option string(s): -e* That would be a bug or am I doing something wrong In this link you can see all the steps I did to get t

Re: How to use modpython in django version 1.5

2013-11-25 Thread Daniel Roseman
On Monday, 25 November 2013 06:01:35 UTC, Russell Keith-Magee wrote: > > > On Mon, Nov 25, 2013 at 1:39 PM, nobody >wrote: > >> Hi, >> >> After version 1.5, django has disabled mod_python. Can we still use the >> modpython instead of mod_wsgi? If so, how can we install the mod_python, >> doesn

Re: How to use modpython in django version 1.5

2013-11-24 Thread Russell Keith-Magee
On Mon, Nov 25, 2013 at 1:39 PM, nobody wrote: > Hi, > > After version 1.5, django has disabled mod_python. Can we still use the > modpython instead of mod_wsgi? If so, how can we install the mod_python, > doesn't seem a package is available in Debian squeeze or wheezy. > No, you can't. The reas

How to use modpython in django version 1.5

2013-11-24 Thread nobody
Hi, After version 1.5, django has disabled mod_python. Can we still use the modpython instead of mod_wsgi? If so, how can we install the mod_python, doesn't seem a package is available in Debian squeeze or wheezy. Thank you. -- You received this message because you are subscribed to the Goog

Re: django version 1.5 development server is more slow than early version

2013-03-03 Thread Some Developer
On 03/03/13 08:08, Fangzx wrote: It is very obvious when I press F5 to refresh whole index page. I've just upgraded one of my projects to Django 1.5 and can't say I've noticed a change in the speed of the development server. Are you sure you are not trying to compress your static files on ac

django version 1.5 development server is more slow than early version

2013-03-03 Thread Fangzx
It is very obvious when I press F5 to refresh whole index page. -- 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 pos

Re: Is upgrading to a newer Django version generally hassle-free?

2012-07-16 Thread sadpluto
Thanks to all for the feedback. It looks safe enough. I guess I was hoping for a 2to3-like tool for these properly announced upgrades! -- 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.goog

Re: Is upgrading to a newer Django version generally hassle-free?

2012-07-15 Thread kenneth gonsalves
On Sat, 2012-07-14 at 13:38 -0700, Daniel Roseman wrote: > Django makes a fairly strong commitment to backwards compatibility > across versions, which is documented here: > https://docs.djangoproject.com/en/1.4/misc/api-stability/ > They guarantee that any documented api will only be deprecated wit

Is upgrading to a newer Django version generally hassle-free?

2012-07-14 Thread Daniel Roseman
Django makes a fairly strong commitment to backwards compatibility across versions, which is documented here: https://docs.djangoproject.com/en/1.4/misc/api-stability/ They guarantee that any documented api will only be deprecated with two versions warning: for example, the old function-based gen

Re: Is upgrading to a newer Django version generally hassle-free?

2012-07-14 Thread sadpluto
> > Thanks for your comment, Carlos. I guess focusing too much on a > future-proof setup is probably pointless. -- 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-us

Re: Is upgrading to a newer Django version generally hassle-free?

2012-07-13 Thread Carlos Daniel Ruvalcaba Valenzuela
On Fri, Jul 13, 2012 at 1:14 PM, sadpluto wrote: > I have is whether transitioning to newer versions of Django > is generally easy and well documented. I can only imagine that it is, but I > haven't found convincing evidence while searching online. It would be great > to see what's the consensus

Is upgrading to a newer Django version generally hassle-free?

2012-07-13 Thread sadpluto
Hello! I'm desperately trying to settle on a development stack, and by far Django has attracted me the most. The major concern (premature optimization?) I have is whether transitioning to newer versions of Django is generally easy and well documented. I can only imagine that it is, but I haven'

Django version changed

2012-02-01 Thread lu uky
You can update the argument maxlength to max_length. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@goog

Re: how to uninstall the django version

2011-11-24 Thread TANYA
windows you need to program files then python2.x then agin in >> site-packages delete the django folder and you are good to install the >> required version you want.(What i remember ?) >> >> Please specify your environment conditions also. >> >> Hope this may

Re: how to uninstall the django version

2011-11-22 Thread Andre Terra
lder and you are good to install the > required version you want.(What i remember ?) > > Please specify your environment conditions also. > > Hope this may help you !!! > -- > Regards > Nikhil Verma > +91-958-273-3156 > > > On Tue, Nov 22, 2011 at 5:39 PM,

Re: how to uninstall the django version

2011-11-22 Thread Nikhil Verma
, Nov 22, 2011 at 5:39 PM, ram wrote: > i want to uninstall my django version (1.3.1) and again i want to > install the same version.can any one say me how to solve it. > > -- > You received this message because you are subscribed to the Google Groups > "Django users&qu

how to uninstall the django version

2011-11-22 Thread ram
i want to uninstall my django version (1.3.1) and again i want to install the same version.can any one say me how to solve it. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@google

how to uninstall django version

2011-11-22 Thread ram
using this website i was downloaded latest official version.after that when iam writing a command like "python manage.py runserver"then iam getting an error like ""raise InvalidTemplateLibrary("Template library %s does not have a variable named 'register'" % taglib_module) django.template.base.Inv

Re: formset_factory: "extra" param doesn't work? (Django version 1.2.5)

2011-11-09 Thread Kurtis Mullins
Just wanted to clarify -- returning in a loop is an okay thing to do. It saves you from wasting cycles in a given loop. I suppose you could simply "break" out of it as well. I'm sure that could be a matter of opinion. But glad to hear you fixed your specific problem :) On Wed, Nov 9, 2011 at 4:13

Re: formset_factory: "extra" param doesn't work? (Django version 1.2.5)

2011-11-09 Thread bentzy
Solved. It's not recommended to return while in a loop :-X On Nov 9, 10:30 pm, bentzy wrote: > Hi, > > I'm trying to run the example at documentation about formsets(https:// > docs.djangoproject.com/en/1.2/topics/forms/formsets/) > > It basically works, but the "extra" parameter doesn't: > > Fol

formset_factory: "extra" param doesn't work? (Django version 1.2.5)

2011-11-09 Thread bentzy
Hi, I'm trying to run the example at documentation about formsets(https:// docs.djangoproject.com/en/1.2/topics/forms/formsets/) It basically works, but the "extra" parameter doesn't: Following that example, I wrote: def fs(request): ArticleFormSet = formset_factory(ArticleForm, extra=5 )

Re: Problem with Tutorial 1 - Django Version = 1.3

2011-06-30 Thread Cal Leeming [Simplicity Media Ltd]
Hi OP, Just as a side note, it's probably worth learning about how Python works before jumping straight into Django. (I'm assuming this based on __unicode__ did not have proper indentation). My apologies if I am wrong though! Cal On Thu, Jun 30, 2011 at 3:19 PM, Jarilyn Hernandez wrote: > Tha

Re: Problem with Tutorial 1 - Django Version = 1.3

2011-06-30 Thread Jarilyn Hernandez
Thanks for your responses. The problem was solved. Best Regards, Eiram On Thu, Jun 30, 2011 at 10:06 AM, Jirka Vejrazka wrote: > > class Poll(models.Model): > >question = models.CharField(max_length=200) > >pub_date = models.DateTimeField('date published') > > def __unicode__(self): > >

Re: Problem with Tutorial 1 - Django Version = 1.3

2011-06-30 Thread Jirka Vejrazka
> class Poll(models.Model): >    question = models.CharField(max_length=200) >    pub_date = models.DateTimeField('date published') > def __unicode__(self): >        return self.question > > class Choice(models.Model): >    poll = models.ForeignKey(Poll) >    choice = models.CharField(max_length=20

Re: Problem with Tutorial 1 - Django Version = 1.3

2011-06-30 Thread Daniel Roseman
Op donderdag 30 juni 2011 14:57:46 UTC+1 schreef Eiram het volgende: > > Greetings!! > > In the past few days I have been trying to learn about Django. I > started doing the Tutorial 1. During the tutorial I'm getting a > strange error. I was hoping if someone can help me to understand what >

Re: Problem with Tutorial 1 - Django Version = 1.3

2011-06-30 Thread Kenneth Gonsalves
On Thu, 2011-06-30 at 06:57 -0700, Eiram wrote: > Poll(objetcs.all) Poll.objects.all() -- regards KG http://lawgon.livejournal.com Coimbatore LUG rox http://ilugcbe.techstud.org/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Problem with Tutorial 1 - Django Version = 1.3

2011-06-30 Thread Eiram
Greetings!! In the past few days I have been trying to learn about Django. I started doing the Tutorial 1. During the tutorial I'm getting a strange error. I was hoping if someone can help me to understand what I'm doing wrong and how can I fix it. This is the code I had: class Poll(models.Mode

Re: Error after updating to Django version 1.3

2011-05-15 Thread Mishen'ka
I have found the sollution .. Since version 1.3 i need to set the setting LOGGING_CONFIG I placed LOGGING_CONFIG = None in settings.py and now it works On May 15, 7:36 pm, "Mishen'ka" wrote: > Hello everyone, > > I was updating my Django version to version 1.3 >

Error after updating to Django version 1.3

2011-05-15 Thread Mishen'ka
Hello everyone, I was updating my Django version to version 1.3 And i get a error where i cant find the reason. I have nothing more then this message: MOD_PYTHON ERROR ProcessId: 3138 Interpreter:'server1.lokaal' ServerName: 'server1.lokaal' DocumentRoo

Re: Django version control solutions

2011-01-07 Thread Pēteris Brūns
Thanks! Some basic use case. Possibility to add remark about created change importance. a) Perfect if possible to build it semiautomatic, some model field value change is important and we can add automatic some importance level for version. b) Also possibility by user set created change importa

Re: Django version control solutions

2011-01-07 Thread PeteDK
Hi. I use Django-Reversion and i absolutely love it! :) But I guess it depends on how you're planning on using it? pete On 7 Jan., 16:24, Pēteris Brūns wrote: > Hi, > I'm seeking for version control solution in django. The most suitable > looks django-reversion all other seems dead. Has anybo

Django version control solutions

2011-01-07 Thread Pēteris Brūns
Hi, I'm seeking for version control solution in django. The most suitable looks django-reversion all other seems dead. Has anybody experience with django-reversion and can comment how successful is this solution, exists other good options to look on? Which from existing solutions is the most e

Django version 1.3 alpha 1 - no css in admin when using builtin webserver

2010-12-22 Thread fredrik70
Hi all, Just getting back to some django devel after a few years hiatus. Have a problem with css on my dev webserver (just the builtin one that comes with django). Running this on windows XP. It refuses to serve the css for the admin site. I haven't changed anything in the settings.py and what I re

Re: django version 1.1.1 decimalfield invalidoperation

2010-05-14 Thread mendes.rich...@gmail.com
Ok, thanks a lot for your help Apparently I misunderstood that part, and indeed I replaced it to 20 and 15 leaving again 5 digits. It should do the trick i'll change it asap. Thanks again. Richard On May 14, 7:38 pm, Karen Tracey wrote: > On Fri, May 14, 2010 at 8:22 AM, mendes.rich...@gmail

Re: django version 1.1.1 decimalfield invalidoperation

2010-05-14 Thread Karen Tracey
On Fri, May 14, 2010 at 8:22 AM, mendes.rich...@gmail.com < mendes...@gmail.com> wrote: > [snip] > > The problem i'm having is with the following model class with the > field value: > > class Measurement(models.Model): >measurement_id = models.AutoField("Measurement > ID",primary_key=True)

Re: django version 1.1.1 decimalfield invalidoperation

2010-05-14 Thread mendes.rich...@gmail.com
Hello Karen, Thanks for your reply, i checked the code from the ticket and it was indeed already changed in the current version. The specs of the system i',m using are; Python 2.4.3 Django 1.1.1 final Database Postgresql Interface postgresql_psycopg2 The problem i'm having is with the following

Re: Multiple django version on developer machine

2010-05-11 Thread Sebastian Pawlus
And after virtualen take a look on virtualenvwrapper, makes virtualenv more handy http://pypi.python.org/pypi/virtualenvwrapper On Wed, May 12, 2010 at 4:50 AM, Andy McKay wrote: > > On 2010-05-11, at 7:26 PM, james_027 wrote: >> While I have a number of django apps develop for Django 1.1 ... I a

Re: Multiple django version on developer machine

2010-05-11 Thread Andy McKay
On 2010-05-11, at 7:26 PM, james_027 wrote: > While I have a number of django apps develop for Django 1.1 ... I also > want to use Django 1.2 for my new project. How can I have multiple > version of Django in my machine where my apps will be instructed > either to use 1.1 or 1.2 You should look a

Multiple django version on developer machine

2010-05-11 Thread james_027
Hi all, While I have a number of django apps develop for Django 1.1 ... I also want to use Django 1.2 for my new project. How can I have multiple version of Django in my machine where my apps will be instructed either to use 1.1 or 1.2 Thanks, James -- You received this message because you are

Re: django version 1.1.1 decimalfield invalidoperation

2010-05-11 Thread Karen Tracey
On Tue, May 11, 2010 at 9:49 AM, mendes.rich...@gmail.com < mendes...@gmail.com> wrote: > On our production server we are running the last official release > 1.1.1, > When i started uploading big decimal values i ran into trouble and > came across a ticket which described the error. > > This was t

django version 1.1.1 decimalfield invalidoperation

2010-05-11 Thread mendes.rich...@gmail.com
Hello Django Users, On our production server we are running the last official release 1.1.1, When i started uploading big decimal values i ran into trouble and came across a ticket which described the error. This was ticket 10692 and it was solved. Unfortunately i couldn't track down which files

Re: django version detection

2010-03-28 Thread Mike Dewhirst
Much appreciated :) M On 29/03/2010 11:10am, Russell Keith-Magee wrote: On Mon, Mar 29, 2010 at 8:07 AM, Mike Dewhirst wrote: Can someone kindly tell me how I can detect which subversion revision of Django is actually installed on my machine? I need to re-install the exact same revision on a

Re: django version detection

2010-03-28 Thread Russell Keith-Magee
On Mon, Mar 29, 2010 at 8:07 AM, Mike Dewhirst wrote: > Can someone kindly tell me how I can detect which subversion revision of > Django is actually installed on my machine? > > I need to re-install the exact same revision on another platform. > > It is probably staring me in the face but I must

django version detection

2010-03-28 Thread Mike Dewhirst
Can someone kindly tell me how I can detect which subversion revision of Django is actually installed on my machine? I need to re-install the exact same revision on another platform. It is probably staring me in the face but I must be looking elsewhere. Thanks Mike -- You received this messa

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Angel Cruz
Looks like you finally got the download! You can just use Tortoise from this point onward. You don't need to get cygwin unless you are doing some shell scripting to interact with subversion or you just like doing things via the command line. On Tue, Nov 17, 2009 at 10:33 AM, Mikey3D wrote: > T

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Mikey3D
Tony, I right-clicked on desktop wallpaper and see SVN Checkout >URL of repository >http://code.djangoproject.com/svn/django/trunk/ >OK It download 10,83M Bytes Django of 13 files in 2 minutes and 19 seconds. Angel, I installed 64-bit Subversion from http://tortoisesvn.net/downloads Is that wron

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Brian Neal
On Nov 17, 12:05 pm, Angel Cruz wrote: > So it seems TortoiseSVN does not include svn.exe? No, it doesn't. > > You need to install Subversion packaging then > No, he doesn't have to. He's got TortoiseSVN, which is a GUI for svn. He can checkout Django by creating a new folder, opening it, then

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Mikey3D
Tony, I right-clicked on desktop wallpaper and see SVN Checkout >URL of repository >http://code.djangoproject.com/svn/django/trunk/ >OK It download 10,83M Bytes Django of 13 files in 2 minutes and 19 seconds. Angel, I installed 64-bit Subversion from http://tortoisesvn.net/downloads Is that wron

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Angel Cruz
So it seems TortoiseSVN does not include svn.exe? You need to install Subversion packaging then: http://subversion.tigris.org/getting.html#windows (I have use VisualSVN in the past, but it seems like they don't have a 64-bit version yet) Or you can use cygwin (which comes with svn.exe) for your

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Tony Czeh
TortoiseSVN is a graphical SVN client. If you right-click you should see an option for Tortoise that, when expanded, contains a check out option. From there, just follow the wizard. Mikey3D wrote: > I just got new computer Win7 64-bit and I downloaded: > > 64 Bit TortoiseSVN-1.6.6.17493-x64-s

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Mikey3D
Windows 98 On Nov 17, 12:41 pm, Mikey3D wrote: > I can't find it. I have Windows 7 64-bit and what you have said is > completely difference all together. > > Last year, my 11 years old computer can do: run >command. I haven't > setup what you were talking about. Am I missing something? > > Mikey3

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Mikey3D
I can't find it. I have Windows 7 64-bit and what you have said is completely difference all together. Last year, my 11 years old computer can do: run >command. I haven't setup what you were talking about. Am I missing something? Mikey3D On Nov 17, 12:17 pm, Angel Cruz wrote: > Your svn.exe is

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Angel Cruz
Your svn.exe is where you installed it. If you can find it, do a search on the c: drive. On Tue, Nov 17, 2009 at 9:16 AM, Angel Cruz wrote: > http://www.computerhope.com/issues/ch000549.htm > > > > On Tue, Nov 17, 2009 at 9:11 AM, Mikey3D wrote: > >> I can't find svn.exe. >> >> Can you tell

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Angel Cruz
http://www.computerhope.com/issues/ch000549.htm On Tue, Nov 17, 2009 at 9:11 AM, Mikey3D wrote: > I can't find svn.exe. > > Can you tell me howto? Steps... > > Thanks, Mikey3D > > On Nov 17, 12:00 pm, Angel Cruz wrote: > > Add to the PATH variable the location of your svn.exe > > > > On Tue, N

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Mikey3D
I can't find svn.exe. Can you tell me howto? Steps... Thanks, Mikey3D On Nov 17, 12:00 pm, Angel Cruz wrote: > Add to the PATH variable the location of your svn.exe > > On Tue, Nov 17, 2009 at 8:58 AM, Mikey3D wrote: > > I just got new computer Win7 64-bit and I downloaded: > > > 64 Bit Tortoi

Re: Use Subversion to Download the Latest Django Version

2009-11-17 Thread Angel Cruz
Add to the PATH variable the location of your svn.exe On Tue, Nov 17, 2009 at 8:58 AM, Mikey3D wrote: > I just got new computer Win7 64-bit and I downloaded: > > 64 Bit TortoiseSVN-1.6.6.17493-x64-svn-1.6.6.msi > > After finished download >Restart >Start >Run >cmd > > --

Use Subversion to Download the Latest Django Version

2009-11-17 Thread Mikey3D
I just got new computer Win7 64-bit and I downloaded: 64 Bit TortoiseSVN-1.6.6.17493-x64-svn-1.6.6.msi After finished download >Restart >Start >Run >cmd -- C:\Users\Mike>svn co http://code.djangoproject.com/svn/django/trunk/ 'svn' is not recognized as an internal or exter

Re: Django version

2009-05-20 Thread Aaron Maxwell
On Tuesday 19 May 2009 10:47:05 am VidrSan wrote: > How can I see django version on my web-server? Just python's code, > beaucause I can't find any information on hosting An addendum to others' replies - since I have several django sites still around that were made with

Re: Django version

2009-05-20 Thread VidrSan
Thanks, it works. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+un

  1   2   >