From pado at CoLi.Uni-SB.DE Wed Jun 2 03:09:01 2004 From: pado at CoLi.Uni-SB.DE (Sebastian =?iso-8859-1?Q?Pad=F3?=) Date: Wed Jun 2 03:09:01 2004 Subject: [Moin-user] Local themes? Message-ID: <20040602100822.GT2090@coli.uni-sb.de> Hello all, I have a wiki on a university server, and administration recently made a global installation of MoinMoin 1.2, which (for some reason) broke my local 1.1 install. I got it to work all right with the global system now, but I'm lost about the themes. I always had a (local) .css for the layout. Browsing through the docs, I found out that css are now superseded by themes -- and from reading HelpOnThemes, I got the impression that themes must be installed globally (e.g. the code in MoinMoin/theme/THEMENAME.py), which, on our server, resides in /usr/lib/python2.2/site-packages. There are two or three themes installed (and they work, too), but I would like to keep my old layout. Since I don't have write access to /usr/lib, I tried to recreate the respective directories locally, but without success (apparently the files weren't read at all). Does anybody know whether this is possible at all, or have any ideas/experiences? Thanks a lot, Sebastian From tw-public at gmx.de Fri Jun 4 07:11:08 2004 From: tw-public at gmx.de (Thomas Waldmann) Date: Fri Jun 4 07:11:08 2004 Subject: [Moin-user] Local themes? In-Reply-To: <20040602100822.GT2090@coli.uni-sb.de> References: <20040602100822.GT2090@coli.uni-sb.de> Message-ID: <40C082ED.1070101@gmx.de> > There are two or three themes installed (and they work, too), but I > would like to keep my old layout. Since I don't have write access to > /usr/lib, I tried to recreate the respective directories locally, but > without success (apparently the files weren't read at all). > > Does anybody know whether this is possible at all, or have any > ideas/experiences? Did you try /plugin/theme/yourtheme.py ? From pado at CoLi.Uni-SB.DE Fri Jun 4 08:28:01 2004 From: pado at CoLi.Uni-SB.DE (Sebastian =?iso-8859-1?Q?Pad=F3?=) Date: Fri Jun 4 08:28:01 2004 Subject: [Moin-user] Local themes? In-Reply-To: <40C082ED.1070101@gmx.de> References: <20040602100822.GT2090@coli.uni-sb.de> <40C082ED.1070101@gmx.de> Message-ID: <20040604152638.GK20883@coli.uni-sb.de> No success :( I have data_dir = "./data/". I copied classic.py into data/plugin/theme and renamed it "classic2.py" I modified the line theme_default="classic2" in moin_config.py. All I get is > The server encountered an internal error and was unable to complete > your request. > > Error message: > Premature end of script headers: moin.cgi I hope I'm not missing something obvious (thence the detailed explanation). Cheers, Sebastian -- M?gen Puristen aller Musikbereiche auch die Nase r?mpfen From tw-public at gmx.de Sat Jun 5 18:15:09 2004 From: tw-public at gmx.de (Thomas Waldmann) Date: Sat Jun 5 18:15:09 2004 Subject: [Moin-user] moin 1.2.2 is out Message-ID: <40C27DA6.8070604@gmx.de> MoinMoin, 1.2.2 is primarily a bugfix release (including some security issues relating to ACLs), with only a few new features. If you still run 1.2.1 or older, please upgrade. Thomas From crosseyedpenguin at yahoo.com Sun Jun 6 10:41:03 2004 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Sun Jun 6 10:41:03 2004 Subject: [Moin-user] Moin 1.2.2 Update Message-ID: <20040606174013.47159.qmail@web14307.mail.yahoo.com> I installed Moin 1.2.2 this morning and found two changes that adversly effect some of my css overrides. - Moin 1.2.2 does not place

,

tags around the first paragraph following a , tag. - On Edit pages, Moin 1.2.2 does not terminate the
Message-ID: <4qpoz9nm.fsf@yahoo.co.uk> Paul Moore writes: > I have a minor problem, though. When I navigate to > http://ukdcr030:8000/dbawiki/, I get the front page, as expected. > However, if I then click on a link, say BackupAndRecovery, I get > shown the front page *again*, but with a URL of > http://ukdcr030:8000/dbawiki//BackupAndRecovery in the address bar > (note the double slash in the middle). Hitting the same link again > takes me to the right page, but with a URL of > http://ukdcr030:8000/dbawiki//BackupAndRecovery/BackupAndRecovery. I think I've found out what the issue here is. MoinMoin uses PATH_INFO in its processing, but unfortunately, PATH_INFO isn't quite right for mod_python. In fact, according to the mod_python author, PATH_INFO isn't really a valid concept for mod_python, as it's defined (for CGI) in terms of the "script", and mod_python isn't really a "script" in the required sense. For the details, see http://www.modpython.org/pipermail/mod_python/2003-July/013950.html and the related thread. I'm not sure what to do about this - it seems like it's a bug in the mod_python support code in MoinMoin, but I don't know how best to report it - the SF bug tracker for MoinMoin seems pretty much unused. The relevant code is in request.py, line 1110 or so (getPathinfo in requestModPy). I think it needs to be "cleverer", but I don't know how... What should I do? Paul. -- This signature intentionally left blank From paul.moore at atosorigin.com Sun Jun 6 15:13:03 2004 From: paul.moore at atosorigin.com (Paul Moore) Date: Sun Jun 6 15:13:03 2004 Subject: [Moin-user] Re: Problems with moin + mod_python References: <4qpoz9nm.fsf@yahoo.co.uk> Message-ID: Paul Moore writes: > Paul Moore writes: > >> I have a minor problem, though. When I navigate to >> http://ukdcr030:8000/dbawiki/, I get the front page, as expected. >> However, if I then click on a link, say BackupAndRecovery, I get >> shown the front page *again*, but with a URL of >> http://ukdcr030:8000/dbawiki//BackupAndRecovery in the address bar >> (note the double slash in the middle). Hitting the same link again >> takes me to the right page, but with a URL of >> http://ukdcr030:8000/dbawiki//BackupAndRecovery/BackupAndRecovery. > > I think I've found out what the issue here is. Not quite. Page.url() uses request.getScriptname(). But the "script name" doesn't make sense to mod_python. The whole script name/path info concept doesn't make sense for mod_python, and (AFAICT) that has some pretty major implications. I can "fix" the problem by redefining 2 methods of RequestmodPy: def getScriptname(self): """ Return the scriptname part of the URL ('/path/to/my.cgi'). """ return "/wiki" def getPathinfo(self): """ Return the remaining part of the URL. """ return self.mpyreq.uri[5:] But that only works because I hardcoded the path to the Wiki front page (and its length). And the problem is that I can't derive that from scratch. I can pass it in from the Apache configuration, via the PythonOption directive and the req.get_options() method, but that just hardcodes the URL in a different place :-( Paul. -- This signature intentionally left blank From alain.ammann at CSE.ch Sun Jun 6 23:40:07 2004 From: alain.ammann at CSE.ch (Ammann Alain (CSE)) Date: Sun Jun 6 23:40:07 2004 Subject: [Moin-user] Change syntax definitions Message-ID: <315EE5E5ED25D611905C0002A5DA61806146C6@tijuana.cse.softec.ch> Hi! Could anyone tell me how the syntax definitions could been changed? I mean I would change the format of the a few syntax definitions (i.e. === or {{{...}}}). Thanks in advance. Regards, Alain PS: I'm a newby to mailing lists, so could anybody tell me if there is a possibility to search in the "existing mails" of the mailing list for answers... -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- An HTML attachment was scrubbed... URL: From jks at iki.fi Mon Jun 7 08:01:08 2004 From: jks at iki.fi (Jouni K Seppanen) Date: Mon Jun 7 08:01:08 2004 Subject: [Moin-user] Re: Change syntax definitions References: <315EE5E5ED25D611905C0002A5DA61806146C6@tijuana.cse.softec.ch> Message-ID: <29u0xnjud2.fsf@itl-pc9.hut.fi> "Ammann Alain (CSE)" writes: > PS: I'm a newby to mailing lists, so could anybody tell me if there is a > possibility to search in the "existing mails" of the mailing list for > answers... Since this list is carried by Gmane, you could use Gmane's search: http://search.gmane.org/search.php?group=gmane.comp.web.wiki.moin.general -- Jouni K Sepp?nen From jks at iki.fi Mon Jun 7 08:08:22 2004 From: jks at iki.fi (Jouni K Seppanen) Date: Mon Jun 7 08:08:22 2004 Subject: [Moin-user] NameError about UnpicklingError in MoinMoin 1.2.2 Message-ID: <29llizjtja.fsf@itl-pc9.hut.fi> Hi, I just set up MoinMoin 1.2.2 on a computer running SuSE Linux 9.1, and I'm getting a NameError when I try to create a new profile (i.e., set my user preferences). When I type my name, password, repeated password, and email address on http://.../UserPreferences and click on Create Profile, the result contains the following backtrace: Traceback (most recent call last): File "/usr/lib/python2.3/site-packages/MoinMoin/request.py", line 391, in run wikiutil.getSysPage(self, config.page_front_page).page_name, self) File "/usr/lib/python2.3/site-packages/MoinMoin/wikiaction.py", line 751, in do_userform savemsg = userform.savedata(request) File "/usr/lib/python2.3/site-packages/MoinMoin/userform.py", line 29, in savedata return UserSettingsHandler(request).handleData() File "/usr/lib/python2.3/site-packages/MoinMoin/userform.py", line 121, in handleData if user.getUserId(theuser.name): File "/usr/lib/python2.3/site-packages/MoinMoin/user.py", line 49, in getUserId except (UnpicklingError,IOError,EOFError,ValueError): NameError: global name 'UnpicklingError' is not defined The information I'm asked to include on bug reports is: Python Python 2.3.3: /usr/bin/python Linux samwise 2.6.4-54.5-smp #1 SMP Fri May 7 21:30:47 UTC 2004 i686 MoinMoin Release 1.2.2 [Revision 1.185] Mon Jun 7 17:54:54 2004 I guess the file user.py should be referring to pickle.UnpicklingError instead of UnpicklingError. Am I correct? -- Jouni K Sepp?nen From mike at nospam.com Mon Jun 7 12:07:00 2004 From: mike at nospam.com (Mike Rovner) Date: Mon Jun 7 12:07:00 2004 Subject: [Moin-user] Re: NameError about UnpicklingError in MoinMoin 1.2.2 References: <29llizjtja.fsf@itl-pc9.hut.fi> Message-ID: > I guess the file user.py should be referring to pickle.UnpicklingError > instead of UnpicklingError. Am I correct? yes From pf_moore at yahoo.co.uk Mon Jun 7 12:41:18 2004 From: pf_moore at yahoo.co.uk (Paul Moore) Date: Mon Jun 7 12:41:18 2004 Subject: [Moin-user] Re: Problems with moin + mod_python References: Message-ID: Paul Moore writes: > I added the following to my Apache configuration. I'm not too familiar with > Apache, so it's quite possible I've made some dumb error here. There's almost > nothing in my moin config - it's basically the default - so I doubt it's that > (but I can post it if anyone thinks it's relevant). Can anyone help with this? > > # DBA Wiki > Alias /wiki/ "C:/Python23/share/moin/htdocs/" > Alias /wikidata/ "D:/Moin/wikidata/" > Alias /dbawiki "D:/Moin/dbawiki/" > > > # Use mod_python as handler > SetHandler python-program > > # set the path to the MoinMoin package and to the moin_config.py > PythonPath "['D:/Moin/dbawiki']+sys.path" > > # choose the ModPy Request class as handler > PythonHandler MoinMoin.request::RequestModPy.run > Got it fixed, at last! If I remove the Alias /dbawiki line, and replace the with everything works fine. This makes sense, i suppose, as no files from the D:/Moin/dbawiki are ever served directly, so a container is wrong. Told you it would be a dumb Apache configuration error :-) Paul. -- This signature intentionally left blank From pf_moore at yahoo.co.uk Mon Jun 7 12:51:15 2004 From: pf_moore at yahoo.co.uk (Paul Moore) Date: Mon Jun 7 12:51:15 2004 Subject: [Moin-user] Re: Problems with moin + mod_python References: <4qpoz9nm.fsf@yahoo.co.uk> Message-ID: Paul Moore writes: >> I think I've found out what the issue here is. > > Not quite. Page.url() uses request.getScriptname(). But the "script > name" doesn't make sense to mod_python. No - see my other posting. I should be using a Location container in Apache, not a Directory one. There's no bug to see here folks, move along... Paul. -- This signature intentionally left blank From oliverm at matrix-media.com Mon Jun 7 13:36:06 2004 From: oliverm at matrix-media.com (Michael Oliver) Date: Mon Jun 7 13:36:06 2004 Subject: [Moin-user] Trying to Install on XP Message-ID: <000401c44cce$e89884a0$6401a8c0@OllieXP> Ok spend more than two hours and gone through and back through http://moinmoin.wikiwikiweb.de/HelpOnInstalling_2fApacheOnWin32 and the linked pages. I am using Windows XP Apache 2.0.49 Python 2.3 Python extensions for win32 pywin32/win32all Moin-1.2.2 and ran setup.py from the distribution and it created c:\Moin\Lib, Scripts and share as expected. I created siawiki under share\moin and copied cgi-bin\* into siawiki I fixed the shebang in moin.cgi and hit /siawiki?test and got MoinMoin CGI Diagnosis ====================== Package "MoinMoin" successfully imported. Traceback (innermost last): File "C:/Moin/share/moin/siawiki/moin.cgi", line 22, in ? request = RequestCGI() File "C:\Python23\Lib\site-packages\MoinMoin\request.py", line 503, in __init__ RequestBase.__init__(self, properties) File "C:\Python23\Lib\site-packages\MoinMoin\request.py", line 63, in __init__ self.dicts = self.initdicts() File "C:\Python23\Lib\site-packages\MoinMoin\request.py", line 223, in initdicts dicts.scandicts() File "C:\Python23\Lib\site-packages\MoinMoin\wikidicts.py", line 253, in scandicts pagelist = wikiutil.getPageList(config.text_dir) File "C:\Python23\Lib\site-packages\MoinMoin\wikiutil.py", line 274, in getPageList pages = os.listdir(text_dir) WindowsError: [Errno 3] The system cannot find the path specified: 'data\\text/*.*' I have no doubt I missed something but can't see it. __________________________________________________________________ Michael Oliver CTO Matrix Intermedia Inc 3325 N. Nellis Blvd, #1 Las Vegas, NV 89115 Phone:+1 (702)643-7425 Fax +1 (520) 844-1036 ICQ#: 318986322 Current ICQ status: * More ways to contact me __________________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 105 bytes Desc: not available URL: From crosseyedpenguin at yahoo.com Mon Jun 7 18:03:07 2004 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Mon Jun 7 18:03:07 2004 Subject: [Moin-user] Trying to Install on XP In-Reply-To: <000401c44cce$e89884a0$6401a8c0@OllieXP> Message-ID: <20040608010219.51252.qmail@web14301.mail.yahoo.com> --- Michael Oliver wrote: > Ok spend more than two hours and gone through and back through > http://moinmoin.wikiwikiweb.de/HelpOnInstalling_2fApacheOnWin32 and > the > linked pages. > > > > I am using Windows XP > > Apache 2.0.49 > > Python 2.3 > > Python extensions for win32 pywin32/win32all > > Moin-1.2.2 and ran setup.py from the distribution and it created > c:\Moin\Lib, Scripts and share as expected. > > > > I created siawiki under share\moin and copied cgi-bin\* into > siawiki > > > > I fixed the shebang in moin.cgi and hit /siawiki?test and got > > > > MoinMoin CGI Diagnosis > ====================== > > Package "MoinMoin" successfully imported. > > > Traceback (innermost last): > File "C:/Moin/share/moin/siawiki/moin.cgi", line 22, in ? > request = RequestCGI() > File "C:\Python23\Lib\site-packages\MoinMoin\request.py", line > 503, > in __init__ > RequestBase.__init__(self, properties) > File "C:\Python23\Lib\site-packages\MoinMoin\request.py", line 63, > in > __init__ > self.dicts = self.initdicts() > File "C:\Python23\Lib\site-packages\MoinMoin\request.py", line > 223, > in initdicts > dicts.scandicts() > File "C:\Python23\Lib\site-packages\MoinMoin\wikidicts.py", line > 253, > in scandicts > pagelist = wikiutil.getPageList(config.text_dir) > File "C:\Python23\Lib\site-packages\MoinMoin\wikiutil.py", line > 274, > in getPageList > pages = os.listdir(text_dir) > WindowsError: [Errno 3] The system cannot find the path specified: > 'data\\text/*.*' > > > > > I have no doubt I missed something but can't see it. > > > > __________________________________________________________________ > Michael Oliver If your path to siawiki is C:\Python23\share\moin\siawiki, then you skipped all the recommended steps under the heading "Creating a wiki instance". The usual approach is to create a separate folder structure away from the Python tree. So if you create a: C:\Moin\siawiki, siawiki will have a folder "data", the "data" folder will contain folders for backup,cache,pages,plugin,text, and user. The text folder will have many files, the others few or none. Your error message says the folder structure ...siawiki\data\text\ does not exist. Roger Haase __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ From xavier_trompette at yahoo.fr Tue Jun 8 06:01:04 2004 From: xavier_trompette at yahoo.fr (=?iso-8859-1?q?xavier=20trompette?=) Date: Tue Jun 8 06:01:04 2004 Subject: [Moin-user] just a litte question Message-ID: <20040608130006.62304.qmail@web51109.mail.yahoo.com> Hi !! I just want to say if a french version of "Moin Moin" is available ?? thanks a lot Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout ! Cr?ez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/ Dialoguez en direct avec vos amis gr?ce ? Yahoo! Messenger !T?l?chargez Yahoo! Messenger sur http://fr.messenger.yahoo.com From oliverm at matrix-media.com Tue Jun 8 09:49:14 2004 From: oliverm at matrix-media.com (Michael Oliver) Date: Tue Jun 8 09:49:14 2004 Subject: [Moin-user] MoinMoin UserPreferences Message-ID: <003b01c44d78$77ae1c50$6401a8c0@OllieXP> I have installed MoinMoin on Windows XP using Apache 2.0.49, Python 2.3 and the Python win32 extensions. I can see the FrontPage with all the graphics and I can edit the page and save it and it shows ok. However when I try to edit UserPreferences and add myself as a user, I get nothing in the Apache error.log but I do get the following when trying to "CreateProfile". --> --> NameErrorglobal name 'UnpicklingError' is not defined Please include this information in your bug reports!: Python Python 2.3.4: C:\Python23\python.exe Platform: win32 (nt) MoinMoin Release 1.2.2 [Revision 1.185] Tue Jun 08 09:43:20 2004 A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred. C:\Python23\Lib\site-packages\MoinMoin\request.py in run(self=) 454 else: 455 try: 456 cgitb.Hook(file=self).handle(saved_exc) 457 # was: cgitb.handler() 458 except: cgitb = , cgitb.Hook = , file undefined, self = , ).handle undefined, saved_exc = (, , ) C:\Python23\Lib\site-packages\MoinMoin\wikiaction.py in do_userform(pagename='UserPreferences', request=) 749 def do_userform(pagename, request): 750 from MoinMoin import userform 751 savemsg = userform.savedata(request) 752 Page(pagename).send_page(request, msg=savemsg) 753 savemsg undefined, userform = , userform.savedata = , request = C:\Python23\Lib\site-packages\MoinMoin\userform.py in savedata(request=) 27 Return error msg or None. 28 """ 29 return UserSettingsHandler(request).handleData() 30 31 global UserSettingsHandler = , request = , ).handleData undefined C:\Python23\Lib\site-packages\MoinMoin\userform.py in handleData(self=) 119 # Is this an existing user trying to change password, or a new user? 120 newuser = 1 121 if user.getUserId(theuser.name): 122 if theuser.name != self.request.user.name: 123 return _("User name already exists!") global user = , user.getUserId = , theuser = , theuser.name = 'MikeOliverAZ' C:\Python23\Lib\site-packages\MoinMoin\user.py in getUserId(searchName='MikeOliverAZ') 47 try: 48 _name2id = pickle.load(open(userdictpickle)) 49 except (UnpicklingError,IOError,EOFError,ValueError): 50 _name2id = {} 51 id = _name2id.get(searchName, None) UnpicklingError undefined, IOError undefined, EOFError undefined, ValueError undefined NameError: global name 'UnpicklingError' is not defined __doc__ = 'Name not found globally.' __getitem__ = > __init__ = > __module__ = 'exceptions' __str__ = > args = ("global name 'UnpicklingError' is not defined",) __________________________________________________________________ Michael Oliver CTO Matrix Intermedia Inc 3325 N. Nellis Blvd, #1 Las Vegas, NV 89115 Phone:+1 (702)643-7425 Fax +1 (520) 844-1036 ICQ#: 318986322 Current ICQ status: * More ways to contact me __________________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 182 bytes Desc: not available URL: From tw-public at gmx.de Tue Jun 8 11:44:09 2004 From: tw-public at gmx.de (Thomas Waldmann) Date: Tue Jun 8 11:44:09 2004 Subject: [Moin-user] MoinMoin UserPreferences In-Reply-To: <003b01c44d78$77ae1c50$6401a8c0@OllieXP> References: <003b01c44d78$77ae1c50$6401a8c0@OllieXP> Message-ID: <40C61646.3060508@gmx.de> See http://moinmoin.wikiwikiweb.de:8000/MoinMoinBugs_2fUnpicklingError From lindsayd at cisco.com Thu Jun 10 21:17:15 2004 From: lindsayd at cisco.com (Don Lindsay) Date: Thu Jun 10 21:17:15 2004 Subject: [Moin-user] getUserId() UnpicklingError ??? Message-ID: I'm trying to upgrade to 1.2.2 (from 0.11). When I click Save on the User Preferences page, the new wiki says global name 'UnpicklingError' is not defined and gives a stack trace, back through ...lib/python2.3/site-packages/MoinMoin/userform.py savedata() ...handleData() ...user.py in getUserId(searchName='foo') 41 except IOError: 42 pass 43 else: 44 f.close() 45 execfile(pythonrc) Finding the getUserId routine was easy. The problem is that it does catch UnpicklingError, and nowhere do I see the printed code fragment (lines 41 through 45). ??? [Since I'm upgrading, I copied the stuff in /data/ over from the old wiki to the new one. Maybe there's a file I forgot?? A format that's changed???] [While I'm here, what means /lib/python2.3/site-packages/MoinMoin/theme/classic.py:238: DeprecationWarning: calling themes without correct request ] -- Don From dc at microbits.com.au Sat Jun 12 18:12:50 2004 From: dc at microbits.com.au (Daniel Cox) Date: Sat Jun 12 18:12:50 2004 Subject: [Moin-user] Hints to modify parser for emphasis markup (Bold, Italic) Message-ID: Moin Moin looks great, however the main struggle I am having with most Wiki software is the markup. My non-technical users have been using *bold* in email for years - and we have many TWiki documents in that format. The fact that '''lots of quotes''' has almost become standard is not enough to convice users. *bold* even works in MS Word! HTML Markup as provided by some Wiki's is definately not an option. bold is much harder for users to understand. I am new to Python, could you please provide some hints on how I could modify the default parser to accept: *bold* and _italic_ - there is an extension listed, the BizarreStructuredText which would do this but it is not available for download. The 2 expressions that handle this in TWiki are: # PTh 25 Sep 2000: More relaxed rules, allow leading '(' and trailing ',.;:!?)' s/([\s\(])\*([^\s]+?|[^\s].*?[^\s])\*([\s\,\.\;\:\!\?\)])/$1$2<\/strong>$3/g; s/([\s\(])_([^\s]+?|[^\s].*?[^\s])_([\s\,\.\;\:\!\?\)])/$1$2<\/em>$3/g; It should be simple to add an expression like this to the long list in the default parser. Thanks for any help you may be able to provide. Daniel. From seuchato at yahoo.de Sun Jun 13 13:10:12 2004 From: seuchato at yahoo.de (=?iso-8859-1?q?Chris=20Epicier?=) Date: Sun Jun 13 13:10:12 2004 Subject: [Moin-user] suse 9.0: error 403 Message-ID: <20040613200920.58667.qmail@web52106.mail.yahoo.com> Hi there I installed moinmoin the way it is described and verfied every step. I use Apache2 on suse 9.0. I verfied every thing I could (am not so experienced) but still get 403 no permission to access the wiki. any clues? Thanks a lot for your help, chris Bestellen Sie Y! DSL und erhalten Sie die AVM "FritzBox SL" f?r 0?. Sie sparen 119? und bekommen 2 Monate Grundgeb?hrbefreiung. http://de.adsl.yahoo.com From marc.saric at gmx.de Mon Jun 14 06:47:38 2004 From: marc.saric at gmx.de (Marc Saric) Date: Mon Jun 14 06:47:38 2004 Subject: [Moin-user] Re: suse 9.0: error 403 In-Reply-To: References: Message-ID: <40CD738E.3040609@gmx.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 moin-user-request at lists.sourceforge.net wrote: | I installed moinmoin the way it is described and | verfied every step. I use Apache2 on suse 9.0. I | verfied every thing I could (am not so experienced) | but still get 403 no permission to access the wiki. | | any clues? There still must be some error with the installation/wrong permissions. I have two Wikis running under SuSE 9 (Intranet, can't show), and they work flawlessly. Check again or give a more detailed description of the steps you do and maybe a listing of your httpd.conf.local (usually in /etc/apache2, SuSE uses a somewhat complicated approach to integrate various pieces of config into one big file, see also the READMEs in /usr/share/doc/packages/apache2/ (especially ./README.SuSE and ./README.QUICKSTART)) and your server-logs. What's in your httpd-log (under SuSE 9 this should reside in /var/log/apache2/access_log and errors might be in /var/log/apache2/error_log)? Do a 'tail -f /var/log/apache2/access_log' as root and try to access your wiki afterwards. What is beeing appended to the log? Hope this helps. - -- Bye, Marc Saric http://www.marcsaric.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFAzXONvKxJUF29wRIRAhwSAKCoYv3gPukPXv1v9neiYg1He6Pi6gCbB/Eu 5HUdey4qU8eTDWE1/Y3ovlY= =cY62 -----END PGP SIGNATURE----- From seuchato at yahoo.de Tue Jun 15 04:13:17 2004 From: seuchato at yahoo.de (=?iso-8859-1?q?Chris=20Epicier?=) Date: Tue Jun 15 04:13:17 2004 Subject: [Moin-user] Re: Re: suse 9.0: error 403 Message-ID: <20040615111246.13817.qmail@web52107.mail.yahoo.com> Hi there Here is what I did: 15.6.04 Complete new start 1. downloading moin.1.2.2,tar.gz: done 2. extracting to /tmp/moin using "tar xzf moin-1.2.2.tgz": got a directory named moin-1.2.2 un /tmp/moin 3. cd moin-1.2.2 4. running "python setup.py install --record=install.log": ran OK, checking install.log: OK 5. created and ran the following script: " cd /usr/share/moin mkdir mywiki cp -r data mywiki cp cgi-bin/* mywiki chown -R wwwrun.www mywiki chmod a+rx mywiki/*.cgi " result: evrything seems to be where it should 6. verifying rights and owners in ./mywiki: " terra:/usr/share/moin # terra:/usr/share/moin/mywiki # ls -l insgesamt 36 drwxr-xr-x 3 wwwrun www 312 2004-06-15 12:22 . drwxr-xr-x 6 root root 200 2004-06-15 12:22 .. drwxr-xr-x 5 wwwrun www 152 2004-06-15 12:22 data -rwxr-xr-x 1 wwwrun www 1021 2004-06-15 12:22 moin.cgi -rw-r--r-- 1 wwwrun www 2446 2004-06-15 12:22 moin_config.py -rwxr-xr-x 1 wwwrun www 637 2004-06-15 12:22 moin.fcg -rw-r--r-- 1 wwwrun www 1267 2004-06-15 12:22 moin_modpy.htaccess -rw-r--r-- 1 wwwrun www 1063 2004-06-15 12:22 moin_modpy.py -rwxr-xr-x 1 wwwrun www 852 2004-06-15 12:22 moin.py -rw-r--r-- 1 wwwrun www 5299 2004-06-15 12:22 moin_twisted.py -rwxr-xr-x 1 wwwrun www 261 2004-06-15 12:22 moin_twisted.sh terra:/usr/share/moin/mywiki # ls -l ./data insgesamt 22 drwxr-xr-x 5 wwwrun www 152 2004-06-15 12:22 . drwxr-xr-x 3 wwwrun www 312 2004-06-15 12:22 .. -rw-r--r-- 1 wwwrun www 4425 2004-06-15 12:22 intermap.txt drwxr-xr-x 9 wwwrun www 264 2004-06-15 12:22 plugin drwxr-xr-x 2 wwwrun www 13960 2004-06-15 12:22 text drwxr-xr-x 2 wwwrun www 72 2004-06-15 12:22 user " Looks OK from my side 7. Creating following entries in /etc/apache2/httpd.conf.local " Alias /wiki/ "/usr/local/share/moin/htdocs/" ScriptAlias /mywiki "/usr/local/share/moin/mywiki/moin.cgi" " 8. verified that the follwong line is active in /etc/sysconfig/apache2: " terra:/etc/sysconfig # cat apache2 | grep INCLUDE APACHE_CONF_INCLUDE_FILES="/etc/apache2/httpd.conf.local" " So that's OK too, 9. restarting apache2 using "rcapache2 restart": " terra:/etc/sysconfig # rcapache2 restart Syntax OK Shutting down httpd2 (waiting for all children to terminate) done Starting httpd2 (prefork) done " 10. checking /var/log/apache2/error_log and access_log for messages indicating failure: " terra:/etc/sysconfig # tail /var/log/apache2/error_log ... [Tue Jun 15 12:35:12 2004] [notice] caught SIGTERM, shutting down [Tue Jun 15 12:35:15 2004] [warn] Init: Session Cache is not configured [hint: SSLSessionCache] [Tue Jun 15 12:35:15 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec2) [Tue Jun 15 12:35:17 2004] [notice] Apache/2.0.48 (Linux/SuSE) configured -- resuming normal operations " That looks OK from my side.. " tail /var/log/apache2/access_log ... 192.168.0.116 - - [15/Jun/2004:10:04:36 +0200] "GET /phprojekt/projects/projects.php?mode=forms&ID=941&filter=&key..." " looks OK too and we can access phprojekt too, so apache2 runs OK 11. test for mywiki at http://localhost/mywiki from Konqueror: " Access forbidden! You don't have permission to access the requested directory. There is either no index document or the directory is read-protected. If you think this is a server error, please contact the webmaster. Error 403 localhost Tue Jun 15 12:41:33 2004 Apache/2.0.48 (Linux/SuSE) " In apache2's error_log I find: " ... [Tue Jun 15 12:41:33 2004] [error] [client ::1] client denied by server configuration: /usr/local/share/moin " in the access_log: " ... ::1 - - [15/Jun/2004:12:41:33 +0200] "GET /mywiki/ HTTP/1.1" 403 1045 "-" "Mozilla/5.0 (compatible; Konqueror/3.1; Linux)" ::1 - - [15/Jun/2004:12:41:33 +0200] "GET /favicon.ico HTTP/1.1" 200 302 "-" "Mozilla/5.0 (compatible; Konqueror/3.1; Linux)" " So far the procedure as following the install.html in the tarball, now moving on to more Suse 9.0 specific information: 12. Checking the trouble shooting section: Missing permission to serve the `mywiki` directorys: So, modifying /etc/apache2/httpd.conf.local to this " #Alias /wiki/ "/usr/local/share/moin/htdocs/" #ScriptAlias /mywiki "/usr/local/share/moin/mywiki/moin.cgi" #2nd try: #Missing permission to serve the `mywiki` directory Alias /wiki/ "/usr/share/moin/htdocs/" Order deny,allow Allow from all ScriptAlias /mywiki "/usr/share/moin/mywiki/moin.cgi" Order deny,allow Allow from all " And restarting apache2 again 13. New try at http://localhost/mywiki I get the same 403 access forbidden and in apache2's error_log I find: " [Tue Jun 15 12:55:25 2004] [notice] Apache/2.0.48 (Linux/SuSE) configured -- resuming normal operations [Tue Jun 15 12:55:36 2004] [error] [client ::1] client denied by server configuration: /usr/share/moin/mywiki/moin.cgi " In apache2's access_log I find: " ... ::1 - - [15/Jun/2004:12:55:36 +0200] "GET /mywiki/ HTTP/1.1" 403 1045 "-" "Mozilla/5.0 (compatible; Konqueror/3.1; Linux)" " So, I made to the moin.cgi script. 14. checking permissions, ownership of moin.cgi: " terra:/usr/share/moin/mywiki # ls -l moin.cgi -rwxr-xr-x 1 wwwrun www 1021 2004-06-15 12:22 moin.cgi " I think that should be OK or am I wrong? ___________________________________________________________ Bestellen Sie Y! DSL und erhalten Sie die AVM "FritzBox SL" f?r 0?. Sie sparen 119? und bekommen 2 Monate Grundgeb?hrbefreiung. http://de.adsl.yahoo.com From ckacoroski at nsd.org Tue Jun 15 14:16:08 2004 From: ckacoroski at nsd.org (Chris Kacoroski) Date: Tue Jun 15 14:16:08 2004 Subject: [Moin-user] How do I create a page without a link Message-ID: <40CF66EE.70008@nsd.org> Hi, I would like to be able to create pages without creating a link to that page. These pages will be linked into the wiki via a macro that creates a list of them based on the page name. One example is a list of issues where the page names are Issue-2004-06-15. cheers, ski -- "When we try to pick out anything by itself, we find it connected to the entire universe" John Muir Chris "Ski" Kacoroski, ckacoroski at nsd.org, 425-489-6263 From mike at nospam.com Tue Jun 15 15:16:03 2004 From: mike at nospam.com (Mike Rovner) Date: Tue Jun 15 15:16:03 2004 Subject: [Moin-user] Re: How do I create a page without a link References: <40CF66EE.70008@nsd.org> Message-ID: > I would like to be able to create pages without creating a link to You have two ways: 1. Goto FindPage and in bottom input enter (new) page name and hit Go. 2. Enter new page name in the url (like http://mysite.com/mymoin/NewPage) Either way will bring you to the MissingPage for creation a new page. Enjoy. Mike From nvba at yahoo.com Tue Jun 15 23:25:01 2004 From: nvba at yahoo.com (Hattie Love) Date: Tue Jun 15 23:25:01 2004 Subject: [Moin-user] complementation jaeger grandniece aid yesterday dusky adult ejaculate coincident abolition demagnify droll chloride cavitate percussive chairwoman commit ganglion cheerful caputo dull mead lacy waitress Message-ID: <23028165196616.E5F8C3919@yahoo.com> An HTML attachment was scrubbed... URL: From marc.saric at gmx.de Wed Jun 16 02:55:12 2004 From: marc.saric at gmx.de (Marc Saric) Date: Wed Jun 16 02:55:12 2004 Subject: [Moin-user] Re: Re: suse 9.0: error 403 In-Reply-To: <20040616030544.0A4B51D0DE6@sc8-sf-uberspam1.sourceforge.net> References: <20040616030544.0A4B51D0DE6@sc8-sf-uberspam1.sourceforge.net> Message-ID: <40D018C0.90202@gmx.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 | terra:/usr/share/moin | Alias /wiki/ "/usr/local/share/moin/htdocs/" | ScriptAlias /mywiki "/usr/local/share/moin/mywiki/moin.cgi" My guess: Unless you have some links in your directory tree, this can't work. If you unpack and install MoinMoin in "/usr/share/moin", and not "/usr/local/share/moin/" as indicated by the Alias/ScriptAlias, you will get an error from Apache (which is what you reported). Either change the install-dir to "/usr/local/share/moin" or set the Alias and ScriptAlias to "/usr/share/moin". Hope this helps. - -- Bye, Marc Saric http://www.marcsaric.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFA0BjAvKxJUF29wRIRApIVAKC/JUNBpDOWbaEbCZ0gdOZNczqWkACgwnJ1 tbHwgEXW3bcu9Y2cvcMKh1A= =GmMg -----END PGP SIGNATURE----- From seuchato at yahoo.de Wed Jun 16 04:03:00 2004 From: seuchato at yahoo.de (=?iso-8859-1?q?Chris=20Epicier?=) Date: Wed Jun 16 04:03:00 2004 Subject: [Moin-user] Re: Re: suse 9.0: error 403 Message-ID: <20040616110156.22134.qmail@web52107.mail.yahoo.com> 15. Correcting following entries in /etc/apache2/httpd.conf.local " Alias /wiki/ "/usr/local/share/moin/htdocs/" ScriptAlias /mywiki "/usr/local/share/moin/mywiki/moin.cgi" " The error persist and /var/log/apache2 still shows: " [Wed Jun 16 12:53:59 2004] [notice] caught SIGTERM, shutting down [Wed Jun 16 12:54:02 2004] [warn] Init: Session Cache is not configured [hint: SSLSessionCache] [Wed Jun 16 12:54:02 2004] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec2) [Wed Jun 16 12:54:04 2004] [notice] Apache/2.0.48 (Linux/SuSE) configured -- resuming normal operations [Wed Jun 16 12:54:22 2004] [error] [client ::1] client denied by server configuration: /usr/share/moin/mywiki/moin.cgi " I don't know what could be wrong... ___________________________________________________________ Bestellen Sie Y! DSL und erhalten Sie die AVM "FritzBox SL" f?r 0?. Sie sparen 119? und bekommen 2 Monate Grundgeb?hrbefreiung. http://de.adsl.yahoo.com From ckacoroski at nsd.org Wed Jun 16 08:39:05 2004 From: ckacoroski at nsd.org (Chris Kacoroski) Date: Wed Jun 16 08:39:05 2004 Subject: [Moin-user] Re: How do I create a page without a link In-Reply-To: References: <40CF66EE.70008@nsd.org> Message-ID: <40D0696E.40505@nsd.org> Thanks Mike, ski Mike Rovner wrote: >>I would like to be able to create pages without creating a link to > > > You have two ways: > > 1. Goto FindPage and in bottom input enter (new) page name and hit Go. > > 2. Enter new page name in the url (like http://mysite.com/mymoin/NewPage) > > Either way will bring you to the MissingPage for creation a new page. > > Enjoy. > > Mike > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference > Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer > Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA > REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user -- "When we try to pick out anything by itself, we find it connected to the entire universe" John Muir Chris "Ski" Kacoroski, ckacoroski at nsd.org, 425-489-6263 From seuchato at yahoo.de Thu Jun 17 05:35:41 2004 From: seuchato at yahoo.de (=?iso-8859-1?q?Chris=20Epicier?=) Date: Thu Jun 17 05:35:41 2004 Subject: [Moin-user] Re: Re: suse 9.0: error 403 Message-ID: <20040617123446.62905.qmail@web52104.mail.yahoo.com> Following up my previous posts, I tried to look into permission related stuff 16. In ./mywiki/moin_config.py I found: " # for standalone server (see cgi-bin/moin.py) httpd_host = "localhost" httpd_port = 80 httpd_user = "nobody" httpd_docs = "/usr/share/moin/wiki/htdocs/" " Should I change httpd_user to "wwwrun"? 17. Disabling in /etc/apache2/httpd.conf the following: " # forbid access to the entire filesystem by default # # Options None # AllowOverride None # Order deny,allow # Deny from all # " still does not get mywiki working, I get in error_log: " [Thu Jun 17 13:58:58 2004] [notice] Apache/2.0.48 (Linux/SuSE) configured -- resuming normal operations [Thu Jun 17 13:59:05 2004] [error] [client ::1] File does not exist: /usr/share/moin/htdocs/FrontPage " Now searching for a /FrontPage file: nothing in /usr/share/moin/htdocs, in /usr/share, in /srv Sorry I am lost, can't resolve it anyway. My feeling is this must be something very basic, propbably apache2 configuration or modules required (mod_python is not installed). But then, I got Phprojekt and SQL-ledger running without problems. I would appreciate getting this up. Should you live in my area, I spend a beer or more beers... :-) ______________________________________________________________________ Yahoo! Messenger - Fale com seus amigos online. Instale agora! http://br.download.yahoo.com/messenger/ From yaghani at mac.com Thu Jun 17 21:58:05 2004 From: yaghani at mac.com (Yusuf Abdulghani) Date: Thu Jun 17 21:58:05 2004 Subject: [Moin-user] What to do if someone forgets password? Message-ID: <0676E594-C0E4-11D8-8F14-0003938117CA@mac.com> Hi, I am wondering what can I do if a Moin user forgets the password? How can I reset/retrieve the password? Thanks for your help in advance. Yusuf From marc.saric at gmx.de Fri Jun 18 01:27:03 2004 From: marc.saric at gmx.de (Marc Saric) Date: Fri Jun 18 01:27:03 2004 Subject: [Moin-user] Re: Re: suse 9.0: error 403 In-Reply-To: <20040618032322.E49FE1D2A48@sc8-sf-uberspam1.sourceforge.net> References: <20040618032322.E49FE1D2A48@sc8-sf-uberspam1.sourceforge.net> Message-ID: <40D2A6E0.5020002@gmx.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 moin-user-request at lists.sourceforge.net wrote: | 16. In ./mywiki/moin_config.py I found: | " | # for standalone server (see cgi-bin/moin.py) | httpd_host = "localhost" | httpd_port = 80 | httpd_user = "nobody" | httpd_docs = "/usr/share/moin/wiki/htdocs/" | " | Should I change httpd_user to "wwwrun"? If you run through apache, you won`t need this at all, I think. | 17. Disabling in /etc/apache2/httpd.conf the | following: | " | # forbid access to the entire filesystem by | default | # | # Options None | # AllowOverride None | # Order deny,allow | # Deny from all | # | " | still does not get mywiki working, I get in This should be ok. It just tells your webserver not to deliver any stuff from your directory tree unless told otherwise. This should always be on, because if not, people would be able to browse your local directory tree and probably read data. I have installed MoinMoin manually, putting cgi-scripts and stuff into the main cgi-dir (on SuSE 9 /srv/www/cgi-bin) and some subdirs, I would have to check, wether you should also add a -section similar to the one used for /srv/www/cgi-bin for the /usr/share/moin-stuff. - -- Bye, Marc Saric http://www.marcsaric.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFA0qbgvKxJUF29wRIRAtceAJwKPYKc3GDkXoj4p5ZkP+YggrfCZgCgx4m7 1/ic+s6tj3uQlaSVTrxP0l0= =ljaA -----END PGP SIGNATURE----- From Jeff.Kotula at AugustTech.com Fri Jun 18 09:15:06 2004 From: Jeff.Kotula at AugustTech.com (Kotula, Jeff) Date: Fri Jun 18 09:15:06 2004 Subject: [Moin-user] Install trouble: cannot edit pages Message-ID: I've installed moin on my Windows XP box running ISS 5.1. The front page shows up correctly and all seems well. The editing button brings up the edit window, but when I hit the "Save Changes" button I get the following error: c:\moin\Lib\site-packages\MoinMoin\request.py in run(self=) 454 else: 455 try: 456 cgitb.Hook(file=self).handle(saved_exc) 457 # was: cgitb.handler() 458 except: cgitb = , cgitb.Hook = , file undefined, self = , ).handle undefined, saved_exc = (, , ) c:\moin\Lib\site-packages\MoinMoin\wikiaction.py in do_savepage(pagename='FrontPage', request=) 699 savemsg = msg 700 except pg.SaveError, msg: 701 savemsg = msg 702 request.reset() 703 backto = request.form.get('backto', [None])[0] savemsg undefined, msg undefined c:\moin\Lib\site-packages\MoinMoin\PageEditor.py in saveText(self=, newtext='##language:en\n#pragma section-numbers off\n\n= Tes...the database in various ways\n * SyntaxReference\n', datestamp='1086505096', **kw={'comment': '', 'notify': 0, 'stripspaces': 0}) 762 763 # write the page file 764 mtime = self._write_file(newtext) 765 if self._acl_cache.has_key(self.page_name): 766 del self._acl_cache[self.page_name] mtime undefined, self = , self._write_file = >, newtext = '##language:en\n#pragma section-numbers off\n\n= Tes...the database in various ways\n * SyntaxReference\n' c:\moin\Lib\site-packages\MoinMoin\PageEditor.py in _write_file(self=, text='##language:en\n#pragma section-numbers off\n\n= Tes...the database in various ways\n * SyntaxReference\n') 679 if os.path.isfile(page_filename) and not is_deprecated and self.do_revision_backup: 680 filesys.rename(page_filename, os.path.join(config.backup_dir, 681 wikiutil.quoteFilename(self.page_name) + '.' + str(os.path.getmtime(page_filename)))) 682 683 # set in-memory content global wikiutil = , wikiutil.quoteFilename = , self = , self.page_name = 'FrontPage', str undefined, global os = , os.path = , os.path.getmtime = , page_filename = r'data\text\FrontPage' c:\moin\Lib\site-packages\MoinMoin\util\filesys.py in rename(oldname=r'data\text\FrontPage', newname=r'data\backup\FrontPage.1086505096') 41 except OSError, er: 42 pass # let os.rename give us the error (if any) 43 return os.rename(oldname, newname) 44 45 global os = , os.rename = , oldname = r'data\text\FrontPage', newname = r'data\backup\FrontPage.1086505096' OSError: [Errno 13] Permission denied __doc__ = 'OS system call failed.' __getitem__ = > __init__ = > __module__ = 'exceptions' __str__ = > args = (13, 'Permission denied') errno = 13 filename = None strerror = 'Permission denied' I have checked all the file permissions and they seem ok. The directory permissions cannot be changed from read-only though; but I don't know if this is innocuous windows-annoyance or the problem. I changed the wiki virtual directory settings in ISS to enable both Read and Write, but no change. Any help greatly appreciated. Thanks! ------------------------------------------------------------------------ Jeff Kotula August Technology Jeff.Kotula at AugustTech.com 952.259.1734 -------------- next part -------------- An HTML attachment was scrubbed... URL: From seuchato at yahoo.de Fri Jun 18 12:57:01 2004 From: seuchato at yahoo.de (=?iso-8859-1?q?Chris=20Epicier?=) Date: Fri Jun 18 12:57:01 2004 Subject: [Moin-user] Re: Re: Re: suse 9.0: error 403 In-Reply-To: <40D2A6E0.5020002@gmx.de> Message-ID: <20040618195525.91612.qmail@web52106.mail.yahoo.com> Hi again I thought I would update to Suse 9.1 and probably all trouble would vanish: in vain (apache2 would not run at first). The good news is: I can get mywiki to work, the bad news is, only when I disable the following lines in /etc/apache2/httpd.conf: " # forbid access to the entire filesystem by default # Options None # AllowOverride None # Order deny,allow # Deny from all " Now that opens apache far too much. I still have the following lines inluded as recommended for Suse: - in sysconfig/apache use: " APACHE_CONF_INCLUDE_FILES="/etc/apache2/httpd.conf.local" " and in /etc/apache2/httpd.conf.local i have: " Alias /wiki/ "/usr/share/moin/htdocs/" Order deny,allow Allow from all ScriptAlias /mywiki "/usr/share/moin/mywiki/moin.cgi" Order deny,allow Allow from all " but these lines seem to be obsolete or overriden by the instruction in httpd.conf Sorry but I have no idea how to fix this. Any help? ___________________________________________________________ Bestellen Sie Y! DSL und erhalten Sie die AVM "FritzBox SL" f?r 0?. Sie sparen 119? und bekommen 2 Monate Grundgeb?hrbefreiung. http://de.adsl.yahoo.com From seuchato at yahoo.de Sat Jun 19 08:15:06 2004 From: seuchato at yahoo.de (=?iso-8859-1?q?Chris=20Epicier?=) Date: Sat Jun 19 08:15:06 2004 Subject: [Moin-user] Re: Re: suse 9.0: error 403 Message-ID: <20040619151425.54043.qmail@web52107.mail.yahoo.com> Hi there moin is running now on Suse 9.1. I created a mywiki.conf and included it in httpd.conf. It looks as follows: Alias /wiki /usr/share/moin/htdocs Order Deny,Allow Allow from all #the following line makes calls to #http://localhost/mywiki possible ScriptAlias /mywiki /usr/share/moin/mywiki/moin.cgi #the next line treats all other calls ScriptAlias /mywiki/ /usr/share/moin/mywiki/ Order Deny,Allow Allow from all May be there is a more elegant way, but it works now :) ___________________________________________________________ Bestellen Sie Y! DSL und erhalten Sie die AVM "FritzBox SL" f?r 0?. Sie sparen 119? und bekommen 2 Monate Grundgeb?hrbefreiung. http://de.adsl.yahoo.com From geert at ams-ix.net Mon Jun 21 04:36:05 2004 From: geert at ams-ix.net (Geert Nijpels) Date: Mon Jun 21 04:36:05 2004 Subject: [Moin-user] Referencing parent in subpage Message-ID: <40D6C7C3.70506@ams-ix.net> Hi, I'm trying to reference a parent three levels up, but it doesn't seem to work. I'm trying this: [:../../../:Parent] The link I get is: Test_2fTestChild_2fTestChild2_2fTestChild3_2f_2e_2e_2f_2e_2e_2f It only seems to add 2e_2e etc. Is possible to reference parents several levels up? Regards, Geert From tw-public at gmx.de Tue Jun 22 08:38:07 2004 From: tw-public at gmx.de (Thomas Waldmann) Date: Tue Jun 22 08:38:07 2004 Subject: [Moin-user] What to do if someone forgets password? In-Reply-To: <0676E594-C0E4-11D8-8F14-0003938117CA@mac.com> References: <0676E594-C0E4-11D8-8F14-0003938117CA@mac.com> Message-ID: <40D85236.2030304@gmx.de> > I am wondering what can I do if a Moin user forgets the password? How > can I reset/retrieve the password? If he has entered a valid email address, he can reclaim the password by email. If not, only a site admin can help, by either searching the userid (see filename) so he can use that for login. From par at yahoo.com Tue Jun 22 20:14:01 2004 From: par at yahoo.com (HR) Date: Tue Jun 22 20:14:01 2004 Subject: [Moin-user] Póêîâoäèòåëü: ñoçäaíèå, ìîòèâaöèÿ è óïpaâëeíèå êoìaíäîé Message-ID: <006401c458cf$cf250180$cc0c000a@yahoo.com> An HTML attachment was scrubbed... URL: From work at infomaniak.ch Wed Jun 23 01:52:04 2004 From: work at infomaniak.ch (BRINER Cedric) Date: Wed Jun 23 01:52:04 2004 Subject: [Moin-user] anchor and lists problems Message-ID: <40D94494.1080907@infomaniak.ch> hi, I'm wondering how: - to link to a WikiPage/anchor from an other WikiPage ?? [WikiPage1#anchor1] which doesn't works - to create an anchor ?? [[Anchor(anchor_name)]] which works but introduce problem when it's followed by a bullet list for example: [[Anchor(14062004)]] 14 June 2004 * line1 word1 word2 * reboot all servers and almost every workstations -- CedricBriner which give me a strange behaviour, by puttind a CR&LF between -- and CedricBriner thanks in advance CedricBriner << yeah this is WikiName ; ) From yigal at shaw.ca Wed Jun 23 11:42:03 2004 From: yigal at shaw.ca (Yigal Rachman) Date: Wed Jun 23 11:42:03 2004 Subject: [Moin-user] Installation blues: Win XP / IIS - please help Message-ID: <5.1.0.14.0.20040623112029.023caad0@24.71.223.43> Hi, Folks: I recently installed Moin on Windows XP / IIS. I followed the installation instructions very carefully. The wiki runs, but any attempts to edit a page fail. Here is the output when I tried to save changes to the sandbox. Any ideas of which permissions need to be changed, and how to do it? Thank you in advance. Your help will be much appreciated. Yigal Rachman OSError: [Errno 13] Permission denied Please include this information in your bug reports!: Python 2.3.2 (#49, Nov 13 2003, 10:34:54) [MSC v.1200 32 bit (Intel)] - C:\Program Files\Python23\python.exe Platform: win32 (nt) MoinMoin Release 1.1 [Revision 1.178] A problem occurred while running a Python script. Here is the sequence of function calls leading up to the error, with the most recent (innermost) call first. The exception attributes are: __doc__ = 'OS system call failed.' __getitem__ = > __init__ = > __module__ = 'exceptions' __str__ = > args = (13, 'Permission denied') errno = 13 filename = None strerror = 'Permission denied' C:\Moin\Lib\site-packages\MoinMoin\PageEditor.py in _write_file(self=, text='##language:en\nPlease feel free to experiment h...= Drawing ===\ndrawing:mytest\n\n\n\nyigs test\n') 560 if os.path.isfile(page_filename) and not is_deprecated and self.do_revision_backup: 561 os.rename(page_filename, os.path.join(config.backup_dir, 562 wikiutil.quoteFilename(self.page_name) + '.' + str(os.path.getmtime(page_filename)))) global wikiutil = , global quoteFilename = undefined, self = , global page_name = undefined, global str = undefined, global os = , global path = undefined, global getmtime = undefined, page_filename = 'data\\text\\WikiSandBox' 563 else: 564 if os.name == 'nt': C:\Moin\Lib\site-packages\MoinMoin\PageEditor.py in saveText(self=, newtext='##language:en\nPlease feel free to experiment h...= Drawing ===\ndrawing:mytest\n\n\n\nyigs test\n', datestamp='1064783594', **kw={'comment': '', 'notify': 0, 'stripspaces': 0}) 639 640 # write the page file 641 mtime = self._write_file(newtext) mtime = undefined, self = , global _write_file = undefined, newtext = '##language:en\nPlease feel free to experiment h...= Drawing ===\ndrawing:mytest\n\n\n\nyigs test\n' 642 if self._acl_cache.has_key(self.page_name): 643 del self._acl_cache[self.page_name] C:\Moin\Lib\site-packages\MoinMoin\wikiaction.py in do_savepage(pagename='WikiSandBox', request=) 591 else: 592 savemsg = pg.saveText(savetext, datestamp, 593 stripspaces=rstrip, notify=notify, comment=comment) global stripspaces = undefined, rstrip = 0, notify = 0, comment = '' 594 request.reset() 595 backto = request.form.getvalue('backto', None) C:\Moin\Lib\site-packages\MoinMoin\cgimain.py in run(properties={}) 210 else: 211 try: 212 cgitb.handler() cgitb = , handler = 213 except: 214 cgi.print_exception(*saved_exc) -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.708 / Virus Database: 464 - Release Date: 6/18/04 From jimbobclark at ukonline.co.uk Wed Jun 23 16:15:09 2004 From: jimbobclark at ukonline.co.uk (Jim Clark) Date: Wed Jun 23 16:15:09 2004 Subject: [Moin-user] Tabbed action theme Message-ID: <40DA0EBF.8010604@ukonline.co.uk> Hi, I'm looking into making a theme with actions as CSS style tabs, similar to the format used with wikipedia now. I'm not a CSS expert, so I looked around for inspiration and found this: http://unraveled.com/projects/css_tabs/css_tabs.html This uses a class attribute of the tag to determine the currently active tab (action) and sets up the formatting accordingly. I managed most things by making a new theme.py and .css file (which I'll add to the moinmoin wiki if they work correctly), however I found myself doing some extra hacking within the main code to get the results I was looking for. My change was in wikiutil.py where I added the code: if request.form.has_key('action'): bodyattr += ' class=' + request.form['action'][0] else: bodyattr += ' class=view' before the emission of the tag. With this in place, the CSS tab selection seemed to all be working. Now this is ugly and I'm wondering if there's a correct way I could manage the same effects - any thoughts? Jim From yaghani at mac.com Wed Jun 23 16:18:04 2004 From: yaghani at mac.com (Yusuf Abdulghani) Date: Wed Jun 23 16:18:04 2004 Subject: [Moin-user] What to do if someone forgets password? In-Reply-To: <40D85236.2030304@gmx.de> References: <0676E594-C0E4-11D8-8F14-0003938117CA@mac.com> <40D85236.2030304@gmx.de> Message-ID: <721A0533-C56B-11D8-A4EE-0050E4506249@mac.com> Thanks for info. I've got it to work. Yusuf On Jun 22, 2004, at 8:37 AM, Thomas Waldmann wrote: >> I am wondering what can I do if a Moin user forgets the password? How >> can I reset/retrieve the password? > > If he has entered a valid email address, he can reclaim the password > by email. > > If not, only a site admin can help, by either searching the userid > (see filename) so he can use that for login. > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital > self defense, top technical experts, no vendor pitches, unmatched > networking opportunities. Visit www.blackhat.com > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user > From cchan at spikesource.com Wed Jun 23 21:35:02 2004 From: cchan at spikesource.com (Christopher Chan) Date: Wed Jun 23 21:35:02 2004 Subject: [Moin-user] anchor and lists problems In-Reply-To: <40D94494.1080907@infomaniak.ch> Message-ID: <001b01c459a3$ecee7b90$670aa8c0@cl600amg> To use anchor to another page, I found that you have to use wiki:Self: [wiki:Self:FrontPage/InformationBase#docs Documents] As for the bullet problem, you can fix it by updating with an closing MoinMoin/formatter/text_html.py The diff looks like: $ diff text_html.py text_html.py~ 99c99 < return '' % id --- > return '' % id -----Original Message----- From: moin-user-admin at lists.sourceforge.net [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of BRINER Cedric Sent: Wednesday, June 23, 2004 1:52 AM To: MoinMoin Subject: [Moin-user] anchor and lists problems hi, I'm wondering how: - to link to a WikiPage/anchor from an other WikiPage ?? [WikiPage1#anchor1] which doesn't works - to create an anchor ?? [[Anchor(anchor_name)]] which works but introduce problem when it's followed by a bullet list for example: [[Anchor(14062004)]] 14 June 2004 * line1 word1 word2 * reboot all servers and almost every workstations -- CedricBriner which give me a strange behaviour, by puttind a CR&LF between -- and CedricBriner thanks in advance CedricBriner << yeah this is WikiName ; ) From dahlman at csi.se Thu Jun 24 07:03:04 2004 From: dahlman at csi.se (Fredrik Dahlman) Date: Thu Jun 24 07:03:04 2004 Subject: [Moin-user] XMLRPC Problems Message-ID: <40DAFAEC.16453.8540E1@localhost> Hi, I'am trying to access the wiki by XMLRPC from java, But I can't get it to work. Is there anything I need todo to activate the XMLRPC interface? Which URL should I use for the XMLRPC request? I'am using: Python : 2.3.4 Moinmoin: Release 1.2.2 [Revision 1.185] WinXp IIS TIA Fredrik Dahlman -------------- next part -------------- An HTML attachment was scrubbed... URL: From work at infomaniak.ch Thu Jun 24 07:04:08 2004 From: work at infomaniak.ch (BRINER Cedric) Date: Thu Jun 24 07:04:08 2004 Subject: [Moin-user] anchor and lists problems In-Reply-To: <001b01c459a3$ecee7b90$670aa8c0@cl600amg> References: <001b01c459a3$ecee7b90$670aa8c0@cl600amg> Message-ID: <40DADF00.7070508@infomaniak.ch> That was it, now it rocks ! Thank you >To use anchor to another page, I found that you have to use wiki:Self: >[wiki:Self:FrontPage/InformationBase#docs Documents] > >As for the bullet problem, you can fix it by updating with an closing >MoinMoin/formatter/text_html.py > >The diff looks like: >$ diff text_html.py text_html.py~ >99c99 >< return '' % id >--- > > >> return '' % id >> >> > >-----Original Message----- >From: moin-user-admin at lists.sourceforge.net >[mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of BRINER Cedric >Sent: Wednesday, June 23, 2004 1:52 AM >To: MoinMoin >Subject: [Moin-user] anchor and lists problems > >hi, > >I'm wondering how: > - to link to a WikiPage/anchor from an other WikiPage ?? > [WikiPage1#anchor1] which doesn't works > - to create an anchor ?? [[Anchor(anchor_name)]] > which works but introduce problem when it's followed by a bullet >list > >for example: > >[[Anchor(14062004)]] >14 June 2004 > * line1 word1 word2 > * reboot all servers and almost every workstations -- CedricBriner > >which give me a strange behaviour, by puttind a CR&LF between -- and >CedricBriner > >thanks in advance > >CedricBriner << yeah this is WikiName ; ) > > > > > > From yahs at earthlink.net Thu Jun 24 16:55:01 2004 From: yahs at earthlink.net (Geoff C) Date: Thu Jun 24 16:55:01 2004 Subject: [Moin-user] How to link to anchor in page one level above? Message-ID: I think I have tried every possible way to link to an anchor in the page one level above, but hopefully not! What I'm looking for is [:..#anchor: goHere]. I can get to the previous page with ["../" goHere], but cannot figure out how to go to the anchor. Have tried many variations of colons and quotes. I do not want to identify the page like [wiki:Self:HomePage/Subpage1#anchor goHere] because then I lose the ability to move pages higher or lower in the hierarchy without fixing all the links (which is a great advantage of the slashed subpages). Thank you, - Geoff From yigal at shaw.ca Thu Jun 24 19:39:01 2004 From: yigal at shaw.ca (Yigal Rachman) Date: Thu Jun 24 19:39:01 2004 Subject: [Moin-user] Win XP / IIS - performance problems Message-ID: <5.1.0.14.0.20040624193210.023dfbd0@24.71.223.43> Hi, Folks: I have MoinMoin up and running on Windows XP / IIS. It works fine, but is excruciatingly slo-o-ow. On an idle 1 GHz PC, it takes several seconds to render a page. I have noticed that searches take approximately 0.1 sec to do ( this is the time Moin posts on the page with the results). This suggests that, once running, MoinMoin is pretty snappy. I suspect that the problem lies with Windows taking forever to start python for every request, because python is a .exe rather than a .dll. Is there anything I can do about this? As always, I welcome any and all suggestions. Yigal Rachman -------------- next part -------------- --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.708 / Virus Database: 464 - Release Date: 6/18/04 From N.F.Brooks at exeter.ac.uk Fri Jun 25 06:14:02 2004 From: N.F.Brooks at exeter.ac.uk (Neil Brooks) Date: Fri Jun 25 06:14:02 2004 Subject: [Moin-user] Win XP / IIS - performance problems In-Reply-To: <5.1.0.14.0.20040624193210.023dfbd0@24.71.223.43> References: <5.1.0.14.0.20040624193210.023dfbd0@24.71.223.43> Message-ID: <9F6B5938AB2A959F48CC935C@D8KY5D0J.ex.ac.uk> I run MoinMoin on XP with the Twisted Web server running as a service. It is much faster than IIS which I previously used. Investigate that option on the MoinMoin wiki. Neil --On 24/06/2004 19:40 -0700 Yigal Rachman wrote: > Hi, Folks: > > I have MoinMoin up and running on Windows XP / IIS. It works fine, but > is excruciatingly slo-o-ow. On an idle 1 GHz PC, it takes several > seconds to render a page. I have noticed that searches take > approximately 0.1 sec to do ( this is the time Moin posts on the page > with the results). This suggests that, once running, MoinMoin is pretty > snappy. I suspect that the problem lies with Windows taking forever to > start python for every request, because python is a .exe rather than a > .dll. Is there anything I can do about this? > > As always, I welcome any and all suggestions. > > Yigal Rachman -- Neil Brooks Small Systems Team Leader IT Services University of Exeter Tel: +44 (0)1392 26 3923 From tw-public at gmx.de Mon Jun 28 04:05:34 2004 From: tw-public at gmx.de (Thomas Waldmann) Date: Mon Jun 28 04:05:34 2004 Subject: [Moin-user] anchor and lists problems In-Reply-To: <001b01c459a3$ecee7b90$670aa8c0@cl600amg> References: <001b01c459a3$ecee7b90$670aa8c0@cl600amg> Message-ID: <40DFFB03.4060902@gmx.de> > < return '' % id > --- >> return '' % id Ooops. Is now fixed in moin--main--1.2 tla archive. Thanks for the patch. From pf_moore at yahoo.co.uk Tue Jun 29 07:12:01 2004 From: pf_moore at yahoo.co.uk (Paul Moore) Date: Tue Jun 29 07:12:01 2004 Subject: [Moin-user] Trying to write a "quick comment" macro Message-ID: I'm trying to write a macro which allows users to insert a "quick comment" on a page. Basically, the macro puts a textarea on the page, into which the user types, and a "Submit" button, which appends the contents of the textarea to the page content. Displaying the form is easy - I got that working in a few minutes. But I'm at a loss as to where to look for hints on how to code a form action. Can anyone point me at some sample code, documentation, or other hints on how I might do this? I could put a request into the MoinMoin Macro Market page, but I'd rather try to implement it myself, if only for the learning experience... Thanks, Paul. From R.Bauer at fz-juelich.de Wed Jun 30 23:46:03 2004 From: R.Bauer at fz-juelich.de (Reimar Bauer) Date: Wed Jun 30 23:46:03 2004 Subject: [Moin-user] bold and teletype Message-ID: <40E3B2F2.5000807@fz-juelich.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dear all if I use {{{ text }}} this is always bold and teletype. Is it possible to have it not bold but teletype? Reimar - -- Reimar Bauer Institut fuer Stratosphaerische Chemie (ICG-I) Forschungszentrum Juelich email: R.Bauer at fz-juelich.de - ------------------------------------------------------------------- ~ a IDL library at ForschungsZentrum Juelich ~ http://www.fz-juelich.de/icg/icg-i/idl_icglib/idl_lib_intro.html =================================================================== -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2-rc1-SuSE (GNU/Linux) iD8DBQFA47Lw5aOc3Q9hk/kRAsOuAJ4868M6p3kPMcTZX2c9y2oIz4qq1QCgjbHF wDVeF6x+8l5i2myVlDeU4Uo= =wCAp -----END PGP SIGNATURE-----