Re: Jinja Backports

2007-04-09 Thread Armin Ronacher
Argh. Dammit :-/ That should be an reply to another thread. Regards, aRmin --~--~-~--~~~---~--~~ 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

Jinja Backports

2007-04-08 Thread Armin Ronacher
Hey, Because you can add custom filters and custom tags to django it might make sense to highlight them too. Maybe you want to have a look at the jinja vim file (http://www.vim.org/scripts/script.php?script_id=1856) which already does that for filters. But looks nice indeed :D Regards, Armin

Re: concept problem with apps

2005-12-25 Thread Armin
Thanks Everyone for your input. Regards, Armin

Re: concept problem with apps

2005-12-21 Thread Armin
Thanks James for the great example. So, online store which is a huge project all by itself will not be broken down to multiple apps? But will be used as a simple package. Armin

Re: concept problem with apps

2005-12-21 Thread Armin
ituations I'd need to use apps. Thanks you, Armin

concept problem with apps

2005-12-20 Thread Armin
s and ther number of lines. Thanks, Armin

Re: How to design urls like record1.domain.com

2005-12-20 Thread Armin
not django users. I want to have my own subscription system. Thanks, Armin

How to design urls like record1.domain.com

2005-12-19 Thread Armin
Hi, I want to give my users their own URL such as: user1.domain.com user2.domain.com and so forth. Does anyone have experience with this? Thanks, Armin

Re: To write software application with Django

2005-12-11 Thread Armin
Or I could just teach lee how to spell?

Re: To write software application with Django

2005-12-11 Thread Armin
Nothing beats what? Visual Basic? hem No soup for you! NEXTTT...

Re: To write software application with Django

2005-12-10 Thread Armin
1% is never a problem. I'd do that now for the wonderful Django team, except I only have $27 left in my account! So, am I missing something? Why wouldn't all applications that access database use Django for accessing data? Am I missing something here? Is python a bad language to create stable sof

To write software application with Django

2005-12-10 Thread Armin
I want to write software in Python using pyfltk GUI library and Django to access my data on a remote database. Then I want to make my software executable with py2exe, and sell it for a billion $. Is my plan realistic? Thanks, Armin

Re: Doing "OR" operation with Database API?

2005-11-02 Thread Armin
Got it. Thanks Adrian. Armin

Re: Doing "OR" operation with Database API?

2005-11-02 Thread Armin
Ignore my prev. comment. A stupid error. The code works just seamlessly. Fantastic. Thanks again, Armin

Re: Doing "OR" operation with Database API?

2005-11-02 Thread Armin
Thanks Stefan, I am grateful that the feature is there and I don't quite have to get my hands dirty with sql. My program didn't like the above code much though somehow. I'll share the error in hope of getting some insights. Thanks again. -armin There's been an error: Tr

Doing "OR" operation with Database API?

2005-11-01 Thread Armin
How can I do 'or' in Django's Database API. Something like this: select * from message where from = 'armin' OR to = 'armin' Thank you in advance for your response. You guys are great. Armin

Re: Custom Manipulator File Upload

2005-10-26 Thread Armin
Thanks very much Adrian. It did the magic. Armin

Custom Manipulator File Upload

2005-10-26 Thread Armin
Is it possible to transfer the image to an image object without saving it and then giving it's full path to load it? Thank you in advance for your response, Armin

Custom ChangeManipulator Needs to Load Data

2005-10-26 Thread Armin
I am doing a custom manipulator and I must load an object's data and orgenize it in my manipulator's fields. How do I do that? In my custom manipulator I placed a load function that sends in my object's ID. My load function is loading that object, but I don't know what to set. For example, somet

Re: manipulator save object is Not Implemented?

2005-10-25 Thread Armin
Thanks very much. It is useful. Armin

is CheckboxSelectMultipleField broken?

2005-10-24 Thread Armin
CheckboxSelectMultipleField doesn't work for me. Did anyone got it to work? I saw some bug report on it, but I wasn't sure if it was already fixed and I'm missing something. Thanks, Armin

Template Question

2005-10-12 Thread Armin
in, and I could perhaps only save user's fullname on session and view along with the logout option without bothering my view to load user's profile on every page load. Thanks, Armin

Change URL on Django Admin Site

2005-10-07 Thread Armin
them without messing up django and ruin my chances from future versions of Django? Thanks, Armin ps. Did anyone see my question 'Implementation Question' I posted yesterday?

Implementation Question

2005-10-06 Thread Armin
some pointers. Thank you in advance for your help, Armin

Re: About _post_save

2005-10-06 Thread Armin
Adrian, I think it would be relevant to me on my project here. The first time I create a document, my application has to setup a photoset in Flickr, but not on consequent saves. Unless there is a better way to do that, and I'm missing something here. Thanks, Armin

Surving Static Files on Django

2005-09-28 Thread Armin
e the template system to serve them? Does that also mean, when django upload images, the MEDIA_ROOT should be where the other web server has access to, meaning that taking my images to an alternate server requires more work? I hope my questions weren't too stupid, Thanks, Armin

Re: Problem With Image Field

2005-09-25 Thread Armin
You guys are fantastic. I am new to python and Django and unfamiliar with some of the well known concepts here. So, I might bug you guys a few more times for which I apologize. I am trying to develop a dating/friends site based on Django. Thanks for your support, Armin

Problem With Image Field

2005-09-25 Thread Armin
Field(upload_to='people', null=True, blank=True) def __repr__(self): return "%s %s" % (self.first_name, self.last_name) class META: admin = meta.Admin() Thanks for your support, Armin

Re: Django Admin required field control

2005-09-25 Thread Armin
Andreas, Thanks for the quick response. It helped. Armin

Django Admin required field control

2005-09-24 Thread Armin
riend chain that every person can have many other friends (persons) of its own type? Thanks in advance, Armin class Person(meta.Model): # Book keeping data register_date = meta.DateTimeField('date published') updated_date = meta.DateTimeField('last updated', auto_now