Re: Subjectively Required Fields

2014-05-02 Thread Nathan McCorkle
JQuery doesn't solve validation on the backend though, so you'd still want some logic there in case someone modifies or goes around the jQuery and sends packets with bad data. On Apr 29, 2014 12:11 AM, "Venkatraman S" wrote: > What do you mean by an invalid date? IF you are referring to the date

Re: How do I register to get access to the IRC Channel?

2014-04-07 Thread Nathan McCorkle
or just use freenode webchat On Wed, Apr 2, 2014 at 1:59 PM, Aaron C. de Bruyn wrote: > Take a look at this: > > http://www.wikihow.com/Register-a-User-Name-on-Freenode > > If you still get stuck, let us know. > > -A > > > On Wed, Apr 2, 2014 at 1:43 PM, John Draper wrote: >> >> I go to Adium --

Re: Bulk import of data

2011-12-03 Thread Nathan McCorkle
ot; currentDataset.relatedObject=otherCurrentObject.id etc,etc? Are you saying I should be doing all that in python, but using raw SQL instead of the fancy python object-like way? like this: https://docs.djangoproject.com/en/dev/topics/db/sql/#executing-custom-sql-directly > > Cal > > >

Re: Bulk import of data

2011-12-01 Thread Nathan McCorkle
gt;> -- >> 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 unsubscribe from this group, send email to >> django-users+unsubscr...@

Re: Need to process uploaded files into database entries(takes hours), how do I return a progress bar?

2011-11-27 Thread Nathan McCorkle
tings?  Using carrot?  Kombu?  RabbitMQ? > > Does your task try to return a value? > > Sent from my iPhone > > On Nov 27, 2011, at 11:22 PM, Nathan McCorkle wrote: > >> P.S. the printGene function works... printing the messages on the >> celeryd console terminal...

Re: Need to process uploaded files into database entries(takes hours), how do I return a progress bar?

2011-11-27 Thread Nathan McCorkle
On Sun, Nov 27, 2011 at 11:21 PM, Nathan McCorkle wrote: > Yeah I've seen the djcelery solution before... I've tried implementing > it, but I'm getting an error on the celeryd console: > TypeError: processXLS1() got an unexpected keyword argument 'task_is_eager'

Re: Need to process uploaded files into database entries(takes hours), how do I return a progress bar?

2011-11-27 Thread Nathan McCorkle
P.S. the printGene function works... printing the messages on the celeryd console terminal... the processXLS1 function doesn't even print anything at all On Sun, Nov 27, 2011 at 11:21 PM, Nathan McCorkle wrote: > Yeah I've seen the djcelery solution before... I've tried impl

Re: Need to process uploaded files into database entries(takes hours), how do I return a progress bar?

2011-11-27 Thread Nathan McCorkle
is updated by the task and you don't have to worry > about threads. > https://github.com/ask/django-celery > > Brian Schott > bfsch...@gmail.com > > > > On Nov 27, 2011, at 8:54 PM, Nathan McCorkle wrote: > >> I'm using Django 1.3 and am processin

Need to process uploaded files into database entries(takes hours), how do I return a progress bar?

2011-11-27 Thread Nathan McCorkle
I'm using Django 1.3 and am processing 3 files into genes, proteins, and genomes for a tool I built... this processing usually takes between 5 minutes to a few hours, depending on the genome size. After uploading the files (10-100 MB), the upload view begins processing the files, without returning