Re: Django and Rich Client

2011-06-18 Thread Burhan
On Jun 9, 9:10 pm, Knack wrote: > Current plans are: > > 1) Using an Oracle DB > 2) LDAP authentification > 3) Role based authorisation. Here I'm a bit unsure about the approach. > I would implement it by myself within the django world (don't know yet > where exactly). If your application has any

Re: Django and Rich Client

2011-06-18 Thread Mike Dewhirst
On 18/06/2011 12:55am, Knack wrote: 2) LDAP authentification > >> 3) Role based authorisation. Here I'm a bit unsure about the approach. > >> I would implement it by myself within the django world (don't know yet > >> where exactly). > >> See django-ldap-groups by Peter Herndon. http:

Re: Django and Rich Client

2011-06-17 Thread Marwan Al-Sabbagh
thats pretty amazing that PyQt can handle such a big dataset at once. Putting JavaScript aside just trying to load html tables with a large amount of rows can become very unwieldy. Good luck with the app. cheers, Marwan On Fri, Jun 17, 2011 at 5:55 PM, Knack wrote: > The requirements are: > > 1

Re: Django and Rich Client

2011-06-17 Thread Knack
The requirements are: 1) Handling large (>10 lines, ~ 10 columns) amounts of structured data in treeviews. For certain use cases comparing two of those trees. 2) Creating different structured views on the data. Like using different categories of attributes as structure criteria. Those views ar

Re: Django and Rich Client

2011-06-16 Thread Marwan Al-Sabbagh
Out of curiosity is there a specific need for running a rich client instead of just accessing the system app through a web browser. On Fri, Jun 10, 2011 at 4:16 AM, Ovnicraft wrote: > soaplib > > On Thu, Jun 9, 2011 at 1:10 PM, Knack wrote: > >> Hi guys, >> >> I've

Re: Django and Rich Client

2011-06-09 Thread Ovnicraft
soaplib On Thu, Jun 9, 2011 at 1:10 PM, Knack wrote: > Hi guys, > > I've got a prototype DB + Rich Client app and need to make a proper > production app out of it. The client is written in PyQt and needs to > fullfill quite some functional and performance requiremen

RE: Django and Rich Client

2011-06-09 Thread Sells, Fred
FWIW I use flex for the rich client and get xml out of django which flex handles nicely. I use Ldap for Authorization (had to use legacy junk for authentication to be compliant) and I have a cron job that loads the ldap groups I need and there members into my db. Solves speed and reliability pro