Re: [Webware-discuss] Redirect to non-SSL

2007-04-25 Thread Stephan Diehl
Chuck Esterbrook wrote: > To anyone who is running "https" on their site with webware, do you > have the following behavior? > > Enter URL into browser: > https://mysite/somedir > > Redirects to: > http://mysite/somedir/ > > In other words, the "https" changes to "http" in the redirect? I have

Re: [Webware-discuss] Possible bug?

2007-03-19 Thread Stephan Diehl
Christoph Zwerschke wrote: > Stephan Diehl wrote: >> I've cheated a bit, I'm still using Webware-0.9.1. When trying to >> upgrade my Application to Webware-0.9.2, I realized that the >> Application breaks. > > It would be great if you examine what break

Re: [Webware-discuss] Possible bug?

2007-03-16 Thread Stephan Diehl
Christoph Zwerschke wrote: > Stephan Diehl wrote: >> I've cheated a bit, I'm still using Webware-0.9.1. When trying to >> upgrade my Application to Webware-0.9.2, I realized that the >> Application breaks. > > It would be great if you examine what break

Re: [Webware-discuss] Possible bug?

2007-03-16 Thread Stephan Diehl
y, I could change my Webware-0.9.1 according to your suggestions. I'll definatelly get back to you about this. Stephan Christoph Zwerschke wrote: > Stephan Diehl schrieb: >> I'm a longtime user of WebWare. I just stumbled over some pretty >> strange problem. The Applicatio

[Webware-discuss] Possible bug?

2007-03-16 Thread Stephan Diehl
I'm a longtime user of WebWare. I just stumbled over some pretty strange problem. The Application running on Webware is a kind of Document Management system that can contain quite huge files (ISO images). When somebody is downloading such a file and cancels the download, the application eats up

Re: [Webware-discuss] Python and AJAX

