From jvilhena at softhome.net Sat Mar 1 12:25:13 2003 From: jvilhena at softhome.net (jvilhena) Date: Sat Mar 1 12:25:13 2003 Subject: [Moin-user] How do we make links to anchors ? In-Reply-To: References: Message-ID: Hello ? Consider we have the anchor [#anchor1 sometext] in the MoinWikiPage caled TestAnchor. 1 - How do we link to it in the same MoinWikiPage, i.e., in TestAnchor ? 2 - How do we link to it from another MoinWikiPage ? ? -- Best Regards jvilhena From joshua_rodman at yahoo.com Tue Mar 4 00:36:10 2003 From: joshua_rodman at yahoo.com (Joshua Rodman) Date: Tue Mar 4 00:36:10 2003 Subject: [Moin-user] port disappears on certain urls -> non-default port, HTTP_HOST = varying Message-ID: <20030304083543.67495.qmail@web12703.mail.yahoo.com> I have a possibly unusual config. I'm running thttpd, and have told it to respond to whatever server name it happens to receive. Thus, http://myserver.mydomain.com works, as does http://localhost (in the right circumstances). I've got it running on a nonstandard port though, so the following are the real urls: http://myserver.mydomain.com:81, http://localhost:81 HTTP_HOST gets sent as myserver.mydomain.com and localhost, respectively, which appears to be acceptable for the HTTP standard, despite the nonstandard port number. SERVER_NAME is set to 'myserver', which may be wrong, but I believe is not relevant. SERVER_PORT is set to '81'. Some urls, like a few involving the AttachFile feature, make use of the getBaseURL and/or getQualifiedURL methods in the webapi module. On my system this interface returns urls like: http://myserver.mydomain.com/blahblah/ or http://localhost/blahblah/ Since these head back to port 80, they don't work. The relvant code in getQualifiedURL is as follows: def getQualifiedURL(uri = None): [...] schema, stdport = (('http', '80'), ('https', '443'))[isSSL()] host = os.environ.get('HTTP_HOST') if not host: host = os.environ.get('SERVER_NAME', 'localhost') port = os.environ.get('SERVER_PORT', '80') if port != stdport: host = host + ":" + port result = "%s://%s" % (schema, host) [...] Since HTTP_HOST is set, this code will return SCHEMA://HTTP_HOST/uri eg http://localhost/blahblah it seems a correct implementation must test HTTP_HOST to see if a port specification was given (a colon followed by the port data), and add the :SERVER_PORT if it is not present, in order to maintain connectivity. My quick and possibly incorrect hack was: <<<<<<<<<<<<<<<<<<<<<<<<<<<<< port = os.environ.get('SERVER_PORT', '80') if port != stdport: host = host + ":" + port <<<<<<<<<<<<<<<<<<<<<<<<<<<<< >>>>>>>>>>>>>>>>>>>>>>>>>>>>> if not ':' in host: port = os.environ.get('SERVER_PORT', '80') if port != stdport: host = host + ":" + port >>>>>>>>>>>>>>>>>>>>>>>>>>>>> -josh __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ From crosseyedpenguin at yahoo.com Tue Mar 4 09:02:14 2003 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Tue Mar 4 09:02:14 2003 Subject: [Moin-user] port disappears on certain urls -> non-default port, HTTP_HOST = varying In-Reply-To: <20030304083543.67495.qmail@web12703.mail.yahoo.com> Message-ID: <20030304170103.75907.qmail@web14311.mail.yahoo.com> --- Joshua Rodman wrote: > I have a possibly unusual config. > I'm running thttpd, and have told it to respond to whatever > server name it happens to receive. > > Thus, http://myserver.mydomain.com works, as does http://localhost > (in the right circumstances). > > I've got it running on a nonstandard port though, so the following > are the real urls: http://myserver.mydomain.com:81, > http://localhost:81 > > HTTP_HOST gets sent as myserver.mydomain.com and localhost, > respectively, > which appears to be acceptable for the HTTP standard, despite > the nonstandard port number. > > SERVER_NAME is set to 'myserver', which may be wrong, but I believe > is not relevant. > > SERVER_PORT is set to '81'. > > Some urls, like a few involving the AttachFile feature, make use > of the getBaseURL and/or getQualifiedURL methods in the webapi > module. On my system this interface returns urls like: > > http://myserver.mydomain.com/blahblah/ > > or > > http://localhost/blahblah/ > > Since these head back to port 80, they don't work. > > The relvant code in getQualifiedURL is as follows: > I also use a non-standard port (55555 for security reasons) and thought I would have the same problem, but am unable to reproduce it using Apache and the current MoinMoin CVS. I uploaded a logo.jpg to WikiSandBox, and refered to it as: attachment:logo.jpg and on another page: attachment:WikiSandBox/logo.jpg Both reproduce the requested image. Perhaps a thttpd problem or I don't understand how to reproduce it? Roger haase __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ From RWilcox at olenick.com Tue Mar 4 09:14:09 2003 From: RWilcox at olenick.com (Ryan Wilcox) Date: Tue Mar 4 09:14:09 2003 Subject: [Moin-user] port disappears on certain urls -> non-default port, HTTP_HOST = varying Message-ID: Joshua, I to have tried to reproduce this error using Apache and MoinMoin 1.0 with no luck (also on random port). Is there part of your basic config that I am missing other than thttpd? Ryan Wilcox --- Joshua Rodman wrote: > I have a possibly unusual config. > I'm running thttpd, and have told it to respond to whatever > server name it happens to receive. > > Thus, http://myserver.mydomain.com works, as does http://localhost > (in the right circumstances). > > I've got it running on a nonstandard port though, so the following > are the real urls: http://myserver.mydomain.com:81, > http://localhost:81 > > HTTP_HOST gets sent as myserver.mydomain.com and localhost, > respectively, > which appears to be acceptable for the HTTP standard, despite > the nonstandard port number. > > SERVER_NAME is set to 'myserver', which may be wrong, but I believe > is not relevant. > > SERVER_PORT is set to '81'. > > Some urls, like a few involving the AttachFile feature, make use > of the getBaseURL and/or getQualifiedURL methods in the webapi > module. On my system this interface returns urls like: > > http://myserver.mydomain.com/blahblah/ > > or > > http://localhost/blahblah/ > > Since these head back to port 80, they don't work. > > The relvant code in getQualifiedURL is as follows: > I also use a non-standard port (55555 for security reasons) and thought I would have the same problem, but am unable to reproduce it using Apache and the current MoinMoin CVS. I uploaded a logo.jpg to WikiSandBox, and refered to it as: attachment:logo.jpg and on another page: attachment:WikiSandBox/logo.jpg Both reproduce the requested image. Perhaps a thttpd problem or I don't understand how to reproduce it? Roger haase __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Moin-user mailing list Moin-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/moin-user From joshua_rodman at yahoo.com Tue Mar 4 11:00:12 2003 From: joshua_rodman at yahoo.com (Joshua Rodman) Date: Tue Mar 4 11:00:12 2003 Subject: [Moin-user] port disappears on certain urls -> non-default port, HTTP_HOST = varying In-Reply-To: Message-ID: <20030304185935.92282.qmail@web12708.mail.yahoo.com> > > --- Joshua Rodman wrote: > > > HTTP_HOST gets sent as myserver.mydomain.com and localhost, > > > respectively, > > > which appears to be acceptable for the HTTP standard, despite > > > the nonstandard port number. > > > > > > SERVER_NAME is set to 'myserver', which may be wrong, but I believe > > > is not relevant. > > > > > > SERVER_PORT is set to '81'. > --- Roger Haase wrote: > > I also use a non-standard port (55555 for security reasons) and thought > > I would have the same problem, but am unable to reproduce it using > > Apache and the current MoinMoin CVS. [...] > Both reproduce the requested image. Perhaps a thttpd problem [...] --- Ryan Wilcox wrote: > I to have tried to reproduce this error using Apache [...] > Is there part of your basic config that I am missing other than thttpd? Clearly the logic bug would have been found more rapidly if it occurred on Apache. It may be that Apache adds the port number to the HTTP_HOST environment variable, whether the client sends it or not. As I'm not running Apache, I can't rapidly test this. If you're interested, verify the values of HTTP_HOST, SERVER_HOST, and SERVER_PORT for your browser/server/CGI configuration. This is really an issue with only these three environment variables in the CGI environment, not anything more complicated regarding webserver internals. According to the specification, thttpd seems to be doing everything correctly. Apache likely is also behaving in a reasonable manner. So it shouldn't affect you if you use Apache, but it might if you use an alternate httpd. Given that Apache is big, has periodic security problems, and has a larger performance load, it does not fit my needs. -josh __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ From jh at web.de Tue Mar 4 11:22:05 2003 From: jh at web.de (Juergen Hermann) Date: Tue Mar 4 11:22:05 2003 Subject: [Moin-user] port disappears on certain urls -> non-default port, HTTP_HOST = varying In-Reply-To: <20030304083543.67495.qmail@web12703.mail.yahoo.com> Message-ID: On Tue, 4 Mar 2003 00:35:43 -0800 (PST), Joshua Rodman wrote: >HTTP_HOST gets sent as myserver.mydomain.com and localhost, respectively, >which appears to be acceptable for the HTTP standard, despite >the nonstandard port number. No, this is not acceptable, and the source of your problem. Either your browser or your server has a bug. Ciao, J?rgen From pascal.bauermeister at smartdata.ch Wed Mar 5 03:07:08 2003 From: pascal.bauermeister at smartdata.ch (Pascal) Date: Wed Mar 5 03:07:08 2003 Subject: [Moin-user] Cross references Message-ID: <1046862399.24993.31.camel@amazon> Hello, I would like to generate a page automatically from info found on other pages. Typically, from multiple meeting minutes, I would like to auto-generate a list of action items per person. I was thinking of some kind of search where I could combine a title search and a full-text search. The action items would be written with a certain syntax, such as a line like: * INITIALS>>text... Unfortunately: * AFAIK one cannot do a combined search (titel and full-text) * The search results display a very short context (not the whole line) Is it possible to solve the above, or is there a better method ? Thanks a lot. Pascal From jh at web.de Wed Mar 5 06:06:16 2003 From: jh at web.de (Juergen Hermann) Date: Wed Mar 5 06:06:16 2003 Subject: [Moin-user] Cross references In-Reply-To: <1046862399.24993.31.camel@amazon> Message-ID: On 05 Mar 2003 12:06:39 +0100, Pascal wrote: >I would like to generate a page automatically from info found on other >pages. Typically, from multiple meeting minutes, I would like to >auto-generate a list of action items per person. > >I was thinking of some kind of search where I could combine a title >search and a full-text search. The action items would be written with a >certain syntax, such as a line like: > * INITIALS>>text... > >Unfortunately: > * AFAIK one cannot do a combined search (titel and full-text) > * The search results display a very short context (not the whole > line) > >Is it possible to solve the above, or is there a better method ? Well, write a custom macro combining the existing search macros, or look at the macro market that already contains similar ones. The standard macros simply cannot cater for every special need. Ciao, J?rgen From pascal.bauermeister at smartdata.ch Wed Mar 5 10:16:08 2003 From: pascal.bauermeister at smartdata.ch (Pascal) Date: Wed Mar 5 10:16:08 2003 Subject: [Moin-user] Cross references In-Reply-To: References: Message-ID: <1046888113.30027.4.camel@amazon> On Wed, 2003-03-05 at 15:05, Juergen Hermann wrote: > On 05 Mar 2003 12:06:39 +0100, Pascal wrote: > > >I would like to generate a page automatically from info found on other > >pages. Typically, from multiple meeting minutes, I would like to > >auto-generate a list of action items per person. > > > >I was thinking of some kind of search where I could combine a title > >search and a full-text search. The action items would be written with > a > >certain syntax, such as a line like: > > * INITIALS>>text... > > > >Unfortunately: > > * AFAIK one cannot do a combined search (titel and full-text) > > * The search results display a very short context (not the whole > > line) > > > >Is it possible to solve the above, or is there a better method ? > > Well, write a custom macro combining the existing search macros, or > look at the macro market that already contains similar ones. The > standard macros simply cannot cater for every special need. Thank you. But, pardon me, how do I make the new macro available ? I have created a file in the macros directory (/usr/lib/python2.1/site- packages/MoinMoin/macro), but the macro is not available (does not appear with [[SystemInfo]]) Thanks. Pascal From ntrout at rockstarvancouver.com Wed Mar 5 10:45:09 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Wed Mar 5 10:45:09 2003 Subject: [Moin-user] Cross references In-Reply-To: <41647A6597ADD611803C005004D19FD23DD4AA@MAILMAN> Message-ID: <41647A6597ADD611803C005004D19FD23970ED@MAILMAN> > On Behalf Of Pascal > Sent: March 5, 2003 3:07 AM > Subject: [Moin-user] Cross references > I would like to generate a page automatically from info found on other > pages. Typically, from multiple meeting minutes, I would like to > auto-generate a list of action items per person. > > I was thinking of some kind of search where I could combine a title > search and a full-text search. The action items would be > written with a > certain syntax, such as a line like: > * INITIALS>>text... > > Unfortunately: > * AFAIK one cannot do a combined search (titel and full-text) > * The search results display a very short context (not the whole > line) > > Is it possible to solve the above, or is there a better method ? I have a similar sort of problem, I'd like to manage sets of data like this. I'm writing a wiki database macro which allows you to search tables with queries like SQL. eg. ProgrammerQueries page: == alljobs == {{{ select || $(name) || $(due_date) || $(job_desc) || titles ||<#eeeeee> '''Programmer''' ||<#eeeeee> '''Due''' ||<#eeeeee> '''Job''' || from ProgrammerJobs where "$(name)"=="$(1)" }}} ProgrammerJobs page: || name || job_desc || due_date || || nick || Finish the wiki database macro || 15-mar-03 || etc. To create a table containing all my jobs I do: [[WikiDb(ProgrammerQueries,alljobs,nick)]] You could store your data in table and search them fairly easily. I will release the macro when it is a little more complete. Please note, a macro like this is probably only suitable for a private wiki/intranet until the ACLs are implemented. Nick From altis at semi-retired.com Wed Mar 5 20:45:18 2003 From: altis at semi-retired.com (Kevin Altis) Date: Wed Mar 5 20:45:18 2003 Subject: [Moin-user] request to help fix RecentChanges on python.org Message-ID: The RecentChanges page on the python.org wiki doesn't work. It doesn't look like anyone managing the site knows where to look to fix it. http://www.python.org/cgi-bin/moinmoin/RecentChanges http://www.python.org/cgi-bin/moinmoin/RecentChanges?action=rss_rc Could someone help Skip or the other python.org admins to get this working? Thanks, ka From brian at dorseys.org Wed Mar 5 21:47:07 2003 From: brian at dorseys.org (Brian Dorsey) Date: Wed Mar 5 21:47:07 2003 Subject: [Moin-user] request to help fix RecentChanges on python.org In-Reply-To: References: Message-ID: <20030306055957.GA20325@dorseys.org> It seems to be acting as if there is a bookmark set in the future for non-logged in users. (and even defaulting that way when you first log in) Specifically, when I first viewed the page before logging in, no changes were listed. There was a small note "[Bookmark reached]" After creating an account, these two lines showed up: Update my bookmark timestamp (currently set to 2003-03-03 23:46:08) Show all changes in the last 1 | 3 | 7 | 14 | 30 | 90 days But, still no content. Once I clicked on one of the links to show the last few days, I got a full normal listing. I'm not sure if that is useful enough to help someone track it down, or? Take care, -Brian On Wed, Mar 05, 2003 at 08:46:53PM -0800, Kevin Altis wrote: > The RecentChanges page on the python.org wiki doesn't work. It doesn't look > like anyone managing the site knows where to look to fix it. > > http://www.python.org/cgi-bin/moinmoin/RecentChanges > > http://www.python.org/cgi-bin/moinmoin/RecentChanges?action=rss_rc > > Could someone help Skip or the other python.org admins to get this working? > > Thanks, > > ka > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user From skip at pobox.com Wed Mar 5 23:11:08 2003 From: skip at pobox.com (Skip Montanaro) Date: Wed Mar 5 23:11:08 2003 Subject: [Moin-user] Re: request to help fix RecentChanges on python.org In-Reply-To: References: Message-ID: <15974.62548.932101.945159@montanaro.dyndns.org> Kevin> The RecentChanges page on the python.org wiki doesn't work. It Kevin> doesn't look like anyone managing the site knows where to look to Kevin> fix it. I poked around a bit and found this perhaps relevant chunk of code in wikimacro.py: if 0 and wikixml.ok: # !!! currently switched off (not implemented) img = self.formatter.image(width=36, height=14, hspace=2, align="right", border=0, src=config.url_prefix+"/img/moin-rss.gif", alt="[RSS]") index = index + self.formatter.url( wikiutil.quoteWikiname(self.formatter.page.page_name) + "?action=rss_ti", img, unescaped=1) Creosote seems to be running the latest version of MoinMoin (1.1), so this restriction would appear to be current. Juergen Hermann is the MoinMoin author. I've cc'd him. He can provide a definitive statement about whether RSS generation should be available or not, and if not, if he plans to enable it anytime soon. -- Skip Montanaro skip at pobox.com http://www.musi-cal.com/ From robert.groenewegen at zonnet.nl Thu Mar 6 00:17:15 2003 From: robert.groenewegen at zonnet.nl (Robert Groenewegen) Date: Thu Mar 6 00:17:15 2003 Subject: [Moin-user] Cross references In-Reply-To: <41647A6597ADD611803C005004D19FD23970ED@MAILMAN> References: <41647A6597ADD611803C005004D19FD23DD4AA@MAILMAN> Message-ID: <5.1.1.6.0.20030306090804.00a7b1b8@pop3.zonnet.nl> Hi Nick, Can you please publish your "draft" macro? I would like to write a macro for a private wiki that reads from a database but do not really know where to start. Maybe your macro can put me on the right track ... Of course you can send it to me directly too (mailto://robert.groenewegen at zonnet.nl). Thanks, in advance. Bye, Robert At 10:44 5-3-2003 -0800, Nick Trout wrote: > > On Behalf Of Pascal > > Sent: March 5, 2003 3:07 AM > > Subject: [Moin-user] Cross references > > I would like to generate a page automatically from info found on other > > pages. Typically, from multiple meeting minutes, I would like to > > auto-generate a list of action items per person. > > > > I was thinking of some kind of search where I could combine a title > > search and a full-text search. The action items would be > > written with a > > certain syntax, such as a line like: > > * INITIALS>>text... > > > > Unfortunately: > > * AFAIK one cannot do a combined search (titel and full-text) > > * The search results display a very short context (not the whole > > line) > > > > Is it possible to solve the above, or is there a better method ? > >I have a similar sort of problem, I'd like to manage sets of data like >this. I'm writing a wiki database macro which allows you to search >tables with queries like SQL. > >eg. ProgrammerQueries page: > >== alljobs == >{{{ > select || $(name) || $(due_date) || $(job_desc) || > titles ||<#eeeeee> '''Programmer''' ||<#eeeeee> '''Due''' >||<#eeeeee> '''Job''' || > from ProgrammerJobs > where "$(name)"=="$(1)" >}}} > >ProgrammerJobs page: > >|| name || job_desc || due_date || >|| nick || Finish the wiki database macro || 15-mar-03 || >etc. > >To create a table containing all my jobs I do: > > [[WikiDb(ProgrammerQueries,alljobs,nick)]] > >You could store your data in table and search them fairly easily. I will >release the macro when it is a little more complete. Please note, a >macro like this is probably only suitable for a private wiki/intranet >until the ACLs are implemented. > >Nick > > > > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Moin-user mailing list >Moin-user at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/moin-user From tw at waldmann-edv.de Thu Mar 6 02:13:06 2003 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Thu Mar 6 02:13:06 2003 Subject: [Moin-user] request to help fix RecentChanges on python.org References: Message-ID: <3E671E59.8090802@waldmann-edv.de> > The RecentChanges page on the python.org wiki doesn't work. It doesn't look > like anyone managing the site knows where to look to fix it. > > http://www.python.org/cgi-bin/moinmoin/RecentChanges They are running a CVS version with a slight bug. Anonymous users (not logged in) will see an empty RecentChanges. Known users (logged in) have no problems. "cvs update" should fix this. mfg Thomas From hendri at cs.utwente.nl Thu Mar 6 06:10:10 2003 From: hendri at cs.utwente.nl (Hendri Hondorp) Date: Thu Mar 6 06:10:10 2003 Subject: [Moin-user] Installation on Solaris 8: No Editing result Message-ID: <3E67567E.8070704@cs.utwente.nl> Hello World, I have installed the software on Solaris 8. When I try to edit the wiki-pages nothing happened. I can not find any message (errorlogs webserver-logs). The degault 'diff' is not the Gnu one, but I have set the system PATH to find it. Also I have changed the variable external_diff (in wiki/lib/python/MoinMoin/config.py) to: 'external_diff': '/Gnu/bin/diff', Nothing. Is it possible to debug something? Please email me back, because I do not read this mailling-list often: hendri at XP.utwente.nl (change XP to cs, because of spam :-) Version information: test.cgi gives: MoinMoin CGI Diagnosis ====================== Package "MoinMoin" sucessfully imported. Release 0.11 Revision 1.150 Checking directories... data directory tests OK (set to '/home/parlevink/parleweb/wiki/data') text directory tests OK (set to '/home/parlevink/parleweb/wiki/data/text') user directory tests OK (set to '/home/parlevink/parleweb/wiki/data/user') backup directory tests OK (set to '/home/parlevink/parleweb/wiki/data/backup') Found an external diff: "diff - GNU diffutils version 2.7" Server Environment: AUTH_TYPE = 'Basic' HTTP_KEEP_ALIVE = '300' SCRIPT_FILENAME = '/home/parlevink/parleweb/cgi-bin/wiki/test.cgi' SERVER_SOFTWARE = 'Apache/1.3.27 (Unix) ApacheJServ/1.1.2 mod_ssl/2.8.11 OpenSSL/0.9.6g PHP/4.3.1 PHP/3.0.18' SERVER_ADMIN = 'webmaster at cs.utwente.nl.' SCRIPT_NAME = '/cgi-par/wiki/test.cgi' SERVER_SIGNATURE = '
Apache/1.3.27 Server at parlevink.cs.utwente.nl Port 80
\n' REQUEST_METHOD = 'GET' HTTP_HOST = 'parlevink.cs.utwente.nl' REMOTE_USER = 'XXXXXXXX' SERVER_PROTOCOL = 'HTTP/1.1' QUERY_STRING = '' PATH = '/Gnu/bin:/usr/sbin:/usr/bin:/usr/openwin/bin:/usr/openwin/contrib/bin:/opt/SUNWdiag/bin:/opt/SUNWdxlib/bini:/opt/SUNWgmfu/bin:/opt/SUNWgt/bin:/opt/SUNWguide/bin:/opt/SUNWmfwm/bin:/opt/SUNWspro/bin:/opt/SUNWwabi/bin:/usr/ccs/bin:/usr/ucb:/local/bin:/MSman/bin:/Network/bin:/opt/SUNWvxva/bin:/usr/local/samba/bin:/var/yp/bin:/Utils/bin:/Gnu/bin:/local/bin:/Web/bin:/Web/apache/bin' REMOTE_ADDR = '130.89.10.126' _ = '/Utils/bin/python' REQUEST_URI = '/cgi-par/wiki/test.cgi' HTTP_ACCEPT = 'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,*/*;q=0.1' HTTP_ACCEPT_CHARSET = 'ISO-8859-1, utf-8;q=0.66, *;q=0.66' HTTP_USER_AGENT = 'Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.0.1) Gecko/20020920 Netscape/7.0' HTTP_CONNECTION = 'keep-alive' SERVER_NAME = 'parlevink.cs.utwente.nl' REMOTE_PORT = '62837' GATEWAY_INTERFACE = 'CGI/1.1' HTTP_ACCEPT_LANGUAGE = 'en-us, en;q=0.50' PWD = '/home/parlevink/parleweb/cgi-bin/wiki' SERVER_PORT = '80' TZ = 'MET' REMOTE_HOST = 'dimple' HTTP_ACCEPT_ENCODING = 'gzip, deflate, compress;q=0.9' SERVER_ADDR = '130.89.10.26' DOCUMENT_ROOT = '/Web/sites/parlevink' From jh at web.de Sat Mar 8 07:37:03 2003 From: jh at web.de (Juergen Hermann) Date: Sat Mar 8 07:37:03 2003 Subject: [Moin-user] Installation on Solaris 8: No Editing result In-Reply-To: <3E67567E.8070704@cs.utwente.nl> Message-ID: On Thu, 06 Mar 2003 15:09:02 +0100, Hendri Hondorp wrote: >I have installed the software on Solaris 8. >When I try to edit the wiki-pages nothing happened. That is very unlikely. Either you get the SAME page again (which your browser might have cached, so RELOAD), or some traceback or something. Be more specific. Ciao, J?rgen From chomg at bawi.org Sun Mar 9 09:20:11 2003 From: chomg at bawi.org (Min-gyu Cho) Date: Sun Mar 9 09:20:11 2003 Subject: [Moin-user] How can I add GoTo macro in the navi_bar? Message-ID: <3E6B7776.1080309@bawi.org> Hi, I think it'd be convenient to add GoTo macro (I mean a form that will let the user to enter the pagename she wants to go) in the navi_bar? How can I do this? I tried put [[GoTo]], but the macro is not processed. Also, I tried to copy the html generated when the GoTo macro is used. It works, but the height of the navi_bar is increased a lot. I can't figure out why it happens. Any suggestion/comment for me? Thanks in advance. Min-gyu Cho From melis at cs.utwente.nl Sun Mar 9 10:51:06 2003 From: melis at cs.utwente.nl (Paul Melis) Date: Sun Mar 9 10:51:06 2003 Subject: [Moin-user] Re: Installation on Solaris 8: No Editing result Message-ID: <20030309195022.B28420@luistervink.cs.utwente.nl> On Thu, 06 Mar 2003 15:09:02 +0100, Hendri Hondorp wrote: >>I have installed the software on Solaris 8. >>When I try to edit the wiki-pages nothing happened. > >That is very unlikely. Either you get the SAME page again (which your >browser might have cached, so RELOAD), or some traceback or something. > >Be more specific. Hello Jurgen, I worked with Hendri on getting Moin to work on our system. Here's some detailed behavior info: - When we go to the sandbox, click edit, change something and use 'save changes' the page will not have changed at all. Neither is the last modified timestamp changed. - If we try to do a preview first, the sandbox comes back as if it were requested normally (i.e. no edit box anymore), although there's "#preview" in the url. - Same with 'check spelling' - Reloading the pages doesn't change a thing We have not observed any python tracebacks, or other indications of things going wrong (permissions, missing .py files, etc.). The eventlog is clearly being updated, but none of the others are. The cgi_log doesn't seem to be written at all, is that normal? Strange stuff, any clues? Regards, Paul -- melis at cs.utwente.nl From yaronf at personeta.com Mon Mar 10 05:49:22 2003 From: yaronf at personeta.com (Yaron Sheffer) Date: Mon Mar 10 05:49:22 2003 Subject: [Moin-user] MoinMoin version Message-ID: <2BD01864465E174CAF6D47D4E4CC541502178F8B@mail.personeta.com> Hi, I am in the process of setting up a Moin Moin wiki for our company intranet. on http://sourceforge.net/projects/moin/ only v1.0 is listed for Moin Moin, however I found (I don?t remember where now) a version 1.1. Does it mean I shouldn?t move to 1.1, or is it simply missing from the SourceForge page? Regards, Yaron From jh at web.de Mon Mar 10 11:15:04 2003 From: jh at web.de (Juergen Hermann) Date: Mon Mar 10 11:15:04 2003 Subject: [Moin-user] Re: Installation on Solaris 8: No Editing result In-Reply-To: <20030309195022.B28420@luistervink.cs.utwente.nl> Message-ID: On Sun, 9 Mar 2003 19:50:22 +0100, Paul Melis wrote: >The eventlog is clearly being updated, but none of the others are. The cgi_log doesn't seem to be written at all, is that normal? > >Strange stuff, any clues? From your description, it sounds as if the POST request cannot parse its parameters, which indicates a web server problem. Check the logs of that (POST or GET, Content-Length?). Also, try another browser. cgi_log (cgi.log) only gets written to if there's any output to stderr. Ciao, J?rgen From pascal.bauermeister at smartdata.ch Tue Mar 11 01:25:01 2003 From: pascal.bauermeister at smartdata.ch (Pascal) Date: Tue Mar 11 01:25:01 2003 Subject: [Moin-user] Problem with limitedsearch.py action Message-ID: <1047374616.681.78.camel@amazon> Hello, it appears that /action/limitedsearch.py does not work on the current MoinMoin version. Here is what SystemInfo tells me: ------------------------------------------------------------------------------ Python Version 2.1.3 (#1, Jul 29 2002, 22:34:51) [GCC 2.95.4 20011002 (Debian prerelease)] MoinMoin Version Release 1.1 [Revision 1.161] Number of pages 159 Number of backup versions 69 Entries in edit log 95 (8189 bytes) Entries in event log 843 (187601 bytes) Global extension macros AbandonedPages, BR, FootNote, FullSearch, GetText, Include, LimitedSearch, OrphanedPages, PageSize, RandomPage, RandomQuote, RecentChanges, StatsChart, SystemAdmin, TableOfContents, TeudView, WantedPages Local extension macros NONE Global extension actions .#limitedsearch, AttachFile, DeletePage, LikePages, LocalSiteMap, SpellCheck, limitedsearch, links, titleindex Local extension actions NONE Installed processors CSV, Colorize ------------------------------------------------------------------------------ Is there any working version available ? Many thanks, Pascal From phil at filsa.net Thu Mar 13 09:56:11 2003 From: phil at filsa.net (Phil Suh) Date: Thu Mar 13 09:56:11 2003 Subject: [Moin-user] MoinMoin version In-Reply-To: <2BD01864465E174CAF6D47D4E4CC541502178F8B@mail.personeta.com> Message-ID: On Mon, 10 Mar 2003, Yaron Sheffer wrote: > Hi, > > I am in the process of setting up a Moin Moin wiki for our company intranet. > > on http://sourceforge.net/projects/moin/ only v1.0 is listed for Moin Moin, > however I found (I don?t remember where now) a version 1.1. Does it mean I > shouldn?t move to 1.1, or is it simply missing from the SourceForge page? Sourceforge only has version 1.0. I believe this is deliberate, as the dev team has been very careful to release only really solid code. You can get the latest version from CVS (also on sourceforge). I regularly get the latest CVS version for more advanced (though undocumented features). It's not guaranteed to be stable, but I've not had problems with it. And yeah, I use the latest CVS at work. Phil From wa7nwp at jnos.org Fri Mar 14 12:52:09 2003 From: wa7nwp at jnos.org (Bill Vodall) Date: Fri Mar 14 12:52:09 2003 Subject: [Moin-user] How can I add GoTo macro in the navi_bar? In-Reply-To: <3E6B7776.1080309@bawi.org> Message-ID: <4.2.0.58.20030314124430.00ae0dc0@jnos.org> At 12:18 PM 3/9/03 -0500, you wrote: >Hi, > >I think it'd be convenient to add GoTo macro (I mean a form that will let the user to enter the pagename she wants to go) in the navi_bar? How can I do this? I don't know about a navigation bar entry, but I've found having a Wiki Word box on my home page to be personally very useful. www.jnos.org Here's the form button: ---
--- And here's validateWiki() --- function validateWiki() { if (document.WikiForm.page.value=="") { window.open("http://wiki.jnos.org/") } else { document.location = "http://wiki.jnos.org/" + document.WikiForm.page.value } } --- Hope that helps... Bill >Min-gyu Cho From blepi at club-internet.fr Sat Mar 15 08:49:14 2003 From: blepi at club-internet.fr (Baptiste Lepilleur) Date: Sat Mar 15 08:49:14 2003 Subject: [Moin-user] Installing MoinMoin for a sourceforge project Message-ID: <009b01c2eb13$16cc9f10$9276c3d4@gaia> Hi, I would like to install MoinMoin for the sourceforge project I'm administrating. The issue is that the installed version of python (1.5.2) does not includes distutils. How would you go about it ? I would try to bypass the setup script and install by hand, but the steps are not documented (or I haven't found them). This issue is probably similar to "how do I install with only ftp access". Baptiste. From robert.pollak at gmx.net Sat Mar 15 09:57:04 2003 From: robert.pollak at gmx.net (Robert Pollak) Date: Sat Mar 15 09:57:04 2003 Subject: [Moin-user] How to ignore the web browser's language preference? In-Reply-To: References: Message-ID: <3E736931.8090307@gmx.net> Juergen Hermann wrote: > On Fri, 28 Feb 2003 11:03:18 +0100, Robert Pollak wrote: > >>I have installed MoinMoin 1.0 and want to display the german >>localization for anonymous users (that have not set personal >>preferences), independent of the browser language settings. >> >>Where in the code do i have to make changes? Or does somebody already >>have a patch? > > > i18.__init__: > > _text_lang = "de" > Thank you - This is exactly the info I was looking for! From scott_list at mischko.com Sun Mar 16 22:24:28 2003 From: scott_list at mischko.com (Scott Chapman) Date: Sun Mar 16 22:24:28 2003 Subject: [Moin-user] Can't find xslt Message-ID: <200303162223.18718.scott_list@mischko.com> I'm running Python 2.2 and just installed 4Suite and changed the MoinMoin config to allows xslt. I'm now getting this error message. What else do I need to configure, install, etc? ImportError: No module named xslt Python 2.2.2 /usr/bin/python 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__ = "Import can't find module, or can't find name in module." __getitem__ = > __init__ = > __module__ = 'exceptions' __str__ = > args = ('No module named xslt',) /usr/lib/python2.2/site-packages/MoinMoin/parser/xslt.py in format(self=, formatter=, form=FieldStorage(None, None, [])) 46 47 import xml.sax 48 import xml.xslt xml = , global xslt = undefined 49 import xml.xslt.Processor 50 From scott_list at mischko.com Mon Mar 17 14:47:09 2003 From: scott_list at mischko.com (Scott Chapman) Date: Mon Mar 17 14:47:09 2003 Subject: [Moin-user] Quick links question Message-ID: <200303171446.52760.scott_list@mischko.com> I set up a MoinMoin wiki on my Intranet and want to be able to put Google in my Quick LInks. I've tried many ways of formatting it but it always makes it a page on my Wiki, rather than an external link. How do I do this? Scott From scott_list at mischko.com Mon Mar 17 15:02:08 2003 From: scott_list at mischko.com (Scott Chapman) Date: Mon Mar 17 15:02:08 2003 Subject: [Moin-user] How do I Subscribe to all wiki pages? Message-ID: <200303171501.53446.scott_list@mischko.com> I tried * and .* as regex in the User Preferences field but the Wiki doesn't think I'm subscribed to all pages when I do that. What regex do I need for this? Scott From brian at dorseys.org Mon Mar 17 16:06:13 2003 From: brian at dorseys.org (Brian Dorsey) Date: Mon Mar 17 16:06:13 2003 Subject: [Moin-user] How do I Subscribe to all wiki pages? In-Reply-To: <200303171501.53446.scott_list@mischko.com> References: <200303171501.53446.scott_list@mischko.com> Message-ID: <20030318002036.GA26876@dorseys.org> Scott, .* works for me on my wikis. Does it give you any kind of error, or? Do you have an email server setup in you config? Take care, -Brian On Mon, Mar 17, 2003 at 03:01:53PM -0800, Scott Chapman wrote: > I tried * and .* as regex in the User Preferences field but the Wiki doesn't > think I'm subscribed to all pages when I do that. What regex do I need for > this? > > Scott > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user From scott_list at mischko.com Mon Mar 17 17:24:12 2003 From: scott_list at mischko.com (Scott Chapman) Date: Mon Mar 17 17:24:12 2003 Subject: [Moin-user] How do I Subscribe to all wiki pages? In-Reply-To: <20030318002036.GA26876@dorseys.org> References: <200303171501.53446.scott_list@mischko.com> <20030318002036.GA26876@dorseys.org> Message-ID: <200303171723.35710.scott_list@mischko.com> I just got into the source code and found that it doesn't send emails if you are the one subscribed and you are doing the edit. That explains it. The error message is not accurate (says "Nobody subscribed to this page, no mail sent.") because there is someone subscribed. ' Teach me to believe error messages! Scott On Monday 17 March 2003 4:20 pm, Brian Dorsey wrote: Scott, .* works for me on my wikis. Does it give you any kind of error, or? Do you have an email server setup in you config? Take care, -Brian On Mon, Mar 17, 2003 at 03:01:53PM -0800, Scott Chapman wrote: > I tried * and .* as regex in the User Preferences field but the Wiki doesn't > think I'm subscribed to all pages when I do that. What regex do I need for > this? > > Scott > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Moin-user mailing list Moin-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/moin-user From crosseyedpenguin at yahoo.com Mon Mar 17 20:21:19 2003 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Mon Mar 17 20:21:19 2003 Subject: [Moin-user] Quick links question In-Reply-To: <200303171446.52760.scott_list@mischko.com> Message-ID: <20030318042031.82669.qmail@web14307.mail.yahoo.com> --- Scott Chapman wrote: > I set up a MoinMoin wiki on my Intranet and want to be able to put > Google in > my Quick LInks. I've tried many ways of formatting it but it always > makes it > a page on my Wiki, rather than an external link. How do I do this? > > Scott I think you want something like the following in Quick Links: FrontPage RecentChanges TitleIndex [http://www.google.com Google] Roger Haase __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com From crosseyedpenguin at yahoo.com Mon Mar 17 20:32:23 2003 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Mon Mar 17 20:32:23 2003 Subject: [Moin-user] Quick links question In-Reply-To: <20030318042031.82669.qmail@web14307.mail.yahoo.com> Message-ID: <20030318043143.83661.qmail@web14307.mail.yahoo.com> --- Roger Haase wrote: > > --- Scott Chapman wrote: > > I set up a MoinMoin wiki on my Intranet and want to be able to put > > Google in > > my Quick LInks. I've tried many ways of formatting it but it > always > > makes it > > a page on my Wiki, rather than an external link. How do I do this? > > > > Scott > > I think you want something like the following in Quick Links: > > FrontPage > RecentChanges > TitleIndex > [http://www.google.com Google] > > Roger Haase > P.S. If you are running from CVS or wait for the 1.1 version of MoinMoin, you can add a ^ leading character to open Google in a new window (a very nice touch, I think): FrontPage RecentChanges TitleIndex ^[http://www.google.com Google] __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com From dfpoon at bigfoot.com Tue Mar 18 05:43:02 2003 From: dfpoon at bigfoot.com (dfpoon) Date: Tue Mar 18 05:43:02 2003 Subject: [Moin-user] URL setting in MoinMoin Message-ID: <3E772476.8000004@bigfoot.com> Hi! I am a new user trying to install MoinMoin on my school's Web hosting server. Everything seems fine. I can run the moin.cgi locally, I mean in the Unix console, but not in any browser using URL reference. I suspect the problem is due to the strange setting of cgi configuration in my school's web server. The cgi execution URL is different from the actual CGI location. e.g. If a CGI file is located on http://home.aaa.net/~bbb/cgi-bin/moin.cgi, then it should be run by referencing http://home-cgi.aaa.net/cgi-bin/cgiwrap/~bbb/moin.cgi. As usually, there is no way for a common student like me to ask for a change in the server. Therefore, I think I need to change the URL setting of MoinMoin a little bit to adapt the environment. Does anyone have the idea to change which lines? Thanks, dfpoon From i.roberts at Liberty-IT.co.uk Tue Mar 18 07:43:16 2003 From: i.roberts at Liberty-IT.co.uk (Roberts, Iwan(LIT)) Date: Tue Mar 18 07:43:16 2003 Subject: [Moin-user] Formatting Help Message-ID: <2E02C310A701D41187CF00902771989603F92397@romeo> Does anyone know if there is a one-stop page/reference that has ALL of the moinmoin formatting options on it. It would be very useful to have a print out and keep version. Thanks, I. -------------- next part -------------- An HTML attachment was scrubbed... URL: From scott_list at mischko.com Tue Mar 18 07:58:12 2003 From: scott_list at mischko.com (Scott Chapman) Date: Tue Mar 18 07:58:12 2003 Subject: [Moin-user] Quick links question In-Reply-To: <20030318042031.82669.qmail@web14307.mail.yahoo.com> References: <20030318042031.82669.qmail@web14307.mail.yahoo.com> Message-ID: <200303180757.50128.scott_list@mischko.com> That's what I thougth but the link that is created for the google link is: http://myserver.domain.com/mywiki/_5bhttp_3a_2f_2fwww_2egoogle_2ecom_20Google_5d rather than: http://www.google.com I can go to a wiki page and put in the same link and it works fine. Scott On Monday 17 March 2003 8:20 pm, Roger Haase wrote: --- Scott Chapman wrote: > I set up a MoinMoin wiki on my Intranet and want to be able to put > Google in > my Quick LInks. I've tried many ways of formatting it but it always > makes it > a page on my Wiki, rather than an external link. How do I do this? > > Scott I think you want something like the following in Quick Links: FrontPage RecentChanges TitleIndex [http://www.google.com Google] Roger Haase __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com From crosseyedpenguin at yahoo.com Tue Mar 18 11:51:09 2003 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Tue Mar 18 11:51:09 2003 Subject: [Moin-user] Quick links question In-Reply-To: <200303180757.50128.scott_list@mischko.com> Message-ID: <20030318195028.26722.qmail@web14309.mail.yahoo.com> Each Quick Links entry should be on a separate line. I have been able to reproduce something close to your description by doing this: FrontPage [http://www.google.com Google] ...which results in: http://127.0.0.1/mywiki/FrontPage_20_5bhttp_3a_2f_2fwww_2egoogle_2ecom_20Google_5d ...which is similar, but /FrontPage is inserted after mywiki. The above should be entered like this: FrontPage [http://www.google.com Google] If that doesn't help, what version are you running, and give us an exact copy of your Quick Links entry. Roger Haase --- Scott Chapman wrote: > That's what I thougth but the link that is created for the google > link is: > http://myserver.domain.com/mywiki/_5bhttp_3a_2f_2fwww_2egoogle_2ecom_20Google_5d > > rather than: > http://www.google.com > > I can go to a wiki page and put in the same link and it works fine. > > Scott > > > On Monday 17 March 2003 8:20 pm, Roger Haase wrote: > --- Scott Chapman wrote: > > I set up a MoinMoin wiki on my Intranet and want to be able to put > > Google in > > my Quick LInks. I've tried many ways of formatting it but it > always > > makes it > > a page on my Wiki, rather than an external link. How do I do this? > > > > Scott > > I think you want something like the following in Quick Links: > > FrontPage > RecentChanges > TitleIndex > [http://www.google.com Google] > > Roger Haase __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com From crosseyedpenguin at yahoo.com Tue Mar 18 14:05:05 2003 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Tue Mar 18 14:05:05 2003 Subject: [Moin-user] Quick links question In-Reply-To: <200303180757.50128.scott_list@mischko.com> Message-ID: <20030318220416.38435.qmail@web14310.mail.yahoo.com> --- Scott Chapman wrote: > My QuickLinks entry is: > FrontPage > [http://www.google.com Google] > > The link I get back on the quicklink bar is: > http://myhostname.domainname.com/mywiki/_5bhttp_3a_2f_2fwww_2egoogle_2ecom_20Google_5d > > I'm running version 1.0. > > When I put [http://www.google.com Google] in a regular wiki page, it > works > great. > > Scott > That is very strange. Is there a working FrontPage link on your quick link bar? What browser and OS are you using - could it be passing an unusual line ending character for data passed in textarea fields? With MS IE 6 on Windows/me, I seem to get line endings of x'0d0d0a', but I have not noticed any problems caused by it. Can you open your user file in ~Moin/mywiki/data/user with a text editor and take a look at the quicklinks parameter? Mine looks like this: quicklinks=FrontPage,_5bhttp_3a_2f_2fwww_2egoogle_2ecom_20Google_5d If yours is different, try a copy, paste, and save to see if that results in a working link. Roger Haase __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com From scott_list at mischko.com Tue Mar 18 14:43:16 2003 From: scott_list at mischko.com (Scott Chapman) Date: Tue Mar 18 14:43:16 2003 Subject: [Moin-user] Quick links question In-Reply-To: <20030318220416.38435.qmail@web14310.mail.yahoo.com> References: <20030318220416.38435.qmail@web14310.mail.yahoo.com> Message-ID: <200303181442.33853.scott_list@mischko.com> Roger, I tried this in IE 5.5 (Windows 2000) and the following on Linux: Konqueror 3.0.3-0.7.2 (KDE 3.0.3-0.7.2) Netscape 4.79 Lynx All work identically, giving the wrong link. I checked my user file and it looks like this: quicklinks=FrontPage,_5bhttp_3a_2f_2fwww_2egoogle_2ecom_20Google_5d (copied and pasted in) I have the same problem on two different MoinMoin implementations. The FrontPage link works great on the quick link bar. Thanks for looking in to this! Scott On Tuesday 18 March 2003 2:04 pm, Roger Haase wrote: --- Scott Chapman wrote: > My QuickLinks entry is: > FrontPage > [http://www.google.com Google] > > The link I get back on the quicklink bar is: > http://myhostname.domainname.com/mywiki/_5bhttp_3a_2f_2fwww_2egoogle_2ecom_20Google_5d > > I'm running version 1.0. > > When I put [http://www.google.com Google] in a regular wiki page, it > works > great. > > Scott > That is very strange. Is there a working FrontPage link on your quick link bar? What browser and OS are you using - could it be passing an unusual line ending character for data passed in textarea fields? With MS IE 6 on Windows/me, I seem to get line endings of x'0d0d0a', but I have not noticed any problems caused by it. Can you open your user file in ~Moin/mywiki/data/user with a text editor and take a look at the quicklinks parameter? Mine looks like this: quicklinks=FrontPage,_5bhttp_3a_2f_2fwww_2egoogle_2ecom_20Google_5d If yours is different, try a copy, paste, and save to see if that results in a working link. Roger Haase __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com From jh at web.de Tue Mar 18 16:06:01 2003 From: jh at web.de (Juergen Hermann) Date: Tue Mar 18 16:06:01 2003 Subject: [Moin-user] Can't find xslt In-Reply-To: <200303162223.18718.scott_list@mischko.com> Message-ID: On Sun, 16 Mar 2003 22:23:18 -0800, Scott Chapman wrote: >I'm running Python 2.2 and just installed 4Suite and changed the MoinMoin >config to allows xslt. I'm now getting this error message. What else do I >need to configure, install, etc? The code was written for 0.11, and needs updating. I'' make a TODO item. If you're inclined, you can of course update the xslt parser yourself. :) Ciao, J?rgen From jh at web.de Tue Mar 18 16:09:14 2003 From: jh at web.de (Juergen Hermann) Date: Tue Mar 18 16:09:14 2003 Subject: [Moin-user] How do I Subscribe to all wiki pages? In-Reply-To: <200303171723.35710.scott_list@mischko.com> Message-ID: On Mon, 17 Mar 2003 17:23:35 -0800, Scott Chapman wrote: >I just got into the source code and found that it doesn't send emails if you >are the one subscribed and you are doing the edit. That explains it. The >error message is not accurate (says "Nobody subscribed to this page, no mail >sent.") because there is someone subscribed. ' Teach me to believe error >messages! CVS HEAD tells you the obvious. Ciao, J?rgen From jh at web.de Tue Mar 18 16:11:27 2003 From: jh at web.de (Juergen Hermann) Date: Tue Mar 18 16:11:27 2003 Subject: [Moin-user] URL setting in MoinMoin In-Reply-To: <3E772476.8000004@bigfoot.com> Message-ID: On Tue, 18 Mar 2003 21:51:50 +0800, dfpoon wrote: >http://home-cgi.aaa.net/cgi-bin/cgiwrap/~bbb/moin.cgi. >As usually, there is no way for a common student like me to ask for a >change in the server. Therefore, I think I need to change the URL >setting of MoinMoin a little bit to adapt the environment. Does anyone >have the idea to change which lines? Change webapi.cgiMoin.getScriptname to return the constant string /cgi-bin/cgiwrap/~bbb/moin.cgi and make sure PATH_INFO is not warped, too. Ciao, J?rgen From jh at web.de Tue Mar 18 16:14:17 2003 From: jh at web.de (Juergen Hermann) Date: Tue Mar 18 16:14:17 2003 Subject: [Moin-user] Formatting Help In-Reply-To: <2E02C310A701D41187CF00902771989603F92397@romeo> Message-ID: >Does anyone know if there is a one-stop page/reference that has ALL of the moinmoin formatting options on it. It would be very useful to have a print out and keep version. No, but you / someone could summarize the help pages on http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/TextFormattingRules Ciao, J?rgen -------------- next part -------------- An HTML attachment was scrubbed... URL: From jh at web.de Tue Mar 18 16:18:20 2003 From: jh at web.de (Juergen Hermann) Date: Tue Mar 18 16:18:20 2003 Subject: [Moin-user] Quick links question In-Reply-To: <200303181442.33853.scott_list@mischko.com> Message-ID: >--- Scott Chapman wrote: >> I'm running version 1.0. * navi_bar / quicklinks can now contain free-form links, i.e. entries of the form "[url linktext]" just like in wiki pages This is under VERSION 1.1 in the CHANGES file. Duh! :> Ciao, J?rgen From scott_list at mischko.com Tue Mar 18 16:30:14 2003 From: scott_list at mischko.com (Scott Chapman) Date: Tue Mar 18 16:30:14 2003 Subject: [Moin-user] Quick links question In-Reply-To: References: Message-ID: <200303181629.48234.scott_list@mischko.com> Thanks for the help on these issues! I guess I'm going to have to learn how to check something out of CVS. When is 1.1 due for release? Scott On Tuesday 18 March 2003 4:18 pm, Juergen Hermann wrote: >--- Scott Chapman wrote: >> I'm running version 1.0. * navi_bar / quicklinks can now contain free-form links, i.e. entries of the form "[url linktext]" just like in wiki pages This is under VERSION 1.1 in the CHANGES file. Duh! :> Ciao, J?rgen From crosseyedpenguin at yahoo.com Tue Mar 18 18:14:08 2003 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Tue Mar 18 18:14:08 2003 Subject: [Moin-user] Quick links question - duh... In-Reply-To: Message-ID: <20030319021335.63986.qmail@web14307.mail.yahoo.com> --- Juergen Hermann wrote: > >--- Scott Chapman wrote: > >> I'm running version 1.0. > > * navi_bar / quicklinks can now contain free-form links, i.e. > entries of the form "[url linktext]" just like in wiki pages > > This is under VERSION 1.1 in the CHANGES file. Duh! :> > > > Ciao, J?rgen Duh is right! I thought I was running 1.0 on my Linux system and the current CVS on my Windows system. Now I remember - I did install a CVS version on Linux back in November. It was a rather uneventful install... [url linktext] works on the November CVS version, ^[url linktext] doesn't. Sorry for the confusion, Scott. Roger Haase __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com From jh at web.de Wed Mar 19 01:37:03 2003 From: jh at web.de (Juergen Hermann) Date: Wed Mar 19 01:37:03 2003 Subject: [Moin-user] Quick links question - duh... In-Reply-To: <20030319021335.63986.qmail@web14307.mail.yahoo.com> Message-ID: On Tue, 18 Mar 2003 18:13:35 -0800 (PST), Roger Haase wrote: >[url linktext] works on the November CVS version, ^[url linktext] >doesn't. The 2nd is quite possible, I have a TODO item to check this (there seem to be slight differences between navi_bar and quicklinks). Ciao, J?rgen -- J?rgen Hermann, Developer WEB.DE AG, http://webde-ag.de/ From RWilcox at olenick.com Wed Mar 19 15:03:05 2003 From: RWilcox at olenick.com (Ryan Wilcox) Date: Wed Mar 19 15:03:05 2003 Subject: [Moin-user] RecentChanges Message-ID: How does one change the column width on the RecentChanges page? In the Editor name or IP field, I have some crazy wrapping of text and would like to widen the column. Thanks in advance From RWilcox at olenick.com Thu Mar 20 09:15:03 2003 From: RWilcox at olenick.com (Ryan Wilcox) Date: Thu Mar 20 09:15:03 2003 Subject: [Moin-user] Recent Changes Message-ID: How does one change the column width on the RecentChanges page? In the Editor name or IP field, I have some crazy wrapping of text and would like to widen the column. Thanks in advance -------------- next part -------------- An HTML attachment was scrubbed... URL: From adam at personaltelco.net Fri Mar 21 11:05:13 2003 From: adam at personaltelco.net (Adam Shand) Date: Fri Mar 21 11:05:13 2003 Subject: [Moin-user] script to convert html to wiki markup Message-ID: <3E7B6244.3060607@personaltelco.net> i have a vague recollection of such a script being posted somewhere but i can't find reference to it on the wiki. does such a script exist? adam. From ntrout at rockstarvancouver.com Fri Mar 21 12:54:13 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Fri Mar 21 12:54:13 2003 Subject: [Moin-user] Wiki as CHM file Message-ID: <41647A6597ADD611803C005004D19FD257A0B4@MAILMAN> Hi, I'd like to do a documentation project for a given topic (the language Lua) and I was thinking that the whole thing could be edited and compiled using Moin. I was thinking I could use a modified version of scripts/moin_dump.py to create a static version of the wiki which I could then compile using the MS help compiler. i.e. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/ht ml/vsconwhtsdll.asp This would generate a CHM file of the wiki. I haven't really generated CHM files before so this is a little experimental. Has anybody tried anything like this, or does anyone have a better idea for generating such documentation? Is there a solution (cross plaform) which is better than CHM? Regards, Nick From scott_list at mischko.com Fri Mar 21 17:38:04 2003 From: scott_list at mischko.com (Scott Chapman) Date: Fri Mar 21 17:38:04 2003 Subject: [Moin-user] What is ETA for access control lists? Message-ID: <200303211737.19897.scott_list@mischko.com> I'm really liking MoinMoin but I may need acl for use at work. When is this due to be added to MoinMoin? Scott From tw at waldmann-edv.de Sat Mar 22 00:07:10 2003 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Sat Mar 22 00:07:10 2003 Subject: [Moin-user] What is ETA for access control lists? In-Reply-To: <200303211737.19897.scott_list@mischko.com> References: <200303211737.19897.scott_list@mischko.com> Message-ID: <20030322080607.GA20987@thinkmo.de> > I'm really liking MoinMoin but I may need acl for use at work. When is this > due to be added to MoinMoin? Directly after 1.1 release. So if you run CVS head, you should have it soon. Thomas From robert.pollak at gmx.net Sun Mar 23 23:36:14 2003 From: robert.pollak at gmx.net (Robert Pollak) Date: Sun Mar 23 23:36:14 2003 Subject: [Moin-user] moin-dump errors Message-ID: <3E7EB58D.90907@gmx.net> Can anybody help me to get moin-dump working? (I have never worked with Python before...) Using Moin 1.0, installed in my home directory, with Python 2.0 on Suse 7.1, I see the following: ~/wiki > moin-dump ~/moindump/ Writing "AbandonedPages.html"... *** Caught exception while writing page! Writing "About_20Eudaptics_20Wissensbasis.html"... *** Caught exception while writing page! Writing "Aktuelle_c4nderungen.html"... *** Caught exception while writing page! Writing "AnfangsSeite.html"... *** Caught exception while writing page! Writing "AufgegebeneSeiten.html"... *** Caught exception while writing page! Writing "BenutzerEinstellungen.html"... *** Caught exception while writing page! Writing "BuzzWords.html"... Needed 0.490 secs. Traceback (most recent call last): File "/home/pollak/bin/moin-dump", line 7, in ? run() File "/home/pollak/lib/python/MoinMoin/scripts/moin_dump.py", line 177, in run _util.runMain(main) File "/home/pollak/lib/python/MoinMoin/scripts/_util.py", line 70, in runMain mainloop() File "/home/pollak/lib/python/MoinMoin/scripts/moin_dump.py", line 154, in main print '[TitleIndex]' % (wikiutil.quoteWikiname(config.page_ti tle_index)) AttributeError: page_title_index From tw at waldmann-edv.de Mon Mar 24 00:15:10 2003 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Mon Mar 24 00:15:10 2003 Subject: [Moin-user] moin-dump errors In-Reply-To: <3E7EB58D.90907@gmx.net> References: <3E7EB58D.90907@gmx.net> Message-ID: <20030324081420.GA22731@thinkmo.de> > print '[TitleIndex]' % > (wikiutil.quoteWikiname(config.page_ti > tle_index)) > AttributeError: page_title_index You have to set page_title_index in your moin_config.py page_title_index = 'TitleIndex' From robert.pollak at gmx.net Mon Mar 24 00:58:33 2003 From: robert.pollak at gmx.net (Robert Pollak) Date: Mon Mar 24 00:58:33 2003 Subject: [Moin-user] moin-dump errors In-Reply-To: <20030324081420.GA22731@thinkmo.de> References: <3E7EB58D.90907@gmx.net> <20030324081420.GA22731@thinkmo.de> Message-ID: <3E7EC8D6.3040508@gmx.net> Thomas Waldmann wrote: >> print '[TitleIndex]' % >>(wikiutil.quoteWikiname(config.page_ti >>tle_index)) >>AttributeError: page_title_index > > > You have to set page_title_index in your moin_config.py > > page_title_index = 'TitleIndex' Thank you, that helped! I also had to set page_word_index there. Now all the pages are created, but most of them are incomplete, and error.log is full of stuff like the following (96 errors): (It seems self.request.user does not work) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Traceback (most recent call last): File "/home/pollak/lib/python/MoinMoin/scripts/moin_dump.py", line 144, in main page.send_page(request) File "/home/pollak/lib/python/MoinMoin/Page.py", line 380, in send_page Parser(body, request).format(self.formatter, form) File "/home/pollak/lib/python/MoinMoin/parser/wiki.py", line 865, in format line, count = re.subn(scan_re, self.replace, line + " ") File "/var/tmp/python-root//usr/lib/python2.0/sre.py", line 53, in subn return _compile(pattern, 0).subn(repl, string, count) File "/var/tmp/python-root//usr/lib/python2.0/sre.py", line 136, in _subn append(filter(m)) File "/home/pollak/lib/python/MoinMoin/parser/wiki.py", line 748, in replace return apply(getattr(self, '_' + type + '_repl'), (hit,)) File "/home/pollak/lib/python/MoinMoin/parser/wiki.py", line 638, in _macro_repl return self.macro.execute(macro_name, args) File "/home/pollak/lib/python/MoinMoin/wikimacro.py", line 82, in execute return apply(execute, (self, args)) File "/home/pollak/lib/python/MoinMoin/macro/AbandonedPages.py", line 17, in exe cute return RecentChanges.execute(macro, args, abandoned=1) File "/home/pollak/lib/python/MoinMoin/macro/RecentChanges.py", line 70, in exec ute while log.getNextChange(): File "/home/pollak/lib/python/MoinMoin/macro/RecentChanges.py", line 219, in get NextChange time_tuple = self.request.user.getTime(self.ed_time) AttributeError: 'None' object has no attribute 'getTime' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Traceback (most recent call last): File "/home/pollak/lib/python/MoinMoin/scripts/moin_dump.py", line 144, in main page.send_page(request) File "/home/pollak/lib/python/MoinMoin/Page.py", line 380, in send_page Parser(body, request).format(self.formatter, form) File "/home/pollak/lib/python/MoinMoin/parser/wiki.py", line 865, in format line, count = re.subn(scan_re, self.replace, line + " ") File "/var/tmp/python-root//usr/lib/python2.0/sre.py", line 53, in subn return _compile(pattern, 0).subn(repl, string, count) File "/var/tmp/python-root//usr/lib/python2.0/sre.py", line 136, in _subn append(filter(m)) File "/home/pollak/lib/python/MoinMoin/parser/wiki.py", line 748, in replace return apply(getattr(self, '_' + type + '_repl'), (hit,)) File "/home/pollak/lib/python/MoinMoin/parser/wiki.py", line 556, in _heading_re pl if self.request.user.show_topbottom: AttributeError: 'None' object has no attribute 'show_topbottom' From Tim.clark at ams-ltd.demon.co.uk Mon Mar 24 02:51:01 2003 From: Tim.clark at ams-ltd.demon.co.uk (Tim Clark) Date: Mon Mar 24 02:51:01 2003 Subject: [Moin-user] Can't get started - help! Message-ID: Hi friends I am a newby to moinmoin. I follwed the instructions for installing on W2000 (with Apache) exactly, but am getting the following in the Apache error log when I try to go to http://127.0.0.1/mywiki/ "Premature end of script headers: moin.bat" I am using python2.2 Any ideas what I'm doing wrong? Thanks From gia at webde-ag.de Mon Mar 24 02:57:02 2003 From: gia at webde-ag.de (Gisbert Amm) Date: Mon Mar 24 02:57:02 2003 Subject: [Moin-user] Wiki as CHM file Message-ID: <74ADFA8C453ED611A71E00508BBBA135D9E983@exchange1.cinetic.de> > Hi, I'd like to do a documentation project for a given topic > (the language > Lua) and I was thinking that the whole thing could be edited > and compiled > using Moin. > > I was thinking I could use a modified version of > scripts/moin_dump.py to > create a static version of the wiki which I could then > compile using the MS > help compiler. > > i.e. > http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/ht ml/vsconwhtsdll.asp > This would generate a CHM file of the wiki. I haven't really generated CHM > files before so this is a little experimental. It's a nice idea; once you got it running I'd like to try it out, too. If you're familiar with XSLT, the HTMLHelp Stylesheets of the DocBook project probably can give you some advices to the structure details of the nesseccary files (http://docbook.sourceforge.net/projects/xsl/). There is also a stylesheet for JavaHelp (see below). Another approach would be to create a simple CHM file with the free MS HTML Help Workshop (hhw.exe) and investigate the generated files. > Has anybody tried anything like this, or does anyone have a better idea for > generating such documentation? Is there a solution (cross plaform) which is > better than CHM? You might have a look at JavaHelp (http://java.sun.com/products/javahelp/). It's similar to MS HTMLHelp (three-pane window, you need a viewer, you can embed it in applications and so on), but because of Java it's fully platform independend. The generation process is similar, too: You have to create some textfiles (a projectfile and a toc are mandatory; an index is optional); the projectfile includes entries for all your HTML files and images. Then - if I remember correctly - you run it through some JAR (the couterpart to hhc.exe) and get a file you can display with the helpsetviewer. Regards Gisbert Amm From jh at web.de Mon Mar 24 11:40:33 2003 From: jh at web.de (Juergen Hermann) Date: Mon Mar 24 11:40:33 2003 Subject: [Moin-user] Can't get started - help! In-Reply-To: Message-ID: On Mon, 24 Mar 2003 10:34:10 -0000, Tim Clark wrote: >I follwed the instructions for installing on W2000 (with Apache) exactly, >but am getting the following in the Apache error log when I try to go to >http://127.0.0.1/mywiki/ > >"Premature end of script headers: moin.bat" > >I am using python2.2 Try the new instructions for 1.1 (they should also work with 1.0): http://purl.net/wiki/moinmaster/HelpOnInstalling_2fApacheOnWin32 Ciao, J?rgen From david_obler at sesda.com Tue Mar 25 06:52:02 2003 From: david_obler at sesda.com (David Obler) Date: Tue Mar 25 06:52:02 2003 Subject: [Moin-user] Running ssl (port 443) on apache, can't attach files, wrong url in email from MoinMoin Message-ID: <3E806D57.6070803@sesda.com> Folks, I have been reading the list for some time, and I am still stumped by this. The problem is that when MoinMoin sends out email, it places the http:// not https:// as the url for the subscribed page. Another problem that we think is related is that we cannot attach files through the interface. We have enable attachments. Any advice that you have on either of these issues (that may be related) is gratefully appreciated. Thanks, Dave Obler Here are the vital stats of our webserver ++++++++++++++++++++++++++++++ $Id: moin.cgi,v 1.2 2002/03/11 21:48:48 jhermann Exp $ Apache/1.3.27 Server at omiwww.gsfc.nasa.gov Port 443 Python 1.5.2 (#1, Jan 31 2003, 10:58:35) [GCC 2.96 20000731] (Red Hat Linux 7.3 2 on linux-i386) Here is the original bug report: ++++++++++++++++++++++++++++++++ The moinmoin software can't seem to handle a https:// url. Instead it changes it to an http://. This makes it email out misinformation when people subscribe to pages and is probably related to the problems with file attachments. Here is one of the fixes we tried that reported a configuration error: +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Since Apache with mod_ssl does not give SSL_* environment variable to CGI, MoinMoin.webapi.isSSL() gives wrong result. That causes that TWikiDraw pictures does not appear if MoinMoin is over SSL/TLS (https). def isSSL(): """ Return true if we are on a SSL (https) connection. """ return os.environ.get('SSL_PROTOCOL', ') != ' or \ + os.environ.get('HTTPS', ') != ' or \ os.environ.get('SSL_PROTOCOL_VERSION', ') != ' Here is an analysis of what we think is wrong ++++++++++++++++++++++++++++++++++ The os.environ variables in Python refer to the shell variables set when the program runs. To change it, you'd just need to find out what user the wiki runs as and set an envrionment variable somewhere to what it needs. Further information on os.environ can be found at: http://www.python.org/doc/current/lib/os-procinfo.html Other Python programs work often the same way. You may find editing the Python scripts before they reach the Python interpreter does what you want. Thanks so much, David Obler From j.her at t-online.de Tue Mar 25 10:46:03 2003 From: j.her at t-online.de (Juergen Hermann) Date: Tue Mar 25 10:46:03 2003 Subject: [Moin-user] Running ssl (port 443) on apache, can't attach files, wrong url in email from MoinMoin In-Reply-To: <3E806D57.6070803@sesda.com> Message-ID: <18xtOp-0FvjfsC@fwd04.sul.t-online.com> On Tue, 25 Mar 2003 09:53:11 -0500, David Obler wrote: >The problem is that when MoinMoin sends out email, ... Problem reports w/o exact version info cannot be processed. Your problem is prolly fixed in CVS. >Another problem that we think is related is that we cannot attach files >through the interface. "cannot attach" is too vague. What happens? Ciao, J?rgen From ntrout at rockstarvancouver.com Tue Mar 25 11:28:18 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Tue Mar 25 11:28:18 2003 Subject: [Moin-user] Cross references In-Reply-To: <41647A6597ADD611803C005004D19FD23DD4B5@MAILMAN> Message-ID: <41647A6597ADD611803C005004D19FD2397173@MAILMAN> > From: Robert Groenewegen Sent: March 6, 2003 12:17 AM > Subject: RE: [Moin-user] Cross references > > Hi Nick, > Can you please publish your "draft" macro? I would like to > write a macro > for a private wiki that reads from a database but do not > really know where > to start. Maybe your macro can put me on the right track ... Sorry, I put it up a week ago or so but I've been very busy and forgot to post you... http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/WikiDb JH has pointed out a few new features in Moin, like data sets which form tables that you can sort on columns (like Windows grid lists) so I'm hoping to use this functionality to present the result tables. I also need to work out how I'm going to insert data which I hope to do with the new forms. I think this stuff will be in Moin 1.2 though. (http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/MoinMoinTodo_2fP lannedFeatures) Regards, Nick From Tim.clark at ams-ltd.demon.co.uk Thu Mar 27 06:12:03 2003 From: Tim.clark at ams-ltd.demon.co.uk (Tim Clark) Date: Thu Mar 27 06:12:03 2003 Subject: [Moin-user] Help: about internal links Message-ID: Hello friends I'm probably being dumb. Can I insert a link to a WikiName which doesn't show that name, but does show some arbitry text? That is something like: [XyzAbc This is xyz ABC] which would then look like 'This is xyz ABC' (a link). That is in the same way as an ...? Also, I tried to make a WikiName like this: AlbertOHare It didn't work, presumably because WikiNames don't expect single-character 'words' in their midst! Would such an enhancement of the WikiName parser break anything? Then we could have names like DoILoveYou ... sounds frivolous, but would be very useful. Regards From gia at webde-ag.de Thu Mar 27 06:26:26 2003 From: gia at webde-ag.de (Gisbert Amm) Date: Thu Mar 27 06:26:26 2003 Subject: [Moin-user] Help: about internal links Message-ID: <74ADFA8C453ED611A71E00508BBBA135D9E9C2@exchange1.cinetic.de> > That is something like: [XyzAbc This is xyz ABC] > > which would then look like 'This is xyz ABC' (a link). That > is in the same > way as an ...? Sipmly write [wiki:XyzAbc This is xyz ABC] Regards Gisbert From pascal.bauermeister at smartdata.ch Thu Mar 27 07:02:28 2003 From: pascal.bauermeister at smartdata.ch (Pascal Bauermeister) Date: Thu Mar 27 07:02:28 2003 Subject: [Moin-user] Help: about internal links In-Reply-To: References: Message-ID: <1048777300.11618.190.camel@amazon> On Thu, 2003-03-27 at 14:49, Tim Clark wrote: > Also, I tried to make a WikiName like this: AlbertOHare > > It didn't work, presumably because WikiNames don't expect single-character > 'words' in their midst! Would such an enhancement of the WikiName parser > break anything? Then we could have names like DoILoveYou ... sounds > frivolous, but would be very useful. Try this in edit mode : ["AlbertOHare"] ["DoILoveYou"] and it will appear as you probably want it in normal mode. Pascal From Tim.clark at ams-ltd.demon.co.uk Thu Mar 27 07:15:27 2003 From: Tim.clark at ams-ltd.demon.co.uk (Tim Clark) Date: Thu Mar 27 07:15:27 2003 Subject: [Moin-user] Help: placeholder for empty table cell? Message-ID: Hello Leaving a table cell completely empty does not seem to work; is there an equavalent to a non-breaking space? Regards From gia at webde-ag.de Thu Mar 27 07:43:38 2003 From: gia at webde-ag.de (Gisbert Amm) Date: Thu Mar 27 07:43:38 2003 Subject: [Moin-user] Help: placeholder for empty table cell? Message-ID: <74ADFA8C453ED611A71E00508BBBA135D9E9C5@exchange1.cinetic.de> Try   :-) Gisbert > -----Original Message----- > From: Tim Clark [mailto:Tim.clark at ams-ltd.demon.co.uk] > Sent: Thursday, March 27, 2003 3:55 PM > To: MoinMoin users list (E-mail) > Subject: [Moin-user] Help: placeholder for empty table cell? > > > Hello > > Leaving a table cell completely empty does not seem to work; > is there an > equavalent to a non-breaking space? > > Regards > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Moin-user mailing list > Moin-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/moin-user > From leslie.barnes at amd.com Thu Mar 27 07:50:50 2003 From: leslie.barnes at amd.com (Leslie A. Barnes) Date: Thu Mar 27 07:50:50 2003 Subject: [Moin-user] twikidraw plugin installation Message-ID: <200303271549.HAA25336@lx-desk41.amd.com> Are there any instructions around for installing the twikidraw plugin under moinmoin. I'm having problems getting this to work thanks From Tim.clark at ams-ltd.demon.co.uk Thu Mar 27 08:32:37 2003 From: Tim.clark at ams-ltd.demon.co.uk (Tim Clark) Date: Thu Mar 27 08:32:37 2003 Subject: [Moin-user] Help: reference to anchor on another page? Message-ID: Hi I'm really bothering you guts today! Is this possible: [AnotherPage#name foo bar zot]? If so, what's the syntax? Regards From jh at web.de Thu Mar 27 11:52:10 2003 From: jh at web.de (Juergen Hermann) Date: Thu Mar 27 11:52:10 2003 Subject: [Moin-user] twikidraw plugin installation In-Reply-To: <200303271549.HAA25336@lx-desk41.amd.com> Message-ID: On Thu, 27 Mar 2003 07:49:31 -0800, Leslie A. Barnes wrote: > Are there any instructions around for installing the twikidraw plugin > under moinmoin. I'm having problems getting this to work There is nothing special to install. Define "problems". Ciao, J?rgen From gia at webde-ag.de Thu Mar 27 23:36:27 2003 From: gia at webde-ag.de (Gisbert Amm) Date: Thu Mar 27 23:36:27 2003 Subject: [Moin-user] Help: reference to anchor on another page? Message-ID: <74ADFA8C453ED611A71E00508BBBA135D9E9C7@exchange1.cinetic.de> > I'm really bothering you guts today! Never mind. > Is this possible: [AnotherPage#name foo bar zot]? > > If so, what's the syntax? I would have said it must be [wiki:AnotherPage#name foo bar zot], but to my surprise that doesn't work. It seems to me like a bug. J?rgen? You can work around this limitation by typing [wiki:Self:AnotherPage#name foo bar zot], which generates an InterWiki link to the same wiki. That works for me. Gisbert From robert.pollak at gmx.net Fri Mar 28 04:56:12 2003 From: robert.pollak at gmx.net (Robert Pollak) Date: Fri Mar 28 04:56:12 2003 Subject: [Moin-user] Can normal users access the raw code of old page versions? Message-ID: <3E844678.6020406@gmx.net> E.g. to perform manual merges when a collision has happened. I found nothing about this in the mailing list archives and in the Moin Wiki. I remember that in other wikis in a page like after pressing the edit button the editor contains the code of the old page. This could also be very helpful for reverting changed pages. ( I found something about "action=revert" on "[ 413635 ] Page revert". But it is not listed on and does not work. ) --Robert From jh at web.de Fri Mar 28 11:59:12 2003 From: jh at web.de (Juergen Hermann) Date: Fri Mar 28 11:59:12 2003 Subject: [Moin-user] Help: reference to anchor on another page? In-Reply-To: <74ADFA8C453ED611A71E00508BBBA135D9E9C7@exchange1.cinetic.de> Message-ID: On Fri, 28 Mar 2003 08:20:13 +0100, Gisbert Amm wrote: >I would have said it must be [wiki:AnotherPage#name foo bar zot], but to my >surprise that doesn't work. It seems to me like a bug. J?rgen? Sort of. Wiki:localpage does only work if localpage exists. "AnotherPage#name" does not exist, thus the problem. >You can work around this limitation by typing [wiki:Self:AnotherPage#name >foo bar zot], which generates an InterWiki link to the same wiki. That works >for me. Self: makes it clear this is local, so no existence check, so it works. Ciao, J?rgen From jh at web.de Fri Mar 28 12:04:26 2003 From: jh at web.de (Juergen Hermann) Date: Fri Mar 28 12:04:26 2003 Subject: [Moin-user] Can normal users access the raw code of old page versions? In-Reply-To: <3E844678.6020406@gmx.net> Message-ID: On Fri, 28 Mar 2003 13:56:24 +0100, Robert Pollak wrote: >I remember that in other wikis in a page like > >after pressing the edit button the editor contains the code of the old page. Editing always happens on the current version. Merging is best done by using the current saved page content, and the backup 1.1 stores for you. And 1.1 makes conflicts quite more unlikely than before. >But it is not listed on > >and does not work. It is now listed, and it does work. Ciao, J?rgen From jh at web.de Sun Mar 30 08:56:30 2003 From: jh at web.de (Juergen Hermann) Date: Sun Mar 30 08:56:30 2003 Subject: [Moin-user] CVS tarballs Message-ID: Hi! There are now TWO tarballs: moin-HEAD.tar.gz moin-stable.tar.gz Also, the previously missing applets dir is now included. Please test. Ciao, J?rgen From jh at web.de Sun Mar 30 09:24:24 2003 From: jh at web.de (Juergen Hermann) Date: Sun Mar 30 09:24:24 2003 Subject: [Moin-user] It's summertime... Message-ID: Hi! Note that you and your users have to adapt userprefs manually to compensate for summertime (if it applies to you). Ciao, J?rgen From RWilcox at olenick.com Sun Mar 30 13:00:44 2003 From: RWilcox at olenick.com (Ryan Wilcox) Date: Sun Mar 30 13:00:44 2003 Subject: [Moin-user] It's summertime... Message-ID: Any ideas ? upgrading from 1.0 to CVS stable. Python 2.2.2 on apache on windows 2000. thanks MoinMoin CGI Diagnosis ====================== Package "MoinMoin" successfully imported. Traceback (innermost last): File "F:/Moin/olenick/moin.cgi", line 22, in ? cgimain.test() File "C:\Moin\Lib\site-packages\MoinMoin\cgimain.py", line 25, in test request = createRequest(properties) File "C:\Moin\Lib\site-packages\MoinMoin\cgimain.py", line 20, in createRequest return Request(properties) File "C:\Moin\Lib\site-packages\MoinMoin\request.py", line 46, in __init__ self.user = user.User(self) File "C:/Moin/Lib/site-packages\MoinMoin\user.py", line 98, in __init__ self.load() File "C:/Moin/Lib/site-packages\MoinMoin\user.py", line 126, in load if not self.exists(): return File "C:/Moin/Lib/site-packages\MoinMoin\user.py", line 117, in exists return os.path.exists(self.__filename()) File "C:/Moin/Lib/site-packages\MoinMoin\user.py", line 112, in __filename return os.path.join(config.user_dir, self.id or "...NONE...") File "C:\Python22\Lib\ntpath.py", line 49, in join elif isabs(b): File "C:\Python22\Lib\ntpath.py", line 35, in isabs s = splitdrive(s)[1] File "C:\Python22\Lib\ntpath.py", line 101, in splitdrive if p[1:2] == ':': AttributeError: Request instance has no attribute '__getitem__' From robert.pollak at gmx.net Mon Mar 31 01:34:05 2003 From: robert.pollak at gmx.net (Robert Pollak) Date: Mon Mar 31 01:34:05 2003 Subject: [Moin-user] Can normal users access the raw code of old page versions? In-Reply-To: References: Message-ID: <3E880B98.7090605@gmx.net> J?rgen Hermann wrote: > Editing always happens on the current version. Merging is best done by > using the current saved page content, and the backup 1.1 stores for you. > And 1.1 makes conflicts quite more unlikely than before. Yes - the lock/warning mechanism looks nice! I am looking forward to moving to 1.1 when it is released. I have found out that the action "raw" can also take a date argument like "recall", e.g. Although it needs editing the link, this is more or less what I was looking for in this thread. Maybe this info should be added in HelpOnActions? Referring to "action=revert", J?rgen said > It is now listed, and it does work. Looking at the diff, could it be that you mixed this up with "action=content" or "action=recall"? But with the raw+date syntax my question about "action=revert" has become unimportant. Thank you anyway! Robert From Tim.clark at ams-ltd.demon.co.uk Mon Mar 31 03:14:03 2003 From: Tim.clark at ams-ltd.demon.co.uk (Tim Clark) Date: Mon Mar 31 03:14:03 2003 Subject: [Moin-user] Where is this 1.1 people keep referring to? Message-ID: Hi guys Several times I see references to 1.1, but the download area only contains 1.0. Am I missing something? (Something good I'll guess :) Regards From tw at waldmann-edv.de Mon Mar 31 11:19:53 2003 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Mon Mar 31 11:19:53 2003 Subject: [Moin-user] Where is this 1.1 people keep referring to? References: Message-ID: <3E88786F.1080407@waldmann-edv.de> Hi Tim, > Several times I see references to 1.1, but the download area only contains > 1.0. That's the name of the pending release. Just wait and see. 1.1 will be hopefully there in some {hours,days,weeks}. greetings, Thomas From crosseyedpenguin at yahoo.com Mon Mar 31 18:38:25 2003 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Mon Mar 31 18:38:25 2003 Subject: [Moin-user] CVS tarballs - Test Results In-Reply-To: Message-ID: <20030401023747.62062.qmail@web14306.mail.yahoo.com> --- Juergen Hermann wrote: > Hi! > > There are now TWO tarballs: moin-HEAD.tar.gz moin-stable.tar.gz > > Also, the previously missing applets dir is now included. Please > test. > I installed moin-stable.tar.gz of 2003-3-30 thinking it was an alpha of the 1.1 release, but today I noticed both the HEAD and stable versions had been updated to 3-31 versions which appear to be the same. I assume these will eventually differ? Here is what I found on the 3-30 stable version: 1. The moin-1.1/install.html has the old version of the Windows Installation Using Apache, not the current version in moin-1.1/wiki/data/text. 2. I think there is an extraneous/obsolete index.html in moin-1.1/wiki/htdocs. This tries to load moin.cgi -- I don't think this can work under any of the current installation scenarios. 3. On all pages, the output footer html code has a tag sequence: ... which seems to work ok in the browsers I use but is invalid html. The form tags should enclose the table. Roger Haase __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://platinum.yahoo.com