From tw-public at gmx.de Wed Jun 1 10:17:00 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Wed Jun 1 10:17:00 2005 Subject: [Moin-user] editing by paragraph In-Reply-To: <20050601.080916.146192245.wl@gnu.org> References: <20050601.080916.146192245.wl@gnu.org> Message-ID: <429DA897.20402@gmx.de> > One of the nicest features while editing Wikipedia pages is that you > don't have to edit the full page but you can edit it paragraph by > paragraph, or section by section. Does MoinMoin support something > similar? No, not yet. But it is a common idea / request. If it was easy to do, we would've already implemented it, but with the current parser, it isn't. From eduardo.mercovich at gmail.com Wed Jun 1 13:06:27 2005 From: eduardo.mercovich at gmail.com (Eduardo Mercovich) Date: Wed Jun 1 13:06:27 2005 Subject: [Moin-user] User in chache? Message-ID: <4459f0d3050601125770b855fc@mail.gmail.com> Hello everybody. I have a new user that forgot its pasword and created a new (space separated) user for himself. Now he can't remember again his password (it's a univ. student...). The server in which this moin is installed doesn't have yet a mail system, so he can't receive his pass by mail, so I tried to delet the user/s so he can create the right one again. But, oops... grep doesn't show it to me in the /users dir. Of course, I tried to log in to create it anew, but Moin says that the user already exists. How can this be? Is the "memory" of this user in some cach? that I didn't find and have to delete? Thanks a lot for your help. Regards... -- Eduardo Mercovich Buenos Aires - Argentina. From eduardo.mercovich at gmail.com Wed Jun 1 13:07:55 2005 From: eduardo.mercovich at gmail.com (Eduardo Mercovich) Date: Wed Jun 1 13:07:55 2005 Subject: [Moin-user] Re: User in chache? In-Reply-To: <4459f0d3050601125770b855fc@mail.gmail.com> References: <4459f0d3050601125770b855fc@mail.gmail.com> Message-ID: <4459f0d3050601130455dfe8c5@mail.gmail.com> Hi all! [...] > But, oops... grep doesn't show it to me in the /users dir. Of course, > I tried to log in to create it anew, but Moin says that the user > already exists. > How can this be? Is the "memory" of this user in some cach? that I > didn't find and have to delete? I found a reference for it in http://moinmoin.wikiwikiweb.de/MoinMoinBugs/UserCreationFails Why this happens? Is this a bug? How can we re-create that cache? Thanks a lot... -- Eduardo Mercovich Buenos Aires - Argentina. From matheusleite at gmail.com Fri Jun 3 18:59:12 2005 From: matheusleite at gmail.com (Matheus Leite) Date: Fri Jun 3 18:59:12 2005 Subject: [Moin-user] Problems acessing CSS Message-ID: <1be8da17050603185884bd38b@mail.gmail.com> Hello, I installed MoinMoin 1.3.4 under Windows 2003 with Apache2 / mod_python and Python 2.3. I followed the installation procedure strictly and the wiki works, but I only get an ugly plain text interface no matter the theme I choose. Here is my httpd.conf: Alias /mywiki "C:/Python23/share/moin/htdocs" SetHandler python-program PythonPath "['C:/Python23/share/moin/mywiki']+sys.path" PythonHandler MoinMoin.request::RequestModPy.run And in wikiconfig.py I have: data_dir = 'C:/Python23/share/moin/mywiki/data' data_underlay_dir = 'C:/Python23/share/moin/mywiki/underlay' url_prefix = '/mywiki' I also discovered that, if I try to access the CSS file directly on the browser, say http://www.myhost.com/mywiki/modern/css/common.css, it doesnt't work! Instead, it takes me to the FrontPage. However, if I comment out the whole Location directive from httpd.conf and restart Apache, the css file becomes accessible normally. Does anyone know what causes this problem and how to fix it? Regards, Matheus From matheusleite at gmail.com Sat Jun 4 07:43:08 2005 From: matheusleite at gmail.com (Matheus Leite) Date: Sat Jun 4 07:43:08 2005 Subject: [Moin-user] Problems acessing CSS In-Reply-To: <4459f0d30506040734336356b8@mail.gmail.com> References: <1be8da17050603185884bd38b@mail.gmail.com> <4459f0d30506040734336356b8@mail.gmail.com> Message-ID: <1be8da1705060407421f3ebb2d@mail.gmail.com> Hi Eduardo, No it doesn't, I had already checked. However I ended up discovering CSS doesn't work if the Alias and Location directives refer to the same name, as in: Alias /mywiki "C:/Python23/share/moin/htdocs" SetHandler python-program PythonPath "['C:/Python23/share/moin/mywiki']+sys.path" PythonHandler MoinMoin.request::RequestModPy.run When I changed to , everything worked fine (don't ask me why). Matheus 2005/6/4, Eduardo Mercovich : > Hi Matheus. > > > Hello, I installed MoinMoin 1.3.4 under Windows 2003 with Apache2 / > > mod_python and Python 2.3. I followed the installation procedure > > strictly and the wiki works, but I only get an ugly plain text > > interface no matter the theme I choose. (...) > > Does http://moinmoin.wikiwikiweb.de/HelpOnInstalling/TroubleShooting, > heading "CSS files do not work" (the last one) helps? > > Regards... > > -- > Eduardo Mercovich > Buenos Aires - Argentina. > From gregwh at gmail.com Sun Jun 5 05:42:04 2005 From: gregwh at gmail.com (greg whittier) Date: Sun Jun 5 05:42:04 2005 Subject: [Moin-user] Problems acessing CSS In-Reply-To: <1be8da17050603185884bd38b@mail.gmail.com> References: <1be8da17050603185884bd38b@mail.gmail.com> Message-ID: I'm not sure what's going on, but you could also change Alias /mywiki "C:/Python23/share/moin/htdocs" to Alias /wiki "C:/Python23/share/moin/htdocs" and url_prefix = "/mywiki" to url_prefix = "/wiki" I believe this is consistent with the documentation. Not you'll still use http://www.myhost.com/mywiki to access the wiki. Greg On 6/3/05, Matheus Leite wrote: > Hello, I installed MoinMoin 1.3.4 under Windows 2003 with Apache2 / > mod_python and Python 2.3. I followed the installation procedure > strictly and the wiki works, but I only get an ugly plain text > interface no matter the theme I choose. > > Here is my httpd.conf: > > Alias /mywiki "C:/Python23/share/moin/htdocs" > > SetHandler python-program > PythonPath "['C:/Python23/share/moin/mywiki']+sys.path" > PythonHandler MoinMoin.request::RequestModPy.run > > > And in wikiconfig.py I have: > > data_dir = 'C:/Python23/share/moin/mywiki/data' > data_underlay_dir = 'C:/Python23/share/moin/mywiki/underlay' > url_prefix = '/mywiki' > > I also discovered that, if I try to access the CSS file directly on > the browser, say http://www.myhost.com/mywiki/modern/css/common.css, > it doesnt't work! Instead, it takes me to the FrontPage. However, if I > comment out the whole Location directive from httpd.conf and restart > Apache, the css file becomes accessible normally. > > Does anyone know what causes this problem and how to fix it? > > Regards, > > Matheus > > > ------------------------------------------------------- > This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput > a projector? How fast can you ride your desk chair down the office luge track? > If you want to score the big prize, get to know the little guy. > Play to win an NEC 61" plasma display: http://www.necitguy.com/?r > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user > From matheusleite at gmail.com Sun Jun 5 13:51:10 2005 From: matheusleite at gmail.com (Matheus Leite) Date: Sun Jun 5 13:51:10 2005 Subject: [Moin-user] Farm configuration files Message-ID: <1be8da17050605135062f9df6c@mail.gmail.com> This is my first experience with MoinMoin and I am trying to grow a farm (with Apache 2 and mod_python under Windows 2003) and I am having some trouble following the official documentation, which looks a bit confusing at this part. Would anyone who has successfully installed a (preferably similar) farm care to post their configurations and directory structure so I can take a look? Thanks everyone! Matheus From endavis at gmail.com Sun Jun 5 17:05:22 2005 From: endavis at gmail.com (Eric Davis) Date: Sun Jun 5 17:05:22 2005 Subject: [Moin-user] Re: Farm configuration files In-Reply-To: <1be8da17050605135062f9df6c@mail.gmail.com> References: <1be8da17050605135062f9df6c@mail.gmail.com> Message-ID: I have my config at http://128.164.128.93/wiki/WikiConfig Check that to see if it will answer some of your questions. Eric Matheus Leite wrote: > This is my first experience with MoinMoin and I am trying to grow a > farm (with Apache 2 and mod_python under Windows 2003) and I am having > some trouble following the official documentation, which looks a bit > confusing at this part. Would anyone who has successfully installed a > (preferably similar) farm care to post their configurations and > directory structure so I can take a look? > > Thanks everyone! > > Matheus > > > ------------------------------------------------------- > This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput > a projector? How fast can you ride your desk chair down the office luge track? > If you want to score the big prize, get to know the little guy. > Play to win an NEC 61" plasma display: http://www.necitguy.com/?r From tw-public at gmx.de Mon Jun 6 03:00:57 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Mon Jun 6 03:00:57 2005 Subject: [Moin-user] Farm configuration files In-Reply-To: <1be8da17050605135062f9df6c@mail.gmail.com> References: <1be8da17050605135062f9df6c@mail.gmail.com> Message-ID: <42A3D9FD.9000807@gmx.de> > This is my first experience with MoinMoin and I am trying to grow a > farm (with Apache 2 and mod_python under Windows 2003) Maybe starting with a standard CGI setup is easier to get it running. mod_python is a setup rarely used by the moin developers and sometimes mod_python has issues itself. Some people prefer fastcgi to it, it is also for apache and better tested afaik. From gbrandt at mail.desy.de Mon Jun 6 23:23:01 2005 From: gbrandt at mail.desy.de (Gerhard Brandt) Date: Mon Jun 6 23:23:01 2005 Subject: [Moin-user] startup fails in DesktopEdition Message-ID: <42A53D0F.3080801@mail.desy.de> Hi, I'm using MMDE as PIM and its a great tool, but now it stopped working, moin.py doesn't start anymore, the output is below. My setup is quite special, i am storing MMDE on a ext3 partition which i access from Linux (Ubuntu 5.04) AND WinXP (SP2) using ext2fs. This worked fine up to now, I have switched back and forth several times. Now this :-/ Thanks for hints, Gerhard ----------------------------------------------------------------- ~/moin-desktop$ python moin.py Loading ... MoinMoin - 1.3.4 [patch-680; DesktopEdition Release 1.3.4-1] Traceback (most recent call last): File "moin.py", line 54, in ? run(Config) File "/home/gbrandt/moin-desktop/MoinMoin/server/standalone.py", line 259, in run httpd = MoinServer((config.interface, config.port), config.docs) File "/home/gbrandt/moin-desktop/MoinMoin/server/standalone.py", line 60, in __init__ MoinRequestHandler) File "/usr/lib/python2.4/SocketServer.py", line 330, in __init__ self.server_bind() File "/usr/lib/python2.4/BaseHTTPServer.py", line 99, in server_bind SocketServer.TCPServer.server_bind(self) File "/usr/lib/python2.4/SocketServer.py", line 341, in server_bind self.socket.bind(self.server_address) File "", line 1, in bind socket.error: (99, 'Cannot assign requested address') From trog at trogwoolley.com Tue Jun 7 04:20:59 2005 From: trog at trogwoolley.com (Trog) Date: Tue Jun 7 04:20:59 2005 Subject: [Moin-user] Calendar.py macro crashes under v1.3.4 Message-ID: Hello, on our wiki we make extensive use of the Calendar.py macro; this can be found at http://moinmoin.wikiwikiweb.de/MoinMoinCalendarExample Since we upgraded to version 1.2.4 to 1.3.4 this macro crashes. Bearing in mind that I am not a python programmer (I'm a bash and/or perl scripter) how would I go about making the invaluable macro run under 1.3.4? The error that we get is the same as described on the aforementioned MoinMoin page. I've had a look at the UnifyParsersAndProcessors page but but I don't understand what it means when it says that you put the code of the old processor into the format method of the Parser class. I guess that this is because I have never coded in python. Thanks -- Martin Woolley | sysadmin at handsworth dot bham dot sch dot uk ICT Support Handsworth Grammar School Isis Astarte Diana Hecate Demeter Kali Inanna From Jafar.Hosseinzadeh at childrens.harvard.edu Tue Jun 7 08:48:39 2005 From: Jafar.Hosseinzadeh at childrens.harvard.edu (Hosseinzadeh, Jafar) Date: Tue Jun 7 08:48:39 2005 Subject: [Moin-user] Revmoing Rel 1.3.4 Message-ID: <0726B4AAFFD7CE4ABBFFD220770EF71303604D49@CHEXV1.CHBOSTON.ORG> Hi all, Can anyone give me advise in how to remove rel 1.3.4 from my server completely. I need to go back to ver 1.2.3. Thank you... Regards, --jh -------------- next part -------------- An HTML attachment was scrubbed... URL: From tw-public at gmx.de Tue Jun 7 10:07:57 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Tue Jun 7 10:07:57 2005 Subject: [Moin-user] startup fails in DesktopEdition In-Reply-To: <42A53D0F.3080801@mail.desy.de> References: <42A53D0F.3080801@mail.desy.de> Message-ID: <42A58F66.2080102@gmx.de> > httpd = MoinServer((config.interface, config.port), config.docs) Check those config values. > File "", line 1, in bind > socket.error: (99, 'Cannot assign requested address') It looks like either this address has changed (did you assign a different IP?) or maybe something else is using this address / port (maybe some web proxy software?). From tw-public at gmx.de Tue Jun 7 10:15:55 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Tue Jun 7 10:15:55 2005 Subject: [Moin-user] Revmoing Rel 1.3.4 In-Reply-To: <0726B4AAFFD7CE4ABBFFD220770EF71303604D49@CHEXV1.CHBOSTON.ORG> References: <0726B4AAFFD7CE4ABBFFD220770EF71303604D49@CHEXV1.CHBOSTON.ORG> Message-ID: <42A5914C.6030804@gmx.de> > Can anyone give me advise in how to remove rel 1.3.4 from my server > completely. First, make a backup of all you "remove". Just for the case... Removing the software is easy. Just go to /usr/lib/python2.x/site-packages/ and remove the MoinMoin directory. Same for /usr/share/moin (static stuff). Make sure you don't delete your data_dir (see wikiconfig.py). The directories may differ depending on where you installed it to. The biggest problem is your data. If you converted your data_dir to 1.3 using the mig scripts, you would need a complex reverse conversion tool - but there is none. If you have a backup of your 1.2 data that is good enough, just use that. > I need to go back to ver 1.2.3. Thank you? Well, maybe tell us why and join us on IRC server irc.freenode.net channel #moin, I am quite sure we could help you with your 1.3 problem. That's maybe far easier and makes more sense than writing a reverse converter. From 2005a at usenet.alexanderweb.de Wed Jun 8 10:03:36 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Wed Jun 8 10:03:36 2005 Subject: [Moin-user] Re: startup fails in DesktopEdition References: <42A53D0F.3080801@mail.desy.de> Message-ID: <1dv6yn2q8mf5k$.dlg@usenet.alexanderweb.de> On Tue, 07 Jun 2005 08:22:07 +0200, Gerhard Brandt wrote: > I'm using MMDE as PIM and its a great tool, but now it stopped > working, moin.py doesn't start anymore, the output is below. > My setup is quite special, i am storing MMDE on a ext3 partition > which i access from Linux (Ubuntu 5.04) AND WinXP (SP2) using > ext2fs. This worked fine up to now, I have switched back and forth > several times. Now this :-/ > MoinMoin - 1.3.4 [patch-680; DesktopEdition Release 1.3.4-1] Try the new 1.3.4-2 version (just to be sure). Are you using a wikiserverconfig.py file? > socket.error: (99, 'Cannot assign requested address') Check if there is another webserver on the configured port (normally 8080 in MMDE). You can use "telnet localhost 8080" for that. If you get a connection, you have another server on that port. See http://moinmoin.wikiwikiweb.de/DesktopEdition/HowToConfigure if you want to change the port. Kind regards, Alexander From ianm at brick.net Thu Jun 9 17:48:09 2005 From: ianm at brick.net (ianm at brick.net) Date: Thu Jun 9 17:48:09 2005 Subject: [Moin-user] IIS 5.0, Windows 2000 Server configuration issues Message-ID: <3957.66.167.102.27.1118364408.squirrel@66.167.102.27> Dear All, I am continuing to run into problems with being unable to use MoinMoin at all. I receive the error message: Check your URL regular expressions in the "wikis" list in "farmconfig.py". This is after I have removed farmconfig.py as suggested in the help! I started with the help file about installing on IIS and followed each step carefully, but I have been unable to get MoinMoin to work. Additionally, the error message itself is problematic - it won't come through when browsing with FireFox, but will with Internet Explorer. This is because the above message is coming out before the requisite "Content-type: text/html" Any ideas? I considered the personal edition but I need remote access, etc., so IIS seemed appropriate. Ian From 2005a at usenet.alexanderweb.de Fri Jun 10 12:49:25 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Fri Jun 10 12:49:25 2005 Subject: [Moin-user] Re: IIS 5.0, Windows 2000 Server configuration issues References: <3957.66.167.102.27.1118364408.squirrel@66.167.102.27> Message-ID: <1oqzqlsz07oot.dlg@usenet.alexanderweb.de> On Thu, 9 Jun 2005 19:46:48 -0500 (CDT), ianm at brick.net wrote: > Check your URL regular expressions in the "wikis" list in "farmconfig.py". > > This is after I have removed farmconfig.py as suggested in the help! I > started with the help file about installing on IIS and followed each step > carefully, but I have been unable to get MoinMoin to work. If you still get the same error message, you still have not removed any problematic occurence of that file. Try Start, Search, Files if you are unsure. Kind regards, Alexander From G.Ross at ccw.gov.uk Sun Jun 12 14:37:50 2005 From: G.Ross at ccw.gov.uk (Gordon Ross) Date: Sun Jun 12 14:37:50 2005 Subject: [Moin-user] Setting defaults for Pages/SubPages Message-ID: Hi, I'm new to wikis, and I can see the potential of them. I'm playing with a Moin wiki setup now, and I have a question: Is it possible to create a page, give users or a group R/W access to it, which would then allow them to create subpages under that page, but not allow them to edit/create pages elsewhere in the Wiki ? Or should I create a seperate Wiki for each group ? Thanks, GTG Gordon Ross, Network Manager/Rheolwr Rhydwaith Countryside Council for Wales/Cyngor Cefn Gwlad Cymru From dvid at atlas.cz Mon Jun 13 03:57:40 2005 From: dvid at atlas.cz (David Zejda) Date: Mon Jun 13 03:57:40 2005 Subject: [Moin-user] po2py to convert cz.po to cz.py Message-ID: <42AD65C5.606@atlas.cz> Hi! In the official Debian Sarge package there is not the czech locale, but according to http://www.jurawiki.de/MoinI18n/cz it seems, that most of the translation is done yet. Is there any script to transform the .po to .py? Or is the transformed .py avilable for download from somewhere? Thanks! David From G.Ross at ccw.gov.uk Tue Jun 14 07:19:06 2005 From: G.Ross at ccw.gov.uk (Gordon Ross) Date: Tue Jun 14 07:19:06 2005 Subject: [Moin-user] Using CSS Sheets Message-ID: Hi, Is it possible to include extra style sheets in a page, or can you only use the four that come as part of MoinMoin ? GTG Gordon Ross, Network Manager/Rheolwr Rhydwaith Countryside Council for Wales/Cyngor Cefn Gwlad Cymru From tw-public at gmx.de Tue Jun 14 07:49:44 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Tue Jun 14 07:49:44 2005 Subject: [Moin-user] IIS 5.0, Windows 2000 Server configuration issues In-Reply-To: <3957.66.167.102.27.1118364408.squirrel@66.167.102.27> References: <3957.66.167.102.27.1118364408.squirrel@66.167.102.27> Message-ID: <42AEA916.2080606@gmx.de> > Check your URL regular expressions in the "wikis" list in "farmconfig.py". > This is after I have removed farmconfig.py as suggested in the help! Maybe check if there is still a farmconfig.pyc or .pyo - if yes, also remove that one! From tw-public at gmx.de Tue Jun 14 07:58:33 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Tue Jun 14 07:58:33 2005 Subject: [Moin-user] Setting defaults for Pages/SubPages In-Reply-To: References: Message-ID: <42AEAB41.5050604@gmx.de> > Is it possible to create a page, give users or a group R/W access to it, Yes. > which would then allow them to create subpages under that page, No. Or rather: not yet. Pages and Subpages have independant ACLs (and also independant storage, they are only sub-pages by naming convention). There is no inheritance of ACLs (and also no other magic) yet. You maybe can find some patch on the moinmoin wiki for ACL inheritance, but I didn't test it personally. Moin 1.5 might have some autoadmin feature for user homepages and group pages (and sub-pages of those). > but not allow them to edit/create pages elsewhere in the Wiki? Maybe you can use the acl_rights_default for that, try it. See MoinMaster:HelpOnAccessControlLists for details. > Or should I create a seperate Wiki for each group? If they are rather separate and independant groups, maybe a wiki farm is the best way. 1.3 supports farming quite well. > Network Manager/Rheolwr Rhydwaith > Countryside Council for Wales/Cyngor Cefn Gwlad Cymru Are those words after the "/" welsh? Reads like crypto for outsiders. :) From tw-public at gmx.de Tue Jun 14 08:02:49 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Tue Jun 14 08:02:49 2005 Subject: [Moin-user] po2py to convert cz.po to cz.py In-Reply-To: <42AD65C5.606@atlas.cz> References: <42AD65C5.606@atlas.cz> Message-ID: <42AEAC25.50103@gmx.de> > In the official Debian Sarge package there is not the czech locale, but > according to http://www.jurawiki.de/MoinI18n/cz it seems, that most of > the translation is done yet. This is a page on MoinMaster (shows up via underlay feature in some wikis running on that wikifarm). You can try putting that page content into MoinMoin/i18n as cz.po, run make cz.py and maybe edit meta.py adding a line for cz. But maybe the easier way is waiting for 1.3.5, shouldn't be too long until we release that (few weeks). From dvid at atlas.cz Tue Jun 14 08:16:10 2005 From: dvid at atlas.cz (David Zejda) Date: Tue Jun 14 08:16:10 2005 Subject: [Moin-user] po2py to convert cz.po to cz.py In-Reply-To: <42AEAC25.50103@gmx.de> References: <42AD65C5.606@atlas.cz> <42AEAC25.50103@gmx.de> Message-ID: <42AEF452.8030807@atlas.cz> >> In the official Debian Sarge package there is not the czech locale, >> but according to http://www.jurawiki.de/MoinI18n/cz it seems, that >> most of the translation is done yet. > > This is a page on MoinMaster (shows up via underlay feature in some > wikis running on that wikifarm). > > You can try putting that page content into MoinMoin/i18n as cz.po, run > make cz.py and maybe edit meta.py adding a line for cz. Thanks for a tip. I tried, but it is still not working :( > But maybe the easier way is waiting for 1.3.5, shouldn't be too long > until we release that (few weeks). OK, i'll wait... Will be there also a debian package compiled for sarge soon? David From ianm at brick.net Tue Jun 14 08:52:35 2005 From: ianm at brick.net (ianm at brick.net) Date: Tue Jun 14 08:52:35 2005 Subject: [Fwd: [Moin-user] Using CSS Sheets] Message-ID: <2509.128.252.66.49.1118764310.squirrel@128.252.66.49> Dear Mr. Ross, I know that there is such a thing called a "wiki plugin" directory that involves something called a "theme." I haven't figured it out yet myself - my wiki is still trying to point CSS at C:\Moin....... even when I'm looking at it from elsewhere. Let me know what you find - I'm struggling with a similar issue. Ian ---------------------------- Original Message ---------------------------- Subject: [Moin-user] Using CSS Sheets From: "Gordon Ross" Date: Tue, June 14, 2005 9:17 am To: moin-user at lists.sourceforge.net -------------------------------------------------------------------------- Hi, Is it possible to include extra style sheets in a page, or can you only use the four that come as part of MoinMoin ? GTG Gordon Ross, Network Manager/Rheolwr Rhydwaith Countryside Council for Wales/Cyngor Cefn Gwlad Cymru ------------------------------------------------------- This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput a projector? How fast can you ride your desk chair down the office luge track? If you want to score the big prize, get to know the little guy. Play to win an NEC 61" plasma display: http://www.necitguy.com/?r _______________________________________________ Moin-user mailing list Moin-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/moin-user From dvid at atlas.cz Tue Jun 14 10:43:13 2005 From: dvid at atlas.cz (David Zejda) Date: Tue Jun 14 10:43:13 2005 Subject: [Moin-user] po2py to convert cz.po to cz.py In-Reply-To: <4048756d7128227de23b494222933198@actcom.net.il> References: <42AD65C5.606@atlas.cz> <42AEAC25.50103@gmx.de> <42AEF452.8030807@atlas.cz> <4048756d7128227de23b494222933198@actcom.net.il> Message-ID: <42AF167C.6080607@atlas.cz> >> I tried, but it is still not working :( > > Try to delete your wiki/data/cache directory - languages are cached, and > the cache may not update when you add more language modules. Thanks a much! It rocks.. With regards David From akolasny at jhu.edu Wed Jun 15 06:30:27 2005 From: akolasny at jhu.edu (Anthony Kolasny) Date: Wed Jun 15 06:30:27 2005 Subject: [Moin-user] Moin 'os.popen' system environment question Message-ID: Greetings: I'm trying to install the 'dot.py' parser. Moin 1.3.4 has been installed and appears to be working fine. I added the MySQL.py and html.py parser. They worked. I, then, installed the 'graphviz' binaries under '/usr/bin'. From adam-moin at suckmypixel.com Thu Jun 16 01:30:58 2005 From: adam-moin at suckmypixel.com (Adam Hoyle) Date: Thu Jun 16 01:30:58 2005 Subject: [Moin-user] moin_dump.py problems on a mac Message-ID: <7a9b4e51f03534f74bea39716b002ae0@suckmypixel.com> Hello, I am using a mac, and have a local install of moin moin (running through apache), although I have no python knowledge. I would like to export some of my moin moin pages as html. I've seen that moin_dump should suit my purposes, but it keeps spitting out an error message that i don't understand. I moved to this directory in the terminal: /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/ site-packages/MoinMoin/scripts and ran this: python moin_dump.py --config='/usr/local/share/moin/devwiki/' ~/Desktop/moin-export it said... Created output directory '/Users/adamhoyle/Desktop/moin-export'! Needed 0.030 secs. Traceback (most recent call last): File "/Library/Python/2.3/MoinMoin/scripts/moin_dump.py", line 183, in ? run() File "/Library/Python/2.3/MoinMoin/scripts/moin_dump.py", line 180, in run MoinDump().run() File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/site-packages/MoinMoin/scripts/_util.py", line 87, in run self.mainloop() File "/Library/Python/2.3/MoinMoin/scripts/moin_dump.py", line 104, in mainloop request = RequestCLI(self.options.wiki_url) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/site-packages/MoinMoin/request.py", line 1381, in __init__ RequestBase.__init__(self, properties) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/site-packages/MoinMoin/request.py", line 86, in __init__ self._load_multi_cfg() File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/site-packages/MoinMoin/request.py", line 154, in _load_multi_cfg from MoinMoin import multiconfig ImportError: cannot import name multiconfig I've checked, and 'multiconfig.py' exists, so I am a little confused by the error message. Does anyone have any idea what I am doing wrong and how i can get this to work? Regards, Adam From martinson.jacob at gmail.com Thu Jun 16 10:41:09 2005 From: martinson.jacob at gmail.com (jacob martinson) Date: Thu Jun 16 10:41:09 2005 Subject: [Moin-user] Apache auth integration... Message-ID: <5b74795905061610394e1b9f22@mail.gmail.com> Has anyone found a way to force a moin user's username to be the same as apache's httpauth username, or to use a dictionary mapping an apache username to a moin username? We've got apache authenticating against ldap and I'd like our wiki users to automatically be logged in to moin based on their existing apache credentials, which are available through mod_python. Thanks! -jacob From 2005a at usenet.alexanderweb.de Thu Jun 16 11:34:14 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Thu Jun 16 11:34:14 2005 Subject: [Moin-user] Re: Apache auth integration... References: <5b74795905061610394e1b9f22@mail.gmail.com> Message-ID: <7tznyyt8lj6t.dlg@usenet.alexanderweb.de> On Thu, 16 Jun 2005 12:39:26 -0500, jacob martinson wrote: > We've got apache authenticating against ldap and I'd like our wiki > users to automatically be logged in to moin based on their existing > apache credentials, which are available through mod_python. See http://moinmoin.wikiwikiweb.de/MoinMoinPatch#head-ceb1f3088a7cb1032e6910b07b36b0fdd8d5c3f8 Kind regards, Alexander From geek+ at cmu.edu Thu Jun 16 11:46:01 2005 From: geek+ at cmu.edu (Brian Gallew) Date: Thu Jun 16 11:46:01 2005 Subject: [Moin-user] Re: Apache auth integration... In-Reply-To: <7tznyyt8lj6t.dlg@usenet.alexanderweb.de> References: <5b74795905061610394e1b9f22@mail.gmail.com> <7tznyyt8lj6t.dlg@usenet.alexanderweb.de> Message-ID: <42B1C8B4.3090205@cmu.edu> Alexander Schremmer wrote: > http://moinmoin.wikiwikiweb.de/MoinMoinPatch#head-ceb1f3088a7cb1032e6910b07b36b0fdd8d5c3f8 That says it *doesn't* work against 1.3.x. I submitted a patch many months ago that does auto-account creation. I guess I'll add it to this page, too. From geek+ at cmu.edu Thu Jun 16 11:51:33 2005 From: geek+ at cmu.edu (Brian Gallew) Date: Thu Jun 16 11:51:33 2005 Subject: [Moin-user] Re: Apache auth integration... In-Reply-To: <7tznyyt8lj6t.dlg@usenet.alexanderweb.de> References: <5b74795905061610394e1b9f22@mail.gmail.com> <7tznyyt8lj6t.dlg@usenet.alexanderweb.de> Message-ID: <42B1CA09.1080507@cmu.edu> Bah, I'm an idiot. My patch is already on that page (first one, even!). And I guess the patch indicated does work with current MoinMoin, I just mis-read. Please just ignore me. From cadmax at bluewin.ch Fri Jun 17 11:22:42 2005 From: cadmax at bluewin.ch (Max) Date: Fri Jun 17 11:22:42 2005 Subject: [Moin-user] Newbie (it happens) with already 3 questions ;) Message-ID: <42B3157D.8050404@bluewin.ch> Ciao everybody, I finally installed MMDE and played around on spare time since last week, but i do have just some questions i couldn't find (yet) an answer while reading help or Moin's mailing list messages. Dumb questions maybe, but please be patient, i'd like to get the whole picture of my "DreamWiki". Thanks :) 1: I do have A LOT of html pages that i'd like to transfer in my local (now, online later) wiki(or wikis.. see below), and being capable to search their content: Any suggestion? 2: The above html pages are linking several file kinds (bitmaps, PDFs, TXTs, videos, etc.). Within the wiki is possible/recommended to put such files in ../moin/wikiname/data/page... folders? Best/tested practices? 3: I foresee the need to run more wikis (personal/office..) and push some friends to do the same. Is it possible to share (copy&paste?) pages between the wikis? WikiFarms on each location? Problems between wikis on different OSs (Win/MAc/Linux)? Thanks in advance everybody! Max From dcramer at motive.com Fri Jun 17 15:44:47 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Fri Jun 17 15:44:47 2005 Subject: [Moin-user] Problem with being logged out in some cases.... Message-ID: <6A2DF60561F49146ACAB335262015E12F1A03A@newman.motive.com> We have a couple of moinmoins running on our intranet and like them very much, but have noticed one problem. If you login via the url http://hostname/wiki (either by bookmarking a page with your pickle or by going to the UserPreferences page and using your pw), then all is well. However, if you use http://hostname.motive.com/wiki, then often you are logged back out as soon as you browse to another page in the wiki. Sometimes deleteing some cookies (i.e. ones related to motive.com) helps a little. Does anybody know what causes this or how to keep it from happening? Sure we can generally log in using hostname rather than hostname.motive.com, but if you come to the wiki from, e.g. a search using our intranet-wide search appliance or any link that has hostname.motive.com, then you're immediately logged out. Below is my SystemInfo page. Thanks, David Python Version 2.2.2 (#1, Feb 24 2003, 19:13:11) [GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-4)] MoinMoin Version Release 1.2.3 [Revision 1.186] 4Suite Version 0.11.1 Number of pages 288 Number of system pages 101 Number of backup versions 1402 Accumulated page sizes 1286958 Entries in edit log 1976 (229484 bytes) Event log 6071078 bytes Global extension macros AbandonedPages, BR, FootNote, Form, FullSearch, GetText, Include, Navigation, OrphanedPages, PageHits, PageSize, RandomPage, RandomQuote, RecentChanges, ShowSmileys, StatsChart, SystemAdmin, TableOfContents, TeudView, WantedPages Local extension macros NONE Global extension actions AttachFile, DeletePage, LikePages, LocalSiteMap, SpellCheck, links, rss_rc, titleindex Local extension actions NONE Installed processors CSV, Colorize -------------- next part -------------- An HTML attachment was scrubbed... URL: From matheusleite at gmail.com Fri Jun 17 22:13:43 2005 From: matheusleite at gmail.com (Matheus Leite) Date: Fri Jun 17 22:13:43 2005 Subject: [Moin-user] Spaces between wiki names? Message-ID: <1be8da17050617221368220718@mail.gmail.com> Hello, is it possible to have WikiNames shown up on the text's body with blank spaces between each word? In UserPreferences --> General options there is an option to add spaces to displayed wiki names, but it seems to alter only the text on the page header and not the body. Thanks Matheus From dcramer at motive.com Sat Jun 18 09:47:37 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Sat Jun 18 09:47:37 2005 Subject: [Moin-user] Errors running 12_to_13_mig01.py Message-ID: <6A2DF60561F49146ACAB335262015E12F1A03E@newman.motive.com> I'm attempting to migrate my data from Release 1.2.3 [Revision 1.186] to the latest. When I run the first migration script, mig01, I it does a bunch of pages, but ends up giving me this error: .... data.pre-mig1/backup/DocJetHowTo.1078155042 -> data/backup/DocJetHowTo.1078155042000000 data.pre-mig1/backup/DavidCramer_2fMoinEditorBackup.1076370425 -> data/backup/DavidCramer(2f)MoinEditorBackup.1076370425000000 data.pre-mig1/backup/MontBlancL10nKitInstructions.1092839366 -> data/backup/MontBlancL10nKitInstructions.1092839366000000 Traceback (most recent call last): File "/usr/lib/python2.4/site-packages/MoinMoin/scripts/migration/12_to_13_mi g01.py", line 168, in ? convert_textdir(opj(origdir, 'backup'), opj('data', 'backup'), from_encoding, to_encoding, 1) File "/usr/lib/python2.4/site-packages/MoinMoin/scripts/migration/12_to_13_mi g01.py", line 109, in convert_textdir fname, timestamp = fname_from.split('.',1) ValueError: need more than 1 value to unpack Does anybody know what that means? Let me know if you need any more information about my environment. Thanks, David From gregwh at gmail.com Sat Jun 18 11:13:09 2005 From: gregwh at gmail.com (greg whittier) Date: Sat Jun 18 11:13:09 2005 Subject: [Moin-user] getting xmlrpc-tools/HelloWorld.py to work Message-ID: Hi all, I'm trying to figure out how to improve the integration of MoinMoin into the workflow. The main problem is easily getting text and attachments out of email and hardrives on to the wiki. (Using html forms for cut and pasting text and uploading files is enough to discourage many.) I've toyed with the idea of writing some kind of client and wikirpc looks useful, but I haven't got past HelloWorld! Running the script in MoinMoin/script/xmlrpc-tools works as it is with moinmaster.wikiwikiweb.de:8000 works but changing srcwiki to srcwiki = xmlrpclib.ServerProxy("http:/localhost/mywiki/?action=xmlrpc2") gives the following File "HelloWorld.py", line 14, in ? print srcwiki.HelloWorld("Hello Wiki User!\n") File "/usr/lib/python2.3/xmlrpclib.py", line 1029, in __call__ return self.__send(self.__name, args) File "/usr/lib/python2.3/xmlrpclib.py", line 1316, in __request verbose=self.__verbose File "/usr/lib/python2.3/xmlrpclib.py", line 1080, in request return self._parse_response(h.getfile(), sock) File "/usr/lib/python2.3/xmlrpclib.py", line 1219, in _parse_response return u.close() File "/usr/lib/python2.3/xmlrpclib.py", line 742, in close raise Fault(**self._stack[0]) xmlrpclib.Fault: I'm running moin 1.3.4 using fastcgi on apache 1.3.27 and xandros 2.0 (debian-based linux distro). Any ideas? Thanks, Greg From 2005a at usenet.alexanderweb.de Sat Jun 18 17:03:28 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Sat Jun 18 17:03:28 2005 Subject: [Moin-user] Re: getting xmlrpc-tools/HelloWorld.py to work References: Message-ID: On Sat, 18 Jun 2005 14:12:30 -0400, greg whittier wrote: > Running the script in MoinMoin/script/xmlrpc-tools works as it is with > moinmaster.wikiwikiweb.de:8000 works but changing srcwiki to > srcwiki = xmlrpclib.ServerProxy("http:/localhost/mywiki/?action=xmlrpc2") > gives the following > > xml.parsers.expat.ExpatError: no element found: line 1, column 0 Without having looked at the parsing routines - have you installed PyXML? That should integrate a better XML parser into Python. Besides that, try to upgrade to the latest source codebase (see the download page) or wait for 1.3.5. Kind regards, Alexander From gregwh at gmail.com Sun Jun 19 07:23:09 2005 From: gregwh at gmail.com (greg whittier) Date: Sun Jun 19 07:23:09 2005 Subject: [Moin-user] Re: getting xmlrpc-tools/HelloWorld.py to work In-Reply-To: References: Message-ID: I downloaded PyXML-0.8.4 and did a python setup.py install and restarted apache. I get the same results. I'll try the latest source codebase when I get a chance. Thanks, Greg On 6/18/05, Alexander Schremmer <2005a at usenet.alexanderweb.de> wrote: > On Sat, 18 Jun 2005 14:12:30 -0400, greg whittier wrote: > > > Running the script in MoinMoin/script/xmlrpc-tools works as it is with > > moinmaster.wikiwikiweb.de:8000 works but changing srcwiki to > > srcwiki = xmlrpclib.ServerProxy("http:/localhost/mywiki/?action=xmlrpc2") > > gives the following > > > > xml.parsers.expat.ExpatError: no element found: line 1, column 0 > > Without having looked at the parsing routines - have you installed PyXML? > That should integrate a better XML parser into Python. Besides that, try to > upgrade to the latest source codebase (see the download page) or wait for > 1.3.5. > > Kind regards, > Alexander From alasan at gmx.at Sun Jun 19 10:25:50 2005 From: alasan at gmx.at (Alexander Schatten) Date: Sun Jun 19 10:25:50 2005 Subject: [Moin-user] Statistic/Report over User Contribution? Message-ID: <42B5AA71.5000804@gmx.at> I tested MoinMoin intensively during the last days and I have to say, that I am impressed about the simplicity, yet great range of features (e.g., the ACL). However, there is one "feature" I would need, and I wonder if it is easily possible to retrieve this information: I want to use the Wiki in teaching, so that students work together on writing articles about the lecture; now: as I want to use the degree of contribution, I would need some "report", that gives me an impression about the contribution of one specific user. as I would need to search through all available pages otherwise, which is not really feasible with 20, 30 students or more. Now I wonder: does anyone know a way to retrieve this kind of data? thank you very much for all comments in advance Alexander Schatten From dcramer at motive.com Sun Jun 19 21:47:26 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Sun Jun 19 21:47:26 2005 Subject: [Moin-user] Suppressing non-relevant help pages from a moinmoin wiki Message-ID: <6A2DF60561F49146ACAB335262015E12F1A045@newman.motive.com> We run some moinmoins on our intranet and have them indexed by a search appliance. The licensing of that appliance is by the number of pages indexed, so we prefer not to index pages unnecessarily. Since we have more than one wiki, there is the potential that each help page will be indexed multiple times. Is there an easy way to have added only to system pages? Other suggestions? Thanks, David -------------- next part -------------- An HTML attachment was scrubbed... URL: From dcramer at motive.com Sun Jun 19 21:56:52 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Sun Jun 19 21:56:52 2005 Subject: [Moin-user] Question about working around timeout during spellchecker db creation Message-ID: <6A2DF60561F49146ACAB335262015E12F1A046@newman.motive.com> The page http://moinmoin.wikiwikiweb.de/HelpOnSpellCheck says "Note that it may take a few minutes to build up this database, but only the first time the spellchecker is called. If your browser or the webserver timeouts before the file is completely built, one solution is to telnet into your webserver, and manually request the page." I suspect this is happening to me, but I'm to dense to understand what you mean by "manually request the page". Thanks, David From dcramer at motive.com Sun Jun 19 22:41:29 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Sun Jun 19 22:41:29 2005 Subject: [Moin-user] Controlling urls in notification emails Message-ID: <6A2DF60561F49146ACAB335262015E12F1A048@newman.motive.com> Hi there, I upgraded my wikis recently and moved them to a different host for the migration (leaving the old ones in place till I'm sure everything is ok and I have time to upgrade python etc). I'm using ProxyPass lines in my httpd.conf to redirect traffic from the original servers to the new ones. That works fine. The only problem is that change notification emails have the actual host hame in them, rather than the one the user actually goes to. That means if they click the link, they go to the page, but the url in their address bar is not a good one (e.g. if they use it in a link somewhere else, then it that url could change). Is there a way I can control what host name they see in the notification emails? Thanks, David From zyf_sz at tom.com Mon Jun 20 01:57:50 2005 From: zyf_sz at tom.com (ZeroSlug) Date: Mon Jun 20 01:57:50 2005 Subject: [Moin-user] config logo for DesktopEdition Message-ID: <42B68593.90704@tom.com> Hi, all I have installed MoinMoin DesktopEdition Release 1.3.4-2, it works quite well, except the logo. I use python2.3.4, the logo image is put as "/wiki/logo.png", and the configuration file is modified. This is my wikiconfig.py ------------------------------------------------------------ from MoinMoin.multiconfig import DefaultConfig class Config(DefaultConfig): sitename = "Notebook" logo_string = u' Notebook' page_front_page = u'Home' allowed_actions = ['AttachFile'] -------------------------------------------------------------- The logo can't display in Firefox or IE. So, which directory should I put the image into? From nigel.harper at lightworkdesign.com Mon Jun 20 02:20:38 2005 From: nigel.harper at lightworkdesign.com (Nigel Harper) Date: Mon Jun 20 02:20:38 2005 Subject: [Moin-user] config logo for DesktopEdition Message-ID: <8815647C7041D111A3010060B06BE1C002D60553@elvis.lightwork> > So, which directory should I put the image into? I've not used DesktopEdition, but in my standalone moin config I put the logo image in the htdocs directory under the moin installation directory. BTW is "img scr" a typo in your email or is it also in your wikiconfig? Nigel From tw-public at gmx.de Mon Jun 20 04:27:04 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Mon Jun 20 04:27:04 2005 Subject: [Moin-user] Problem with being logged out in some cases.... In-Reply-To: <6A2DF60561F49146ACAB335262015E12F1A03A@newman.motive.com> References: <6A2DF60561F49146ACAB335262015E12F1A03A@newman.motive.com> Message-ID: <42B66231.1090204@gmx.de> > We have a couple of moinmoins running on our intranet and like them very > much, but have noticed one problem. If you login via the url > http://hostname/wiki (either by bookmarking a page with your pickle or > by going to the UserPreferences page and using your pw), then all is > well. However, if you use http://hostname.motive.com/wiki, then > often you are logged back out as soon as you browse to another page You should avoid accessing a wiki via multiple urls. When the internet url works, you should be able to use it from everywhere. If you access a wiki by multiple urls, there can be issues with cookies and caching... From tw-public at gmx.de Mon Jun 20 04:30:54 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Mon Jun 20 04:30:54 2005 Subject: [Moin-user] Spaces between wiki names? In-Reply-To: <1be8da17050617221368220718@mail.gmail.com> References: <1be8da17050617221368220718@mail.gmail.com> Message-ID: <42B66328.5080000@gmx.de> > Hello, is it possible to have WikiNames shown up on the text's body > with blank spaces between each word? Yes, use spaces in the page name :) Like: ["This links to a page with spaces."] > In UserPreferences --> General options there is an option to add > spaces to displayed wiki names, but it seems to alter only the text on > the page header and not the body. Yes. And I think about removing that item completely, because it is magic behind the scenes, and that magic doesn't even work for any language. From tw-public at gmx.de Mon Jun 20 04:34:49 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Mon Jun 20 04:34:49 2005 Subject: [Moin-user] Errors running 12_to_13_mig01.py In-Reply-To: <6A2DF60561F49146ACAB335262015E12F1A03E@newman.motive.com> References: <6A2DF60561F49146ACAB335262015E12F1A03E@newman.motive.com> Message-ID: <42B66409.9030803@gmx.de> > data.pre-mig1/backup/MontBlancL10nKitInstructions.1092839366 -> > data/backup/MontBlancL10nKitInstructions.1092839366000000 > Traceback (most recent call last): > File > "/usr/lib/python2.4/site-packages/MoinMoin/scripts/migration/12_to_13_mi > g01.py", line 168, in ? > convert_textdir(opj(origdir, 'backup'), opj('data', 'backup'), > from_encoding, to_encoding, 1) > File > "/usr/lib/python2.4/site-packages/MoinMoin/scripts/migration/12_to_13_mi > g01.py", line 109, in convert_textdir > fname, timestamp = fname_from.split('.',1) > ValueError: need more than 1 value to unpack It looks like there is something strange in your data/backup dir, that is not filename.timestamp. If it is trash, just remove that and try again. And tell us what it was. :) From zyf_sz at tom.com Mon Jun 20 04:44:47 2005 From: zyf_sz at tom.com (ZeroSlug) Date: Mon Jun 20 04:44:47 2005 Subject: [Moin-user] config logo for DesktopEdition In-Reply-To: <8815647C7041D111A3010060B06BE1C002D60553@elvis.lightwork> References: <8815647C7041D111A3010060B06BE1C002D60553@elvis.lightwork> Message-ID: <42B6AC8A.3080105@tom.com> Nigel Harper wrote: >I've not used DesktopEdition, but in my standalone moin config I put the >logo image in the htdocs directory under the moin installation directory. > >BTW is "img scr" a typo in your email or is it also in your wikiconfig? > >Nigel > Sorry, I have made some mistake. the image "logo.png" has been put under htdocs. and I can access it by visiting "http://localhost:8080/wiki/logo.png" but it just cann't display in the wiki -_-|| This is part of html source about logo of the wiki: ZeroSlug From tw-public at gmx.de Mon Jun 20 04:46:48 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Mon Jun 20 04:46:48 2005 Subject: [Moin-user] Statistic/Report over User Contribution? In-Reply-To: <42B5AA71.5000804@gmx.at> References: <42B5AA71.5000804@gmx.at> Message-ID: <42B666E1.1050107@gmx.de> > as I would need to search through all available pages otherwise, which > is not really feasible with 20, 30 students or more. You could just read the global edit-log and filter by author. You could code some macro or action doing this, use the stuff from MoinMoin/logfile/editlog.py for that. From nigel.harper at lightworkdesign.com Mon Jun 20 05:08:13 2005 From: nigel.harper at lightworkdesign.com (Nigel Harper) Date: Mon Jun 20 05:08:13 2005 Subject: [Moin-user] config logo for DesktopEdition Message-ID: <8815647C7041D111A3010060B06BE1C002D605F8@elvis.lightwork> > If that, and the line from wikiconfig.py in your previous message, are actual cut and pastes from the relevant files then you would appear to have a simple typo in your wikiconfig.py - "img scr" should be "img src" Nigel From zyf_sz at tom.com Mon Jun 20 06:31:02 2005 From: zyf_sz at tom.com (ZeroSlug) Date: Mon Jun 20 06:31:02 2005 Subject: [Moin-user] config logo for DesktopEdition In-Reply-To: <8815647C7041D111A3010060B06BE1C002D605F8@elvis.lightwork> References: <8815647C7041D111A3010060B06BE1C002D605F8@elvis.lightwork> Message-ID: <42B6C574.9070701@tom.com> thanks, Nigel. a slip of the pen :-) . It works fine now. Nigel Harper wrote: >> >> >> > >If that, and the line from wikiconfig.py in your previous message, are >actual cut and pastes from the relevant files then you would appear to have >a simple typo in your wikiconfig.py - "img scr" should be "img src" > >Nigel > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dcramer at motive.com Mon Jun 20 11:00:49 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Mon Jun 20 11:00:49 2005 Subject: [Moin-user] Problem with being logged out in some cases.... Message-ID: <6A2DF60561F49146ACAB335262015E12F1A066@newman.motive.com> That makes sense and I'm happy to tell the users that. My problem is that logging in by hostname.motive.com is broken (while logging in by "hostname"--i.e. not fully qualified--works). If you do a search using our intranet's search appliance, tho, the link in the hit takes you to hostname.motive.com. The problem appears to be that there's some kind of problem with another cookie from somewhere on our intranet. If you delete all your cookies, then you can again log in with hostname.motive.com for a while. I know little about cookies, however, so I'm at a loss as to how to troubleshoot. I guess I'd have to delete one cookie at a time from a browser that's having problems until the problem goes away--then I'd know which cookie was causing the problem anyway. Thanks, David > -----Original Message----- > From: moin-user-admin at lists.sourceforge.net > [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of > Thomas Waldmann > Sent: Monday, June 20, 2005 1:29 AM > To: moin-user at lists.sourceforge.net > Subject: Re: [Moin-user] Problem with being logged out in > some cases.... > > > We have a couple of moinmoins running on our intranet and like them > > very much, but have noticed one problem. If you login via the url > > http://hostname/wiki (either by bookmarking a page with > your pickle or > > by going to the UserPreferences page and using your pw), > then all is > > well. However, if you use http://hostname.motive.com/wiki, > then often > > you are logged back out as soon as you browse to another page > > You should avoid accessing a wiki via multiple urls. When the > internet url works, you should be able to use it from everywhere. > > If you access a wiki by multiple urls, there can be issues > with cookies and caching... From dcramer at motive.com Mon Jun 20 11:07:53 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Mon Jun 20 11:07:53 2005 Subject: [Moin-user] Errors running 12_to_13_mig01.py Message-ID: <6A2DF60561F49146ACAB335262015E12F1A067@newman.motive.com> > > ValueError: need more than 1 value to unpack > > It looks like there is something strange in your data/backup > dir, that is not filename.timestamp. > > If it is trash, just remove that and try again. > > And tell us what it was. :) Yes, that was it (someone else had sent me the same suggestion offlist). In the old wiki, I had moved a bunch of non-en_US help pages into the backup dir to remove them from the wiki without understanding how the backup dir worked. Removing these fixed the problem and I've successfully migrated my wiki to the beautiful new 1.3.4 :-) Thanks, David From dcramer at motive.com Mon Jun 20 20:40:47 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Mon Jun 20 20:40:47 2005 Subject: [Moin-user] Controlling urls in notification emails Message-ID: <6A2DF60561F49146ACAB335262015E12F1A097@newman.motive.com> Likewise, the urls in the rss feed from the RecentChanges page are affected. David > Hi there, > I upgraded my wikis recently and moved them to a different > host for the migration (leaving the old ones in place till > I'm sure everything is ok and I have time to upgrade python > etc). I'm using ProxyPass lines in my httpd.conf to redirect > traffic from the original servers to the new ones. That works > fine. The only problem is that change notification emails > have the actual host hame in them, rather than the one the > user actually goes to. That means if they click the link, > they go to the page, but the url in their address bar is not > a good one (e.g. if they use it in a link somewhere else, > then it that url could change). > > Is there a way I can control what host name they see in the > notification emails? From amf at sa.apana.org.au Tue Jun 21 19:24:01 2005 From: amf at sa.apana.org.au (Tony Finnis) Date: Tue Jun 21 19:24:01 2005 Subject: [Moin-user] Text wrap-around Attachments Message-ID: <200506221152.48558.amf@sa.apana.org.au> Hi All, I am in the process of setting up a moinmoin server for a community project. The moin installation is working correctly, however I have a question that I wish to solve when editing. I have looked at the help information and this list, but have been unable to find the answer. (probably looked in the wrong places) How do you get text to wrap-around images ? ie If I load an image using the 'attachment:' command, I cannot find anyway to get the associated text to be located on the right or left of the image or wrap-around the image. Can someone please advise. many thanks. From zyf_sz at tom.com Tue Jun 21 19:38:24 2005 From: zyf_sz at tom.com (ZeroSlug) Date: Tue Jun 21 19:38:24 2005 Subject: [Moin-user] Text wrap-around Attachments In-Reply-To: <200506221152.48558.amf@sa.apana.org.au> References: <200506221152.48558.amf@sa.apana.org.au> Message-ID: <42B8CF7C.8020601@tom.com> try http://moinmoin.wikiwikiweb.de/SectionParser Tony Finnis wrote: >Hi All, > >I am in the process of setting up a moinmoin server for a community project. >The moin installation is working correctly, however I have a question that I >wish to solve when editing. >I have looked at the help information and this list, but have been unable to >find the answer. (probably looked in the wrong places) > >How do you get text to wrap-around images ? >ie If I load an image using the 'attachment:' command, I cannot find anyway to >get the associated text to be located on the right or left of the image or >wrap-around the image. >Can someone please advise. > >many thanks. > > >------------------------------------------------------- >SF.Net email is sponsored by: Discover Easy Linux Migration Strategies >from IBM. Find simple to follow Roadmaps, straightforward articles, >informative Webcasts and more! Get everything you need to get up to >speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click >_______________________________________________ >Moin-user mailing list >Moin-user at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/moin-user > > > > From zyf_sz at tom.com Tue Jun 21 20:15:00 2005 From: zyf_sz at tom.com (ZeroSlug) Date: Tue Jun 21 20:15:00 2005 Subject: [Moin-user] how to imbedding multimedia file in wiki Message-ID: <42B8D80A.6010408@tom.com> Hi Are there any way to imbedding a 'rmvb' file or 'mpge' file in wiki and make them autoplay when loading page? ZeroSlug From amf at sa.apana.org.au Tue Jun 21 21:37:00 2005 From: amf at sa.apana.org.au (Tony Finnis) Date: Tue Jun 21 21:37:00 2005 Subject: [Moin-user] Text wrap-around Attachments Message-ID: <200506221405.52272.amf@sa.apana.org.au> Many thanks for that - just what I was looking for. Will download and have a good try with it in the next few days. thanks again, Tony try http://moinmoin.wikiwikiweb.de/SectionParser Tony Finnis wrote: >Hi All, > >I am in the process of setting up a moinmoin server for a community project. >The moin installation is working correctly, however I have a question that I >wish to solve when editing. >I have looked at the help information and this list, but have been unable to >find the answer. (probably looked in the wrong places) > >How do you get text to wrap-around images ? >ie If I load an image using the 'attachment:' command, I cannot find anyway to >get the associated text to be located on the right or left of the image or >wrap-around the image. >Can someone please advise. > >many thanks. > > >------------------------------------------------------- From G.Ross at ccw.gov.uk Wed Jun 22 02:48:15 2005 From: G.Ross at ccw.gov.uk (Gordon Ross) Date: Wed Jun 22 02:48:15 2005 Subject: [Moin-user] Prevent auto URLing of words Message-ID: How do I prevent moinmoin turning a word like ClickHere into a URL for a Wiki page ? Thanks, GTG From nigel.harper at lightworkdesign.com Wed Jun 22 03:45:16 2005 From: nigel.harper at lightworkdesign.com (Nigel Harper) Date: Wed Jun 22 03:45:16 2005 Subject: [Moin-user] Prevent auto URLing of words Message-ID: <8815647C7041D111A3010060B06BE1C002D60901@elvis.lightwork> See http://moinmoin.wikiwikiweb.de/WikiName Also look at the bang_meta configuration option. Nigel > -----Original Message----- > From: Gordon Ross [mailto:G.Ross at ccw.gov.uk] > Sent: 22 June 2005 10:47 > To: moin-user at lists.sourceforge.net > Subject: [Moin-user] Prevent auto URLing of words > > > How do I prevent moinmoin turning a word like ClickHere into > a URL for a Wiki page ? > > Thanks, > > GTG > > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=click > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user > From 2005a at usenet.alexanderweb.de Wed Jun 22 11:44:03 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Wed Jun 22 11:44:03 2005 Subject: [Moin-user] Re: how to imbedding multimedia file in wiki References: <42B8D80A.6010408@tom.com> Message-ID: <1pa0515o2lkuq.dlg@usenet.alexanderweb.de> On Wed, 22 Jun 2005 11:16:26 +0800, ZeroSlug wrote: > Are there any way to imbedding a 'rmvb' file or 'mpge' file in wiki and > make them autoplay when loading page? You could write a simple macro that spits out the correct tag. See HelpOnMacros. Kind regards, Alexander From 2005a at usenet.alexanderweb.de Wed Jun 22 11:48:07 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Wed Jun 22 11:48:07 2005 Subject: [Moin-user] Re: Prevent auto URLing of words References: Message-ID: <186haz1g6etch.dlg@usenet.alexanderweb.de> On Wed, 22 Jun 2005 10:46:48 +0100, Gordon Ross wrote: > How do I prevent moinmoin turning a word like ClickHere into a URL for a Wiki page ? If you want to disable it completly, see MoinMoin:ParserMarket and look for the no-camel-case parser. Kind regards, Alexander From James.Wagner at mci.com Wed Jun 22 14:20:09 2005 From: James.Wagner at mci.com (James Wagner) Date: Wed Jun 22 14:20:09 2005 Subject: [Moin-user] Re: Prevent auto URLing of words In-Reply-To: <186haz1g6etch.dlg@usenet.alexanderweb.de> Message-ID: <003f01c5776f$e9f749e0$269122a6@mcilink.com> But if you just want to do it for a word on a particular page, there are multiple ways: Don't ``CamelCase`` this, also don't do it For``This``Word. This {{{AlsoWorks}}}. And there is a configuration that allows another way, but I never use that so I just know these three off the top of my head. :) James. > -----Original Message----- > From: moin-user-admin at lists.sourceforge.net > [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of > Alexander Schremmer > Sent: Wednesday, 22-Jun-2005 12:43 PM > To: moin-user at lists.sourceforge.net > Subject: [Moin-user] Re: Prevent auto URLing of words > > > On Wed, 22 Jun 2005 10:46:48 +0100, Gordon Ross wrote: > > > How do I prevent moinmoin turning a word like ClickHere > into a URL for > > a Wiki page ? > > If you want to disable it completly, see > MoinMoin:ParserMarket and look for the no-camel-case parser. > > Kind regards, > Alexander > > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration > Strategies from IBM. Find simple to follow Roadmaps, > straightforward articles, informative Webcasts and more! Get > everything you need to get up to speed, fast. > http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user > From Matthew.Warren at Powergen.co.uk Thu Jun 23 02:15:15 2005 From: Matthew.Warren at Powergen.co.uk (Warren, Matthew (Retail)) Date: Thu Jun 23 02:15:15 2005 Subject: [Moin-user] Page titles with '/' Message-ID: <33C3DEE7361D394290F8CC76E38666380CE1E9@CORPHNXSEXV01.corp.pg.eon.net> Is there any way to have valid page titles that contain '/' but are not treated like subpages? A set of articles I am importing into the TsmWiki (tsmwiki.com/tsmwiki) deal with /dev/ filesystems and these are also the PageTitles. The trouble is, if I remove or switch the '/' for something else the title then is 'unintuitive' and will be missed when being searched for - the '/' is essential to the meaning of the title. Related; is there a definitive list of not-allowed char's in PageName's? I have also noticed pages named like; '-nodename=' show in indexes but cannot be displayed. Thanks, Matt. Computer says 'No'.. -----Original Message----- From: moin-user-admin at lists.sourceforge.net [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of Tony Finnis Sent: Wednesday, June 22, 2005 5:36 AM To: moin-user at lists.sourceforge.net Subject: Re: [Moin-user] Text wrap-around Attachments Many thanks for that - just what I was looking for. Will download and have a good try with it in the next few days. thanks again, Tony try http://moinmoin.wikiwikiweb.de/SectionParser Tony Finnis wrote: >Hi All, > >I am in the process of setting up a moinmoin server for a community project. >The moin installation is working correctly, however I have a question that I >wish to solve when editing. >I have looked at the help information and this list, but have been unable to >find the answer. (probably looked in the wrong places) > >How do you get text to wrap-around images ? >ie If I load an image using the 'attachment:' command, I cannot find anyway to >get the associated text to be located on the right or left of the image or >wrap-around the image. >Can someone please advise. > >many thanks. > > >------------------------------------------------------- ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click _______________________________________________ Moin-user mailing list Moin-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/moin-user ___________________________ Disclaimer Notice __________________________ This message and any attachments are confidential and should only be read by those to whom they are addressed. If you are not the intended recipient, please contact us, delete the message from your computer and destroy any copies. Any distribution or copying without our prior permission is prohibited. Internet communications are not always secure and therefore Powergen Retail Limited does not accept legal responsibility for this message. The recipient is responsible for verifying its authenticity before acting on the contents. Any views or opinions presented are solely those of the author and do not necessarily represent those of Powergen Retail Limited. Powergen Retail Ltd is authorised and regulated by the Financial Services Authority for the sale and service of general insurance products. Registered addresses: Powergen Retail Limited, Westwood Way, Westwood Business Park, Coventry, CV4 8LG. Registered in England and Wales No: 3407430 Telephone +44 (0) 2476 42 4000 Fax +44 (0) 2476 42 5432 From Matthew.Warren at Powergen.co.uk Thu Jun 23 02:15:48 2005 From: Matthew.Warren at Powergen.co.uk (Warren, Matthew (Retail)) Date: Thu Jun 23 02:15:48 2005 Subject: [Moin-user] WantedPages showing exisitng pages Message-ID: <33C3DEE7361D394290F8CC76E3866638021C73F3@CORPHNXSEXV01.corp.pg.eon.net> Hello, If you go to http://tsmwiki.com/tsmwiki/WantedPages the list contains many pages that actually do exist. What gives? Computer says 'No'.. ___________________________ Disclaimer Notice __________________________ This message and any attachments are confidential and should only be read by those to whom they are addressed. If you are not the intended recipient, please contact us, delete the message from your computer and destroy any copies. Any distribution or copying without our prior permission is prohibited. Internet communications are not always secure and therefore Powergen Retail Limited does not accept legal responsibility for this message. The recipient is responsible for verifying its authenticity before acting on the contents. Any views or opinions presented are solely those of the author and do not necessarily represent those of Powergen Retail Limited. Powergen Retail Ltd is authorised and regulated by the Financial Services Authority for the sale and service of general insurance products. Registered addresses: Powergen Retail Limited, Westwood Way, Westwood Business Park, Coventry, CV4 8LG. Registered in England and Wales No: 3407430 Telephone +44 (0) 2476 42 4000 Fax +44 (0) 2476 42 5432 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Anke.Heinrich at marconi.com Thu Jun 23 03:17:43 2005 From: Anke.Heinrich at marconi.com (Anke Heinrich) Date: Thu Jun 23 03:17:43 2005 Subject: [Moin-user] Help on editing/formatting a multicolumn page Message-ID: Hi, I'm trying to create a page that contains a list of links. Instead of presenting everything as a vertical list and forcing the viewer to scroll down I want a multicolumn layout, so that from a specific list item on all the following items are continued at the right side of the first list items. Is there anyway to do this? I've tried with tables but didn't figure out how columns can contain line breaks and besides, it looks very ugly. This is my first post to the list, so please, be not too hard if this is a silly question. I just couldn't find an answer on this in the archive. Regards, Anke From CPJohnson at edcon.co.za Thu Jun 23 03:49:21 2005 From: CPJohnson at edcon.co.za (Craig Johnson) Date: Thu Jun 23 03:49:21 2005 Subject: FW: [Moin-user] WantedPages showing exisitng pages Message-ID: -----Original Message----- From: Warren, Matthew (Retail) [mailto:Matthew.Warren at Powergen.co.uk] Sent: 23 June 2005 12:29 PM To: Craig Johnson Subject: RE: [Moin-user] WantedPages showing exisitng pages Ahh, I see. Hmm, ok. I just thought. If you have mixed case pagenames that are otherwise the same on a unix system, you will loose pages if you port it over to windows? Has anyone had to do this already? Does it make sense to say MoinMoin should be case insensitive when it comes to filenames? It would make checking for a page under unix ever-so-slightly more complex, but improve the cross-platformability of the Wiki Thanks, Matt. Computer says 'No'.. -----Original Message----- From: Craig Johnson [mailto:CPJohnson at edcon.co.za] Sent: Thursday, June 23, 2005 10:39 AM To: Warren, Matthew (Retail) Subject: RE: [Moin-user] WantedPages showing exisitng pages I assume that this wiki is hosted on a Wintel box? If not, ignore the rest of this mail. The issue here is that under Wintel, file names are not case sensitive. I note that on page http://tsmwiki.com/tsmwiki/3490 the reference is to " 3490e" where the page is actually named " 3490E". On ..nix platforms this results in a missing page, where on Wintel platforms the link is intact, except that it shows up in the WantedPages because the wiki is case sensitive. So, you either rename the page to the lower case version, which is not easy because the wiki will tell you that the new page name exists already, or change the link. If you insist on renaming the page, you will have to go into the data directory and rename it there outside of the Wiki. In my Wiki, this has come about by creating pages by manipulating the url, or by directly futzing about with the data directory. Craig -----Original Message----- From: moin-user-admin at lists.sourceforge.net [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of Warren, Matthew (Retail) Sent: 23 June 2005 11:04 AM To: moin-user at lists.sourceforge.net Subject: [Moin-user] WantedPages showing exisitng pages Hello, If you go to http://tsmwiki.com/tsmwiki/WantedPages the list contains many pages that actually do exist. What gives? Computer says 'No'.. ___________________________ Disclaimer Notice __________________________ This message and any attachments are confidential and should only be read by those to whom they are addressed. If you are not the intended recipient, please contact us, delete the message from your computer and destroy any copies. Any distribution or copying without our prior permission is prohibited. Internet communications are not always secure and therefore Powergen Retail Limited does not accept legal responsibility for this message. The recipient is responsible for verifying its authenticity before acting on the contents. Any views or opinions presented are solely those of the author and do not necessarily represent those of Powergen Retail Limited. Powergen Retail Ltd is authorised and regulated by the Financial Services Authority for the sale and service of general insurance products. Registered addresses: Powergen Retail Limited, Westwood Way, Westwood Business Park, Coventry, CV4 8LG. Registered in England and Wales No: 3407430 Telephone +44 (0) 2476 42 4000 Fax +44 (0) 2476 42 5432 _____ Please note that Edcon's e-Mail addresses have changed. Please update your address book with the new e-Mail address as displayed in the "From:" field. _____ ------------------Edcon Disclaimer ------------------------- This email is private and confidential and its contents and attachments are the property of Edcon. It is solely for the named addressee. Any unauthorised use or interception of this email, or the review, retransmission, dissemination or other use of, or taking of any action in reliance upon the contents of this email, by persons or entities other than the intended recipient, is prohibited.Save for communications relating to the official business of Edcon, the company does not accept any responsibility for the contents of this email or any opinions expressed in this email or its attachments .If you are not the named addressee please notify us immediately by reply email and delete this email and any attached files.Due to the nature of email Edcon cannot ensure and accepts no liability for the integrity of this email and any attachments, nor that they are free of any virus.Edcon accepts no liability for any loss or damage whether direct or indirect or consequential, however caused, whether by negligence or otherwise, which may result directly or indirectly from this communication or any attached files. Edgars Consolidated Stores LTD ,Post office box 200 Crown Mines, Telephone: (011) 495-6000 ##################################################################################### Please note my e-Mail address has changed. Please update your address book with my new e-Mail address as displayed in the "From:" field. ##################################################################################### ------------------Edcon Disclaimer ------------------------- This email is private and confidential and its contents and attachments are the property of Edcon. It is solely for the named addressee. Any unauthorised use or interception of this email, or the review, retransmission, dissemination or other use of, or taking of any action in reliance upon the contents of this email, by persons or entities other than the intended recipient, is prohibited.Save for communications relating to the official business of Edcon, the company does not accept any responsibility for the contents of this email or any opinions expressed in this email or its attachments .If you are not the named addressee please notify us immediately by reply email and delete this email and any attached files.Due to the nature of email Edcon cannot ensure and accepts no liability for the integrity of this email and any attachments, nor that they are free of any virus.Edcon accepts no liability for any loss or damage whether direct or indirect or consequential,however caused, whether by negligence or otherwise, which may result directly or indirectly from this communication or any attached files. Edgars Consolidated Stores LTD ,Post office box 200 Crown Mines, Telephone: (011) 495-6000 -------------- next part -------------- An HTML attachment was scrubbed... URL: From j.k.wight at ncl.ac.uk Thu Jun 23 05:17:21 2005 From: j.k.wight at ncl.ac.uk (Jim Wight) Date: Thu Jun 23 05:17:21 2005 Subject: [Moin-user] Help on editing/formatting a multicolumn page In-Reply-To: References: Message-ID: <1119528972.9712.546.camel@beadnell.ncl.ac.uk> On Thu, 2005-06-23 at 11:15, Anke Heinrich wrote: > I'm trying to create a page that contains a list of links. Instead of > presenting everything as a vertical list and forcing the viewer to scroll > down I want a multicolumn layout, so that from a specific list item on all > the following items are continued at the right side of the first list > items. > > Is there anyway to do this? I've tried with tables but didn't figure out > how columns can contain line breaks and besides, it looks very ugly. It's not so ugly if you use the IndentTable parser from the Parser Market, e.g. {{{#!IndentTable \ FirstLink[[BR]]\ SecondLink \ ThirdLink[[BR]]\ FourthLink \ FifthLink[[BR]]\ SixthLink }}} creates a (hopefully obvious) 3-column output. Jim From keith.c.schwols at intel.com Thu Jun 23 10:03:31 2005 From: keith.c.schwols at intel.com (Schwols, Keith C) Date: Thu Jun 23 10:03:31 2005 Subject: [Moin-user] Re: Prevent auto URLing of words Message-ID: <0ADF78C6DF64D84CA1F8BDD3CC8C43980182B892@cssmsx401.amr.corp.intel.com> This hits up on a question that I have. Is there a way in Moin that a site can make certain CamelCase words non-wiki? On my wiki we have a project McKinley, and it is somewhat annoying that every time the word is used that it is a link. It isn't feasible to tell my users that everything that want to use the project name that they have to six quote escape it (or the other backquote, blockquote or metabang methods either). I'm thinking something like the LocalSpellingWords page that could be use to record CamelCase words to never make links from. ]-----Original Message----- >From: moin-user-admin at lists.sourceforge.net [mailto:moin-user- >admin at lists.sourceforge.net] On Behalf Of Alexander Schremmer >Sent: Wednesday, June 22, 2005 12:43 PM >To: moin-user at lists.sourceforge.net >Subject: [Moin-user] Re: Prevent auto URLing of words > >On Wed, 22 Jun 2005 10:46:48 +0100, Gordon Ross wrote: > >> How do I prevent moinmoin turning a word like ClickHere into a URL for a >Wiki page ? > >If you want to disable it completly, see MoinMoin:ParserMarket and look for >the no-camel-case parser. > >Kind regards, >Alexander > > > >------------------------------------------------------- >SF.Net email is sponsored by: Discover Easy Linux Migration Strategies >from IBM. Find simple to follow Roadmaps, straightforward articles, >informative Webcasts and more! Get everything you need to get up to >speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click >_______________________________________________ >Moin-user mailing list >Moin-user at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/moin-user From 2005a at usenet.alexanderweb.de Thu Jun 23 12:05:55 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Thu Jun 23 12:05:55 2005 Subject: [Moin-user] Re: Page titles with '/' References: <33C3DEE7361D394290F8CC76E38666380CE1E9@CORPHNXSEXV01.corp.pg.eon.net> Message-ID: <1ivhvrvt99log$.dlg@usenet.alexanderweb.de> On Thu, 23 Jun 2005 10:03:07 +0100, Warren, Matthew (Retail) wrote: > Is there any way to have valid page titles that contain '/' but are not > treated like subpages? You could try to disable handling of subpages. See HelpOnConfiguration for that. > Related; is there a definitive list of not-allowed char's in PageName's? There are none that I know of (besides Unicode control characters etc. - and _ characters). > I have also noticed pages named like; > > '-nodename=' > > show in indexes but cannot be displayed. Works for me here. Is that a full page name? Kind regards, Alexander From antoine.contal at gmail.com Thu Jun 23 13:27:28 2005 From: antoine.contal at gmail.com (Antoine Contal) Date: Thu Jun 23 13:27:28 2005 Subject: [Moin-user] Help on editing/formatting a multicolumn page In-Reply-To: <1119528972.9712.546.camel@beadnell.ncl.ac.uk> References: <1119528972.9712.546.camel@beadnell.ncl.ac.uk> Message-ID: Have you been able to use IndentTable with unicode characters? When I type a non-ASCII character in an IndentTable, I get a unicode decode error. Regards. -- Antoine CONTAL 2005/6/23, Jim Wight : > It's not so ugly if you use the IndentTable parser from the Parser > Market, e.g. > > {{{#!IndentTable > \ > FirstLink[[BR]]\ > SecondLink > > \ > ThirdLink[[BR]]\ > FourthLink > > \ > FifthLink[[BR]]\ > SixthLink > }}} > > creates a (hopefully obvious) 3-column output. > > Jim From dcramer at motive.com Fri Jun 24 08:40:08 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Fri Jun 24 08:40:08 2005 Subject: [Moin-user] Suppressing non-relevant help pages from a moinmoin wiki Message-ID: <6A2DF60561F49146ACAB335262015E12F1A18B@newman.motive.com> Well, in case anybody cares, here's what I ended up doing (run from /usr/share/moin/mywiki/underlay/pages): mkdir /tmp/non-en_US-content; for file in $(ls); do if grep "#language " $file/revisions/00000001 | grep -v "#language en" > /dev/null ; then mv $file /tmp/non-en_US-content; fi; done # Also move a couple that are incorrectly marked as #language en mv Le\(c3a7\)onDeWiki\(2f\)Br\(c3a8\)veIntroduction\(2f\)091_Astuces_pour_l \(27c3a9\)diteur/ /tmp/non-en_US-content/ mv "(d09fd0bed0bcd0bed189d18cd09fd0bed093d0bbd0b0d0b2d0b0d0bc)" /tmp/non-en_US-content/ David ________________________________ From: moin-user-admin at lists.sourceforge.net [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of David Cramer (Tech Pubs) Sent: Sunday, June 19, 2005 11:47 PM To: moin-user at lists.sourceforge.net Subject: [Moin-user] Suppressing non-relevant help pages from a moinmoin wiki We run some moinmoins on our intranet and have them indexed by a search appliance. The licensing of that appliance is by the number of pages indexed, so we prefer not to index pages unnecessarily. Since we have more than one wiki, there is the potential that each help page will be indexed multiple times. Is there an easy way to have added only to system pages? Other suggestions? Thanks, David From dremy at microsoft.com Fri Jun 24 11:59:32 2005 From: dremy at microsoft.com (Dave Remy) Date: Fri Jun 24 11:59:32 2005 Subject: [Moin-user] Editing Sections of a document? Message-ID: I like how Wikipedia allows you to edit sections of a page (see http://en.wikipedia.org/wiki/Wiki). How would I accomplish something like this in moinmoin? I was thinking of doing something like this using [[Include ... for subpages and then having an edit link for the subpage but I couldn't figure out how to do it (I'm new to moinmoin). This seems really helpful for long pages with multiple sections, editing these is a pain. Here is one of the sections from the Wiki entry in Wikipedia .. Standard While for years the de facto standard was the syntax of the original WikiWikiWeb, currently the formatting instructions vary considerably depending on the wiki engine. Simple wikis only allow basic text formatting, whereas more complex ones have support for tables, images, formulas, or even interactive elements such as polls and games. Many people switch between wiki engines. Because of the difficulty in using several syntaxes, many people are putting considerable effort into defining a wiki markup standard (see efforts by Meatball and TikiWiki (http://tikiwiki.org/tiki-index.php?page=RFCWiki)). [edit ] -------------- next part -------------- An HTML attachment was scrubbed... URL: From dcramer at motive.com Fri Jun 24 12:09:23 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Fri Jun 24 12:09:23 2005 Subject: [Moin-user] Editing Sections of a document? Message-ID: <6A2DF60561F49146ACAB335262015E12F1A19F@newman.motive.com> We use [[Include()]] to facilitate section editing. It works ok, but there are some limitations. See the comments on these pages: * http://moinmoin.wikiwikiweb.de/FeatureRequests/SectionEditing * http://moinmoin.wikiwikiweb.de/UsabilityObservation/IncludeMacroIssues * http://moinmoin.wikiwikiweb.de/FeatureRequests/GeneratedMozillaSideBarFo rAnyPage David _____ From: moin-user-admin at lists.sourceforge.net [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of Dave Remy Sent: Friday, June 24, 2005 1:58 PM To: moin-user at lists.sourceforge.net Subject: [Moin-user] Editing Sections of a document? I like how Wikipedia allows you to edit sections of a page (see http://en.wikipedia.org/wiki/Wiki). How would I accomplish something like this in moinmoin? I was thinking of doing something like this using [[Include ... for subpages and then having an edit link for the subpage but I couldn't figure out how to do it (I'm new to moinmoin). This seems really helpful for long pages with multiple sections, editing these is a pain. Here is one of the sections from the Wiki entry in Wikipedia .. Standard While for years the de facto standard was the syntax of the original WikiWikiWeb, currently the formatting instructions vary considerably depending on the wiki engine. Simple wikis only allow basic text formatting, whereas more complex ones have support for tables, images, formulas, or even interactive elements such as polls and games. Many people switch between wiki engines. Because of the difficulty in using several syntaxes, many people are putting considerable effort into defining a wiki markup standard (see efforts by Meatball and TikiWiki (http://tikiwiki.org/tiki-index.php?page=RFCWiki)). [edit ] -------------- next part -------------- An HTML attachment was scrubbed... URL: From dcramer at motive.com Fri Jun 24 15:35:57 2005 From: dcramer at motive.com (David Cramer (Tech Pubs)) Date: Fri Jun 24 15:35:57 2005 Subject: [Moin-user] Problem with being logged out in some cases.... Message-ID: <6A2DF60561F49146ACAB335262015E12F1A1AE@newman.motive.com> Here's a little more information. If you log into sledge.devlab.motive.com, you get a cookie like Exhibit 1 and everything works unless and until you get the cookie in Exhibit 2. Is there a reason that the cookie in Exhibit 2 should cause moinmoin not to use the cookie in Exhibit 1? Should I log it as a bug in MoinMoin? Exhibit 1 Cookie:dcramer at sledge.devlab.motive.com/devwiki ------------------------------- MOIN_ID 1234567890.12.34567 sledge.devlab.motive.com/devwiki 1024 1040237696 29718849 2832054592 29718748 * Exhibit 2 Cookie:dcramer at motive.com/ ------------------------------- motive.comUserInfodcramer at sql MY6/ZBAdVcEuiHIZx5IsQrfhG2hBWuahc4WdhJ63gPlO4pudHFRm2c9Qg7Qvw7bpuvefMSR4 6/qPQ6kay7sQEREWGNEOymZ+1Ylz8hDalA== motive.com/ 1024 3769293440 29755360 3118774592 29718748 * Thanks, David > -----Original Message----- > From: moin-user-admin at lists.sourceforge.net > [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of > David Cramer (Tech Pubs) > Sent: Monday, June 20, 2005 1:00 PM > To: Thomas Waldmann; moin-user at lists.sourceforge.net > Subject: RE: [Moin-user] Problem with being logged out in > some cases.... > > That makes sense and I'm happy to tell the users that. My > problem is that logging in by hostname.motive.com is broken > (while logging in by "hostname"--i.e. not fully > qualified--works). If you do a search using our intranet's > search appliance, tho, the link in the hit takes you to > hostname.motive.com. > > The problem appears to be that there's some kind of problem > with another cookie from somewhere on our intranet. If you > delete all your cookies, then you can again log in with > hostname.motive.com for a while. I know little about cookies, > however, so I'm at a loss as to how to troubleshoot. I guess > I'd have to delete one cookie at a time from a browser that's > having problems until the problem goes away--then I'd know > which cookie was causing the problem anyway. > > Thanks, > David > > > -----Original Message----- > > From: moin-user-admin at lists.sourceforge.net > > [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of Thomas > > Waldmann > > Sent: Monday, June 20, 2005 1:29 AM > > To: moin-user at lists.sourceforge.net > > Subject: Re: [Moin-user] Problem with being logged out in some > > cases.... > > > > > We have a couple of moinmoins running on our intranet and > like them > > > very much, but have noticed one problem. If you login via the url > > > http://hostname/wiki (either by bookmarking a page with > > your pickle or > > > by going to the UserPreferences page and using your pw), > > then all is > > > well. However, if you use http://hostname.motive.com/wiki, > > then often > > > you are logged back out as soon as you browse to another page > > > > You should avoid accessing a wiki via multiple urls. When > the internet > > url works, you should be able to use it from everywhere. > > > > If you access a wiki by multiple urls, there can be issues with > > cookies and caching... > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration > Strategies from IBM. Find simple to follow Roadmaps, > straightforward articles, informative Webcasts and more! Get > everything you need to get up to speed, fast. > http://ads.osdn.com/?ad_idt77&alloc_id492&op=ick > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user > From martinson.jacob at gmail.com Fri Jun 24 22:51:02 2005 From: martinson.jacob at gmail.com (jacob martinson) Date: Fri Jun 24 22:51:02 2005 Subject: [Moin-user] honoring newlines outside of {{{ }}} code blocks Message-ID: <5b7479590506242250ce550d9@mail.gmail.com> Has anyone written anything that will allow you to have single newlines in a page be honored so you don't have to append a [[br]] at the end of each line? I use {{{ }}} for code blocks and pasting unix shell sessions, so I don't want to just change the css definition to make that look more like regular text, because I do use code blocks a lot. If not, can anyone point me in the right direction for making the change somewhere? I'm not sure if this is a parser issue or what. Thanks!!! -jacob From pjf at gmx.de Mon Jun 27 07:37:58 2005 From: pjf at gmx.de (Philip Frei) Date: Mon Jun 27 07:37:58 2005 Subject: [Moin-user] email notification without changelog Message-ID: hello, is it possible to configure moin to send mail notifications about changed sites without the changelog in message body? an empty email with a subject that tells about changes. Philip From dremy at microsoft.com Mon Jun 27 15:26:17 2005 From: dremy at microsoft.com (Dave Remy) Date: Mon Jun 27 15:26:17 2005 Subject: [Moin-user] Getting RSS feeds for Desktop Edition Message-ID: Anyone know how I can get an RSS feed for the Desktop Edition? I installed PyXml but I don't get the RSS button on recent changes. Any ideas? thx -------------- next part -------------- An HTML attachment was scrubbed... URL: From schwarz.labecedaire at st.com Tue Jun 28 01:11:21 2005 From: schwarz.labecedaire at st.com (Christian SCHWARZ) Date: Tue Jun 28 01:11:21 2005 Subject: [Moin-user] Editing Sections of a document? In-Reply-To: <6A2DF60561F49146ACAB335262015E12F1A19F@newman.motive.com> References: <6A2DF60561F49146ACAB335262015E12F1A19F@newman.motive.com> Message-ID: <42C105DC.3080300@st.com> Hi, section editing works fine for me, however, it seems, it does not work for the first topic in the list, e.g. a page with sections Introduction subtitle Design subtitle Conclusion subtitle all on separate pages (and respective subtitles and content) would lead (with pragma section numbers to) 1 Introduction 2 subtitle 3 Design 3.1 subtitle 4 Conclusion 4.1 subtitle It is correct in the table of content, but not anymore in the actual page. Thanks for hints, Christian From calisp at gmail.com Tue Jun 28 05:30:19 2005 From: calisp at gmail.com (calisp at gmail.com) Date: Tue Jun 28 05:30:19 2005 Subject: [Moin-user] create page mail notification Message-ID: Hi, Is it possible to get Moin to send mails to certain users whenever a page is created? Thanks, Calisp. From gregwh at gmail.com Tue Jun 28 06:34:27 2005 From: gregwh at gmail.com (greg whittier) Date: Tue Jun 28 06:34:27 2005 Subject: [Moin-user] Text wrap-around Attachments In-Reply-To: <200506221405.52272.amf@sa.apana.org.au> References: <200506221405.52272.amf@sa.apana.org.au> Message-ID: You can also use tables and the float style. There's an example of this at http://moinmoin.wikiwikiweb.de/NirSoffer || attachment:me-with-naomi.jpg [[BR]]Me with Naomi || Greg On 6/22/05, Tony Finnis wrote: > Many thanks for that - just what I was looking for. > Will download and have a good try with it in the next few days. > thanks again, > Tony > > try http://moinmoin.wikiwikiweb.de/SectionParser > > Tony Finnis wrote: > > >Hi All, > > > >I am in the process of setting up a moinmoin server for a community project. > >The moin installation is working correctly, however I have a question that I > >wish to solve when editing. > >I have looked at the help information and this list, but have been unable to > >find the answer. (probably looked in the wrong places) > > > >How do you get text to wrap-around images ? > >ie If I load an image using the 'attachment:' command, I cannot find anyway > to > >get the associated text to be located on the right or left of the image or > >wrap-around the image. > >Can someone please advise. > > > >many thanks. > > > > > >------------------------------------------------------- > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user > From G.Ross at ccw.gov.uk Tue Jun 28 07:10:15 2005 From: G.Ross at ccw.gov.uk (Gordon Ross) Date: Tue Jun 28 07:10:15 2005 Subject: [Moin-user] Problems with ACLs Message-ID: I'm trying to setup some ACLs, and I'm not getting very far. In my wikiconfig.py I have: acl_rights_before = u"NetworkServicesGroup:read,write,delete,revert,admin -All:read" The page "NetworkServicesGroup" looks like: * User1 * User2 * User3 By my understanding, users User1, User2 & User3 should have full Read/Write/Delete/Revert/Admin access to all pages in the wiki - but they don't ! All they get is read-only access. The only way I can give them Write access is if I add the line #acl NetworkServicesGroup:read,write to the top of every page. Can someone explain what I'm doing wrong ? Thanks, GTG Gordon Ross, Network Manager/Rheolwr Rhydwaith Countryside Council for Wales/Cyngor Cefn Gwlad Cymru From amf at sa.apana.org.au Tue Jun 28 20:47:04 2005 From: amf at sa.apana.org.au (Tony Finnis) Date: Tue Jun 28 20:47:04 2005 Subject: [Moin-user] Text wrap-around Attachments In-Reply-To: References: <200506221405.52272.amf@sa.apana.org.au> Message-ID: <200506291316.06297.amf@sa.apana.org.au> Greg, Thanks for the additional information. It would seem from the example you stated that this would also do what I am looking for. many thanks Tony On Tue June 28 2005 11:03 pm, greg whittier wrote: > You can also use tables and the float style. There's an example of > this at http://moinmoin.wikiwikiweb.de/NirSoffer > > || > margin: 0 0 1em 1em;" style="padding: 1em;":> > attachment:me-with-naomi.jpg [[BR]]Me with Naomi || > > Greg > > On 6/22/05, Tony Finnis wrote: > > Many thanks for that - just what I was looking for. > > Will download and have a good try with it in the next few days. > > thanks again, > > Tony > > > > try http://moinmoin.wikiwikiweb.de/SectionParser > > > > Tony Finnis wrote: > > >Hi All, > > > > > >I am in the process of setting up a moinmoin server for a community > > > project. The moin installation is working correctly, however I have a > > > question that I wish to solve when editing. > > >I have looked at the help information and this list, but have been > > > unable to find the answer. (probably looked in the wrong places) > > > > > >How do you get text to wrap-around images ? > > >ie If I load an image using the 'attachment:' command, I cannot find > > > anyway > > > > to > > > > >get the associated text to be located on the right or left of the image > > > or wrap-around the image. > > >Can someone please advise. > > > > > >many thanks. > > > > > > > > >------------------------------------------------------- > > > > ------------------------------------------------------- > > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > > from IBM. Find simple to follow Roadmaps, straightforward articles, > > informative Webcasts and more! Get everything you need to get up to > > speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > > _______________________________________________ > > Moin-user mailing list > > Moin-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/moin-user From tw-public at gmx.de Wed Jun 29 03:13:18 2005 From: tw-public at gmx.de (Thomas Waldmann) Date: Wed Jun 29 03:13:18 2005 Subject: [Moin-user] Problems with ACLs In-Reply-To: References: Message-ID: <42C22DC4.1060108@gmx.de> > acl_rights_before = u"NetworkServicesGroup:read,write,delete,revert,admin -All:read" The first part looks ok, while -All:read looks a bit strange for me. > The page "NetworkServicesGroup" looks like: > > * User1 > * User2 > * User3 That's ok. > By my understanding, users User1, User2 & User3 should have full Read/Write/Delete/Revert/Admin access to all pages in the wiki - but they don't ! All they get is read-only access. Then something is going wrong. Make sure you edit the config you are using (not some unused sample config). Delete data/cache/wikidicts/dicts_groups (it will get recreated automatically). > The only way I can give them Write access is if I add the line > > #acl NetworkServicesGroup:read,write > to the top of every page. The "before" acl is processed "before" that, so I can't make sense out of that, except if you edit an unused config. From G.Ross at ccw.gov.uk Wed Jun 29 07:57:24 2005 From: G.Ross at ccw.gov.uk (Gordon Ross) Date: Wed Jun 29 07:57:24 2005 Subject: [Moin-user] Wiki Links Message-ID: With an HTTP link, it possible to specify it as: [http://www.somewhere.com/ This is the text] Is it possble to do something similar with a link to a document within the wiki ? Doing: [WikiPage Some Text] doesn't work Thanks, GTG From nigel.metheringham at dev.intechnology.co.uk Wed Jun 29 08:10:24 2005 From: nigel.metheringham at dev.intechnology.co.uk (Nigel Metheringham) Date: Wed Jun 29 08:10:24 2005 Subject: [Moin-user] Wiki Links In-Reply-To: References: Message-ID: <1120057765.8542.54.camel@angua.localnet> On Wed, 2005-06-29 at 15:55 +0100, Gordon Ross wrote: > With an HTTP link, it possible to specify it as: > > [http://www.somewhere.com/ This is the text] > > Is it possble to do something similar with a link to a document within the wiki ? Doing: > > [WikiPage Some Text] doesn't work [:WikiPage:Some Text] As a form of syntax it sucks. Also if WikiPage does not exist you will not get the ? or different colouring indication of that. Nigel. -- [ Nigel Metheringham Nigel.Metheringham at InTechnology.co.uk ] [ - Comments in this message are my own and not ITO opinion/policy - ] From 2005a at usenet.alexanderweb.de Wed Jun 29 09:48:03 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Wed Jun 29 09:48:03 2005 Subject: [Moin-user] Re: Getting RSS feeds for Desktop Edition References: Message-ID: On Mon, 27 Jun 2005 15:25:21 -0700, Dave Remy wrote: > Anyone know how I can get an RSS feed for the Desktop Edition? I > installed PyXml but I don't get the RSS button on recent changes. Any > ideas? Are you using the self-contained version? (.exe) Then it will not work. You will need Python and the tbz or zip archive. Kind regards, Alexander From 2005a at usenet.alexanderweb.de Wed Jun 29 09:59:02 2005 From: 2005a at usenet.alexanderweb.de (Alexander Schremmer) Date: Wed Jun 29 09:59:02 2005 Subject: [Moin-user] Re: create page mail notification References: Message-ID: <3miplqj6klnt$.dlg@usenet.alexanderweb.de> On Tue, 28 Jun 2005 13:29:50 +0100, calisp at gmail.com wrote: > Is it possible to get Moin to send mails to certain users whenever a > page is created? Sure, just put .* into the list of subscribed pages (UserPreferences). Kind regards, Alexander