Re: Django full-history?

2009-04-13 Thread Mohammad Tayseer
This can be helpful http://code.djangoproject.com/wiki/AuditTrail Mohammad Tayseer http://spellcoder.com/blogs/tayseer From: Brazilian Joe To: Django users Sent: Monday, April 13, 2009 6:48:13 PM Subject: Django full-history? Dear all, I have been

Re: Django SAAS projects

2009-10-18 Thread Mohammad Tayseer
These might be helpful http://code.djangoproject.com/wiki/DynamicModels http://www.djangosnippets.org/snippets/442/ Mohammad Tayseer http://spellcoder.com/blogs/tayseer From: Savy To: Django users Sent: Friday, October 16, 2009 11:09:16 PM Subject

Changing AdminSite object

2010-06-03 Thread Mohammad Tayseer
Hello Djangonauts, I want to change the app index page so I add help text to the models themselves, e.g. under each model I want to add help text. I know that I should override AdminSite.app_index. What is the best way to do this? Mohammad Tayseer http://mtayseer.net -- You

Why there are so few open-source business applications in django?

2010-01-07 Thread Mohammad Tayseer
open-source business application. Can you guide me to an existing application, or is there anyone who is interested in starting one? Mohammad Tayseer http://spellcoder.com/blogs/tayseer -- You received this message because you are subscribed to the Google Groups "Django users"

The model doesn't check for valid data

2007-07-17 Thread Mohammad Tayseer
Django shouldn't depend on the DBMS do these checks, because some fields cannot be represented by the underlying DB I'm using django version 0.96 pre & Sqlite Mohammad Tayseer http://spellcoder.com/blogs/tayseer

Re: Anyone used Django in desktop web application scenario?

2007-03-04 Thread Mohammad Tayseer
You should consider these 1. Use Sqlite as your RDBMS: It requires no configuration at all 2. Use django test server: You don't need a high performance web server because the number of users is limited. Guido van Rossum used the test server for internal Google application 3. Configure the worki

Re: Admin customisation

2007-03-04 Thread Mohammad Tayseer
You can adjust the user permissions to have only 'mymodel | Can change message'. Beware that this can be adjusted for a single user, or a group of users. Superusers have all permissions (add/change/delete). - The fish are biting. Get more visitors on your site

Re: Anyone used Django in desktop web application scenario?

2007-03-04 Thread Mohammad Tayseer
You can distribute the .pyc files, which works exactly as the original .py files - Don't pick lemons. See all the new 2007 cars at Yahoo! Autos. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

Re: Django & Web Services Api

2007-03-20 Thread Mohammad Tayseer
If you are using XML-RPC, then you should read this http://effbot.org/zone/element-xmlrpc.htm Mohammad Tayseer http://spellcoder.com/blogs/tayseer - Get your own web address. Have a HUGE year through Yahoo! Small Business

Re: Why does Django think my browser isn't accepting cookies?

2006-12-17 Thread Mohammad Tayseer
It happened for FF & IE. It happened with django & Plone admin pages. The problem is caused by ZoneAlarm itself. Even if you disable cache cleaning by ZoneAlarm it will cause the same problem. Closing ZoneAlarm completely will solve the problem ___