Re: Updating Django .95 -> .96 on Mac

2007-04-10 Thread Jay Parlar
o the .egg file. Delete that reference. You can then delete the .egg file itself. What's probably happening, is that the .egg is showing up on sys.path before the new 'django' directory. Jay P. --~--~-~--~~~---~--~~ You received this message because yo

Re: Updating Django .95 -> .96 on Mac

2007-04-10 Thread Jay Parlar
On 4/10/07, brian mckinney <[EMAIL PROTECTED]> wrote: > > Thanks Jay, this worked perfectly. > > Can anyone shed some light on the purpose of the easy-install.pth > file? Is this just adding django to the system path? Very briefly: There is a large movement in the Pyt

Re: Saving an object takes a long time

2007-04-15 Thread Jay Parlar
eys() And then used customer_keys in both of your for loops. That saves a function call. Again, these are all just little things, but depending on how many 'address' keys there are, and how likely the key is to appear in 'data', it might make a difference. Jay P. --~--~--

Re: Super long response times/load times: Looking for some guidance on alleviating the issue

2007-04-15 Thread Jay Parlar
he HTML that they're coming from the same server. Are you having Django serve them, or your web server? Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: Super long response times/load times: Looking for some guidance on alleviating the issue

2007-04-16 Thread Jay Parlar
On 4/16/07, Roboto <[EMAIL PROTECTED]> wrote: > > Hey Jay, yeah, I noticed somethign similar to that affect as well. It > seems like it does some sort of caching or something, and if it hasn't > cached in a while it takes a while to load. I'm running mod_python,

Re: Super long response times/load times: Looking for some guidance on alleviating the issue

2007-04-16 Thread Jay Parlar
On 4/16/07, Roboto <[EMAIL PROTECTED]> wrote: > > serving directly from apache. Well, I'm out of ideas then :) Probably, you should start putting up some of your more relevant config information (Apache config files), because you haven't given too much inform

Re: url template tag with generic views?

2007-04-16 Thread Jay Parlar
not be a way to do it at this time, > which is a shame. > In the past, you had to create a wrapper around the generic view, but the TRUNK now contains named URLs: http://www.djangoproject.com/documentation/url_dispatch/#naming-url-patterns Jay P. --~--~-~--~~~---

Re: django comparison

2007-04-17 Thread Jay Parlar
ned as two people trying to access the site :) Jay P. --~--~-~--~~~---~--~~ 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

Re: Passing Django Model objects between machines

2007-04-17 Thread Jay Parlar
achine X, and machine X tries to do something the object that requires a call to the database? Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: Navigating the Documentation

2007-04-17 Thread Jay Parlar
of that documentation matches the project documentation quite closely (and in many places is much better), and as it's done in a book format, it's presented in the order you'd want if you were learning Django the first time. And it has a Table of Contents :) Jay P. --~--~--

Re: Static content in admin?

2007-04-18 Thread Jay Parlar
enforces a limit of one instance of this model in the db. They can go in and change whatever the current details are for that special, but they can't delete it, and they can't add new ones. Not the greatest solution in the world, but it works. Anyone have any better methods? Jay P.

Re: django comparison

