Accessing http://mail.python.org/mailman/listinfo/ currently gives:
"""
Bug in Mailman version 2.1.12
We're sorry, we hit a bug!
Please inform the webmaster for this site of this problem. Printing of
traceback and other system information has been explicitly inhibited,
but the webmaster can find
Will take a look after stuffing myself with turkey today (am in the
US, where we give thanks by eating everything in sight). Thanks,
Alice.
Wait, did I just say "thanks"? Must go eat pie.
On Nov 25, 12:36 am, Alice Bevan–McGregor wrote:
> Howdy!
>
> I'm mildly biased, being the author of the f
Howdy!
I'm mildly biased, being the author of the framework, but I can highly
recommend WebCore for rapid prototyping of web applications; it has
templating via numerous template engines, excellent JSON (AJAJ)
support, and support for database back-ends via SQLAlchemy. It also
has session su
This is really great. I wish I could come up with some creative new
ways to say thank you, but... thank you :-)
Shel
On Nov 21, 6:10 pm, Martin Gregorie
wrote:
> On Sun, 21 Nov 2010 15:40:10 -0800, Shel wrote:
> > I am confused about multiple simultaneous users, which I would like to
> > be able
to do the web interface. I don't know
much about web architecture, unfortunately. I think I need a CGI
script?
What I would really like is to find a GUI tool to design the interface
that would have customizable templates or drag-and-drop elements or
something, so I wouldn't have to co
On Sun, 21 Nov 2010 15:40:10 -0800, Shel wrote:
> I am confused about multiple simultaneous users, which I would like to
> be able to accommodate. On the db side, I have a structure to store
> data for each user, and know a bit about selectively locking data,
> although I have not implemented tha
No worries at all about repeating things. I wasn't clear, and I
appreciate your going to the trouble of teaching me just about
anything. Even things I think I know, I might not really know :-)
Let's see... am okay with the relational design stuff. Thanks for the
"EXPLAIN" verb.
I am confused a
tent on reinventing the wheel, why not just
> set up your web interface as a thin front-end for an existing IF engine?
> An excellent starting point for this would be digging up the source
> for InfocomBot [1], an AIM bot that acts as a simple wrapper around
> Frotz [2]. My recollection
On Sat, 20 Nov 2010 17:20:53 -0800, Shel wrote:
> Sorry I wasn't clear about the db part. Most of the data has already
> been written and/or generated and tested with the code. I do plan to
> finish all the database stuff before going to the front end, but am just
> thinking ahead about how to d
of a deal to
interact with the db through Python (famous last words...).
Suggestion: unless you're intent on reinventing the wheel, why not just
set up your web interface as a thin front-end for an existing IF engine?
An excellent starting point for this would be digging up the s
data rather than pulling in data
> > from the db, but I think/hope it won't be too big of a deal to
> > interact with the db through Python (famous last words...).
>
> > My main problem right now is how to do the web interface. I don't know
> > much about web a
Thanks for your help.
I know that they have Python and mySQL. They have mySQL set up so
that they just have to create the db, which they've already done and
I've defined the tables and modified the data and whatnot, so that
seems good. Not sure about mod-python v. mod-wsgi.
Ah, the Django thing
Thanks for your help.
I know that they have Python and mySQL. They have mySQL set up so
that they just have to create the db, which they've already done and
I've defined the tables and modified the data and whatnot, so that
seems good. Not sure about mod-python v. mod-wsgi.
Ah, the Django thing
;Further into the forest. Its getting darker"
> which may be OK coming from a road but is pretty stupid if you're on your
> way out of the forest toward the road.
>
> http://www.kitebird.com/articles/pydbapi.htmlwhich tells you what you
> need to know about accessing SQL datab
e db through Python (famous last words...).
>
> My main problem right now is how to do the web interface. I don't know
> much about web architecture, unfortunately. I think I need a CGI
> script?
>
> What I would really like is to find a GUI tool to design the interface
> tha
criptions like "Further into the forest. Its getting darker"
which may be OK coming from a road but is pretty stupid if you're on your
way out of the forest toward the road.
http://www.kitebird.com/articles/pydbapi.html which tells you what you
need to know about accessing SQ
create a browser-based interactive fiction/game thing. My
code is currently just using dummy data rather than pulling in data
from the db, but I think/hope it won't be too big of a deal to
interact with the db through Python (famous last words...).
My main problem right now is how to do th
On Jan 30, 8:08 pm, Bruno Desthuilliers wrote:
> PurpleServerMonkey a écrit :
> (snip)
>
> > Out of the major frameworks is there one that stands out as being
> > particularly well suited for what I'm trying to do?
>
> > Django and CherryPy are on the short list so I'll give them a detailed
> > lo
PurpleServerMonkey a écrit :
(snip)
> Out of the major frameworks is there one that stands out as being
> particularly well suited for what I'm trying to do?
>
> Django and CherryPy are on the short list so I'll give them a detailed
> look although Pylons does sound rather interesting as well.
I
On Jan 30, 12:55 pm, Graham Dumpleton <[EMAIL PROTECTED]>
wrote:
> On Jan 30, 12:00 pm, PurpleServerMonkey <[EMAIL PROTECTED]>
> wrote:
>
>
>
> > Looking for suggestions on the best framework to use for an
> > applications web interface.
>
> > The us
On Jan 30, 12:00 pm, PurpleServerMonkey <[EMAIL PROTECTED]>
wrote:
> Looking for suggestions on the best framework to use for an
> applications web interface.
>
> The user interface doesn't need immediate feedback and will be cross
> platform so a web interface is a good
Looking for suggestions on the best framework to use for an
applications web interface.
The user interface doesn't need immediate feedback and will be cross
platform so a web interface is a good solution especially since it
operates as a client\server system and not standalone.
However th
I agree with Steve and I would advise to use an Ajax toolkit (such as
JQuery for example) which will help to make your UI act as a desktop
application (and even better if you are creative).
Olive.
--
http://mail.python.org/mailman/listinfo/python-list
> Johan, your way of doing it resembles XUL somewhat, although I can't
> say I fully understand XUL I just took a look some days ago. Let me
> see if I understand your approach:
Yes it's a lot like XUL, but there are some major differences. The most
important one is that, at least back then, you h
> > What would the simplest way to make an application that has both a web
> > interface and runs from behind a web server but also can be used as a
> > standalone app with a gui? More precisely is it possible to avoid
> > creating an html/xml/whatever based web inter
Hi Daniel.
> What would the simplest way to make an application that has both a web
> interface and runs from behind a web server but also can be used as a
> standalone app with a gui? More precisely is it possible to avoid
> creating an html/xml/whatever based web interface for the
Daniel Nogradi wrote:
> What would the simplest way to make an application that has both a web
> interface and runs from behind a web server but also can be used as a
> standalone app with a gui? More precisely is it possible to avoid
> creating an html/xml/whatever based web interface
What would the simplest way to make an application that has both a web
interface and runs from behind a web server but also can be used as a
standalone app with a gui? More precisely is it possible to avoid
creating an html/xml/whatever based web interface for the web version
and separately
On 10 Nov 2005 05:31:29 -0800, Michele Simionato <[EMAIL PROTECTED]> wrote:
>
>
>I have been looking for an example like this for a while, so thanks to
>J.P. Calderone.
>Unfortunately, this kind of solution is pretty much browser-dependent.
>For instance,
>I tried it and it worked with Firefox, but
I have been looking for an example like this for a while, so thanks to
J.P. Calderone.
Unfortunately, this kind of solution is pretty much browser-dependent.
For instance,
I tried it and it worked with Firefox, but not with MSIE 5.01 and it
will not work with any
browser if you disable Javascript
On Wed, 9 Nov 2005 19:08:28 +, Tom Anderson <[EMAIL PROTECTED]> wrote:
>On Mon, 7 Nov 2005, Ajar wrote:
>
>> I have a stand alone application which does some scientific
>> computations. I want to provide a web interface for this app. The app is
>> computational
On Mon, 7 Nov 2005, Ajar wrote:
> I have a stand alone application which does some scientific
> computations. I want to provide a web interface for this app. The app is
> computationally intensive and may take long time for running. Can
> someone suggest me a starting point f
Jorge Godoy <[EMAIL PROTECTED]> writes:
> "Ajar" <[EMAIL PROTECTED]> writes:
>
> > I have a stand alone application which does some scientific
> > computations. I want to provide a web interface for this app. The app
> > is computationally int
I'm using SkunkWeb [1] for building a responsive interface to a number
of long-running processes. See [2] for an example of running
long-running processes in SkunkWeb and monitoring them.
One of the advantages (to my mind) that SkunkWeb offers over many of
the other Python application servers and
"Ajar" <[EMAIL PROTECTED]> writes:
> I have a stand alone application which does some scientific
> computations. I want to provide a web interface for this app. The app
> is computationally intensive and may take long time for running. Can
> someone suggest me a
Hi,
I have a stand alone application which does some scientific
computations. I want to provide a web interface for this app. The app
is computationally intensive and may take long time for running. Can
someone suggest me a starting point for me? (like pointers to the
issues involved in this, or
Irmen de Jong a écrit:
> Luc wrote:
>
>> So I am looking for another solution with a web interface that should
>> work with linux and windows XP.
>> I had a look to zope but was afraid with the complexity and debug
>> difficulties.
>> Are there some ot
Luc wrote:
So I am looking for another solution with a web interface that should work
with linux and windows XP.
I had a look to zope but was afraid with the complexity and debug
difficulties.
Are there some other solutions?
Yes. A lot: http://www.python.org/moin/WebProgramming
I know someone who
(MDK10.1, FC3).
This was because of the wxPython version...and it seemed to be very
difficult to come back to an older wxPython version with these new
distributions, because of dependencies problems.
So I am looking for another solution with a web interface that should work
with linux and windows XP.
I
determining if a site is indeed the Web interface to
a HP printer? The goal is to remove all HP printers from a list of
publicly available Web sites... I've tried this approach, but it gets
messy quickly when I attempt to account for all possible combinations
that HP uses:
f = urllib2.ur
40 matches
Mail list logo