Re: Major Tech Start up – NYC –Python Devel oper - Django/ Python Java/J2ee

2010-07-11 Thread CLIFFORD ILKAY
On 07/11/2010 12:36 PM, John Handelaar wrote: On 11 July 2010 14:17, Tech Scout<techtal...@gmail.com> wrote: Major Tech Start up – NYC –Python Developer - Django/ Python Java/J2ee FTE opportunity View, Refer or Apply confidentially here: http://bitURL.net/3df Tech Scout Why you ju

Re: Major Tech Start up – NYC –Python Developer - Django/ Python Java/J2ee

2010-07-11 Thread John Handelaar
On 11 July 2010 14:17, Tech Scout <techtal...@gmail.com> wrote: >  Major Tech Start up – NYC –Python Developer - Django/ Python Java/J2ee FTE > opportunity > View, Refer or Apply confidentially here: http://bitURL.net/3df > Tech Scout Why you just got spam filtered: 1) Posting

Re: Django with Java

2010-05-03 Thread Daniel Fackrell
xpanta, I'm not sure about the rest of your question, but this page appears to have some good candidates for solving non-linear equations: http://wiki.python.org/moin/NumericAndScientific Daniel Fackrell / Intchanter On Sun, May 2, 2010 at 9:23 PM, xpanta wrote: > Hi, > >

Django with Java

2010-05-02 Thread xpanta
Hi, There is a project in which I need to add this library (http:// www.lindo.com/index.php?option=com_content=article=2=10). In the package there are programming examples for Java (among others). I have created some programms myself based on this programming samples. I was wondering if possible

Re: Experimental port of Django to Java

2008-01-05 Thread [EMAIL PROTECTED]
Interestingly enough I played around with implementing the admin interface this morning. In an hour or so i got basic listing and updating done, I'll probably look into how you did the associations. thanks > since you are working with hibernate you might also be interested in > my project

Re: Experimental port of Django to Java

2008-01-05 Thread kahless
On Jan 4, 9:28 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > newforms, etc.). I choose to use Hibernate and Freemarker for the > Model and Template but these could be easily switched out. since you are working with hibernate you might also be interested in my project where i tried to

Re: Experimental port of Django to Java

2008-01-04 Thread leo
This is pretty amazing. Thank you for doing it! I'd love to be able to expand/hack on it. Just out of curiousity, how much time went into getting it to this point? -- --Leo On Jan 4, 1:12 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Why, I have no idea just got the urge to see if I

Re: Experimental port of Django to Java

2008-01-04 Thread [EMAIL PROTECTED]
Why, I have no idea just got the urge to see if I could. Probably stems more from a basic dislike of the Java options (Struts, Spring, etc) but that is for another list. I guess I got bored of real work so I dreamed up something else to do over the new years holiday. And yes for some clients

Re: Experimental port of Django to Java

2008-01-04 Thread Jon Atkinson
On 1/4/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > For some unknown reason I have created a Java port of parts of > Django, I'd love to know a little more about *why* you did this. Are you tied to Java as a platform? I think it's an impressive achievement, but are you so stuck with Java

Re: Experimental port of Django to Java

2008-01-04 Thread Steve Lianoglou
> I have posted what I have so far on google code (http:// > code.google.com/p/javango) if anyone is interested. Interesting, for sure ... -steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users"

Experimental port of Django to Java

2008-01-04 Thread [EMAIL PROTECTED]
For some unknown reason I have created a Java port of parts of Django, this is not using Jython but instead native Java code using the same basic syntax (well as close as Java allows). So far it is pretty interesting and some basic functionality is there (url mapping, newforms, etc.). I choose

Re: Deos Django have Java Servlet's Listener like thing?

2007-05-06 Thread Graham Dumpleton
On May 6, 1:57 am, Martin Winkler <[EMAIL PROTECTED]> wrote: > Am Fri, 04 May 2007 21:06:52 -0700 > schrieb Mambaragi <[EMAIL PROTECTED]>: > > > Is there anything like Servlet Listener in django,python? > > not easily if you use mod_python, because for every apache thread a new > python instance

Re: Deos Django have Java Servlet's Listener like thing?

2007-05-05 Thread Don Arbow
Django's equivalent are signals. Here's a few links: http://code.djangoproject.com/wiki/Signals http://www.mercurytide.com/whitepapers/django-signals/ http://feh.holsman.net/articles/2006/06/13/django-signals Don On May 4, 2007, at 9:06 PM, Mambaragi wrote: > > I need to start a thread when

Re: Deos Django have Java Servlet's Listener like thing?

2007-05-05 Thread Martin Winkler
Am Fri, 04 May 2007 21:06:52 -0700 schrieb Mambaragi <[EMAIL PROTECTED]>: > Is there anything like Servlet Listener in django,python? not easily if you use mod_python, because for every apache thread a new python instance is being generated. but it should be easy using fastcgi, since it uses a

Deos Django have Java Servlet's Listener like thing?

2007-05-04 Thread Mambaragi
I need to start a thread when Apache(+Python+Django) starts up, end stop the thread when Apache stops. If I use Java, I could do that with Java Servlet Listener, but I couldn't have found how to do with django. Is there anything like Servlet Listener in django,python?