2007-04-19 Thread Jay Parlar
owse yet? :) Is that what Adrian's going for? I briefly tried out databrowse the other day, and couldn't quite see the point (realizing of course that it's brand new). Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscr

Re: selecting a framework ,

2007-04-19 Thread Jay Parlar
s "hardcore c/c++", doing real-time embedded devices. ie., as far away from web development as you can be :) Django fit my brain quite well, and if you're proficient in C/C++, then Python won't be too hard to learn (you'

Django on Windows for an intranet site

2007-04-19 Thread jay graves
ng justification for the first one is the hardest but once it's an 'existing' technology it's an easier sell for new projects. Thanks in advance. ... Jay Graves --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Django on Windows for an intranet site

2007-04-19 Thread jay graves
On Apr 19, 12:18 pm, Michael K <[EMAIL PROTECTED]> wrote: > On Apr 19, 12:40 pm, jay graves <[EMAIL PROTECTED]> wrote: > application on Windows using ODBC? If so, you're not necessarily > stuck with Windows Server, as there are ODBC solutions for Linux/BSD, > mea

Re: Django on Windows for an intranet site

2007-04-19 Thread jay graves
server. Your post reinforces that decision. Thanks for your insight. ... Jay --~--~-~--~~~---~--~~ 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@googlegr

Re: [OT] Vim (was "Poll tutorial question")

2007-04-19 Thread Jay Parlar
written using spaces, not tabs. The community tends to write with spaces, not tabs. The PEP says not to mix the two, and if a mix happens, convert all your code to use spaces, not tabs. So be wary if you ever plan on plugging someone else's Django application into your project. If you thin

Re: Error - 'int' object is unsubscriptable

2007-04-21 Thread Jay Parlar
fault()])[0] > > TypeError at /admin/polls/poll/1/ > 'int' object is unsubscriptable > > What stage of the tutorial, exactly, did this error occur at? Could you also please copy and paste the contents of your models.py file with your response? Jay P. --~--~

Re: Error - 'int' object is unsubscriptable

2007-04-21 Thread Jay Parlar
utorial 2 step by step, checking that the Admin looks like it does in the tutorial, after each change, or did you just put in all the code and try it? It'd be helpful to know what the last part was that still worked, and what change caused it to break. Jay P. --~--~-~--~~~--

Re: Error - 'int' object is unsubscriptable

2007-04-21 Thread Jay Parlar
get screwed up recently in SVN. I'd try myself, but I've run out of time for the evening. Also, in the code you posted, the indents seem to be quite strange. Maybe it's just the way Gmail formats it, but it looks like you're using indent levels of 5 and 3 in different places. Try t

Re: Implementing OpenID in your Django app

2007-04-23 Thread Jay Parlar
ting > OpenIDs with Django user accounts. > Simon, thank you for this! Your screencast was the first time I really understood what OpenID is all about, and I've been hoping for awhile that you would release the implementation you use for your site. Very cool, thank you! Jay P. --~--~--

Re: Newforms Captcha 0.1 release

2007-04-26 Thread Jay Parlar
esn't seem like the place for 200 line things with > several files. Most people create Google Code projects, prefixed with "django-". See http://code.google.com/p/django-openid/ and http://code.google.com/p/django-template-utils/ for examples. Jay P. --~--~-~--~~-

Re: SlugField

2007-05-06 Thread Jay Parlar
27;. I > think I'm going to have to implement some type of JavaScript file to > accomplish this. Django can already do this for you. See the SlugField documentation: http://www.djangoproject.com/documentation/model-api/#slugfield Jay P. --~--~-~--~~~---~--~~

Re: SlugField

2007-05-06 Thread Jay Parlar
On 5/6/07, gsmith <[EMAIL PROTECTED]> wrote: > > Jay, > I've already added my SlugField. Here is a look at the table I > created > > class news(models.Model): > title = models.CharField(maxlength=200) > theslug = models.SlugField(prepopulate_from=(&quo

Re: Django, shared hosting memory limits and memory optimization

2007-05-29 Thread Jay Parlar
d1, a max of 3 Apache processes will run, so you can run a site on each process. I might be completely wrong on that though. Jay P --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: spam

2007-11-06 Thread Jay Klehr
Are the other lists powered by Google Groups? Are they as active as Django's list? Perhaps you should direct your complaints to Google, as I don't think the people on this list (or even the owners of the list) can do much about it (aside from moderating every new user/post). Jay

Re: Django Application Without Source?

2007-12-10 Thread Jay Parlar
On Dec 10, 2007 2:43 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Or perhaps I'm reading into this too much. If I distribute the .pyc > files minus the .py files, would that work? Is this machine- > independent (IE: I "compile" the source on an x86, it'll be ok on a 64- > bit or other arch

Re: settings.py help please

2006-09-21 Thread Jay Parlar
states that you have to have MySQLdb already installed. It also provides a link to where you can get MySQLdb. It's up to you to go to that link and download/install the package. In short, you'll download it, go to the download directory insi

Re: settings.py help please

