From jeff at corrt.com Fri Nov 2 13:43:02 2001 From: jeff at corrt.com (Jeff Kunce) Date: Fri Nov 2 13:43:02 2001 Subject: [Moin-user] mini-Moin Message-ID: <3.0.2.32.20011102154032.009e91c0@corrt.com> I have a quick fix for reducing the number "SystemPages" on a MoinMoin wiki. In moin_config.py, replace all instances of: href="%(scriptname)s/HelpContents" with: href="http://moin.sourceforge.net/cgi-bin/moin/moin/HelpContents" if you want to be fancy, add: target="moin_help" Then you can get rid of all the Help pages and the meta-moin stuff because you have linked directly to the MoinMoinMotherSite. --Jeff From jh at web.de Sat Nov 3 04:29:01 2001 From: jh at web.de (Juergen Hermann) Date: Sat Nov 3 04:29:01 2001 Subject: [Moin-user] mini-Moin In-Reply-To: <3.0.2.32.20011102154032.009e91c0@corrt.com> Message-ID: On Fri, 02 Nov 2001 15:40:32 -0600, Jeff Kunce wrote: >I have a quick fix for reducing the number "SystemPages" on a MoinMoin wiki. Please do NOT do this. If everyone did, this might increase traffic to the website to a level where _I_ don't know how SF.net staff reacts. You never know... Ciao, J?rgen From jeff at corrt.com Sat Nov 3 17:22:04 2001 From: jeff at corrt.com (Jeff Kunce) Date: Sat Nov 3 17:22:04 2001 Subject: [Moin-user] mini-Moin In-Reply-To: References: <3.0.2.32.20011102154032.009e91c0@corrt.com> Message-ID: <3.0.2.32.20011103191509.007f8540@corrt.com> Oops, I didn't think of that. I apologize. But the concept still works for me. I have set up a number of MoinMoin wikis on my intranet for different purposes. I'll just make a separate "help wiki" that all the others can link to. --Jeff At 01:29 PM 11/3/01 +0100, Juergen Hermann wrote: >On Fri, 02 Nov 2001 15:40:32 -0600, Jeff Kunce wrote: > >>I have a quick fix for reducing the number "SystemPages" on a MoinMoin wiki. > >Please do NOT do this. If everyone did, this might increase traffic to the >website to a level where _I_ don't know how SF.net staff reacts. You never >know... > > >Ciao, J?rgen > > > >_______________________________________________ >Moin-user mailing list >Moin-user at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/moin-user > > From wacl at gmx.net Wed Nov 14 01:41:01 2001 From: wacl at gmx.net (wacl at gmx.net) Date: Wed Nov 14 01:41:01 2001 Subject: [Moin-user] MoinMoin and apache python modules Message-ID: <23055.1005730803@www36.gmx.net> Hi, I would like to speed up the MoinMoin wiki. Is this possible to use it with one of the apache python modules: mod_python, pyapache, mod_snake ? Regards Janusz Waclawczyk -- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net From jh at web.de Wed Nov 14 11:07:03 2001 From: jh at web.de (Juergen Hermann) Date: Wed Nov 14 11:07:03 2001 Subject: [Moin-user] MoinMoin and apache python modules In-Reply-To: <23055.1005730803@www36.gmx.net> Message-ID: On Wed, 14 Nov 2001 10:40:03 +0100 (MET), wacl at gmx.net wrote: >I would like to speed up the MoinMoin wiki. Is this possible to use it with >one of the apache python modules: mod_python, pyapache, mod_snake ? Work towards this goal is underway, the major task is to refer to all "global" objects through exactly ONE reference that is passed around to all involved parties (what is currently cgimain.request). It works half-way (for example, the stand-alone server does not totally freak out), but there _are_ bugs regarding persistent environments. If you like to contribute, you can start by looking at the MoinMoin.webapi subpackage. Ciao, J?rgen From jeff at corrt.com Thu Nov 15 08:33:05 2001 From: jeff at corrt.com (Jeff Kunce) Date: Thu Nov 15 08:33:05 2001 Subject: [Moin-user] expanding macros in templates Message-ID: <3.0.2.32.20011115103016.009d6818@corrt.com> I would like to have a "smart" page template for page creation - specifically, one that would put the current date on a new page. My proposal for this is to have a way of marking a macro in a template so the macro executes/expands when the template is used for a new page. The standard macro markup in a template just gets put into the new page as a macro call. Is this already available? If not, does anyone else think it would be useful? Any ideas on the markup to use? Thanks. --Jeff From jh at web.de Thu Nov 15 14:50:05 2001 From: jh at web.de (Juergen Hermann) Date: Thu Nov 15 14:50:05 2001 Subject: [Moin-user] expanding macros in templates Message-ID: On Thu, 15 Nov 2001 10:30:16 -0600, Jeff Kunce wrote: >Is this already available? If not, does anyone else think it would be >useful? Any ideas on the markup to use? CVS. Yes. #DATE#, #TIME#, #SIG#. From jeff at corrt.com Fri Nov 16 14:00:02 2001 From: jeff at corrt.com (Jeff Kunce) Date: Fri Nov 16 14:00:02 2001 Subject: [Moin-user] expanding macros in templates In-Reply-To: Message-ID: <3.0.2.32.20011116155713.00a0c550@corrt.com> >>Is this already available? If not, does anyone else think it would be >>useful? Any ideas on the markup to use? > >CVS. Yes. #DATE#, #TIME#, #SIG#. > How should this work? Here's what I tried: I got the current CVS: Release 0.11 [Revision 1.136] I made a template page that contains this: aaa [[BR]] bbb #BR# ccc I created a new page with the template, and the editor contains: aaa [[BR]] bbb #BR# ccc What I wanted was an expansion of #BR#, so the editor would contain: aaa [[BR]] bbb ccc Can you clarify? Thanks. --Jeff From jeff at corrt.com Fri Nov 16 14:23:02 2001 From: jeff at corrt.com (Jeff Kunce) Date: Fri Nov 16 14:23:02 2001 Subject: [Moin-user] expanding macros in templates In-Reply-To: <3.0.2.32.20011116155713.00a0c550@corrt.com> References: Message-ID: <3.0.2.32.20011116161959.009fa128@corrt.com> At 03:57 PM 11/16/2001 -0600, Jeff Kunce wrote: >>>Is this already available? If not, does anyone else think it would be >>>useful? Any ideas on the markup to use? >> >>CVS. Yes. #DATE#, #TIME#, #SIG#. >> Nevermind. I finally found it in the code. The version I have uses @DATE@, @TIME@, @SIG@ I'll play around with this - I think I can make it do what I want. Thanks. --Jeff > >How should this work? Here's what I tried: > >I got the current CVS: Release 0.11 [Revision 1.136] > >I made a template page that contains this: > aaa [[BR]] bbb #BR# ccc >I created a new page with the template, and the editor contains: > aaa [[BR]] bbb #BR# ccc >What I wanted was an expansion of #BR#, so the editor would contain: > aaa [[BR]] bbb > ccc > >Can you clarify? Thanks. > > --Jeff > > > >_______________________________________________ >Moin-user mailing list >Moin-user at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/moin-user > > From jh at web.de Sat Nov 17 04:22:02 2001 From: jh at web.de (Juergen Hermann) Date: Sat Nov 17 04:22:02 2001 Subject: [Moin-user] expanding macros in templates In-Reply-To: <3.0.2.32.20011116161959.009fa128@corrt.com> Message-ID: On Fri, 16 Nov 2001 16:19:59 -0600, Jeff Kunce wrote: >Nevermind. I finally found it in the code. >The version I have uses @DATE@, @TIME@, @SIG@ >I'll play around with this - I think I can make >it do what I want. Thanks. Sorry, changed it after i noticed conflicts with the use of "#" at line beginnings. Ciao, J?rgen From jonas.b at home.se Thu Nov 22 06:07:06 2001 From: jonas.b at home.se (Jonas Bengtsson) Date: Thu Nov 22 06:07:06 2001 Subject: [Moin-user] Future plans? Message-ID: Hi, First I must say that I like MoinMoin for its speed and simplicity. But I have also used the TWiki WikiClone which is very advanced and have many features. I really liked following features: * Uploading of files * Better user management * Possibility of setting restrictions on different actions on different pages * Different "webs" - division of one wiki site into several divisions * Notification - ability to be notified with mail when something is modified Are there any plans of adressing the features above? Are there any plans of porting MoinMoin to a application server (such as webware)? Thanks in advance, Jonas Bengtsson From jh at web.de Thu Nov 22 06:56:05 2001 From: jh at web.de (Juergen Hermann) Date: Thu Nov 22 06:56:05 2001 Subject: [Moin-user] Future plans? In-Reply-To: Message-ID: On Thu, 22 Nov 2001 15:06:58 +0100, Jonas Bengtsson wrote: > * Uploading of files In there. > * Better user management Define "better". > * Possibility of setting restrictions on different actions on different >pages In there (but you have to write small amounts of python code at the moment). > * Different "webs" - division of one wiki site into several divisions Not before the "storage" concept is added. > * Notification - ability to be notified with mail when something is >modified Basic mail handling is in there. Patches accepted. MacroMarket has something like this, too, I think. >Are there any plans of adressing the features above? Patches accepted, the rest is a question of how much time i can spare. >Are there any plans of porting MoinMoin to a application server (such as >webware)? Yes. Halfway done. Ciao, J?rgen From jonas.b at home.se Thu Nov 22 08:58:04 2001 From: jonas.b at home.se (Jonas Bengtsson) Date: Thu Nov 22 08:58:04 2001 Subject: [Moin-user] Future plans? In-Reply-To: Message-ID: Perhaps I should have mentioned that I use MoinMoin 0.9. I saw now that there is a 0.10 version (yes, I will upgrade :-) > -----Original Message----- > From: Juergen Hermann [mailto:jh at web.de] > Sent: Thursday, November 22, 2001 3:55 PM > To: Jonas Bengtsson; moin-user at lists.sourceforge.net > Subject: Re: [Moin-user] Future plans? > > > On Thu, 22 Nov 2001 15:06:58 +0100, Jonas Bengtsson wrote: > > > * Uploading of files > > In there. Is it in the 0.10 version? > > * Better user management > > Define "better". At least in 0.9 there were no way of loggin in using username/password. One had to use an obscure url. > > * Possibility of setting restrictions on different actions on different > >pages > > In there (but you have to write small amounts of python code at the > moment). Also in the 0.10 version? > > * Different "webs" - division of one wiki site into several divisions > > Not before the "storage" concept is added. Okey! > > * Notification - ability to be notified with mail when something is > >modified > > Basic mail handling is in there. Patches accepted. MacroMarket has > something like this, too, I think. Nice! > >Are there any plans of adressing the features above? > > Patches accepted, the rest is a question of how much time i can spare. > > >Are there any plans of porting MoinMoin to a application server (such as > >webware)? > > Yes. Halfway done. Nice! Perhaps I should investigate the new version and put some effort into it :-) /Jonas > > Ciao, J?rgen > > > From jh at web.de Thu Nov 22 11:05:02 2001 From: jh at web.de (Juergen Hermann) Date: Thu Nov 22 11:05:02 2001 Subject: [Moin-user] Future plans? In-Reply-To: Message-ID: On Thu, 22 Nov 2001 17:58:01 +0100, Jonas Bengtsson wrote: >Perhaps I should have mentioned that I use MoinMoin 0.9. I saw now that >there is a 0.10 version (yes, I will upgrade :-) And there is a CHANGES file, btw. ;> Ciao, J?rgen From jonas.b at home.se Thu Nov 22 14:28:03 2001 From: jonas.b at home.se (Jonas Bengtsson) Date: Thu Nov 22 14:28:03 2001 Subject: Installing 0.10 (was:RE: [Moin-user] Future plans?) In-Reply-To: Message-ID: Ok. Now I'm in the process of installing 0.10.. But when I run test.cgi: MoinMoin CGI Diagnosis ====================== Package "MoinMoin" sucessfully imported. Traceback (innermost last): File "/var/www/htdocs/MoinMoin/test.cgi", line 42, in ? run() File "/var/www/htdocs/MoinMoin/test.cgi", line 32, in run cgimain.test() File "/usr/local/lib/python2.0/site-packages/MoinMoin/cgimain.py", line 22, in test from MoinMoin import config, util, version, editlog File "/usr/local/lib/python2.0/site-packages/MoinMoin/editlog.py", line 16, in ? from MoinMoin.Page import Page File "/usr/local/lib/python2.0/site-packages/MoinMoin/Page.py", line 13, in ? from MoinMoin.cgimain import request ImportError: cannot import name request Any directions? moin.cgi seems to work. (besides an error in RecentChanges) /Jonas > -----Original Message----- > From: Juergen Hermann [mailto:jh at web.de] > Sent: Thursday, November 22, 2001 8:04 PM > To: Jonas Bengtsson; moin-user at lists.sourceforge.net > Subject: RE: [Moin-user] Future plans? > > > On Thu, 22 Nov 2001 17:58:01 +0100, Jonas Bengtsson wrote: > > >Perhaps I should have mentioned that I use MoinMoin 0.9. I saw now that > >there is a 0.10 version (yes, I will upgrade :-) > > And there is a CHANGES file, btw. ;> > > > Ciao, J?rgen > > > From jonas.b at home.se Thu Nov 22 15:53:02 2001 From: jonas.b at home.se (Jonas Bengtsson) Date: Thu Nov 22 15:53:02 2001 Subject: Installing 0.10 (was:RE: [Moin-user] Future plans?) In-Reply-To: Message-ID: The problems dissapeared when updating to cvs. Isn't it possible to get an overview of the attached files at the end of the affected page? /Jonas > -----Original Message----- > From: Jonas Bengtsson [mailto:jonas.b at home.se] > Sent: Thursday, November 22, 2001 11:27 PM > To: Juergen Hermann; moin-user at lists.sourceforge.net > Subject: Installing 0.10 (was:RE: [Moin-user] Future plans?) > > > Ok. Now I'm in the process of installing 0.10.. But when I run test.cgi: > > > MoinMoin CGI Diagnosis > ====================== > > Package "MoinMoin" sucessfully imported. > > > Traceback (innermost last): > File "/var/www/htdocs/MoinMoin/test.cgi", line 42, in ? > run() > File "/var/www/htdocs/MoinMoin/test.cgi", line 32, in run > cgimain.test() > File > "/usr/local/lib/python2.0/site-packages/MoinMoin/cgimain.py", > line 22, in test > from MoinMoin import config, util, version, editlog > File > "/usr/local/lib/python2.0/site-packages/MoinMoin/editlog.py", > line 16, in ? > from MoinMoin.Page import Page > File > "/usr/local/lib/python2.0/site-packages/MoinMoin/Page.py", line 13, in ? > from MoinMoin.cgimain import request > ImportError: cannot import name request > > > > Any directions? moin.cgi seems to work. (besides an error in > RecentChanges) > > /Jonas > > > > -----Original Message----- > > From: Juergen Hermann [mailto:jh at web.de] > > Sent: Thursday, November 22, 2001 8:04 PM > > To: Jonas Bengtsson; moin-user at lists.sourceforge.net > > Subject: RE: [Moin-user] Future plans? > > > > > > On Thu, 22 Nov 2001 17:58:01 +0100, Jonas Bengtsson wrote: > > > > >Perhaps I should have mentioned that I use MoinMoin 0.9. I saw now that > > >there is a 0.10 version (yes, I will upgrade :-) > > > > And there is a CHANGES file, btw. ;> > > > > > > Ciao, J?rgen > > > > > > From jh at web.de Fri Nov 23 02:14:05 2001 From: jh at web.de (Juergen Hermann) Date: Fri Nov 23 02:14:05 2001 Subject: [Moin-user] Bug in 0.10 test.cgi Message-ID: When you get the following exception, all is well, it's a bug in cgimain.py that is already fixed. If you want to patch this in your release version, add the following code directly at the top of the test() function in cgimain.py: # set up request data from MoinMoin.request import Request global request request = Request() MoinMoin CGI Diagnosis ====================== Package "MoinMoin" sucessfully imported. Traceback (innermost last): File "/var/www/htdocs/MoinMoin/test.cgi", line 42, in ? run() File "/var/www/htdocs/MoinMoin/test.cgi", line 32, in run cgimain.test() File "/usr/local/lib/python2.0/site-packages/MoinMoin/cgimain.py", line 22, in test from MoinMoin import config, util, version, editlog File "/usr/local/lib/python2.0/site-packages/MoinMoin/editlog.py", line 16, in ? from MoinMoin.Page import Page File "/usr/local/lib/python2.0/site-packages/MoinMoin/Page.py", line 13, in ? from MoinMoin.cgimain import request ImportError: cannot import name request From jh at web.de Fri Nov 23 02:15:04 2001 From: jh at web.de (Juergen Hermann) Date: Fri Nov 23 02:15:04 2001 Subject: Installing 0.10 (was:RE: [Moin-user] Future plans?) In-Reply-To: Message-ID: On Fri, 23 Nov 2001 00:52:43 +0100, Jonas Bengtsson wrote: >Isn't it possible to get an overview of the attached files at the end of the >affected page? It's a todo to add this to the pageinfo action. From jh at web.de Fri Nov 23 08:08:02 2001 From: jh at web.de (Juergen Hermann) Date: Fri Nov 23 08:08:02 2001 Subject: Installing 0.10 (was:RE: [Moin-user] Future plans?) In-Reply-To: Message-ID: On Thu, 22 Nov 2001 23:27:16 +0100, Jonas Bengtsson wrote: >Any directions? moin.cgi seems to work. (besides an error in RecentChanges) What error was that? Ciao, J?rgen From jonas.b at home.se Sat Nov 24 08:03:01 2001 From: jonas.b at home.se (Jonas Bengtsson) Date: Sat Nov 24 08:03:01 2001 Subject: Installing 0.10 (was:RE: [Moin-user] Future plans?) In-Reply-To: Message-ID: Sorry - don't remember.. It was something about trying to use "len" on an object that didn't support the operation. I think it was in Page, but I don't remember... The problem ceased to exist after upgrading to cvs version though. /Jonas > -----Original Message----- > From: Juergen Hermann [mailto:jh at web.de] > Sent: Friday, November 23, 2001 5:06 PM > To: Jonas Bengtsson; moin-user at lists.sourceforge.net > Subject: Re: Installing 0.10 (was:RE: [Moin-user] Future plans?) > > > On Thu, 22 Nov 2001 23:27:16 +0100, Jonas Bengtsson wrote: > > >Any directions? moin.cgi seems to work. (besides an error in > RecentChanges) > > What error was that? > > > Ciao, J?rgen > > > From jh at web.de Sat Nov 24 08:52:01 2001 From: jh at web.de (Juergen Hermann) Date: Sat Nov 24 08:52:01 2001 Subject: [Moin-user] Main wiki moved Message-ID: Hi! Since implementing a mysql storage takes longer than I thought, I now moved the wiki to http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/ (which is the same as http://purl.org/wiki/moin/) In order to get the usual CSS, you might have to empty the "CSS URL" field in UserPreferences and save your profile once. In order to get your profile at all, enter your email address you used to register and use the "Mail me my account data" button on http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/UserPreferences Ciao, J?rgen From jh at web.de Sat Nov 24 08:53:02 2001 From: jh at web.de (Juergen Hermann) Date: Sat Nov 24 08:53:02 2001 Subject: Installing 0.10 (was:RE: [Moin-user] Future plans?) In-Reply-To: Message-ID: On Sat, 24 Nov 2001 17:02:11 +0100, Jonas Bengtsson wrote: >Sorry - don't remember.. It was something about trying to use "len" on an >object that didn't support the operation. I think it was in Page, but I >don't remember... The problem ceased to exist after upgrading to cvs version >though. You prolly did not create a backup dir, which you should, lese you get no diffs. Ciao, J?rgen From jonas.b at home.se Sat Nov 24 09:07:02 2001 From: jonas.b at home.se (Jonas Bengtsson) Date: Sat Nov 24 09:07:02 2001 Subject: Installing 0.10 (was:RE: [Moin-user] Future plans?) In-Reply-To: Message-ID: That's true. Didn't see anything in the installation documentation about that :-) /Jonas > -----Original Message----- > From: Juergen Hermann [mailto:jh at web.de] > Sent: Saturday, November 24, 2001 5:52 PM > To: Jonas Bengtsson; moin-user at lists.sourceforge.net > Subject: RE: Installing 0.10 (was:RE: [Moin-user] Future plans?) > > > On Sat, 24 Nov 2001 17:02:11 +0100, Jonas Bengtsson wrote: > > >Sorry - don't remember.. It was something about trying to use "len" on an > >object that didn't support the operation. I think it was in Page, but I > >don't remember... The problem ceased to exist after upgrading to > cvs version > >though. > > You prolly did not create a backup dir, which you should, lese you get no > diffs. > > > Ciao, J?rgen > > > From jeff at corrt.com Sun Nov 25 16:30:01 2001 From: jeff at corrt.com (Jeff Kunce) Date: Sun Nov 25 16:30:01 2001 Subject: [Moin-user] multiple wiki mods Message-ID: <3.0.2.32.20011125183053.007e68b0@corrt.com> Hi- I'm working with multiple wikis on one site. A couple of minor changes would help: * configurable location of intermap.txt * configurable location of the 'user' directory The idea is to share those items among the wikis. It looks like these can be implemented easily with new (optional) entries in moin_config.py Thanks. --Jeff From jh at web.de Mon Nov 26 12:05:01 2001 From: jh at web.de (Juergen Hermann) Date: Mon Nov 26 12:05:01 2001 Subject: [Moin-user] multiple wiki mods In-Reply-To: <3.0.2.32.20011125183053.007e68b0@corrt.com> Message-ID: On Sun, 25 Nov 2001 18:30:53 -0600, Jeff Kunce wrote: >I'm working with multiple wikis on one site. On Unix or Windows? On Unix, just use symlinks. But since it's rather easy, I'll add a todo. Ciao, J?rgen From jh at web.de Mon Nov 26 14:35:10 2001 From: jh at web.de (Juergen Hermann) Date: Mon Nov 26 14:35:10 2001 Subject: [Moin-user] multiple wiki mods In-Reply-To: <3.0.2.32.20011125183053.007e68b0@corrt.com> Message-ID: On Sun, 25 Nov 2001 18:30:53 -0600, Jeff Kunce wrote: > * configurable location of intermap.txt * Better WikiFarm support: * /plugin/macro and /plugin/action can be used to store macros and actions local to a specific wiki instance * config.shared_intermap can contain a pathname to a shared "intermap.txt" file (i.e. one stored outside the datadir) In CVS, and the shared map is not tested yet. Ciao, J?rgen From jeff at corrt.com Mon Nov 26 14:52:02 2001 From: jeff at corrt.com (Jeff Kunce) Date: Mon Nov 26 14:52:02 2001 Subject: [Moin-user] multiple wiki mods In-Reply-To: References: <3.0.2.32.20011125183053.007e68b0@corrt.com> Message-ID: <3.0.2.32.20011126164827.009e8000@corrt.com> > * Better WikiFarm support: ... Thanks! On my request to share user settings, I did some experimenting, and found that, even if wikis share the same user directory, they create separate files for the same user. So that may be more complicated than I thought. --Jeff From jh at web.de Mon Nov 26 14:59:02 2001 From: jh at web.de (Juergen Hermann) Date: Mon Nov 26 14:59:02 2001 Subject: [Moin-user] multiple wiki mods In-Reply-To: <3.0.2.32.20011126164827.009e8000@corrt.com> Message-ID: On Mon, 26 Nov 2001 16:48:27 -0600, Jeff Kunce wrote: >> * Better WikiFarm support: ... > >Thanks! > >On my request to share user settings, I did some experimenting, >and found that, even if wikis share the same user directory, they >create separate files for the same user. So that may be more >complicated than I thought. > > --Jeff > The problem lies in the cookies sent; you can try to set a wikifarm id or something, and send that as the cookie's path. Namely change webapi.getScriptname() to something else in the code below, like "/" (which makes the cookie valid for the whole server, I think). def getCookie(self): """Get the Set-Cookie header for this user""" cookie = Cookie.SimpleCookie() cookie['MOIN_ID'] = self.id return cookie.output() + ' expires=Tuesday, 31-Dec-2013 12:00:00 GMT; Path=%s' % (webapi.getScriptname(),) Ciao, J?rgen From jh at web.de Tue Nov 27 16:01:15 2001 From: jh at web.de (Juergen Hermann) Date: Tue Nov 27 16:01:15 2001 Subject: [Moin-user] User defined forms Message-ID: http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/WeblogForm Now is your chance to comment on this feature... (note that the UserForm macro is not yet implemented) Ciao, J?rgen From tbird at lineo.com Tue Nov 27 16:59:02 2001 From: tbird at lineo.com (Tim Bird) Date: Tue Nov 27 16:59:02 2001 Subject: [Moin-user] User defined forms References: Message-ID: <3C04374F.DAA4B24C@lineo.com> Juergen Hermann wrote: > > http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/WeblogForm > > Now is your chance to comment on this feature... > > (note that the UserForm macro is not yet implemented) I tried this and see the usefulness of arbitrary forms for data entry. Unfortunately, it didn't appear to do what it was supposed to. My data didn't show up on the page (I assume where the @var@ fields were). Is this what it was supposed to do? Would the intent be to put new form data onto the page as shown, or allow macro or action processing, or what? ____________________________________________________________ Tim Bird Lineo, Inc. Chief Technology Officer 390 South 400 West tbird at lineo.com Lindon, UT 84042 From jh at web.de Tue Nov 27 18:18:02 2001 From: jh at web.de (Juergen Hermann) Date: Tue Nov 27 18:18:02 2001 Subject: [Moin-devel] Re: [Moin-user] User defined forms In-Reply-To: <3C04374F.DAA4B24C@lineo.com> Message-ID: On Tue, 27 Nov 2001 18:01:03 -0700, Tim Bird wrote: >I tried this and see the usefulness of arbitrary forms for >data entry. Unfortunately, it didn't appear to do what it >was supposed to. My data didn't show up on the page >(I assume where the @var@ fields were). Is this what it was >supposed to do? > >Would the intent be to put new form data onto the page >as shown, or allow macro or action processing, or what? Like I said, the 2nd part is missing. The idea is that you place [[UserForm("Weblog")]] on ANOTHER page, which then adds the text from the form definition page, with the variables replaced, at the end of that OTHER page (or into a mail, or right behind the macro, or at the top of the page, etc.) Ciao, J?rgen From wacl at gmx.net Wed Nov 28 00:22:02 2001 From: wacl at gmx.net (wacl at gmx.net) Date: Wed Nov 28 00:22:02 2001 Subject: [Moin-user] How to deal with blanks in the url Message-ID: <14898.1006935683@www44.gmx.net> Hi, if the url uses blanks (e.g. 'file:///K|/All Projects/') then the corresponding link can't be correctly recognized (I tried the from ["file:///K|/All Projects/" All Projects]). It is very usefull feature so my question: is this possible to implement it in the MoinMoin wiki ? Regards, Janusz Waclawczyk -- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net From dmd at 3e.org Wed Nov 28 05:48:02 2001 From: dmd at 3e.org (Daniel M. Drucker) Date: Wed Nov 28 05:48:02 2001 Subject: [Moin-user] type errors Message-ID: <41367.204.124.247.1.1006955217.squirrel@3e.org> Hello all, I'm running 0.10, and everything seems to work except for [[RecentChanges]]. When I try to use that, I get a TypeError. You can see the error if you go here: http://3e.org/notes/moin.cgi/problem Anyone have any idea what could be wrong? Daniel Drucker From dmd at 3e.org Wed Nov 28 08:47:01 2001 From: dmd at 3e.org (Daniel M. Drucker) Date: Wed Nov 28 08:47:01 2001 Subject: [Moin-user] type errors References: <3.0.2.32.20011128103532.00a24a90@corrt.com> Message-ID: <001a01c1782c$32b82e70$0146be18@miso> Yeah, um... I upgraded to the latest CVS instead of 0.10. That made it work. Email notification still gives all sorts of weird string.join errors, but I don't need that feature. ----- Original Message ----- From: "Jeff Kunce" To: "Daniel M. Drucker" Sent: Wednesday, November 28, 2001 11:35 AM Subject: Re: [Moin-user] type errors > >I'm running 0.10, and everything seems to work except for > >[[RecentChanges]]. When I try to use that, I get a TypeError. > > > >You can see the error if you go here: > >http://3e.org/notes/moin.cgi/problem > > works OK when I go there :-) > > --Jeff > > > From cmedcoff at hotmail.com Wed Nov 28 09:58:05 2001 From: cmedcoff at hotmail.com (Charles Medcoff) Date: Wed Nov 28 09:58:05 2001 Subject: [Moin-user] Info - diffs Message-ID: I have MoinMoin 0.9 installed on Win2K with Python 2.1. When I selected the information action all the revisions of the page are displayed. When I select diff I expect to see a difference between the revision and the previous revision but all I ever see is "No differences found!". Perhaps this is a bug or I don't understand how this feature works. Could someone clarify? Regards, Chuck -------------- next part -------------- An HTML attachment was scrubbed... URL: From jh at web.de Wed Nov 28 11:46:09 2001 From: jh at web.de (Juergen Hermann) Date: Wed Nov 28 11:46:09 2001 Subject: [Moin-user] Info - diffs In-Reply-To: Message-ID: From jh at web.de Wed Nov 28 11:49:01 2001 From: jh at web.de (Juergen Hermann) Date: Wed Nov 28 11:49:01 2001 Subject: [Moin-user] How to deal with blanks in the url In-Reply-To: <14898.1006935683@www44.gmx.net> Message-ID: On Wed, 28 Nov 2001 09:21:23 +0100 (MET), wacl at gmx.net wrote: >if the url uses blanks (e.g. 'file:///K|/All Projects/') >then the corresponding link can't be correctly recognized >(I tried the from ["file:///K|/All Projects/" All Projects]). Use %20, a space is not valid for an URL anywhere. Ciao, J?rgen From cmedcoff at hotmail.com Wed Nov 28 13:35:02 2001 From: cmedcoff at hotmail.com (Charles Medcoff) Date: Wed Nov 28 13:35:02 2001 Subject: [Moin-user] Info - diffs References: Message-ID: I just getting started with MoinMoin so please pardon my ignorance. I'm confused. The 0.10 release is newer than the 0.90 release? I though that 9/10 was greater than 1/10. Also I've read the "HelpOnUpdating" page but it still isn't clear to me the best procedure. Could someone spell it out for me. It probably goes something like. 1. Unzip the zip file to your Python installation folder. 2. Rename the exising moinmoing folder to something like (moinmon.old) 3. Rename the new relelase (moinmoin-0.10) to moinmoin. 4. Copy all of the data files from the old data directory to the new one. etc. If this can be spelled out perhaps I'll try to find the time to write a python script to do this automatically and submit a patch? Regards, Chuck ----- Original Message ----- From: Juergen Hermann To: Charles Medcoff ; moin-user at lists.sourceforge.net Sent: Wednesday, November 28, 2001 2:45 PM Subject: Re: [Moin-user] Info - diffs From CHANGES: Version 0.10 (2001-10-28, Revision 1.134) ... Bugfixes: * Bugfix for a UNIX time billenium bug (affecting RecentChanges sorting and page diffs) --Original Message Text--- From: Charles Medcoff Date: Wed, 28 Nov 2001 12:57:07 -0500 I have MoinMoin 0.9 installed on Win2K with Python 2.1. When I selected the information action all the revisions of the page are displayed. When I select diff I expect to see a difference between the revision and the previous revision but all I ever see is "No differences found!". Perhaps this is a bug or I don't understand how this feature works. Could someone clarify? Regards, Chuck Ciao, J?rgen -------------- next part -------------- An HTML attachment was scrubbed... URL: From adam at personaltelco.net Wed Nov 28 13:42:04 2001 From: adam at personaltelco.net (Adam Shand) Date: Wed Nov 28 13:42:04 2001 Subject: [Moin-user] Info - diffs In-Reply-To: Message-ID: > I'm confused. The 0.10 release is newer than the 0.90 release? I > though that 9/10 was greater than 1/10. yes, it wasn't release 0.90 it was 0.9 and 10 is greater the 9 :-) > Also I've read the "HelpOnUpdating" page but it still isn't clear to > me the best procedure. Could someone spell it out for me. It > probably goes something like. sorry i haven't done the upgrade yet so i can't help. adam. From jh at web.de Wed Nov 28 14:27:04 2001 From: jh at web.de (Juergen Hermann) Date: Wed Nov 28 14:27:04 2001 Subject: [Moin-user] HelpOnConfiguration Message-ID: Hi! The invitation on the HelpOnConfiguration page is standing: moin_config and its options are chronically underdocumented, so if all you people just write a few sentences on 2-3 options, that could be changed. I'm busy with new un(der)documented features... ;) Ciao, J?rgen From jh at web.de Wed Nov 28 14:27:05 2001 From: jh at web.de (Juergen Hermann) Date: Wed Nov 28 14:27:05 2001 Subject: [Moin-user] Info - diffs In-Reply-To: Message-ID: >I'm confused. The 0.10 release is newer than the 0.90 release? I >though that 9/10 was greater than 1/10. Version numbers are no floats. Since distutils support was added some time ago, an update is best done this way: 1. make a backup!!! 3. remove any old script dirs you have (the MoinMoin dir, of course NOT the data dir if you kept that within the "MoinMoin" folder); actually, it is enough to remove MoinMoin/__init__.py, which is safer 2. unzip anywhere (/tmp, c:\temp) 4. py setup.py install 5. copy new images to your htdocs area 6. possibly update intermap.txt The above steps can differ depending on how exactly your system is set up (there are endless variations). Ciao, J?rgen From jh at web.de Thu Nov 29 11:53:01 2001 From: jh at web.de (Juergen Hermann) Date: Thu Nov 29 11:53:01 2001 Subject: [Moin-user] Re: things to factor In-Reply-To: <17567.204.124.247.1.1007062837.squirrel@3e.org> Message-ID: On Thu, 29 Nov 2001 14:40:37 -0500 (EST), Daniel M. Drucker wrote: >Things I personally think it would be nice to have factored out into the >config file: > * which icons get displayed at the topright > * the contents of the Quickhelp (from Page.py) > * section-numbers (currently a 'pragma'... not sure how to set that) General point: Please use the mailing list. I added it to this reply. 1. The icons ARE configurable (page_icons) 2. For the moment, patch the source 3. See http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/ for an example Ciao, J?rgen From jh at web.de Thu Nov 29 11:54:04 2001 From: jh at web.de (Juergen Hermann) Date: Thu Nov 29 11:54:04 2001 Subject: [Moin-user] Re: AttachFile and LocalSiteMap actions In-Reply-To: <4.3.2.7.2.20011129144830.00e6c7b0@mail.boston.amer.iona.com> Message-ID: On Thu, 29 Nov 2001 14:49:35 -0500, Steve Vinoski wrote: >I noticed the AttachFile and LocalSiteMap actions on the #python wiki. >Where can I get the code for those actions? You need to run the CVS version for now. And please use the mailing list (see CC:). Ciao, J?rgen From cmedcoff at hotmail.com Thu Nov 29 12:17:32 2001 From: cmedcoff at hotmail.com (Charles Medcoff) Date: Thu Nov 29 12:17:32 2001 Subject: [Moin-user] Info - diffs References: Message-ID: 1. make a backup!!! < cem > did this 3. remove any old script dirs you have (the MoinMoin dir, of course NOT the data dir if you kept that within the "MoinMoin" folder); actually, it is enough to remove MoinMoin/__init__.py, which is safer I've not added any scripts myself (yet) so I assume that the first part of this does not apply to me. I need to remove (just) MoinMoin/__init__.py. Can't just install overtop of the old one? This is confusing. 2. unzip anywhere (/tmp, c:\temp) did this 4. py setup.py install read up on the disutils included in python - should have done this a long time ago 5. copy new images to your htdocs area New images? Whose images? Do you mean new images in the distribution or images that I've added? 6. possibly update intermap.txt Not a public wiki at this point I gather that I need to apply the patch show below after that for 0.10. ... patch this in your release version, add the following code directly at the top of the test() function in cgimain.py: # set up request data from MoinMoin.request import Request global request request = Request() Regards, Chuck From jh at web.de Thu Nov 29 12:27:04 2001 From: jh at web.de (Juergen Hermann) Date: Thu Nov 29 12:27:04 2001 Subject: [Moin-user] Info - diffs In-Reply-To: Message-ID: On Thu, 29 Nov 2001 15:14:48 -0500, Charles Medcoff wrote: >I need to remove (just) MoinMoin/__init__.py. Can't just install overtop of >the old one? This is confusing. Not when using distutils. Manually, you can, of course. See http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/HelpOnUpdating for more info. Ciao, J?rgen