Re: how to get the hash part(string after the'#' mark) of the requesting url in diango

2008-11-13 Thread Brett Parker
's a pointer for the browser to a named anchor tag -- Brett Parker --~--~-~--~~~---~--~~ 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.co

Re: Django configuration. I can't import django.db .

2008-12-06 Thread Brett Parker
e error. How can I set this path, and where are stored django.db modules > defaultly on linux ? Are you running python directly and then importing django? It might be better to do: python manage.py shell from the applcation directory. Thanks, -- Brett Parker --~--~-~--~~---

Re: login django using curl

2008-12-15 Thread Brett Parker
"click" on them which is rather handy. I'm using it to monitor a few sites (not, unfortunately, written in django), and it is rather nice being able to just click round the place and get data out again when needed. Mechanize + BeautifulSoup is a very nice combination indeed. Th

Re: How to translate into Django

2008-10-16 Thread Brett Parker
) Then you can do what you like with that content. Cheers, -- Brett Parker --~--~-~--~~~---~--~~ 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@googlegrou

Re: How to detect inactivity session time out?

2009-02-12 Thread Brett Parker
t cookie (maybe, say, a day), and delete that cookie in the case of them actually logging out rather than their login timing out. Should be fairly easy to do from the login/logout views. Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message be

Re: Oracle connection issue

2009-02-23 Thread Brett Parker
s empty, do: export LD_LIBRARY_PATH=/path/to/the/oracle/libraries And then try starting the server. Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: Lookup across relations

2009-03-18 Thread Brett Parker
provements are > in 1.0.2, though. So that's the point to aim for. At which point, he can probably just install the .deb from the debian lenny repository (Chris Lamb has been really on the ball in getting the releases through recently, and many thanks to him!). h

Re: Split Database Model for Replication: RW/RO

2009-03-26 Thread Brett Parker
rt permissions and > with the admin app installed. The public-access version uses a different > settings file with a read-only DATABASE_USER and doesn't have the admin > app in the INSTALLED_APP list. Doesn't that mean sessions would be broken, though? Public website without write acces

Re: mysite.polls: __init__() got an unexpected keyword argument 'max_length'

2009-04-24 Thread Brett Parker
eck if that's installed with: dpkg -l python-django ) Also, if that is the version that is installed, it'll be in /usr/share/python-support/python-django Hope that helps, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you

Re: Python noob tuples question

2009-05-22 Thread Brett Parker
for the first one but > the next add gives me > ((('john','adams'),('sam','smith')),('john','doe')) > > > If I do this PEOPLE += ('john','doe') I get a string > (('john','adams'),

Re: 1.0 tutorial Pt. 4, Poll Detail form appends action to redirect URL

2009-05-26 Thread Brett Parker
question }} > > {% if error_message %}{{ error_message }}{% > endif %} > > ^^^ the action there should probably be /polls/{{ poll.id }}/vote/ (but that's not very pretty). Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this mes

Re: newbie. need help in validation

2009-10-14 Thread Brett Parker
age, then I'm sure the custom validation will make sense. Thanks, -- Brett Parker --~--~-~--~~~---~--~~ 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

Re: First tutorial - Not off to a good start :(

2009-10-15 Thread Brett Parker
kages have django-admin, not django-admin.py on the path, as that binary is copied to /usr/bin and the policy says that binaries in there should not include the extension. Thanks, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are sub

Re: Will PasswordField be in Django?

2009-11-10 Thread Brett Parker
soon? > When? Or, what is the matter of it? Well, a password field isn't actually a different type of data than a text field, so you'd usually just override the form's default for the password field, using a modelform to specify that you want it to

Re: Will PasswordField be in Django?

2009-11-10 Thread Brett Parker
On 10 Nov 21:10, Shu Hung (Koala) wrote: > On Tue, Nov 10, 2009 at 8:55 PM, Brett Parker > wrote: > > > > > Well, a password field isn't actually a different type of data than a > > text field, so you'd usually just override the form's default for th

Re: background-image

2010-04-28 Thread Brett Parker
the url should work, i.e. background-image: url(file:///home/lucak904/Scrivania/Luca/Webframework/Jacopo/genova_3.JPG); Thanks, -- Brett Parker -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to d

Re: Can I inport recaptcha?

2010-11-17 Thread Brett Parker
> > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-us...@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@goog

Re: strange behaviour of webfaction

2010-01-08 Thread Brett Parker
'upstream proxy > server' that nginx mentions in the 'bad gateway' message is my apache > instance. But so far have not been able to check out whether it is down, > because by the time I get the message from my client the site is up again. Erm, would you like to rea

Re: Apache & wsgi & Django > Content-Length

2010-02-02 Thread Brett Parker
#x27;t what you wanted it to do. Are you saying that the phone can't read unless Content-length is set? You might be able to do that with some middleware, infact, it appears that you can just use the ConditionalGetMiddleware to add the Content-length header. http://docs.djangoproject.com/en/d

Re: Javascript-Django image paths

2007-06-24 Thread Brett Parker
img.src = '/images/schematics/SKU' + suf + '.jpg'; > } Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, se

Re: html sanitizers

2007-07-13 Thread Brett Parker
On Fri, Jul 13, 2007 at 11:48:50AM +0100, Nic James Ferrier wrote: > > Brett Parker <[EMAIL PROTECTED]> writes: > > > On Fri, Jul 13, 2007 at 11:18:18AM +0100, Nic James Ferrier wrote: > >> > >> Derek Anderson <[EMAIL PROTECTED]> writes: > >

Re: html sanitizers

2007-07-13 Thread Brett Parker
zer = HTMLSanitizer('utf8') sanitizer.feed(content) output = sanitizer.output() Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: startproject errors with Ubuntu

2007-08-06 Thread Brett Parker
aintainer" field. The packaging just uses python support - there's nothing clever going on there - the only thing we (me and raphael, my sponsor for that package) do is rename django-admin.py to django-admin and drop it in /usr/bin for convienience. (Oh, and change

Re: startproject errors with Ubuntu

2007-08-06 Thread Brett Parker
; extensions like .py on commands. Absolutely correct: http://www.debian.org/doc/debian-policy/ch-files.html#s-scripts Because the django-admin script is put in to /usr/bin, it needs to follow Debian policy! However - for the people that *really* want to use django-admin.py, you can d

Re: startproject errors with Ubuntu

2007-08-07 Thread Brett Parker
On Mon, Aug 06, 2007 at 11:08:08AM -0700, john wrote: > > On Aug 6, 9:48 am, Brett Parker <[EMAIL PROTECTED]> wrote: > > On Mon, Aug 06, 2007 at 06:07:16AM -0700, john wrote: > > > > > On Aug 5, 10:46 pm, "James Bennett" <[EMAIL PROTECTED]>

Re: hai am new one to django

2007-09-05 Thread Brett Parker
American and had oil... (of course, we don't all believe that, but lets just change from "the American way" to "the sane people's way" for clarity purposes and such...) -- Brett Parker --~--~-~--~~~---~--~~ You received this message be

Re: php fsockopen equivalent in Django

2007-09-09 Thread Brett Parker
/module-urllib2.html Which let you do GET and POST really quite nicely (and also have the value added bonus of letting you use Cookies if you need them!) Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

Re: Setup Help

2008-01-06 Thread Brett Parker
/py as a holding place for python libraries... I'll also hazard a guess that it's not holding much other than the django directory at the moment. Try doing: cd /home/ktb/py touch __init__.py and then try again. Cheers, -- Brett Parker --~--~-~--~~~---~--~--

Re: Need a replacement of pyLucene :(

2008-01-11 Thread Brett Parker
ompiling it with MSVC, or using it in Cygwin. Hope that helps, -- Brett Parker _ .. Xapian: http://www.xapian.org/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this gro

Re: remove ^M: project moved from window to linux

2008-01-12 Thread Brett Parker
e dos2unix on your linux box... at which point you just do something like: find . -type f | xargs sed -i -s -e 's#\r$##;' HTH, HAND, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups &qu

Re: remove ^M: project moved from window to linux

2008-01-13 Thread Brett Parker
t;return", short for carriage return). But I'm sure you knew that really ;) -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send emai

Re: These waters aren't so friendly after all

2008-01-18 Thread Brett Parker
as > Forest Bond points out, django-admin is in a shell-executable path. Yup - because debian policy dictates that things in /usr/bin should *not* have an extension telling you which language they're implemented in (*waves* as the debian python-django

Re: postgresql create db script

2008-01-18 Thread Brett Parker
dit /etc/postgres/pg_hba.conf (or similar location) and you might need to add your user - if it's prompting for a password then the only way I know of getting round the password issue is to specify it as the environmental variable PGPASSWD. Hope that helps, -- Brett Parker --~--~

Re: These waters are friendly after all

2008-01-18 Thread Brett Parker
f Django > installed at any given time, that's also a nice way to switch > between them for testing. That's the better reasoning for not using the packaged version, if you're supporting multiple different sites against different versions of django. Cheers :) -- Brett Parker --

Re: Newbie sqlite3 dbshell confusion

2008-02-01 Thread Brett Parker
ould be able to pull in that and only that from the experimental repository. The latest snapshot was r7047 (thanks Gustavo). Thanks, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django use

Re: Newbie sqlite3 dbshell confusion

2008-02-01 Thread Brett Parker
to > adopt more than one new technology at a time, but I got no choice, > gotta plunge in...) > > On Feb 1, 6:22 am, Brett Parker <[EMAIL PROTECTED]> wrote: > > There are svn snapshot packages available from the debian experimental > > repository, with some pinning you

Re: Newbie sqlite3 dbshell confusion

2008-02-01 Thread Brett Parker
On 01 Feb 08:00, bobhaugen wrote: > > Thanks again, Brett. > > On Feb 1, 7:45 am, Brett Parker <[EMAIL PROTECTED]> wrote: > > If you're just wanting to run the latest trunk then you can just use an > > svn checkout and add that in to PYTHONPATH on the comma

Re: Django cannot be used by large web sites?

2008-02-12 Thread Brett Parker
> /cart/save > /cart/details/item/qty/save =P haha yea, I'm reaching here on the last But then you'd just write a dispatcher, surely! -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Google App Engine Django??

2008-04-09 Thread Brett Parker
is to setup the api stubs required by the appengine libraries if they have not already been initialised by an appserver. """ So, that'll be a no then :) (ref: http://code.google.com/p/google-app-engine-django/source/browse/trunk/appengine_django/db/base.py) Cheers, -- B

Re: tutorial question

2008-04-11 Thread Brett Parker
t; without a database needed? You'll be wanting a database, that's where the models store their data. If you don't want anything too complicated, sqlite would probably be the easiest to set up (depending on what OS you're using etc). Thanks, -- Brett Parker --~--~-~

Re: Django en Dreahost

2008-04-18 Thread Brett Parker
> afaik no I assume that you're reading <= as less than or equal to, as any sane person would... I think they meant >= 2.3 ;) -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dja

Re: manage.py setting sys.path wrong

2007-03-29 Thread Brett Parker
gt; not /srv/vhosts/myhost/site/site! > > Is there anything I can do about it? Try... su -c "PYTHONPATH=/srv/vhosts/mysite/site \ DJANGO_DB_NAME=dbname DJANGO_DB_PASS=dbpass \ DJANGO_DB_USER=dbuser DJANGO_SECRET_KEY=secret \ /srv/vhosts/myhost/site/manage.py runfcgi daemonize=fal

Re: creating account and user_profile simultaneously

2007-03-31 Thread Brett Parker
r. But how do I get user's ID after new_user = form.save()? Get > the latest user? After the save, the new_user object should have the id. It should be the user object that was just saved. hope that helps, -- Brett Parker --~--~-~--~~~---~--~~ You receiv

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

2007-04-20 Thread Brett Parker
, 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. > >

Re: [django] Subject in posts

2007-05-04 Thread Brett Parker
ple with broken mail clients that also keep prepending Re: then those 14 characters become very important - my terminal is usually only about 80 characters long, most of the time I can only see around 20/25 characters of the subject line, I'd really rather that they were al

Re: [django] Subject in posts

2007-05-04 Thread Brett Parker
r > messages based on 'To: django-users@googlegroups.com'. List-Id: ^ That's a better header to match on, IMO, then if the list is CC'd/BCC'd you'll still have the mail sorted in to the right folder (it's how I sort all list traffic).

Re: 'module' object is not callable

2006-10-01 Thread Brett Parker
st': list,}) >return HttpResponse(t.render(c)) > I'm not sure what you've got imported, but the Context should have a C... from my views I have: from django.template import Context, loader Cheers, -- Brett Parker --~--~-~--~~~---~--~

Re: Help with get absolute url

2006-12-12 Thread Brett Parker
/(?P.*)/$ >8. ^categories/$ >9. ^categories/(?P\d+)/$ > > The current URL, /categories/1/k/, didn't match any of these. Errr, well it won't, the closest is 9... but you'd need something more like: ^categories/(?P\d+)/(?P\w+)/$ Cheers, -- Brett Parker

Re: PyLucene

2006-12-30 Thread Brett Parker
y rather interesting: http://www.xapian.org/ Cheers, -- Brett Parker --~--~-~--~~~---~--~~ 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@googlegroup

Re: Python 2.5

2007-01-10 Thread Brett Parker
Any further info would be appreciated. Looks like you're missing the C library behind MySQLdb, check that you have python2.5-mysqldb installed. Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

Re: Shuffled Model selection

2007-02-09 Thread Brett Parker
Err, why not use a random sort as... Obj.objects.order_by('?') ref: http://www.djangoproject.com/documentation/db_api/#order-by-fields That way you don't use all the memory in the world, and you're letting the datab

Re: Tutorial 2 - Admin

2006-05-04 Thread Brett Parker
rm with a whole bunch of files to remove, and so rm gets run less often, which is good. Less processes are the way forwards! Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django user

Re: mod_python and admin css suggestion?

2006-05-22 Thread Brett Parker
On Mon, May 22, 2006 at 10:58:22AM -0500, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 5/19/06, Josh Trutwin <[EMAIL PROTECTED]> wrote: > > According to the docs, serving the css in the admin is best done > > via: > > > > 1. Create a symbolic link to the admin media files from within your >

Re: I need instructions in best way to use django under IIS shared hosting (Python is installed)

2006-05-25 Thread Brett Parker
On Wed, May 24, 2006 at 07:18:06PM -, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I know... > > I have the option to get Linux as a fallback. Shouldn't ever be a fallback, it should be the primary choice - unless you're fond of having your webserver compromised... (speaking from exper

Re: Django Quick Start with Schema Evolution Support

2006-06-05 Thread Brett Parker
set of pages on your own site that could say anything... have you got any references *outside* of your own domain that say that you're not a troll and that your troll like tendencies are over? Or are you just expecting it to be taken on faith? "Thanks", -- Brett Parker --~--~---

Re: Django Quick Start with Schema Evolution Support

2006-06-05 Thread Brett Parker
nt to ignore the thread. (3) If you actually want to provide a useful reference, provide a useful reference rather than calling the target audience "Incapable Species" Also, it appears that your web design skills suck, and the menu on tha

Re: Backing HTML 'Compnents'

2006-06-06 Thread Brett Parker
7;, d) Sounds more like something to use Middleware and ContextProcessors for to me. Use the Middleware to add it to the request, then the context processor to make it accessable in the templates. AIUI all of the generic views and render_to_response use RequestContext rather than Request, so you should

Re: Site testing How-To

2006-06-07 Thread Brett Parker
and dev instances that have the right settings in. I'm currently using this style setup for a project, seems to work quite well, even using sqlite3 on the dev server and postgres on the live server. Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received th

Re: going crazy: foreignkey-reverse-lookup: tests work,my code fails

2006-06-14 Thread Brett Parker
> > My application needs a list of "active" rates (those rates that are in > use by an active Card). Here is my query: > > Rate.objects.filter(rateset__card__active_exact=True).distinct().values('countryfrom')

Re: ftp not allowed for django uner modpython with DEBUG

2006-06-14 Thread Brett Parker
ite the file nicely. Unfortunately I never found a way to do it without shutting down the server accessing the file in windows. Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django use

Re: "Normalizing/cleaning" text of bad/unclosed tags?

2006-06-21 Thread Brett Parker
that takes the input, throws it through feedparsers sanitizer, and checks the output against the input raising a validation exception in the case that they don't match - seems to work quite well! Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this

Re: Packaging django/flup for ubuntu

2006-07-05 Thread Brett Parker
>> > >> I want to mantain a nightly .deb build from django svn, to help > >> the poor (tm) > > > > There is a packaging guide in the included help (System --> Help --> > > first item there) as well as on-line on <https://help.ubuntu.com/>. >

Re: Django and Oracle, again

2006-07-06 Thread Brett Parker
s - but then I am using it in a minorly manual way using a legacy database from another project - it runs quite a lot nicer than the tcl that was querying it ;) Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Template error "Could not parse the remainder"

2006-07-12 Thread Brett Parker
I want is nested loops : >{% for s in p.schedule_set.all() %} > {% for v in s.visit_set.all() %} Don't use the ()! Cheers, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users&

Re: 'Pythonicity', pagination and readability.

2006-08-15 Thread Brett Parker
, 'pages': { 'nextpage': paginator.has_next_page(page), 'nextpagenumber': (page + 1), 'previouspage': paginat

Re: Accessing db_table in _pre_save()

2006-08-16 Thread Brett Parker
e() was ousted as part of MR - so, surely you're just using an overridden save() method? _pre_save() shouldn't work (should it?) http://www.djangoproject.com/documentation/models/save_delete_hooks/ is the current way to do that ;) Cheers, -- Brett Parker --~--~-~--~~--

Re: Running two django projects on the same server

2006-09-05 Thread Brett Parker
;d guess setting SESSION_COOKIE_NAME in one or both to be something other than sessionid would solve it. Thanks, -- Brett Parker --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: approaches to deployment

2005-10-22 Thread Brett Parker
w other folks are doing this. I'm just building and installing new debian packages - then manually fixing the backward incompatabilities. Cheers, - -- Brett Parker web: http://www.sommitrealweird.co.uk/ email: [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Vers

Re: approaches to deployment

2005-10-22 Thread Brett Parker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bill de hÓra <[EMAIL PROTECTED]> wrote: > > Brett Parker wrote: > > Bill de hÓra <[EMAIL PROTECTED]> wrote: > > > >>>How are you guys managing Django deployments? I'm tending towards upload > >&g

Patch to get the timezone right in the settings.py on linux

2005-11-20 Thread Brett Parker
Hi all, Attached is a patch against current svn (applies to 0.90 also), that automatically sets TIME_ZONE and LANGUAGE_CODE according to the hosting system. Cheers, -- Brett Parker web: http://www.sommitrealweird.co.uk/ email: [EMAIL PROTECTED] Index: django/core/management.py

And a very similar patch without the typo :/

2005-11-20 Thread Brett Parker
there was a typo in the last patch - sorry! -- Brett Parker web: http://www.sommitrealweird.co.uk/ email: [EMAIL PROTECTED] Index: django/core/management.py === --- django/core/management.py (revision 1298) +++ django/core

Re: Patch to get the timezone right in the settings.py on linux

2005-11-21 Thread Brett Parker
any way, shape, or form change the ability to edit settings.py. Have you got a different suggestion for how this should be set? Maybe it would be good to be able to give a whole metric full of options to the django-admin.py utility? Thoughts? Cheers, - -- Brett Parker web: http://www.som

Re: Accessing Post variables in _post_save

2006-01-03 Thread Brett Parker
or wasn't (as such) POST variables as the Model data that had been passed through (I was talking to him in IRC in another place), which is as simple as self.fieldname. Thanks, -- Brett Parker

Re: only show something(form) if javascript-enabled

2006-02-21 Thread Brett Parker
On Mon, Feb 20, 2006 at 10:36:38PM +, Graham King wrote: > > You could make the form invisible using css: > > #theFormId { >display: none; > } > > then use Javascript to change this to display = block. If they don't > have Javascript the form won't appear. > > Or you could use J

Re: Is it secure to have IDs show up in URLs?

2012-03-23 Thread Brett Parker
entirely spidarable, and there's plenty of software out there that will parse web pages and download all content, and follow links, etc. Cheers, -- Brett Parker -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: Is it secure to have IDs show up in URLs?

2012-03-23 Thread Brett Parker
On 23 Mar 12:04, Tom Evans wrote: > On Fri, Mar 23, 2012 at 12:00 PM, Brett Parker > wrote: > > On 23 Mar 04:38, Bastien wrote: > >> Sorry maybe my post was not very clear, I am talking about public content > >> here, that should be accessed by anyone, even anony

Re: Error in return the view (The view did not return an HttpResponse object)

2013-07-11 Thread Brett Parker
Response object.* > > Someone can help me? What am I doing wrong? Well, you're only returning something if it's a POST, if you're just visiting the URL then you'll be getting a GET request, which, erm, you don't appear to have coded for... -- Brett Parker -- You r

Re: custom management commands django

2013-07-24 Thread Brett Parker
/bin/sh: 1: /usr/lib/python2.7: Permission denied > I have done chmod 777 - R /usr/lib/python2.7 but still this error prompt > please help. > thanks in advance. Wel /usr/lib/python2.7 is likely to be a directory, so you're trying to execute the directory... Maybe you want

Re: Problem Spoofing From Field with Django Emails

2011-05-10 Thread Brett Parker
learly there are > webservices out there that send emails from any account to any > account, without credentials. To a limited extent - also don't forget that the envelope sender and the from header are different. > What am I missing here? Mostly that gmail *will not* allow you to send

Re: Problem Spoofing From Field with Django Emails

2011-05-10 Thread Brett Parker
like that) on authenticated smtp - the only way you could do it is by going through a third party server that does not rewrite the from header, and have the mail submitted to google from there. -- Brett Parker -- You received this message because you are subscribed to the Google Groups "Dj

Re: markup

2011-05-26 Thread Brett Parker
On 26 May 08:27, Vladimir wrote: > Is there a tool to transform MS WORD file into HTML ? I know there is > markdown and textile, but I would prefer MS WORD. http://wvware.sourceforge.net/ -- Brett Parker -- You received this message because you are subscribed to the Google Groups &

Re: Storing IP address as integer within database to remove need for full text search

2011-07-18 Thread Brett Parker
to be v4 only for backwards compatibilty reasons, GenericIPAddressField covers both, so in theory I've got no problems with that, other than it making IPAddressField backwards incompatible which seems silly at this point, and I'd be recommending people to be using GenericIPAddressField anyways

Re: acces lists by index

2011-03-10 Thread Brett Parker
{% for x in akt|slice:"-1" %} {{ x }} {% endfor %} Maybe quicker. -- Brett Parker -- 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 unsubsc

Re: Python / Django Web Applications Developer - Michigan $90-$100/hr

2014-01-23 Thread Brett Parker
be suprised if you got many applicants that could actually fulfil your "requirements" for what you're offerering vs what you expect. (also, this is not, as far as I'm aware, a jobs list.) Thanks, -- Brett Parker -- You received this message because you are subscribed to the G

Re: Python / Django Web Applications Developer - Michigan $90-$100/hr

2014-01-23 Thread Brett Parker
On 24 Jan 09:28, Russell Keith-Magee wrote: > On Fri, Jan 24, 2014 at 9:12 AM, Brett Parker > wrote: > > > > > (also, this is not, as far as I'm aware, a jobs list.) > > > > It is - as long as the jobs are relevant. I sit happily corrected :) > It'