2006-09-21 Thread Jay Parlar
> > > > Not sure what's wrong? > > The MySQL on OS X installs some binaries into /usr/local/mysql/bin. Make sure that directory is on your PATH before running the setup.py install. Jay P. --~--~-~--~~~---~--~~ You received this message because

Re: One-To-Many doesn't return a list.

2006-09-23 Thread Jay Parlar
is looking for the wrong thing. It could also mean that the object isn't being setup properly, meaning the getattr can't find what it's supposed to be looking for. I know this doesn't really solve your problem (in a long-term useable way), but hopefully it can give the core

Re: Output category name in a generic view

2006-09-24 Thread Jay Parlar
go.views.generic.list_detail.object_list', dict(ammonite_dict, template_object_name="products", template_name="products/products_list.html", extra_context={"title":"Glassware"})), Then in the template, you can have {% block title %}{{title}}{% endb

Re: Output category name in a generic view

2006-09-24 Thread Jay Parlar
On 9/24/06, Alfonso <[EMAIL PROTECTED]> wrote: > > Thanks Jay but for some reason django doesn't like that - nothing is > output in the view?? Do you have objects in the database? And I just noticed that you were using .get(pk=1). You should be using .all(). .get() retur

Re: Fast hosting for Django

2006-09-24 Thread Jay Parlar
on.com (formerly python-hosting.com), and they even natively support Django (whereas you have to "do it yourself" with Dreamhost). Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djan

Re: MacPorts package

2006-09-25 Thread Jay Parlar
way, and the system is installed. Although a Macports version would be nice for some of the dependencies (MySQL and PostgreSQL bindings, etc.) There was a thread a few days ago about peoples' issues with getting installed on OS X, and Macpor

Re: show_all_rows = False returns db error message

2006-09-25 Thread Jay Parlar
our database installation. Make sure the > appropriate database tables have been created, and make sure the > database is readable by the appropriate user." > > Does anyone know what is going on? That's a fairly generic error. You need to give us you

Re: Help me see the big picture

2006-09-25 Thread Jay Parlar
defines the base template. I also have templatetags created in articles/templatetags and events/templatetags Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send em

Re: Example adding FilterSpec

2006-09-26 Thread Jay Baird
Nevermind, found thread: http://groups.google.com/group/django-users/browse_thread/thread/96442d089932d521/5e6bdd3ef0926641?lnk=st&q=FilterSpec&rnum=2#5e6bdd3ef0926641 Please disregard.On 9/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:Evening all,I was looking at filterspecs last night becau

Re: date format other than YYYY-MM-DD

2006-09-27 Thread Jay Parlar
ge date format in view from dd.mm. but I doubt it's the > best way to do such things. Using the 'date' filter, you can format the output however you want, within templates. For example, to format a date as "September 17, 2006", you would do the following in

Re: Pro Django Book preview

2006-09-29 Thread Jay Parlar
On 9/30/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > No one know about this? > I believe that the word from on-high is that the current release date for the book is... wrong. Expect it later rather than sooner, Adrian et. al. are still workin

Re: Pro Django Book preview

2006-09-29 Thread Jay Parlar
o developed sites, and many of them will provide their code. Other than that... This group is phenomenal when you need help, as is the IRC channel. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djang

Re: Cannot get Many to Many Relationship To work - "name" not defined error message

2006-10-03 Thread Jay Parlar
return self.category_name > class Admin: > pass > The reason the first was didn't work, but the second did, is because of order in the file. A model has to already be declared before you can make reference to it. So when you wrote categories = models.ManyToManyField(Category)

Re: Cannot get Many to Many Relationship To work - "name" not defined error message

2006-10-03 Thread Jay Parlar
On 10/4/06, MerMer <[EMAIL PROTECTED]> wrote: > > Thanks Jay and Rajesh, > > I've just discovered this myself by switching the code around. This > is a real GOTCHA and not immediately obvious for a newbie like me. I > can't see anything in the documentation th

Re: Ajax

2006-10-07 Thread Jay Parlar
ht be going wrong? > Using Safari, by any chance? A few months ago, I was playing around with MochiKit and the js=[...]. The returned HTML would have the correct Javascript references in it, and the admin pages would work fine with Firefox. But for wh