2005-11-02 Thread Stephan Diehl
On Wednesday 02 November 2005 14:46, Eduardo Elgueta wrote: > Hi All, > > Does anybody knows about a good AJAX framework suited to Python? > > I found about OpenRico (http://wiki.w4py.org/ajaxservlet.html) but I > have no references about it. Is it good? Is it feature/component rich? > Has anybody

Re: [Webware-discuss] Benchmark WebWare vs. CGI, psycopg PostgreSQL, Linux

2005-09-20 Thread Stephan Diehl
Hi Gregor, On Tuesday 20 September 2005 09:58, you wrote: > Hi, > > Stephan Diehl schrieb: > > Please try mod_webware as an adapter as it is the fastest way to connect > > to a webware application server. > > I installed the mod_webware adapater and changed > > d

Re: [Webware-discuss] Benchmark WebWare vs. CGI, psycopg PostgreSQL, Linux

2005-09-20 Thread Stephan Diehl
On Tuesday 20 September 2005 08:50, Gregor Horvath wrote: > Hi, > > I am evaluationg using Webware instead of plain python CGI. [...] > > def testcgi(): > for i in range(100): > u.urlopen("http://localhost/cgi-bin/perftestcgi.py";) > > def testwebware(): > for i in range(100): >

Re: [Webware-discuss] Webware WebKit Session Data Cross Shared Problem

2004-10-27 Thread Stephan Diehl
On Tuesday 26 October 2004 05:46, Lincoln Han wrote: > Thank you all for the prompt response, I have spent days trying to > figure this out before I finally decided it's time to ask the experts. > > My Apache is Apache/2.0.48 on Linux and latest version of webware 0.8.1 > > The site I am having pro

Re: [Webware-discuss] Webware WebKit Session Data Cross Shared Problem

2004-10-25 Thread Stephan Diehl
Hi Lincoln, On Monday 25 October 2004 09:20, Lincoln Han wrote: > Hi, > > I just recently finished developing a commercial web site using > Webware and it is currently in the testing stage. The platform is > Apache + Webware. > > One of the strange problem I found recently testing the shopping > c

Re: [Webware-discuss] File Upload problems

2003-10-03 Thread Stephan Diehl
Hi, you forgot the enctype attribute in your form definition. Here is the line from the example page: Without the 'enctype="multipart/form-data"' definition, the server doesn't know that a file is coming in and treats the field as a string. By the way, this has nothing to do with Python, Webwar

Re: [Webware-discuss] addition documentation?

2003-10-02 Thread Stephan Diehl
On Thursday 02 October 2003 11:31, Thomi Richards wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > Hi, > > Is there some really basic documentation that I'm missing somewhere? I'm > trying to get a file upload working, and am struggling a bit. The WebKit > class reference isn't very h

Re: [Webware-discuss] servlets as new style classes

2003-08-20 Thread Stephan Diehl
On Tuesday 19 August 2003 19:10, Tracy S. Ruggles wrote: > I use metaclasses for debugging purposes. In my SitePage class I do > > this: > > from WebKit.Page import Page > > from .Reporter import Reporter > > > > class SitePage(Page, object): > > __metaclass__ = Reporter > > I'm not able to mi

[Webware-discuss] servlets as new style classes

2003-08-19 Thread Stephan Diehl
Hi all, has anybody attempted already, to port webware (or at least the "servlets") to new style classes? The simple approach, just to add "__metaclass__ = type" to MiscUtils/NamedValueAccess.py unfortunatelly fails due to the incompatability of UserDict and the new style classes. Since I hav

Re: [Webware-discuss] RE: Anyone seen WebKit processes going into a weird state?

2003-08-14 Thread Stephan Diehl
his > problem reliably, it does happen about once a day. > > > Date: > Thu, 07 Aug 2003 07:55:16 -0400 > > On Wed, 2003-08-06 at 22:07, Hancock, David (DHANCOCK) wrote: > > Adam: Thanks for the additional information. Stephan Diehl also has > > seen t

Re: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread Stephan Diehl
On Tuesday 12 August 2003 10:24, Nick Murtagh wrote: > deelan wrote: > > however there's an unwanted side-effect, in my generated > > page i have some relative URL, e.g. a couple of CSS files, > > included in the HTML code with: > > > > @import url("styles/weblog.css"); > > > > the problem is that

Re: [Webware-discuss] Sandbox contribution: mvc.py

2003-08-14 Thread Stephan Diehl
[...] > > > So, something is missing somehow and I suspect that you did something to > > your 'SitePage', that plays nicely with mvc, but that nobody else knows > > about. > > Sorry, sample Another.py is wrong for the same reason as above -- use > mvc.View (or it subclass) instead of Page class. A

Re: [Webware-discuss] Sandbox contribution: mvc.py

2003-08-14 Thread Stephan Diehl
On Friday 08 August 2003 14:58, Max Ischenko wrote: [...] > > SitePage is typically used a as site-wide page parent. You could use > Page class from WebKit.Page module. mvc.View should work also. > > > Now, I can view pure '.page' pages, but the cheetah > > references are not evaluated. > > How's t

Re: [Webware-discuss] RE: Anyone seen WebKit processes going into a weird state?

2003-08-14 Thread Stephan Diehl
Hi David, I've seen something similar. Unfortunatelly, I couldn't find the reason. I'm using the MySQLdb adapter and have a very strong suspision that this is DB related. But, it could really be some rare race condition I'm seeing. And I'm using a really old version of Webware, what might be a p

Re: [Webware-discuss] RE: Anyone seen WebKit processes going into a weird state?

2003-08-14 Thread Stephan Diehl
[...] > > This would usually happen in the morning for me aswell. The timeout > makes sense since it is thrown at the time people get to work and start > using the app after it's sat all night doing nothing. > > Looking through DBPool.py it's not imeadiately apparent to me how DBPool > would be aw

Re: [Webware-discuss] Sandbox contribution: mvc.py

2003-08-14 Thread Stephan Diehl
On Friday 08 August 2003 09:50, Max Ischenko wrote: > Hi, I wrote a very simple framework on top of WebKit+Cheetah for [...] > learn Cheetah plus corresponding markup languages. > > There is too much pain for me to setup sandbox access just to contribute > a single module, so I post it here for any

Re: [Webware-discuss] Request for opinion

2003-03-07 Thread Stephan Diehl
[...] > > I'd been thinking about this for a while -- something for form > processing that's lighter then FFK, when you don't really need the error > cycle that FFK has. Anyway, I finally coded it up, it's in CVS in > WebKit/Experimental/DictCall.py. > > This was the example of its use that seemed

Re: [Webware-discuss] Request for opinion

2003-03-06 Thread Stephan Diehl
def __setattr__ (self, attr, value): > session = object.__getattribute__(self, 'factory')() > session.setValue(attr, value) > > --T > > On Thursday, March 6, 2003, at 02:43 AM, Stephan Diehl wrote: > > On Wednesday 05 March 2003 20:4

Re: [Webware-discuss] Request for opinion

2003-03-06 Thread Stephan Diehl
On Thursday 06 March 2003 10:32, you wrote: > On Wed, 2003-03-05 at 12:17, Stephan Diehl wrote: > > Hi all, > > I'm developing with Webware for quite a while and I still think that > > working with applets is not as intuitive as it might be. This has in > > principl

Re: [Webware-discuss] Request for opinion

2003-03-06 Thread Stephan Diehl
On Wednesday 05 March 2003 20:40, you wrote: > I agree with the issue about confusing the beginner with a redirection > like that. Though, if you really want to, you could use a proxy and > not muck with changing the getattr and setattr methods of the servlet, > or the session: Are you sure that

Re: [Webware-discuss] Request for opinion

2003-03-06 Thread Stephan Diehl
ntVisits. If they have the same baseclass and it is configured there that there is a session variable count: yes Stephan > > Stephan Diehl wrote: > > Instead of using session data (or request data for that matter) in the > > usual way, I'd rather have some magic invol

Re: [Webware-discuss] Request for opinion

2003-03-06 Thread Stephan Diehl
webapplication as if it were a standalone application. > > -Aaron > Stephan > Stephan Diehl wrote: > >Hi all, > >I'm developing with Webware for quite a while and I still think that > > working with applets is not as intuitive as it might be. This has in > > p

[Webware-discuss] Request for opinion

2003-03-05 Thread Stephan Diehl
Hi all, I'm developing with Webware for quite a while and I still think that working with applets is not as intuitive as it might be. This has in principle nothing to do with Webware but with Web development in general. Now, using Python, gives us a lot of tools that can be used for our advantage

Re: [Webware-discuss] MiddleKit versus ZODB

2003-02-28 Thread Stephan Diehl
On Friday 28 February 2003 16:37, you wrote: > I have a question... please don't get offended by it, I don't mean it to be > offensive... > > [...] > > There hasn't been much discussion of using/integrating ZODB/ZEO into > Webware as a standard persistence tool. Am I missing something? Probably no

Re: [Webware-discuss] ZODB??

2003-02-18 Thread Stephan Diehl
I've played around with it (Standalone ZODB/ZEO) and it was not too bad. At that time there was no searching possible within the data, so I dropped it in favour of MySQL. But as far as I know, indexing is now possible, so it's now a real alternative. > Has anyone besides me tried hooking Webware u

Re: [Webware-discuss] Starting Webware as daemon

2003-01-21 Thread Stephan Diehl
On Tuesday 21 January 2003 18:34, you wrote: > To start Webware in console mode, one just executes ~/AppServer > > But how should it be started to as a daemon, unattached to a console, and > sending output to a log file? I just tried ~/AppServer &> logfile, but > Webware doesn't like this and just

Re: [Webware-discuss] virtual filesystem

2002-12-16 Thread Stephan Diehl
code in the above article, please feel free to ask. Stephan On Monday 16 December 2002 14:52, you wrote: > On Mon, 2002-12-16 at 14:47, Stephan Diehl wrote: > > On Monday 16 December 2002 14:32, you wrote: > > > I'm trying to set up a virtual filesystem using webwar

Re: [Webware-discuss] Modifying sys.path

2002-11-20 Thread Stephan Diehl
On Wednesday 20 November 2002 00:22, you wrote: > I have a directory containing common library code that is located outside > of any context. I need to add the directory's path to sys.path. Right now, > I'm doing so with a call to sys.path.append() within contextInitialize() of > the default contex

Re: [Webware-discuss] Docs about upgrading

2002-11-01 Thread Stephan Diehl
On Friday 01 November 2002 11:05, you wrote: > Hi, > while reading the discussion about more docs and a spiced up > MakeAppWorkDir.py, it came to my mind, that there is no documentation > about the best way to upgrade a current Webware installation, or is > there? > > Maybe MakeAppWorkDir.py could

Re: [Webware-discuss] MakeAppWorkDir.py / towards a Webware convention

2002-11-01 Thread Stephan Diehl
On Friday 01 November 2002 09:51, you wrote: > On Fri, 1 Nov 2002, Stephan Diehl wrote: > > On Thursday 31 October 2002 20:42, you wrote: > > > So I'd like to expand MakeAppWorkDir.py to do these two things when you > > > run it (i.e., you'd pass your ma

Re: [Webware-discuss] MakeAppWorkDir.py / towards a Webware convention

2002-11-01 Thread Stephan Diehl
On Thursday 31 October 2002 20:42, you wrote: > I was going through the first page Getting Started, and about setting up > a preferred environment. This involves MakeAppWorkDir, but also > involves a couple other details -- so far it involves adding a > application-local library, and renaming the

Re: [Webware-discuss] Minimal object-relational Wrapper (PStore)

2002-10-30 Thread Stephan Diehl
On Wednesday 30 October 2002 22:31, you wrote: > Today, Stephan Diehl a écrit: > > SD>I have updated my PStore object relational Wrapper code. It now includes > SD>proper searching in the db with the help of a proxy object (See the > README SD>for details). > SD>You

[Webware-discuss] Minimal object-relational Wrapper (PStore)

2002-10-30 Thread Stephan Diehl
I have updated my PStore object relational Wrapper code. It now includes proper searching in the db with the help of a proxy object (See the README for details). You get it at www.sdiehl.de/python What is it? --- PStore is a Python object relational wrapper that allows the developer

Re: [Webware-discuss] search paths

2002-10-30 Thread Stephan Diehl
> > > ... > > > If Launch.py is not the spot > > > then where? > > > > No, it's definatelly Launch.py that has to know about the webware > > directory. Do you get any specific error messages? > > The only thing that comes to my mind is that you probably forgot to run > > "python install.py" in yo

Re: [Webware-discuss] search paths

2002-10-30 Thread Stephan Diehl
On Wednesday 30 October 2002 14:54, you wrote: > I'm using an appdir. How is the path to the Webware source inserted into > my pythonpath? There is a line in Launch.py that inserts the path to > sys.path but when I change that to point to my newly downloaded cvs > package, it doesn't start. I als

Re: [Webware-discuss] _actions_ and extraURLs in CVS

2002-10-29 Thread Stephan Diehl
The sad thing is that this bug is known for quite a long time (see http://sourceforge.net/tracker/?atid=104866&group_id=4866&func=browse) But hey, maybe one of the gurus who understands the Application.py code will have a look at it. Stephan On Tuesday 29 October 2002 17:53, you wrote: > Hi, > >

Re: [Webware-discuss] packaging

2002-10-28 Thread Stephan Diehl
On Monday 28 October 2002 16:44, you wrote: > Hi all - > > I'm pretty new to webware and have been following the threads related > to the v 0.8 release which is being worked on. > I wanted to comment on the only thing I've found so far that is a > little bit frustrating about Webware. > > Backgroun

Re: Fwd: Re: [Webware-discuss] Documentation

2002-10-25 Thread Stephan Diehl
On Friday 25 October 2002 19:40, you wrote: > Stephan, > > Can you extend your twiki2html to make it twiki2xml? If so this could be a > great idea, if the content creators like using the Wiki interface for > creating content. Sure, I could do that. But I would need to know to which DTD the mappin

Fwd: Re: [Webware-discuss] Documentation

2002-10-25 Thread Stephan Diehl
> Reading through the rest of the postings I've was trying to think of a very > lite mark-up that was easily transformable, and I thought of YAML. Very, > very lite. Can be tranformed relatively easily to Xml. I still haven't > looked at reST, but we would still have to write the tranformation

Re: [Webware-discuss] Minimal object-relational Wrapper...

2002-10-15 Thread Stephan Diehl
On Monday 14 October 2002 17:53, you wrote: > On October 14, 2002 07:04 am, Stephan Diehl wrote: > > If anybody would be interested, I'd write some documentation (sorry not > > done yet) and publish what I have. > > At the moment, only MySQL is supported. The stuff is

Re: [Webware-discuss] Minimal object-relational Wrapper...

2002-10-14 Thread Stephan Diehl
On Monday 14 October 2002 17:53, you wrote: > On October 14, 2002 07:04 am, Stephan Diehl wrote: > > If anybody would be interested, I'd write some documentation (sorry not > > done yet) and publish what I have. > > At the moment, only MySQL is supported. The stuff is

[Webware-discuss] Minimal object-relational Wrapper...

2002-10-14 Thread Stephan Diehl
Back in march, there was some discussion about a minimal object-relational wrapper in this list: http://sourceforge.net/mailarchive/forum.php?thread_id=553565&forum_id=3505 Due to my own needs, I've written some object-relational wrapper. Since we had this discussion, it might be of general int

Re: Re: [Webware-discuss] Installation Linux + PY 2.2.1 + 0.7

2002-08-30 Thread Stephan Diehl
a "docs = []" in it. > > Everything installs fine using Webware from CVS so I don't think there's > anything to fix. > > - Geoff > > Stephan Diehl wrote: > > I had this a while ago, but with the CVS version. I somehow > > forgot to file a >

Fwd: Re: [Webware-discuss] Installation Linux + PY 2.2.1 + 0.7

2002-08-28 Thread Stephan Diehl
I had this a while ago, but with the CVS version. I somehow forgot to file a bug report to the list, sorry. It might be fixed though in the meantime, who knows :-) Anyway, in install.py (around line 422), you'll find --- fo

Re: [Webware-discuss] search engines

2002-08-17 Thread Stephan Diehl
On Saturday 17 August 2002 15:55, you wrote: > Stephan Diehl wrote: > > for a procject I'm doing with webware at the moment, I have to search an >> ... > > Part depends on your search needs. > > You can try Swish++ at > http://homepage.mac.com/pauljluc

[Webware-discuss] search engines

2002-08-17 Thread Stephan Diehl
for a procject I'm doing with webware at the moment, I have to search an internal documentbase consisting of several thousand documents. I'm using swish-e at the moment. While swish-e gives very good search results, there is the problem that there is no possibility to update an index directly.

Re: [Webware-discuss] Chart generation

2002-07-30 Thread Stephan Diehl
Eventually, ReportLab (PDF generation on the fly) might do what you want. They are even working on a SVG engine. stephan On Tuesday 30 July 2002 16:02, you wrote: > On 07/30/2002 08:31:25 AM Bill Eldridge wrote: > >I sent an e-mail on pygd for graphics a few months ago, but I don't > >know if

Re: [Webware-discuss] 4Suite and Webware ?

2002-07-03 Thread Stephan Diehl
I've experimented with webware and 4suite a while ago, but didn't really integrate anything. I just converted some xml files with the xslt prosessor from 4suite on the fly to html. the 4suite tools (at least a year ago) seemed a little bit slow. Since xml/xslt functionality is somewhat orthogon

Re: [Webware-discuss] RE: Web testing

2002-06-07 Thread Stephan Diehl
Just a thought... why not keep the XML config, but use a preprocessed form? for example:                                                     could be written as: -- puff

Re: [Webware-discuss] AppServer shutdown bug in 0.7 on python2.2?

2002-05-20 Thread Stephan Diehl
> | Yes. I'm running the AppServer by typing "./AppServer" in the WebKit > | directory, and I'm stopping it by pressing Ctrl-C. Even if I see that > | traceback, it still exits all Python processes. > > Yeah, I get that, too, but if I use the init.d script, it won't kill t > he > processes. Mayb

Re:[Webware-discuss] starting webware at boot

2002-05-16 Thread Stephan Diehl
> X-Original-Date: Thu, 16 May 2002 11:20:20 -0400 > Date: Thu, 16 May 2002 11:20:20 -0400 > > Does anyone have a good script for starting webware at system boot, on > RedHat? > If not, I can put something together and post to the list. (or post > somewhere else) > > Rolf > You can find a unix s

[Webware-discuss] CMS Kit. was: A Webware Wiki

2002-04-15 Thread Stephan Diehl
> > It would also help to have an option of "accept the source format > > without conversion and serve it as is without touching its internal > > structure" alongside "convert the source document to an in-between > > format so it's easy to reconvert into any output format." > > This is especially

Re: Fwd: Re: [Webware-discuss] A Webware Wiki

2002-04-15 Thread Stephan Diehl
> On Sun, Apr 14, 2002 at 03:49:52PM +0200, Stephan Diehl wrote: > > I always thought that LaTeX is much easier to write with a text > > editor than XML/HTML/SGML. > > Is this a joke? I didn't see the smiley. :) Well, it was no joke but I thought about adding a

Fwd: Re: [Webware-discuss] A Webware Wiki

2002-04-14 Thread Stephan Diehl
> Yes, converting is what I was thinking about. I don't know how > important the fullness of the markup is -- TWiki, for instance, might be > too full. We don't need to cover every kind of layout -- tables, > definition lists, etc. -- just the ones that are typical and > unambiguous. That might

Re: [Webware-discuss] A Webware Wiki

2002-04-14 Thread Stephan Diehl
On Thursday 01 January 1970 00:59, you wrote: > sourceforge.net > X-BeenThere: [EMAIL PROTECTED] > X-Mailman-Version: 2.0.9-sf.net > Precedence: bulk > List-Help: > > List-Post: > List-Subscribe: >

Re: [Webware-discuss] Minimal object-relational mapper...?

2002-04-03 Thread Stephan Diehl
This looks quite nice. Would you mind, if I use your db.py utilities? Unfortunatelly (that's unfortunatelly for me :-) it is not exactly what I (and Magnus from what I gathered) have in mind. At the moment, I'm using StandaloneZODB for a project. For some reasons (they might be completely unfoun

Re: [Webware-discuss] Minimal object-relational mapper...?

2002-03-28 Thread Stephan Diehl
> Stephan Diehl <[EMAIL PROTECTED]>: > > Hope it's not to late :-) I was thinking for quite a while doing a object > > > > relational wrapper. For me it should work on Mysql and eventually Oracle. > > I've already some ideas, but nothing written yet.

Re: [Webware-discuss] Minimal object-relational mapper...?

2002-03-28 Thread Stephan Diehl
Hope it's not to late :-) I was thinking for quite a while doing a object relational wrapper. For me it should work on Mysql and eventually Oracle. I've already some ideas, but nothing written yet. Maybe we should exchange some ideas. If you think that could be a good idea, just shout :-) step

Re: [Webware-discuss] bug in webware?

2002-03-15 Thread Stephan Diehl
hink about it, I might have wanted a redirect in the first place anyway :-) Thanks for this hint > > - Geoff stephan > > > -----Original Message- > > From: Stephan Diehl [mailto:[EMAIL PROTECTED]] > > Sent: Friday, March > > 15, 2002 7:55 AM > > >

[Webware-discuss] bug in webware?

2002-03-15 Thread Stephan Diehl
I found a strange bug in webware (or is it a feature?) platform: linux webware: cvs (15.03.2002) python: 2.2 Circumstances: /usr/local/Intranet/Webserver contains my application environment (via MakeAppWorkDir). There are two contexts: "Test" and "Repository". Test contains one Main.py that forw

Re: [Webware-discuss] WebNotify

2001-12-19 Thread Stephan Diehl
> On Tue, 2001-12-18 at 19:50, Edmund Lian wrote: > > I want to add myself to the WebNotify list on the Webware and Cheetah > > Twikis, but have not done so because I'm concerned about the addresses > > being harvested by spammers. Is this an unfounded concern? Have any of > > you who are listed o

Re: [Webware-discuss] Newbie question

2001-12-14 Thread Stephan Diehl
The following webpage should answer your question. http://webware.colorstudy.net/twiki/bin/view/Webware/ModRewriteRecipes Hope this helps Stephan On Friday 14 December 2001 11:15, you wrote: > I'm a real newbie at WebWare, and have a simple question on > webware+apache+webkit module I hope you

Re: [Webware-discuss] xml.dom.implementation.toxml

2001-11-27 Thread Stephan Diehl
What exactly are you trying to do? This is more of a 4DOM question... Anyway, there is some function in 4DOM that will give you a textual representation of your dom object (sorry, I don't have 4dom installed at the moment so I can't tell you the name :-). You could save that in a variable and j

[Webware-discuss] AppIdeas on webware.colorstudy.net/twiki/

2001-11-22 Thread Stephan Diehl
Hi All, the last days there was a lot going on on http://webware.colorstudy.net/twiki/bin/view/Webware/AppIdeas . A lot of ideas are about full fledged application while others consist of building blocks for such application. There is an agreement that WebwareUserManager is one of the most impo

Re: [Webware-discuss] General inquiry

2001-11-19 Thread Stephan Diehl
Hi, starting on user management sounds like a good idea. I'd be interested in builing a (at first primitive) document management system and usermanagement is definatelly needed. I'll post some ideas on the twiki about this during the next days. Stephan On Sunday 18 November 2001 00:51, you wr

Re: [Webware-discuss] How to get rid of the query string + audio data

2001-11-16 Thread Stephan Diehl
On Friday 16 November 2001 10:54, you wrote: > Hi, > > I have two problems with my webkit - app: > > 1. I use the SecurePage + LoginPage from the examples. I made a logout >- link which calls http://path-to-my-app/Main?logout=1. SecurePage >directs me to LoginPage, I log in, but because t

[Webware-discuss] python style xml notation

2001-06-18 Thread Stephan Diehl
clude aliases. If you had a tag, you could say: "alias this-is-an-extreamly-long-tag t1" (or #define or python dictonary notation?) -- (c) Copyright by Stephan Diehl, 2000 (mailto:[EMAIL