Re: Installing Django from GIT/Subversion - package dependency in virtual environment

2012-02-20 Thread Mateusz Marzantowicz
then setup.py install in src/django directory in virtualenv root? Mateusz Marzantowicz On Mon, Feb 20, 2012 at 1:53 PM, Denis Darii wrote: > Do you mean django-trunk installation? > > If so, I use this in my requirements.txt: > > -e svn+http://code.djangoproject.com/svn/django/tr

Installing Django from GIT/Subversion - package dependency in virtual environment

2012-02-20 Thread Mateusz Marzantowicz
n and then downloads official release. I really need only one Django installation in my virtualenv, the one from git :) It is more related to how pip works but does anyone has any idea how to do it the right way? Thanks, Mateusz Marzantowicz -- You received this message because you are subscri

Re: files managing

2011-06-07 Thread Mateusz Marzantowicz
On Tue, Jun 7, 2011 at 5:15 AM, pankaj sharma wrote: > hello everyone, i need some help; > i want the users to download some files.. {say photos} > and what setting do i have to take care using FileField. where all > these photos will be stored and how can user download the photos > > -- > You rec

Re: How do you organize your deployment enviroment

2011-05-23 Thread Mateusz Marzantowicz
On Mon, May 23, 2011 at 9:00 AM, DK wrote: > Hi, > > I am having a django project that is being frequently deployed on clean > linux installation. After a few deployments I have noticed that this process > is very time consuming for me (every time I am preparing run scripts for > everything, con

Re: Why errors when restart but goes away after reload again! How fix?

2011-05-22 Thread Mateusz Marzantowicz
On Sun, May 22, 2011 at 8:41 AM, Chris Seberino wrote: > On May 21, 6:35 pm, Mateusz Marzantowicz > wrote: > > What server are you using? What is your configuration? Do you have > mod_wsgi, > > mod_python or something else? What is your browser, OS, etc. Please do > not

Re: Why errors when restart but goes away after reload again! How fix?

2011-05-21 Thread Mateusz Marzantowicz
On Sat, May 21, 2011 at 7:49 PM, Chris Seberino wrote: > When I restart my server, I get an error on the first page reload and > then all is fine on the second page reload! > > The error is this... > > -- > ViewDoesNotExist at /blog > > Tried blog in module mvc.controllers.controllers. Error

Re: urlpatterns

2011-05-21 Thread Mateusz Marzantowicz
On Sat, May 21, 2011 at 2:14 PM, Mateusz Marzantowicz < mmarzantow...@gmail.com> wrote: > On Sat, May 21, 2011 at 4:50 AM, Dagon wrote: > >> I am a newbie to both Python and Django. >> Why does urlpatterns = patterns('', (r'^People/$', >> 'i

Re: urlpatterns

2011-05-21 Thread Mateusz Marzantowicz
On Sat, May 21, 2011 at 4:50 AM, Dagon wrote: > I am a newbie to both Python and Django. > Why does urlpatterns = patterns('', (r'^People/$', > 'iFriends.People.views.index') get me the following error message: > > Using the URLconf defined in iFriends.urls, Django tried these URL > patterns, in

Re: how to save image in postgreSQL database

2011-05-20 Thread Mateusz Marzantowicz
On Fri, May 20, 2011 at 3:00 AM, ramnivas indani wrote: > ok but how can i achieve it in Django means how can i store images in > Django python using URI Read Django documentation (it is part of studying in college): * http://docs.djangoproject.com/en/1.3/topics/http/file-uploads/ * http://doc

Re: Basic Django Support

2011-05-17 Thread Mateusz Marzantowicz
On Sun, May 15, 2011 at 6:07 PM, David Biglin wrote: > Hi, > I have been playing with Python for the past year now and enjoying it. > I am trying Django to make a web site for a friend. I am Following the > Django Tutorial on there web site to get the basic concepts here; > http://docs.djangoproj

Re: File Field

2011-05-16 Thread Mateusz Marzantowicz
On Fri, May 13, 2011 at 1:44 AM, pankaj sharma wrote: > Hello friends,. > i want to upload some files to my database and show it to user .. > how to add an filefield option to models.py and how to show them in > admin.py. > and how to let the users download the files... > > Do you really want to s

Re: Template inheritance, how to render dynamic content in base templates

2011-05-13 Thread Mateusz Marzantowicz
On Fri, May 13, 2011 at 5:15 AM, robinne wrote: How can I render dynamic content in a base template if I only call a > view on my child template? > > What I am trying to do is setup a base template that will include > "Profile" information for the user who is logged in, for example: > "Welcome Joh