Re: Uh Oh

2006-10-09 Thread Jay Parlar
Dreamhost was doing RAM upgrades on a bunch of machines this afternoon. I *highly* recommend you subscribe to the Dreamhost RSS feed, as they're quite good about warning you beforehand when something like this will happen: http://www.dreamhoststatus.com/feed/

Re: (Third Attempt To Post)Complex Application Security Model

2006-10-20 Thread Jay Parlar
runk, but that won't happen without more people playing around with it. And like me, I know a lot of people are short on time these days. I would worry that Chris might lose interest if there's no movement (as anyone in his position might do. Jay P. --~--~-~--~~~---

Re: (Third Attempt To Post)Complex Application Security Model

2006-10-20 Thread Jay Parlar
ed. > You'll have to do an 'svn switch' to the branch, then a 'manage.py syncdb' to add the new tables that POP requires. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dja

Re: Re: extending the auth model to display more fields in admin

2006-10-23 Thread Jay Parlar
On 10/23/06, orestis <[EMAIL PROTECTED]> wrote: > > Anyone ? > Maybe this is too much, but with it you can extend the User module and add whatever fields you want: http://www.b-list.org/weblog/2006/06/06/django-tips-extending-us

Re: Hiring Django developers

2006-10-25 Thread Jay Parlar
eople do occasionally post it here, but Ian Holsman has setup a dedicated site, http://gypsyjobs.com/, for Django job postings. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: status of authentication updates?

2006-10-25 Thread Jay Parlar
been a *very* recent thing). 1.0 certainly won't come before it's ready, with the code being solid. Of course, that's just me spouting my mouth off. All folks with commit privileges are welcome to come and contradict everything I just said :) Jay P --~--~-~--~~---

Re: Re: Completed Django Project

2006-10-26 Thread Jay Parlar
etter as http://asme.seas.ucla.edu/members/karen-chang Otherwise, looks great! Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: Re: Template Tag - Using Sessions versus Direct DB access - pros and cons

2006-10-27 Thread Jay Parlar
postcode }} works fine, where userprofile is the > name of the one-to-one class. The advantage though of 'get_profile' is that you don't *need* to know the name of the OneToOne class. So if you change it to something else, or maybe reuse the templates in a different application,

Re: ManyToMany "Cannot resolve keyword"

2006-10-28 Thread Jay Parlar
ally using whatever view causes this template to get rendered? My initial guess would be that the template is being rendered with some 'object', but the 'object' is not in fact a 'Story' object, as is required. And definitely try Malcolm's suggestion of using

Re: Storing images in the db

2006-10-31 Thread Jay Klehr
peak their mind on the issue, which gives you another perspective on the issues at hand. Jay Panos Laganakos wrote: > I'm going to work a small photo managment app for an LAN site here, and > I wanted to hear some opinions. > > >From what I've seen people tend to store im

Re: Can I set a local variable in a template?

2006-11-02 Thread Jay Parlar
haven't used it myself, but I think it'd be something like: {% for line in lines %} {% ifchanged %} line.name {% endifchanged %} {% endfor %} Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: Can not add ticket to trac. [patch] Optionally turn off cascading delete

2006-11-02 Thread Jay Parlar
You have to email Tom Tobin ([EMAIL PROTECTED]) for whitelist requests. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

Re: error when Inheritance in models

2006-11-04 Thread Jay Parlar
user = models.ForeignKey(User) > name = models.CharField(maxlength=30) > create_date = models.DateTimeField() > > class Category(MyEntity): > pass > [snip] Django doesn't support model inheritance at this time. Hopefully soon, but not right now. Jay

Re: Generic Views

2006-11-06 Thread Jay Parlar
using your original models.py, plus the new urls.py from the webpage? Or did you completely scrap your original database, and start fresh with what's on the webpage? Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

Re: Re: Generic Views

2006-11-06 Thread Jay Parlar
the code and write a physical view it works perfectly. Could you try starting up the Python interpreter ('python manage.py shell'), and access the model from there? Does that show the entries? Jay P. --~--~-~--~~~---~--~~ You received this message because y

