From noreply at sourceforge.net Sat Mar 1 12:34:17 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Sat Mar 1 12:34:17 2003 Subject: [Moin-devel] [ moin-Patches-695729 ] i18n/ko.py update Message-ID: Patches item #695729, was opened at 2003-03-02 05:37 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=695729&group_id=8482 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Hye-Shik Chang (perky) Assigned to: Nobody/Anonymous (nobody) Summary: i18n/ko.py update Initial Comment: New korean translation of moin messages. Note that Encoding: is utf-8, now. :) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=695729&group_id=8482 From crosseyedpenguin at yahoo.com Tue Mar 4 21:06:04 2003 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Tue Mar 4 21:06:04 2003 Subject: [Moin-devel] Documentation Process Message-ID: <20030305050511.1361.qmail@web14309.mail.yahoo.com> Could you elaborate a bit on the process used to update documentation for your new releases? Specifically, I see that HelpMiscellaneous/FrequentlyAskedQuestions in your master set doesn't reflect the new revert option for restoring a page available in CVS. Because the master set isn't running off the CVS version, I am not sure you want it updated per new CVS features. Also, if you already have people translating for the new release, I don't think you would want the English version to be a moving target. Roger Haase __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ From noreply at sourceforge.net Wed Mar 5 03:26:08 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Wed Mar 5 03:26:08 2003 Subject: [Moin-devel] [ moin-Bugs-697935 ] Problem in XML in the rss feed Message-ID: Bugs item #697935, was opened at 2003-03-05 12:35 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=697935&group_id=8482 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: James Michael DuPont (mdupont) Assigned to: Nobody/Anonymous (nobody) Summary: Problem in XML in the rss feed Initial Comment: This bug is logged against the dotgnu wiki : https://savannah.gnu.org/pm/task.php? func=detailtask&project_task_id=1921&group_id=298&group _project_id=810 http://wiki.dotgnu.org/RecentChanges?action=rss_rc This outputs Bugs item #697935, was opened at 2003-03-05 12:35 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=697935&group_id=8482 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: James Michael DuPont (mdupont) Assigned to: Nobody/Anonymous (nobody) Summary: Problem in XML in the rss feed Initial Comment: This bug is logged against the dotgnu wiki : https://savannah.gnu.org/pm/task.php? func=detailtask&project_task_id=1921&group_id=298&group _project_id=810 http://wiki.dotgnu.org/RecentChanges?action=rss_rc This outputs Comment By: James Michael DuPont (mdupont) Date: 2003-03-05 13:06 Message: Logged In: YES user_id=147871 This code uses the rss generator : from MoinMoin.wikixml.util import RssGenerator handler = RssGenerator(out) handler.startDocument() ------------------------------------------ ./MoinMoin/wikixml/util.py default_xmlns = { None: "http://purl.org/rss/1.0/", 'rdf': "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 'xlink': "http://www.w3.org/1999/xlink", 'dc': "http://purl.org/dc/elements/1.1/", 'wiki': "http://purl.org/rss/1.0/modules/wiki/", } This should read default_xmlns = { '': "http://purl.org/rss/1.0/", 'rdf': "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 'xlink': "http://www.w3.org/1999/xlink", 'dc': "http://purl.org/dc/elements/1.1/", 'wiki': "http://purl.org/rss/1.0/modules/wiki/", } or however you leave an empty string : ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=697935&group_id=8482 From ntrout at rockstarvancouver.com Wed Mar 5 11:02:06 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Wed Mar 5 11:02:06 2003 Subject: [Moin-devel] Date util Message-ID: <41647A6597ADD611803C005004D19FD2498CC0@MAILMAN> It would be useful to have more date functionality in Moin (maybe MoinMoin.util.date.py) e.g. functions so you can work out how many days there are between two dates, whether a given date is before, after or between to other dates. I found a couple of python scripts to do stuff like this - but they are probably a little over the top and their combined functionality could be useful. I need this kind of functionality for my wikidb macro, but it would be useful for stats and wiki page management - eg. delete pages older than, delete pages created between, pages accessed/edited between dates etc. Any thoughts? Regards, Nick From tbird20d at yahoo.com Wed Mar 5 15:15:06 2003 From: tbird20d at yahoo.com (Tim Bird) Date: Wed Mar 5 15:15:06 2003 Subject: [Moin-devel] Date util In-Reply-To: <41647A6597ADD611803C005004D19FD2498CC0@MAILMAN> Message-ID: <20030305231440.99309.qmail@web20802.mail.yahoo.com> --- Nick Trout wrote: > > It would be useful to have more date functionality in Moin (maybe > MoinMoin.util.date.py) e.g. functions so you can work out how many > days > there are between two dates, whether a given date is before, after > or > between to other dates. I believe the page dates are encoded in "seconds since the epoch" (Jan 1, 1970), so they should be pretty easy to compare when in raw form. I thought the standard python time module had features for all kinds of date-related functions, but I'm not sure and I can't look at it right now. Tim Bird ===== Tim Bird Embedded Linux Consultant tim at bird.org Tim Bird Consulting 801-221-5852 http://www.bird.org/ From ntrout at rockstarvancouver.com Mon Mar 10 17:17:27 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Mon Mar 10 17:17:27 2003 Subject: [Moin-devel] Date util In-Reply-To: <41647A6597ADD611803C005004D19FD23DD4B1@MAILMAN> Message-ID: <41647A6597ADD611803C005004D19FD23970FD@MAILMAN> > On Behalf Of Tim Bird > Sent: March 5, 2003 3:15 PM > Subject: Re: [Moin-devel] Date util > > --- Nick Trout wrote: > > It would be useful to have more date functionality in Moin (maybe > > MoinMoin.util.date.py) e.g. functions so you can work out how many > > days > > there are between two dates, whether a given date is before, after > > or > > between to other dates. > > I believe the page dates are encoded in "seconds since the epoch" > (Jan 1, 1970), so they should be pretty easy to compare when in > raw form. I thought the standard python time module had features > for all kinds of date-related functions, but I'm not sure and > I can't look at it right now. There are some issues with the time module. time.strptime (which converts text dates to time format) only works on unix (and sounds flaky even on there). If I want to do a query, say, is a time within the last calender month, or within the last 10 working days, or is a date between two given dates. I have to do all sorts of stuff, which could be reuseable. And, if you want to do calculations on working days, with holidays taken into account the problem gets worse. I don't think a wiki.date util library should be too general but there could be some useful functionality that could be shared. Nick From ntrout at rockstarvancouver.com Mon Mar 10 18:26:06 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Mon Mar 10 18:26:06 2003 Subject: [Moin-devel] Date util In-Reply-To: <41647A6597ADD611803C005004D19FD23DD4BE@MAILMAN> Message-ID: <41647A6597ADD611803C005004D19FD2397100@MAILMAN> > There are some issues with the time module. time.strptime (which > converts text dates to time format) only works on unix (and > sounds flaky It looks like this will be fixed from Python 2.3 onwards by a Python script replacing any underlying OS's inability to perfrom strptime. It would still be useful to have basic date functionality though. Nick From nlany at uibe.edu.cn Tue Mar 11 00:43:04 2003 From: nlany at uibe.edu.cn (nlany at uibe.edu.cn) Date: Tue Mar 11 00:43:04 2003 Subject: [Moin-devel] my patch for pygdchart Message-ID: <3E6DA160.4020503@uibe.edu.cn> MoinMoin can use gdchart to show a page stats picture. This patch for pygdchart 0.6.1 and gdchart 0.11.1dev can enable use freetype fonts, no longer limited to the default dot-matrix english fonts. Hope this is a good news for some Asia MoinMoin users. More Info and download ( about 10KB ) this patch from: http://pub.uibe.edu.cn/~20031/mywiki/moin.cgi/PyGdChart Cheers, -- Yufeng Lan http://pub.uibe.edu.cn/~20031 Univ. of International Buz.&Eco. O: 6449 2311 From noreply at sourceforge.net Tue Mar 11 06:23:04 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Tue Mar 11 06:23:04 2003 Subject: [Moin-devel] [ moin-Bugs-701565 ] buggy call of webapi.http_headers in wikiaction.py Message-ID: Bugs item #701565, was opened at 2003-03-11 15:33 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=701565&group_id=8482 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Dierk Hoeppner (dhoeppner) Assigned to: Nobody/Anonymous (nobody) Summary: buggy call of webapi.http_headers in wikiaction.py Initial Comment: Hello all, in wikiaction.py routine do_export you call webapi.http_headers(headers), but it should be webapi.http_headers(request,headers) greetings -- Dierk H?ppner Universit?tsbibliothek Hannover und Technische Informationsbibliothek (UB/TIB) EDV Welfengarten 1b D-30167 Hannover Tel.: 0511 / 762 - 4067, Fax: 0511 / 762 - 5881 http://www.tib.uni-hannover.de ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=701565&group_id=8482 From wkpark at chem.skku.ac.kr Tue Mar 11 07:00:13 2003 From: wkpark at chem.skku.ac.kr (Won Kyu Park) Date: Tue Mar 11 07:00:13 2003 Subject: [Moin-devel] my patch for pygdchart In-Reply-To: <3E6DA160.4020503@uibe.edu.cn> References: <3E6DA160.4020503@uibe.edu.cn> Message-ID: <20030311145939.GA11518@chem.skku.ac.kr> On Tue, Mar 11, 2003 at 04:42:08PM +0800, nlany at uibe.edu.cn wrote: > > MoinMoin can use gdchart to show a page stats picture. This patch for > pygdchart 0.6.1 and gdchart 0.11.1dev can enable use freetype fonts, no > longer limited to the default dot-matrix english fonts. > Hope this is a good news for some Asia MoinMoin users. > > More Info and download ( about 10KB ) this patch from: > http://pub.uibe.edu.cn/~20031/mywiki/moin.cgi/PyGdChart > http://chem.skku.ac.kr/~kle/moin/PyGdChart This is another patch for the pygdchart 0.6.1 + gdchart0.11.2dev From jh at web.de Tue Mar 11 12:05:02 2003 From: jh at web.de (Juergen Hermann) Date: Tue Mar 11 12:05:02 2003 Subject: [Moin-devel] Date util In-Reply-To: <41647A6597ADD611803C005004D19FD23970FD@MAILMAN> Message-ID: On Mon, 10 Mar 2003 17:16:42 -0800, Nick Trout wrote: >holidays taken into account the problem gets worse. I don't think a >wiki.date util library should be too general but there could be some >useful functionality that could be shared. Add the helper funcs you need locally, but keep them together source- wise. Then we can later move anything that seems generic enough. Ciao, J?rgen From noreply at sourceforge.net Tue Mar 11 12:13:08 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Tue Mar 11 12:13:08 2003 Subject: [Moin-devel] [ moin-Bugs-701565 ] buggy call of webapi.http_headers in wikiaction.py Message-ID: Bugs item #701565, was opened at 2003-03-11 15:33 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=701565&group_id=8482 Category: None Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Submitted By: Dierk Hoeppner (dhoeppner) Assigned to: Nobody/Anonymous (nobody) Summary: buggy call of webapi.http_headers in wikiaction.py Initial Comment: Hello all, in wikiaction.py routine do_export you call webapi.http_headers(headers), but it should be webapi.http_headers(request,headers) greetings -- Dierk H?ppner Universit?tsbibliothek Hannover und Technische Informationsbibliothek (UB/TIB) EDV Welfengarten 1b D-30167 Hannover Tel.: 0511 / 762 - 4067, Fax: 0511 / 762 - 5881 http://www.tib.uni-hannover.de ---------------------------------------------------------------------- >Comment By: J?rgen Hermann (jhermann) Date: 2003-03-11 21:21 Message: Logged In: YES user_id=39128 no, we don't ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=701565&group_id=8482 From noreply at sourceforge.net Tue Mar 11 12:15:10 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Tue Mar 11 12:15:10 2003 Subject: [Moin-devel] [ moin-Bugs-697935 ] Problem in XML in the rss feed Message-ID: Bugs item #697935, was opened at 2003-03-05 12:35 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=697935&group_id=8482 Category: None Group: None >Status: Closed >Resolution: Works For Me Priority: 5 Submitted By: James Michael DuPont (mdupont) Assigned to: Nobody/Anonymous (nobody) Summary: Problem in XML in the rss feed Initial Comment: This bug is logged against the dotgnu wiki : https://savannah.gnu.org/pm/task.php? func=detailtask&project_task_id=1921&group_id=298&group _project_id=810 http://wiki.dotgnu.org/RecentChanges?action=rss_rc This outputs Comment By: J?rgen Hermann (jhermann) Date: 2003-03-11 21:23 Message: Logged In: YES user_id=39128 Not reproducable with a current PyXML ---------------------------------------------------------------------- Comment By: James Michael DuPont (mdupont) Date: 2003-03-05 13:06 Message: Logged In: YES user_id=147871 This code uses the rss generator : from MoinMoin.wikixml.util import RssGenerator handler = RssGenerator(out) handler.startDocument() ------------------------------------------ ./MoinMoin/wikixml/util.py default_xmlns = { None: "http://purl.org/rss/1.0/", 'rdf': "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 'xlink': "http://www.w3.org/1999/xlink", 'dc': "http://purl.org/dc/elements/1.1/", 'wiki': "http://purl.org/rss/1.0/modules/wiki/", } This should read default_xmlns = { '': "http://purl.org/rss/1.0/", 'rdf': "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 'xlink': "http://www.w3.org/1999/xlink", 'dc': "http://purl.org/dc/elements/1.1/", 'wiki': "http://purl.org/rss/1.0/modules/wiki/", } or however you leave an empty string : ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108482&aid=697935&group_id=8482 From ntrout at rockstarvancouver.com Tue Mar 11 12:19:09 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Tue Mar 11 12:19:09 2003 Subject: [Moin-devel] Date util In-Reply-To: <41647A6597ADD611803C005004D19FD23DD4C4@MAILMAN> Message-ID: <41647A6597ADD611803C005004D19FD2397103@MAILMAN> > From: jh at web.de [mailto:jh at web.de] > Sent: March 11, 2003 12:03 PM > Subject: RE: [Moin-devel] Date util > > On Mon, 10 Mar 2003 17:16:42 -0800, Nick Trout wrote: > > >holidays taken into account the problem gets worse. I don't think a > >wiki.date util library should be too general but there could be some > >useful functionality that could be shared. > > Add the helper funcs you need locally, but keep them together source- > wise. Then we can later move anything that seems generic enough. That's the conclusion I came to as well. I'm learning your style... :) I have DbTime and DbPeriod classes which can easily cut and pasted later. I noticed that someone had requested: """ I would suggest two macros wich would be useful to write information based on the date. ex: [[BEFORE('27/02/2002','Yeah, it will be by birthday in few weeks')]] ex: [[AFTER('27/02/2002','Gasp, I'm again one year older')]] Probably, the harder will be to deal with date format (I've been told that some strange countries wouldn't use the same format for dates than me) If someone does this, then as [[BETWEEN('','somedate',...)]] or even [[CONDITION('someexpr',...]] please. -- jh """ The functionality would be useful this as well. I've put the strptime code in a separate file which needs to go in the Python path. After Python 2.3 this won't be an issue. I'll try and publish the macro in the wiki market later today. Nick From jh at web.de Tue Mar 11 13:35:02 2003 From: jh at web.de (Juergen Hermann) Date: Tue Mar 11 13:35:02 2003 Subject: [Moin-devel] edit lock docs Message-ID: Hi! Can someone put some flesh onto http://twistedmatrix.com/users/jh.twistd/master/moin.cgi/HelpOnEditLocks ? Nick? Ciao, J?rgen From j.her at t-online.de Tue Mar 11 13:39:13 2003 From: j.her at t-online.de (Juergen Hermann) Date: Tue Mar 11 13:39:13 2003 Subject: [Moin-devel] Date util In-Reply-To: <41647A6597ADD611803C005004D19FD2397103@MAILMAN> Message-ID: <18srRy-18fIEyC@fwd03.sul.t-online.com> On Tue, 11 Mar 2003 12:17:23 -0800, Nick Trout wrote: >I've put the strptime code in a separate file which needs to go in the >Python path. After Python 2.3 this won't be an issue. Read MoinMoin/support/__init__.py on that matter. Ciao, J?rgen From ntrout at rockstarvancouver.com Tue Mar 11 15:24:01 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Tue Mar 11 15:24:01 2003 Subject: [Moin-devel] edit lock docs In-Reply-To: <41647A6597ADD611803C005004D19FD23DD4C9@MAILMAN> Message-ID: <41647A6597ADD611803C005004D19FD2397106@MAILMAN> > Hi! > > Can someone put some flesh onto > http://twistedmatrix.com/users/jh.twistd/master/moin.cgi/HelpOnEditLocks ? Nick? I think I was editing it whilst you were typing this message! :D Nick From ntrout at rockstarvancouver.com Tue Mar 11 19:32:12 2003 From: ntrout at rockstarvancouver.com (Nick Trout) Date: Tue Mar 11 19:32:12 2003 Subject: [Moin-devel] Date util In-Reply-To: <41647A6597ADD611803C005004D19FD23DD4CA@MAILMAN> Message-ID: <41647A6597ADD611803C005004D19FD2397109@MAILMAN> > >I've put the strptime code in a separate file which needs to > go in the > >Python path. After Python 2.3 this won't be an issue. > > Read MoinMoin/support/__init__.py on that matter. > Ciao, J?rgen This is the strptime substitute I have been using: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/56036 """ Since version 2.1.5, strptime has been included in Python (starting with 2.3) as the backup implementation for time.strptime when the C library used to compile Python does not have strptime. The Python distribution will always have the most updated version of strptime along with a PyUnit testing suite. """ This may only have to be patched until 2.3, but if you want to use strptime anywhere else (and its very useful for parsing times and dates) then it would be good if we all used the same implementation. I suppose it will still be necessary to those Moin servers that upgrade Moin but don't upgrade Python. Regards, Nick From noreply at sourceforge.net Wed Mar 12 15:50:16 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Wed Mar 12 15:50:16 2003 Subject: [Moin-devel] [ moin-Patches-413635 ] Page revert Message-ID: Patches item #413635, was opened at 2001-04-04 07:34 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=413635&group_id=8482 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Robin Dunn (robind) Assigned to: J?rgen Hermann (jhermann) Summary: Page revert Initial Comment: Allows pages to be reverted to old revisions by a "privileged user" ---------------------------------------------------------------------- >Comment By: J?rgen Hermann (jhermann) Date: 2003-03-13 01:01 Message: Logged In: YES user_id=39128 action=revert was added ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=413635&group_id=8482 From noreply at sourceforge.net Wed Mar 12 15:51:04 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Wed Mar 12 15:51:04 2003 Subject: [Moin-devel] [ moin-Patches-413635 ] Page revert Message-ID: Patches item #413635, was opened at 2001-04-04 07:34 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=413635&group_id=8482 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Robin Dunn (robind) Assigned to: J?rgen Hermann (jhermann) Summary: Page revert Initial Comment: Allows pages to be reverted to old revisions by a "privileged user" ---------------------------------------------------------------------- Comment By: J?rgen Hermann (jhermann) Date: 2003-03-13 01:01 Message: Logged In: YES user_id=39128 action=revert was added ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=413635&group_id=8482 From noreply at sourceforge.net Wed Mar 12 15:54:08 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Wed Mar 12 15:54:08 2003 Subject: [Moin-devel] [ moin-Patches-695729 ] i18n/ko.py update Message-ID: Patches item #695729, was opened at 2003-03-01 21:37 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=695729&group_id=8482 Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Hye-Shik Chang (perky) Assigned to: Nobody/Anonymous (nobody) Summary: i18n/ko.py update Initial Comment: New korean translation of moin messages. Note that Encoding: is utf-8, now. :) ---------------------------------------------------------------------- >Comment By: J?rgen Hermann (jhermann) Date: 2003-03-13 01:04 Message: Logged In: YES user_id=39128 please send i18n updates via mail, that is less work ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=695729&group_id=8482 From noreply at sourceforge.net Fri Mar 21 08:59:13 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Fri Mar 21 08:59:13 2003 Subject: [Moin-devel] [ moin-Patches-638372 ] username/password authentication w/ SHA Message-ID: Patches item #638372, was opened at 2002-11-14 12:44 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=638372&group_id=8482 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bernhard Rosenkraenzer (bero) Assigned to: J?rgen Hermann (jhermann) Summary: username/password authentication w/ SHA Initial Comment: Hi, I've noticed the earlier user/password authentication patch posted here, and liked the idea (though not all aspects of the implementation). Here's a new patch (based on the older one) that - works with CVS of about a week ago (didn't try today's) - doesn't store plaintext passwords anymore (uses SHA hashes) ---------------------------------------------------------------------- >Comment By: Bernhard Rosenkraenzer (bero) Date: 2003-03-21 16:45 Message: Logged In: YES user_id=15538 Patch updated to current CVS ---------------------------------------------------------------------- Comment By: Bernhard Rosenkraenzer (bero) Date: 2002-12-04 16:31 Message: Logged In: YES user_id=15538 Attaching yet another new version, adding a Sourceforge-like Remember Me button determining the expiration time of the login cookie. ---------------------------------------------------------------------- Comment By: Bernhard Rosenkraenzer (bero) Date: 2002-12-04 15:19 Message: Logged In: YES user_id=15538 I'm attaching another new version: - Verified to work with today's CVS - Allows users to change passwords - Password repeat prompt when creating an account or changing passwords - shortens cookie expiration times - you typically don't want non-expiring cookies for authenticated accounts I'm not yet fully satisfied with the last part (cookie expiration time); this should be configurable (like Sourceforge's Remember Me checkbox, or maybe "if the user has set a password, expire soon; if the user uses just the ID cookie, don't expire") - but the rest of the patch should be ok. ---------------------------------------------------------------------- Comment By: Bernhard Rosenkraenzer (bero) Date: 2002-11-25 15:45 Message: Logged In: YES user_id=15538 I'm attaching an updated version of this patch, fixing 1 typo and 1 thing I overlooked when porting the old patch to current CVS (current.text -> _ in the user name already exists error message) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308482&aid=638372&group_id=8482 From noreply at sourceforge.net Mon Mar 24 00:06:24 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Mon Mar 24 00:06:24 2003 Subject: [Moin-devel] [ moin-Feature Requests-708690 ] moin-dump should optionally include attachments Message-ID: Feature Requests item #708690, was opened at 2003-03-24 09:19 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358482&aid=708690&group_id=8482 Category: None Group: None Status: Open Priority: 5 Submitted By: Robert Pollak (jondo) Assigned to: Nobody/Anonymous (nobody) Summary: moin-dump should optionally include attachments Initial Comment: .. e.g. pictures inlined with "attachment:filename". ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358482&aid=708690&group_id=8482 From nlany at uibe.edu.cn Mon Mar 24 19:08:03 2003 From: nlany at uibe.edu.cn (nlany at uibe.edu.cn) Date: Mon Mar 24 19:08:03 2003 Subject: [Moin-devel] suggestion on UI Message-ID: <3E7FC7DF.5030704@uibe.edu.cn> I can wait no time to suggest a little modification on moin standard release: Please display the preview area above the page edit form, like http://wiki.cs.uiuc.edu/VisualWorks This is a very humanism user interface design although will not save your time authoring wikipages. I can't remember how many times I have to scroll down the page to check the preview and then scroll up to fix the editable text or just click "save" button. And amazingly, never have I had any complaints! -- Yufeng Lan http://pub.uibe.edu.cn/~20031 Univ. of International Buz.&Eco. O: 6449 2311 From noreply at sourceforge.net Wed Mar 26 03:31:11 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Wed Mar 26 03:31:11 2003 Subject: [Moin-devel] [ moin-Feature Requests-709995 ] Option to disable CamelCase links Message-ID: Feature Requests item #709995, was opened at 2003-03-26 12:43 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358482&aid=709995&group_id=8482 Category: None Group: None Status: Open Priority: 5 Submitted By: Robert Pollak (jondo) Assigned to: Nobody/Anonymous (nobody) Summary: Option to disable CamelCase links Initial Comment: In the wiki i administrate, people often use words that look like WikiNames, but aren't - and they complain. Or they use ugly workarounds to avoid "wikification" of a word, like "ThisIs''''''NoWikiWord". So (instead of enabling the "!"prefix notation to avoid link generation) i'd like to switch off CamelCase links totally (as in WikiPedia), leaving people only with ["foobar"] notation. How do i do this (as a python newbie)? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358482&aid=709995&group_id=8482 From noreply at sourceforge.net Wed Mar 26 11:33:23 2003 From: noreply at sourceforge.net (SourceForge.net) Date: Wed Mar 26 11:33:23 2003 Subject: [Moin-devel] [ moin-Feature Requests-709995 ] Option to disable CamelCase links Message-ID: Feature Requests item #709995, was opened at 2003-03-26 12:43 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358482&aid=709995&group_id=8482 Category: None Group: None Status: Open Priority: 5 Submitted By: Robert Pollak (jondo) Assigned to: Nobody/Anonymous (nobody) Summary: Option to disable CamelCase links Initial Comment: In the wiki i administrate, people often use words that look like WikiNames, but aren't - and they complain. Or they use ugly workarounds to avoid "wikification" of a word, like "ThisIs''''''NoWikiWord". So (instead of enabling the "!"prefix notation to avoid link generation) i'd like to switch off CamelCase links totally (as in WikiPedia), leaving people only with ["foobar"] notation. How do i do this (as a python newbie)? ---------------------------------------------------------------------- >Comment By: J?rgen Hermann (jhermann) Date: 2003-03-26 20:47 Message: Logged In: YES user_id=39128 You learn Python (takes a weekend). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358482&aid=709995&group_id=8482 From GenerateMoreSales7749 at yahoo.com Thu Mar 27 14:55:49 2003 From: GenerateMoreSales7749 at yahoo.com (Mable) Date: Thu Mar 27 14:55:49 2003 Subject: [Moin-devel] **15.5 MILLION OPT-IN EMAIL ADDRESSES...PLUS RECEIVE OVER $2,000 IN FREE MARKETING SOFTWARE! Message-ID: An HTML attachment was scrubbed... URL: