i18n - besides translation

2009-08-22 Thread hinnack
Hi, while translating a site, I wonder if there is something that keeps care of all national formats and encodeings like: - money symbol ( pre or post sign) - number format - date format - etc. -- Hinnack --~--~-~--~~~---~--~~ You received this message because

pydra

2011-08-23 Thread hinnack
hi all, Anyone ever used pydra? http://code.osuosl.org/projects/pydra/wiki could not find a thread on the list... Regards Henrik -- 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.c

Re: xgettext under osx

2009-09-05 Thread Hinnack
gettext should come with apples developer tools - otherwise install them using fink or port -- Hinnack 2009/9/2 Ramiro Morales > > On Wed, Sep 2, 2009 at 12:32 PM, arbi wrote: > > > > As for the PATH I thought it was for compilation and not for make > > message. > >

create non-form widgets like a ajax driven table

2009-09-07 Thread hinnack
Hi, is there a standard way, how to create non form widgets - e.g. a table - just showing data, no edit possible - therefore no form? I know I can create an object, put in a method toHTML or render that returns the safe HTML/JS code... But how should it be done? -- Hinanck --~--~-~--~--

Re: create non-form widgets like a ajax driven table

2009-09-07 Thread Hinnack
that sems to be build on templates... but if I do not want to uses templates? is there already something like forms? -- hinnack 2009/9/7 Ben Davis > In django terms, a table is not a widget. Widgets are basically different > input methods for form fields. Django's admin app has

IN query problem with 2 for loops on a template

2009-09-22 Thread hinnack
e loops (not nested) I get 1 select for events and as much selects for loc as rows in the result of the second query - no IN select is generated instead each row is fetched itself. how can I prevent this? -- Hinnack --~--~-~--~~~---~--~~ You received this messa

same session on more than 1 website

2009-09-24 Thread hinnack
t the site sets a new one. Because of this the site can not find the value. I am sitting on TRUNK. session-data is store in DB. reading and setting session vars inside each site works well what am I doing wrong? -- Hinnack --~--~-~--~~~---~--~~ You received th

Re: same session on more than 1 website

2009-09-25 Thread Hinnack
please add to the documentation:every site has to have the same SECRET_KEY, too when you want to get session vars from a different host, as the cookie-data is encoded by this key. -- Hinnack --~--~-~--~~~---~--~~ You received this message because you are

german umlaute on search querys

2009-11-24 Thread Hinnack
I get results... what am I doing wrong? -- Hinnack -- 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-user

Re: german umlaute on search querys

2009-11-24 Thread Hinnack
ST['search']) qs = search['caption'].encode('iso-8859-1') searchstr = urllib.unquote_plus(qs).strip('=!~') basic.filter( Q(evid__caption__icontains=searchstr) ) I do have no DATABASE_OPTIONS set. Maybe that's it? -- Hinnack 2009/11/25 Karen Tr

Re: german umlaute on search querys

2009-11-26 Thread Hinnack
because I am sitting on a MAC while debugging. (the search problem itself stays the same on MAC and LINUX debian) regards -- Hinnack 2009/11/26 Karen Tracey > On Wed, Nov 25, 2009 at 1:54 AM, Hinnack wrote: > >> Hi Karen, >> >> thanks for your reply >> >> it

extend queryset field lookups for time

2009-11-27 Thread Hinnack
existing of YEAR, MONTH, DAY for > and <... regards -- Hinnack -- 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

Re: german umlaute on search querys

2009-11-29 Thread Hinnack
. -- Hinnack 2009/11/26 Karen Tracey > On Thu, Nov 26, 2009 at 7:03 AM, Hinnack wrote: > >> Hi Karen, >> >> thanks again for your reply. >> I use Aptana with pydev extension. >> Debugging the app shows the following for search: >> dict: {u'caption&

Ticket #2417 Support for binary type fields

2009-12-13 Thread Hinnack
Hi, is there a timeframe, when this will make it into TRUNC or a version? regards -- Hinnack -- 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

Re: Django editor for Debian

2009-12-16 Thread Hinnack
you can also try aptana, a eclipse clone where you can use pydev, too -- Hinnack 2009/12/16 Nicu Marcu > Thanks, I will try with eclipse and pydev > > 2009/12/16 Jani Tiainen > > On Tue, 2009-12-15 at 23:58 -0800, NMarcu wrote: >> > Hello all, >> > >> &g

Fwd: Ticket #2417 Support for binary type fields

2009-12-18 Thread Hinnack
noone interested in this? -- Hinnack -- Forwarded message -- From: Hinnack Date: 2009/12/13 Subject: Ticket #2417 Support for binary type fields To: Django users Hi, is there a timeframe, when this will make it into TRUNC or a version? regards -- Hinnack -- You received

Re: extend queryset field lookups for time

2009-12-18 Thread hinnack
has nobody an idea for this? Hour and Minute itself seems to be easy - should just be added to where.py WhereNode class => make_atom() - but how to extend the functionality to greater / lower? -- Hinnack On Nov 27, 2:53 pm, Hinnack wrote: > Hi, > > how would I extend the field l

Re: Best way to keep populating database after creation?

2009-12-22 Thread Hinnack
you could use a migration tool like this: http://south.aeracode.org/ and do some data migration... -- Hinnack 2009/12/22 Kevin L > Hi, could anyone offer some tips as to the best way to keep populating > my Django database after it's finalized (schema-/model-wise)? The app >

Re: Matplotlib with Django

2009-12-26 Thread Hinnack
if you want to offer lots of properties one can change, POST via ajax is the better way - as you said long URLs can get very ugly - although you could shorten them like youtube or others do it. GET is far better at this point of time, as only GET requests are cachable (as far as I know) by djangos

Re: Django Gantt Chart

2010-01-04 Thread Hinnack
what about: http://matplotlib.sourceforge.net/ -- Hinnack 2010/1/4 Daniel Hilton > 2010/1/4 Alessandro Ronchi : > > I need to make a simple chart with a list of projects and a grafic > > display of the end date with a link to the project page. > > It's simpler than

Re: Python based web reporting tool?

2010-01-08 Thread Hinnack
I am using reportman http://reportman.sf.net it has a WYSIWYG Editor and a console tool or server with viewer and can export to HTML, PDF, ... 2010/1/7 Nick Lo > > I have a question for those of you doing web work with python. Is > > anyone familiar with a python based reporting tool? I am abou

need for caching POST requests

2010-01-12 Thread hinnack
write a decorator) -- Hinnack -- 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...@googlegroups.com

Re: need for caching POST requests

2010-01-13 Thread Hinnack
there must be done more then this - e.g. the value of the key the data is stored in cache has to be calculated from POST vars instead of URL alone 2010/1/13 Tomasz Zieliński > > > On 13 Sty, 07:54, hinnack wrote: > > Hi, > > > > I need to cache POST requests, too, o

Re: need for caching POST requests

2010-01-13 Thread Hinnack
Yes I can read the code! As you can read in my first mail, I did not ask anybody to write it for me! I just asked if somebody did this before and if others have the same need! 2010/1/13 Tomasz Zieliński > On 13 Sty, 11:09, Hinnack wrote: > > there must be done more then this - e.g.

Re: Django Cache

2010-01-14 Thread Hinnack
why dont you use localurl http://code.google.com/p/django-localeurl/ so you have the language automatically in the URL and you do not need to change anything... -- Hinnack 2010/1/14 vitor torres > Hi. I'm building blog and I want to cache the main page wich is a > archive_index g

cache for "large" files like pdf

2010-01-20 Thread hinnack
be more complete then mogilefs? What about concurrent writes from different hosts to the cache system? -- Hinnack -- 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...@googlegrou

cache large files

2010-01-21 Thread Hinnack
be more complete then mogilefs? What about concurrent writes from different hosts to the cache system? -- Hinnack -- 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...@googlegrou

Re: queryset caching - without caching middleware

2012-07-05 Thread hinnack
s, without running into the cache phenomena? regards Henrik Am Donnerstag, 5. Juli 2012 13:43:06 UTC+2 schrieb hinnack: > > Hi all, > > what's the magic here? > > I am using django 1.3 with sqlite or postgres by invoking: > runserver 10.150.2.15:8080 --noreload > >

Appscale and Django

2013-02-03 Thread hinnack
Hi all, is someone on the list using Appscale [1] with Django? If yes, what is your setup (MySQL, Mongo, E2, Eucalyptus [2], KVM, etc.) What is your experiance towards stalability, reliability and performance? [1] http://appscale.cs.ucsb.edu [2] http://www.eucalyptus.com -- You received this me

Re: RSS combinator

2013-03-07 Thread hinnack
Is'n that something for yahoo pipes? http://pipes.yahoo.com/pipes/ Of course pipes are not django... Hinnack Am Freitag, 8. März 2013 04:24:39 UTC+1 schrieb Lachlan Musicman: > > Hola, > > Does anyone know of a django app that would take a number of rss feeds > >1 an

block php requests

2015-01-20 Thread hinnack
://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/modwsgi/ ) regards Hinnack -- 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...@google

Re: block php requests

2015-01-21 Thread hinnack
protection order allow,deny deny from all satisfy all Am Dienstag, 20. Januar 2015 12:55:40 UTC+1 schrieb hinnack: > > Hi, > > I get a lot of intrusion checks on my website - especi

passwort reset next url

2015-08-31 Thread hinnack
p into the password reset process, but be able to use the next parameter after successful password reset and provide a link to /login?next=… to guide the user back to the login page in the sam manner, as before. How can I do this? kind regards Hinnack -- You received this message because you are

turn off csrf

2014-05-13 Thread hinnack
django 1.6) regards Hinnack -- 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 post to this group, send email

Re: turn off csrf

2014-05-13 Thread hinnack
Am Dienstag, 13. Mai 2014 16:48:57 UTC+2 schrieb Tom Evans: > > On Tue, May 13, 2014 at 2:49 PM, hinnack > > wrote: > > Hi, > > > > how can I turn off csrf completely - even in the admin interface? > > > > My base problem is, that with IE11 (and onl

Re: turn off csrf

2014-05-14 Thread hinnack
Am Dienstag, 13. Mai 2014 19:15:27 UTC+2 schrieb Tom Evans: > On Tue, May 13, 2014 at 4:36 PM, hinnack > > wrote: > > > > Am Dienstag, 13. Mai 2014 16:48:57 UTC+2 schrieb Tom Evans: > >> > >> On Tue, May 13, 2014 at 2:49 PM, hinnack wrote: > >&g

Re: turn off csrf

2014-05-14 Thread hinnack
Am Mittwoch, 14. Mai 2014 14:39:27 UTC+2 schrieb hinnack: > Am Dienstag, 13. Mai 2014 19:15:27 UTC+2 schrieb Tom Evans: > >> On Tue, May 13, 2014 at 4:36 PM, hinnack wrote: >> > >> > Am Dienstag, 13. Mai 2014 16:48:57 UTC+2 schrieb Tom Evans: >> >&

lazy error

2014-06-20 Thread hinnack
ected type.") TypeError: Lazy object returned unexpected type. why? regards Hinnack -- 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 d