Re: Want to see your favorite branch merged? Here's how you can help!

2006-11-06 Thread Jay Parlar
nd what > > > Info on the active branches: > http://code.djangoproject.com/wiki/ActiveBranches I've tested Row Level Permissions quite a bit. After various fixes from Chris Long, it's working quite well now (for me). Jay P. --~--~-~--~~~---~--~~ You

Re: Newbie DB question

2006-11-06 Thread Jay Parlar
if you're feeling adventurous and you have an itch that needs > scratching, dive in and help. > I don't think the SQLAlchemy branch has actually had any work done on it yet. The trunk keeps getting merged into it, but tha

Re: Django/Javascript string problem

2006-11-08 Thread Jay Parlar
Could you write your own filter to clean up the output to an acceptable level? That's maybe not an ideal solution from your point of view, but it should work. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Re: How do you iterate over a dictionary of objects within a template?

2006-11-10 Thread Jay Parlar
in x: ...: print each ...: ...: a b According to a comment by Adrian on the template documentation page, what you want isn't possible without writing a simple tag or filter. Jay P. --~--~-~--~~~---~--~~ You received this message because you

Re: Re: Re: How do you iterate over a dictionary of objects within a template?

2006-11-10 Thread Jay Parlar
On 11/10/06, Jay Parlar <[EMAIL PROTECTED]> wrote: > When you iterate over a dictionary, you're iterating over the *keys* > in the dictionary, not the values. > > ie. > > In [1]: x = {"a":1, "b":2} > > In [2]: for each in x: >...:

Re: Re: How do you iterate over a dictionary of objects within a template?

2006-11-10 Thread Jay Parlar
On 11/10/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > > On 11/10/06, Merric Mercer <[EMAIL PROTECTED]> wrote: > > > > Jay, that works! Many thanks. Though I don't quite understand why - or > > where 'values' come from. Could you explain. >

Re: Wrapper around a Generic View

2006-11-13 Thread Jay Parlar
return object_list(request, qs, paginate_by=10, allow_empty=True) If it helps, take a look for yourself in django/views/generic/list_detail.py, look at the 'object_list' function, and you can see that it's just taking keyword arguments, the same arguments listed in the documentation. Ja

Re: Date based generic view

2006-11-13 Thread Jay Parlar
= True, > template_name = 'scripts/operations_archive_month.html', num_latest = > '20', allow_future = True)), > ) > > When i try > http://127.0.0.1:8000/budget/2006/08/ > > i get all august operations, but also operations of september

Re: [newbie] runserver and static files

2006-11-13 Thread Jay Parlar
#x27; folder as a relative URL. Look at the request, it's trying to get: GET /budget/2006/08/media/css/budget.css which isn't what you want. Your HTML should probably be: (ie. I added a '/' in front of 'media') Jay P. --~--~-~--~~~-

Re: How to restart Django/FastCGI/Lighttpd?

2006-11-13 Thread Jay Parlar
ould be able to just do a 'touch' on your .fcgi file. Really though, you should be doing development with the built-in dev server, and then when you have your models and everything working, move to lighttpd. Jay P --~--~-~--~~~---~--~~ You received this

Re: Obsoleting by date

2006-11-14 Thread Jay Parlar
is: Event.objects.filter(end_date__gte=datetime.now()).order_by('end_date') Notice also that the 'upcoming_events' extra context is returned by a function. The reason for this is that I want datetime.now() to be called everytime the URL is accessed, not jus

Re: Online "beta" Book

2006-11-15 Thread Jay Klehr
x27;s not in the development version's trunk, but in the " <http://code.djangoproject.com/browser/django/branches/boulder-oracle-sprint>boulder-oracle-sprint" branch. Jay --~--~-~--~~~---~--~~ You received this message because you are subscrib

Re: Adding a button to admin view?

2006-11-15 Thread Jay Parlar
r some file > > entries, so it needs to be a link to file. Any idea how this should be > > done? You might also be able to use the 'js' option to add some custom JavaScript to the page, and add the button via that. Jay P. --~--~-~--~~~---~--~--

Re: How to restart Django/FastCGI/Lighttpd?

2006-11-15 Thread Jay Parlar
my production server. >From there, I have an svn checkout. Go there, do my 'svn up'. Then, I do 'svn export --force ...' to make a pristine copy of the contents of the svn checkout into the directory that contains my actual running website. I'm sure there are better

Re: syncdb doesn't handle blank=True correctly?

2006-11-15 Thread Jay Parlar
ger-, String- and ForeignKey-Fields. Manually changing the fields > in the db solved the problem.) blank=True is *only* for admin level validation, it has no effect on the db. You want null=True Jay P. --~--~-~--~~~---~--~~ You received this message because

Re: Automatically adding http:// to a URLField

2006-11-15 Thread Jay Parlar
You could also set a 'default' value for the field, something like default="http://"; Then it will be prepopulated, which would help a little. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

Re: How to restart Django/FastCGI/Lighttpd?

2006-11-16 Thread Jay Parlar
list member is even the one that created TextDrive's screencast). Maybe you can get some answers that way. For better or worse, I use Dreamhost, so I'm afraid I'm not much more help to you. I'm just worried that no one else is reading this th

Re: Database optmization guru needed...

2006-11-18 Thread Jay Klehr
e WHERE RAND() > 0.9 ORDER BY RAND() LIMIT 10, but I didn't see much added benefit when running it on my own large tables (same Explain result too as the previous one). Give those a shot though and see if they help anything. You may have to take this into the applica

Re: Re: How should I store credit cards for offline processing

2006-12-01 Thread Jay Parlar
On 12/1/06, Noah <[EMAIL PROTECTED]> wrote: > > I'm not in charge of such decisions. I only write the code. Doesn't remove the moral obligation on your part to do something about it, or refuse the work. Jay P. --~--~-~--~~~---~--~~ You

Re: Extending User

2006-12-01 Thread Jay Parlar
t; Traceback (most recent call last): > ... > DoesNotExist: UserProfile matching query does not exist. > > The Question: > How do I get the userprofile created with each user? (I tried the > OneToOne model and that didn't work either). > >

Re: Question concerning generic views or date based views in general

2006-12-04 Thread Jay Parlar
above to see how I select upcoming events from the database, namely: def get_upcoming(): return Event.objects.filter(end_date__gte=datetime.now()).order_by('end_date') If you don't understand what's going on there, you'll need to read the documentation more. Hope

Re: Re: Video stream uploading/playing

2006-12-04 Thread Jay Parlar
to store the file on disk during the upload, instead of RAM, which is supposed to help quite a bit. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this gr

Re: Re: is there a way to combine generic views?

2006-12-07 Thread Jay Parlar
se correctly. :) None of the generic views combine an "object > detail" with "object list." But it's very easy to pass in the object list as 'extra_context' to the generic view, which I think people sometimes forget about. Jay P. --~--~-~--~~-

Re: Looking to hire

2006-12-08 Thread Jay Parlar
e more information about the position, please contact > me directly at jim.fritchman (at) gmail (dot) com. > > Please feel free to pass this along to anyone you know that might be > interested. > Don't forget to post this over at http://gypsyjobs.com/, where they s

Re: Installation on Python25

2006-12-14 Thread Jay Parlar
nection to the > internet. I answered yes, and saw a short burst of traffic. > > What was not found, and what do I do about it? Are you running behind a proxy server, by any chance? urllib2 can get tripped up in that situation. Jay P. --~--~-~--~~~---~--~~

Re: Installation on Python25

2006-12-14 Thread Jay Parlar
On 12/14/06, kbochert <[EMAIL PROTECTED]> wrote: > > Not that I am aware of. Windows 2000, Sygate personal firewall. Comcast > cable. > Plain vanilla I think. > Could you paste in the full text of the traceback? Jay P. --~--~-~--~~~---~--~---

Re: Installation on Python25

2006-12-14 Thread Jay Parlar
oved at one point, don't know if that's true anymore). So this won't be a problem in the future. You just happened to be one of the few people running Python2.5 and Django 0.95. Most people running 2.5 are probably running Django out of SVN, where this isn't an issue. Let me kno

Re: Would Django be a good framework for developing and engineering/science application

2006-12-14 Thread Jay Parlar
it" button would immediately bring the engineer to a new page, and I could keep them up to date on the status as the separate server did its processing. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: CSS Basics

2006-12-19 Thread Jay Parlar
d from http://media.djangoproject.com For a better explanation, see: http://www.djangoproject.com/documentation/static_files/ Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: Permissions at object instance level

2007-01-15 Thread Jay Parlar
though. I know Adrian has been doing occasional trunk mergers of it, as Chris Long, the original author, seems to have stopped development on it. I'd say it's as close to merge ready as any of the branches, but there were never enough people testing it to push i

Re: Trouble with stockphoto

2007-01-15 Thread Jay Parlar
my site's code here: http://svn.jayparlar.com/website/trunk/awwca/ Jay P. --~--~-~--~~~---~--~~ 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 T

Re: Trouble with stockphoto

2007-01-16 Thread Jay Parlar
. For my site, for example, one of the .jpgs have the link: http://media.awwca.ca/site_media/stockphoto/2006/09/17/HPIM1621a.JPG Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To p

Re: Trouble with stockphoto

2007-01-16 Thread Jay Parlar
ing up a 'proper' server while in development. Hmm, that MEDIA_URL worries me. Can you try setting that to something more concrete? > For my site, for example, one of the .jpgs have the link: > http://media.awwca.ca/site_media/stockphoto/2006/09/17/HPIM1621a.JPG Is this taken f

Re: Trouble with stockphoto

2007-01-16 Thread Jay Parlar
d a default install - I thought perhaps 'photos' was causing the problem). Can you paste the full traceback for the string index error? Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djan

Re: Trouble with stockphoto

2007-01-17 Thread Jay Parlar
er that, "stockphoto/2007/01/17/newser.jpg" is roughly the correct path to the actual file. BUT, that path should be a child of the media directory, not of the admin edit page. The problem is most likely with your MEDIA_URL. Make sure it ends with a '/' Jay P. --~--~---

Re: Trouble with stockphoto

2007-01-17 Thread Jay Parlar
On 1/17/07, Isaac Alston <[EMAIL PROTECTED]> wrote: > The problem is most likely with your MEDIA_URL. Make sure it ends with a '/' Thank you very much. That seems to be it fixed :-D. First I had MEDIA_URL set to: ' ' then '127.0.0.1:8000', then '127.0.0.1:8000/' then '/', then finally '/smedia

Re: Context-sensitive 'upload_to' parameter for FileField

2007-01-20 Thread Jay Parlar
times in this list. If you search through, you should be able to find one or two solutions. None of them are great, but they're all that's available. Many moons ago, I submitted a patch that allowed custom upload_to. No idea if it would work a

Re: Django Book Add Google or Yahoo Site Search

2007-01-21 Thread Jay Parlar
ch the djangobook.com domain. So do "site:djangobook.com adrian" to find all the occurrences of "Adrian" on the site. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Uploading large files via http FORM

2007-02-02 Thread Jay Parlar
estion. > L. > Even if you reconfigure your Apache, your CPU is going to get maxed out. Read through the archives, there is a patch or two out there to change the way Django handles uploads, to allow for big files. Jay P. --~--~-~--~~~---~--~~ You received this mess

Re: Per object permissions

2007-02-07 Thread Jay Parlar
for me. Luckily the site doesn't need any major changes (and won't anytime soon), or I'd have some issues. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users"

Re: Per object permissions

2007-02-08 Thread Jay Parlar
n is too busy with the newforms branch right now. Jay P. --~--~-~--~~~---~--~~ 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 unsubscrib

LANGUAGE_CODE and render_to_response?

2006-05-12 Thread Jay Parlar
AGE_CODE is in base.html When I load firmware/ in the browser and look at the source, the LANGUAGE_CODE didn't get populated, it was just replaced with empty strings. However, it works fine for firmware/success Is there something about render_to_response that makes it that LANGUAGE_CODE do

<    1   2   3   4   5   6   >