From tbird at lineo.com Mon Oct 1 17:12:02 2001 From: tbird at lineo.com (Tim Bird) Date: Mon Oct 1 17:12:02 2001 Subject: [Moin-user] Billenium bug References: Message-ID: <3BB90691.87D46919@lineo.com> Adam Shand wrote: > > > + oldversions = [x[1] for x in oldversions] > > this patch, specifically the line above breaks python 1.5.2 support. i'm > not sure if you're interested in supporting older versions but this breaks > it. I reworked the patch as follows: backup_re = re.compile(r'^%s\.\d+(\.\d+)?$' % (pagename,)) #oldversions = filter(backup_re.match, os.listdir(backup_dir)) oldversions = [] for file in os.listdir(backup_dir): if not backup_re.match(file): continue data = string.split(file,'.',1) oldversions.append(((data[0], float(data[1])),file)) oldversions.sort() oldversions.reverse() #oldversions = [x[1] for x in oldversions] I run MoinMoin on a machine I don't control, and they only have Python 1.5.2 on it. I'm conflicted on the 1.5.2 requirement. I prefer to use 2.0 whenever I can, but sometimes I do not have any control over this. The three main areas of syntactic sugar that appear to be at issue are: - list comprehensions - augmented assignment - builtin string object methods None of these are particularly difficult to translate back to Python 1.5.x mechanisms. ____________________________________________________________ Tim Bird Lineo, Inc. Senior VP, Research 390 South 400 West tbird at lineo.com Lindon, UT 84042 From jonas.b at home.se Fri Oct 5 08:53:02 2001 From: jonas.b at home.se (Jonas Bengtsson) Date: Fri Oct 5 08:53:02 2001 Subject: [Moin-user] Special characters Message-ID: Hello, I'm a quite new user and I have to say that MoinMoin is totally great! But there is a problem. I use sometimes Word to write the text that I paste into MoinMoin but some special characters gets "ugly". These are the ones I have identified so far: |character |converts to|I would rather have| | long ? | – | - | | ? | ’ | ' | |typograph"| “ | " | |typograph"|” | " | |... |… | ... | Does anyone understand what I'm looking for? Thanks in advance! /Jonas From bragiba at simi.is Fri Oct 5 09:00:09 2001 From: bragiba at simi.is (bragiba at simi.is) Date: Fri Oct 5 09:00:09 2001 Subject: [Moin-user] Special characters Message-ID: Jonas: Are you cutting and pasting from Word into Internet explorer or some other application? I cannot reproduce this on a Windows 2K NT cutting from Word and pasting into the MoinMoin edit window in Explorer. Bragi Bragi x6308 (GSM 892 6308) "Jonas Bengtsson" To: Sent by: cc: moin-user-admin at lists.sourc Subject: [Moin-user] Special characters eforge.net 05.10.2001 15:52 Hello, I'm a quite new user and I have to say that MoinMoin is totally great! But there is a problem. I use sometimes Word to write the text that I paste into MoinMoin but some special characters gets "ugly". These are the ones I have identified so far: |character |converts to|I would rather have| | long ? | – | - | | ' | ’ | ' | |typograph"| “ | " | |typograph"|” | " | |... |… | ... | Does anyone understand what I'm looking for? Thanks in advance! /Jonas _______________________________________________ Moin-user mailing list Moin-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/moin-user _______________________________________________________________________ ?essi t?lvup?stur og vi?hengi hans g?tu innihaldi? tr?na?aruppl?singar eing?ngu ?tla?ar ?eim sem hann er st?la?ur ?. Efni t?lvup?stsins og vi?hengi er ? ?byrg? sendanda ef ?a? tengist ekki starfsemi S?mans. Sj? n?nar: http://www.siminn.is/um_okkur/almennt/tolvupostur.asp This e-mail and its attachments may contain confidential and privileged information only intended for the person or entity to which it is addressed. Further information: http://www.siminn.is/english/about_us/email.asp _______________________________________________________________________ From gregr at cs.usyd.edu.au Tue Oct 16 23:45:10 2001 From: gregr at cs.usyd.edu.au (Greg Ryan) Date: Tue Oct 16 23:45:10 2001 Subject: [Moin-user] HTTP_COOKIE Message-ID: <20011017164423.F8999@basser0.cs.usyd.edu.au> I've just set up MoinMoin for some collaborative programming work in my department. I've run into a problem, where, if users have the the following cookie set in their browsing environment, the moin.cgi process takes an exception. The presence of an environment variable like the following: HTTP_COOKIE=um=http%3a//deco.cs.usyd.edu.au/cgi-bin/playcdtrack%3bhttp%3a//www.cs.usyd.edu.au/%7ebob/UM/um.cgi%3fgregr causes the problem. This cookie value is routinely used in another local web based system in the department. Before I go down the road of trying to work through this myself, I though I'd query this list to see if I've misconfigured the system in some obvious way, or whether others have encountered this problem. From jh at web.de Wed Oct 17 11:25:12 2001 From: jh at web.de (Juergen Hermann) Date: Wed Oct 17 11:25:12 2001 Subject: [Moin-user] HTTP_COOKIE In-Reply-To: <20011017164423.F8999@basser0.cs.usyd.edu.au> Message-ID: On Wed, 17 Oct 2001 16:44:23 +1000, Greg Ryan wrote: >Before I go down the road of trying to work through this myself, I >though I'd query this list to see if I've misconfigured the system in >some obvious way, or whether others have encountered this problem. Post the full traceback (or attach a snapshot of the generated html page) and I can say more. Ciao, J?rgen From gregr at cs.usyd.edu.au Wed Oct 17 18:34:18 2001 From: gregr at cs.usyd.edu.au (Greg Ryan) Date: Wed Oct 17 18:34:18 2001 Subject: [Moin-user] HTTP_COOKIE In-Reply-To: ; from jh@web.de on Wed, Oct 17, 2001 at 08:24:51PM +0200 References: <20011017164423.F8999@basser0.cs.usyd.edu.au> Message-ID: <20011018113216.M12221@ebola0.cs.usyd.edu.au> > From Juergen Hermann Thu Oct 18 04:24:51 2001 > > On Wed, 17 Oct 2001 16:44:23 +1000, Greg Ryan wrote: > > >Before I go down the road of trying to work through this myself, I > >though I'd query this list to see if I've misconfigured the system in > >some obvious way, or whether others have encountered this problem. > > Post the full traceback (or attach a snapshot of the generated html > page) and I can say more. > Thanks for the offer of help, and the excellent product. In fact the problem was fixed by moving to python2.1. The default installation here was 1.52. There must be a library difference in the cookie handling part. Basically 1.52 was dumping core (not a python traceback), when run with the cookie set as described in the earlier mail. From bragiba at simi.is Fri Oct 19 03:50:25 2001 From: bragiba at simi.is (bragiba at simi.is) Date: Fri Oct 19 03:50:25 2001 Subject: [Moin-user] How to center images Message-ID: I would like to know how to center images or text in MoinMoin. Is there any special markup for this? Thanks, Bragi Me? kve?ju Bragi Baldursson GPRS Kerfisverkfr??ingur S?mi 550-6308 Gsm 892-6308 Netfang: bragiba at siminn.is Veffang: http://www.siminn.is - S?minn au?veldar samskipti - _______________________________________________________________________ ?essi t?lvup?stur og vi?hengi hans g?tu innihaldi? tr?na?aruppl?singar eing?ngu ?tla?ar ?eim sem hann er st?la?ur ?. Efni t?lvup?stsins og vi?hengi er ? ?byrg? sendanda ef ?a? tengist ekki starfsemi S?mans. Sj? n?nar: http://www.siminn.is/um_okkur/almennt/tolvupostur.asp This e-mail and its attachments may contain confidential and privileged information only intended for the person or entity to which it is addressed. Further information: http://www.siminn.is/english/about_us/email.asp _______________________________________________________________________ From adam at personaltelco.net Fri Oct 19 10:02:21 2001 From: adam at personaltelco.net (Adam Shand) Date: Fri Oct 19 10:02:21 2001 Subject: [Moin-user] How to center images In-Reply-To: Message-ID: > I would like to know how to center images or text in MoinMoin. Is > there any special markup for this? i don't believe there is anyway to do this without: 1. using tables (but there's no way to turn off borders) 2. embedding html adam. From bragiba at simi.is Mon Oct 22 02:23:06 2001 From: bragiba at simi.is (bragiba at simi.is) Date: Mon Oct 22 02:23:06 2001 Subject: [Moin-user] How to center images Message-ID: Jurgen: How about adding markup for centering? Me? kve?ju Bragi Baldursson GPRS Kerfisverkfr??ingur S?mi 550-6308 Gsm 892-6308 Netfang: bragiba at siminn.is Veffang: http://www.siminn.is - S?minn au?veldar samskipti - Adam Shand To: Sent by: cc: moin-user-admin at lists.sourc Subject: Re: [Moin-user] How to center images eforge.net 19.10.2001 17:01 > I would like to know how to center images or text in MoinMoin. Is > there any special markup for this? i don't believe there is anyway to do this without: 1. using tables (but there's no way to turn off borders) 2. embedding html adam. _______________________________________________ Moin-user mailing list Moin-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/moin-user _______________________________________________________________________ ?essi t?lvup?stur og vi?hengi hans g?tu innihaldi? tr?na?aruppl?singar eing?ngu ?tla?ar ?eim sem hann er st?la?ur ?. Efni t?lvup?stsins og vi?hengi er ? ?byrg? sendanda ef ?a? tengist ekki starfsemi S?mans. Sj? n?nar: http://www.siminn.is/um_okkur/almennt/tolvupostur.asp This e-mail and its attachments may contain confidential and privileged information only intended for the person or entity to which it is addressed. Further information: http://www.siminn.is/english/about_us/email.asp _______________________________________________________________________ From jh at web.de Mon Oct 22 11:34:09 2001 From: jh at web.de (Juergen Hermann) Date: Mon Oct 22 11:34:09 2001 Subject: [Moin-user] How to center images In-Reply-To: Message-ID: On Mon, 22 Oct 2001 09:21:42 +0000, bragiba at simi.is wrote: >How about adding markup for centering? Wiki is supposed to be easy. The problem with that addition is that there is no evident, conflict-free markup for it, and that eventually we arrive at HTML expressed in another way. If you need that fine-grained formatting, use HTML or XML/XSLT (both possible with current code). And finally, there is http://moin.sourceforge.net/cgi-bin/moin/moin/macro_2fHTML_2epy to embed html. Ciao, J?rgen From bragiba at simi.is Tue Oct 23 09:19:11 2001 From: bragiba at simi.is (bragiba at simi.is) Date: Tue Oct 23 09:19:11 2001 Subject: [Moin-user] Linking using # (reference) Message-ID: In the code below I am making an acronym page which will link an acronym to an AcronymIndex page and a reference on that page indicated by #. After updating to the latest MoinMoin version my # get turned into a _23 which is not what I want. Taking a look at the html source that MoinMoin generates you can see that the _23 has been replaced for my #. Do you have any clue how this happened? ACRONYM Best Regards, Bragi def _macro_Acronym(self, acronym): """This macro makes a link out of an acronym""" first_letter = string.upper(acronym[0]) return Page("AcronymIndex#%s" % first_letter).link_to(acronym) def _macro_AcronymIndex(self, args): """This macro opens the page acronyms.txt. Extracts all the macros and explanations and creates an index page similar to a title index""" index_letters = [] s = '' page = open('c:/Inetpub/wwwroot/acronyms/acronyms.txt', 'r') lines = page.readlines() page.close() current_letter = None for line in lines: split = string.split(line, ';') try: acronym = string.strip(split[0]) definition = string.strip(split[1]) except IndexError: pass letter = acronym[0] if letter not in index_letters: index_letters.append(letter) if letter <> current_letter: s = s + '\n

%s

\n' % ( wikiutil.quoteWikiname(letter), string.replace(letter, '~', 'Others')) current_letter = letter s = s + '\n\n \n\n' % (acronym, definition) s = s + '
%s%s
' return _make_index_key(index_letters, s) Me? kve?ju Bragi Baldursson GPRS Kerfisverkfr??ingur S?mi 550-6308 Gsm 892-6308 Netfang: bragiba at siminn.is Veffang: http://www.siminn.is - S?minn au?veldar samskipti - _______________________________________________________________________ ?essi t?lvup?stur og vi?hengi hans g?tu innihaldi? tr?na?aruppl?singar eing?ngu ?tla?ar ?eim sem hann er st?la?ur ?. Efni t?lvup?stsins og vi?hengi er ? ?byrg? sendanda ef ?a? tengist ekki starfsemi S?mans. Sj? n?nar: http://www.siminn.is/um_okkur/almennt/tolvupostur.asp This e-mail and its attachments may contain confidential and privileged information only intended for the person or entity to which it is addressed. Further information: http://www.siminn.is/english/about_us/email.asp _______________________________________________________________________ From jh at web.de Tue Oct 23 13:14:07 2001 From: jh at web.de (Juergen Hermann) Date: Tue Oct 23 13:14:07 2001 Subject: [Moin-user] Linking using # (reference) In-Reply-To: Message-ID: On Tue, 23 Oct 2001 16:17:49 +0000, bragiba at simi.is wrote: >the _23 has been replaced for my #. Works as defined. You cannot make the anchor a part of the pagename, it has to be a part of the LINK to it. > def _macro_Acronym(self, acronym): You should add extensions into the macro _directory_, not into the wikimacro module. For the link: wikiutil.link_tag("AcronymIndex#%s" % first_letter, acronym) > page = open('c:/Inetpub/wwwroot/acronyms/acronyms.txt', 'r') Absolute paths are bad, use config.data_dir. Ciao, J?rgen From MarvinGS at sternpost.de Wed Oct 24 00:01:08 2001 From: MarvinGS at sternpost.de (MarvinGS) Date: Wed Oct 24 00:01:08 2001 Subject: [Moin-user] Changing the RecentChanges Message-ID: <200110240700.JAA24951@mailbox-6.caramail.com> The Users of my (moinmoin ;) Wiki asked me if i could slightly change the bahaviour of the RecentChanges. They would prefer not to only see the last editor of a page if he only corrected the formatting or spelling of somebody elses entry. I see two possible options and i would like to know your opinion on them... Option 1: Possibility to mark changes a minor on a save. The User could check a box saying that he only applied minor changes to the formatting or spelling. This save would then only show up in the Pages own History but not in the RecentChanges. Option 2: Show all Editors of a page since last Bookmark (only for logged-in users) Logged-in Users would then see a list of all Users that saved the page in a chronological list. (I'm not sure if single users should show up more than once yet) Thet could mess up the RecentChanges if the Bookmark ist relly old so maybe it should be limited to a certain time also. I'd prefer Option 2 since it would not require the user to mark their changes as minor. What do you (especially Juergen ;) think? Patrick Guenther alias MarvinGS http://MarvinGS.de From jh at web.de Wed Oct 24 10:07:07 2001 From: jh at web.de (Juergen Hermann) Date: Wed Oct 24 10:07:07 2001 Subject: [Moin-user] Changing the RecentChanges In-Reply-To: <200110240700.JAA24951@mailbox-6.caramail.com> Message-ID: On Wed, 24 Oct 2001 08:57:40 +0200, MarvinGS wrote: >Option 1: Possibility to mark changes a minor on a save. >The User could check a box saying that he only applied minor changes to the formatting or spelling. This save would then only show up in the Pages own History but not in >the RecentChanges. Relatively easy (do not append to editlog, or mark & filter later). >Option 2: Show all Editors of a page since last Bookmark (only for logged-in users) >Logged-in Users would then see a list of all Users that saved the page in a chronological list. (I'm not sure if single users should show up more than once yet) Thet could >mess up the RecentChanges if the Bookmark ist relly old so maybe it should be limited to a certain time also. Currently, a performance killer. From adam at personaltelco.net Wed Oct 24 10:41:01 2001 From: adam at personaltelco.net (Adam Shand) Date: Wed Oct 24 10:41:01 2001 Subject: [Moin-user] Changing the RecentChanges In-Reply-To: Message-ID: > >Option 2: Show all Editors of a page since last Bookmark (only for > logged-in users) > >Logged-in Users would then see a list of all Users that saved the page in > a chronological list. (I'm not sure if single users should show up more > than once yet) Thet could > >mess up the RecentChanges if the Bookmark ist relly old so maybe it > should be limited to a certain time also. > > Currently, a performance killer. On this note ... I've noticed that opening the RecentChanges page has been getting steadily slower the longer my wiki has been around. My assumption had just been that the server was probably just getting busier as it's a fairly busy wiki (200-300 thousand hits a month) however i was talking to a friend who runs a similar wiki (SeattleWireless) and he's having the same problem now that he's upgraded to 0.9. I tried rolling the editlog earlier today and it doesn't seem to have made much of a difference. Do you have any other suggestions on why this would be happing and what I could do? Adam. From j.her at t-online.de Wed Oct 24 11:00:07 2001 From: j.her at t-online.de (Juergen Hermann) Date: Wed Oct 24 11:00:07 2001 Subject: [Moin-user] Changing the RecentChanges In-Reply-To: Message-ID: <15wSIp-206pZgC@fwd00.sul.t-online.com> On Wed, 24 Oct 2001 10:40:04 -0700 (PDT), Adam Shand wrote: >I tried rolling the editlog earlier today and it doesn't seem to have made >much of a difference. Do you have any other suggestions on why this would >be happing and what I could do? Wait a little for the mysql storage class. ;) From gse at antisleep.com Wed Oct 24 11:08:08 2001 From: gse at antisleep.com (Scott Evans) Date: Wed Oct 24 11:08:08 2001 Subject: [Moin-user] Changing the RecentChanges In-Reply-To: <15wSIp-206pZgC@fwd00.sul.t-online.com> Message-ID: > >I tried rolling the editlog earlier today and it doesn't seem to have made > >much of a difference. Do you have any other suggestions on why this would > >be happing and what I could do? > > Wait a little for the mysql storage class. ;) Reallllly. Fast Wiki! From adam at personaltelco.net Wed Oct 24 12:22:22 2001 From: adam at personaltelco.net (Adam Shand) Date: Wed Oct 24 12:22:22 2001 Subject: [Moin-user] Changing the RecentChanges In-Reply-To: Message-ID: On Wed, 24 Oct 2001, Juergen Hermann wrote: > Wait a little for the mysql storage class. ;) icky ... i'm not a big fan of sql, one of the things i like about moin is that it's one of the few feature rich wiki's that doesn't require a sql back end. > Also purge the backup dir, like > find bleh/data/backup -type f -mtime +90 -exec rm {} \; that's easy enough, why does this effect RecentChanges though? doesn't it just parse the editlog? adam. From tbird at lineo.com Wed Oct 24 12:47:07 2001 From: tbird at lineo.com (Tim Bird) Date: Wed Oct 24 12:47:07 2001 Subject: [Moin-user] Changing the RecentChanges References: Message-ID: <3BD71B2E.C2DAE081@lineo.com> Adam Shand wrote: > On this note ... I've noticed that opening the RecentChanges page has been > getting steadily slower the longer my wiki has been around. My assumption > had just been that the server was probably just getting busier as it's a > fairly busy wiki (200-300 thousand hits a month) however i was talking to > a friend who runs a similar wiki (SeattleWireless) and he's having the > same problem now that he's upgraded to 0.9. > > I tried rolling the editlog earlier today and it doesn't seem to have made > much of a difference. Do you have any other suggestions on why this would > be happing and what I could do? We noted considerable slowdowns on RecentPages here when we hit about 800 active pages, and about 4000 backups. We did some profiling, and found that much of the processing could be eliminated if we wanted to give up certain features. What we did was: - copy RecentChanges.py to FancyRecentChanges.py - made the changes (in the attached patch) to RecentChanges.py - made a link from RecentChanges (the wiki page) to FancyRecentChanges Thus, if a user wants to see the extra features, they are just a click (and a wait) away. The things we found that caused slowdowns (that we were willing to modify) were: - adding a bookmark for the last editor's wiki page - examining a whole month's backups (we cut this to 2 weeks) - highlighting the page if newer than the user's bookmark I think we also removed a whole bunch of outdated backups. These tend to accumulate without bound. Hope this helps. The patch is against release 0.8 (I think) ____________________________________________________________ Tim Bird Lineo, Inc. Senior VP, Research 390 South 400 West tbird at lineo.com Lindon, UT 84042 -------------- next part -------------- A non-text attachment was scrubbed... Name: RecentChanges.patch Type: application/x-patch Size: 4585 bytes Desc: not available URL: From jh at web.de Wed Oct 24 12:49:06 2001 From: jh at web.de (Juergen Hermann) Date: Wed Oct 24 12:49:06 2001 Subject: [Moin-user] Changing the RecentChanges In-Reply-To: Message-ID: On Wed, 24 Oct 2001 12:21:49 -0700 (PDT), Adam Shand wrote: >> Wait a little for the mysql storage class. ;) > >icky ... i'm not a big fan of sql, one of the things i like about moin is >that it's one of the few feature rich wiki's that doesn't require a sql >back end. Did I say anywhere it will? ;) Ciao, J?rgen From adam at personaltelco.net Wed Oct 24 13:26:06 2001 From: adam at personaltelco.net (Adam Shand) Date: Wed Oct 24 13:26:06 2001 Subject: [Moin-user] Changing the RecentChanges In-Reply-To: Message-ID: > Did I say anywhere it will? ;) no but my experience is that once a program has a sql backend supporting the old files based stuff tends to be a pain to maintain and fall by the wayside :-) regardless, moin is great and i deeply appreciate all the work you've put in. adam. From jh at web.de Wed Oct 24 15:23:02 2001 From: jh at web.de (Juergen Hermann) Date: Wed Oct 24 15:23:02 2001 Subject: [Moin-user] LocalSiteMap action Message-ID: I added Steve Howell's LocalSiteMap action, as usual with a few modifications. :) It's nice. Ciao, J?rgen From adam at personaltelco.net Sun Oct 28 23:01:01 2001 From: adam at personaltelco.net (Adam Shand) Date: Sun Oct 28 23:01:01 2001 Subject: [Moin-user] double click to edit. Message-ID: if any one is interested i hacked my wiki to do this tonight. it's pretty straight forward though i'm sure i've done this the ugliest way possible :) you can test it here, double click anywhere on the page that doesn't already have an action assigned to it and it will load the page up in an edit window. it's kinda cool cause it saves you moving up and down the page to find the edit icon. http://www.personaltelco.net/ patch consists of adding this line to moin_config.py (pretty much anywhere that makes you happy): click_to_edit=1 then open up wikiutil.py, search for and change this line: print '' to this: print '' i only have windows/ie at home right now so i have no idea if this will work under linux or other browsers, hopefully it will. adam. From adam at personaltelco.net Mon Oct 29 09:47:03 2001 From: adam at personaltelco.net (Adam Shand) Date: Mon Oct 29 09:47:03 2001 Subject: [Moin-user] double click to edit. In-Reply-To: Message-ID: > if any one is interested i hacked my wiki to do this tonight. it's > pretty straight forward though i'm sure i've done this the ugliest way > possible :) just fyi after a little more testing: works in windows with ie 5+ works in linux with mozilla/galeon doesn't work in linux with netscape 4.77, konqueror or opera :-( adam. From adam at personaltelco.net Mon Oct 29 11:00:04 2001 From: adam at personaltelco.net (Adam Shand) Date: Mon Oct 29 11:00:04 2001 Subject: [Moin-user] double click to edit. In-Reply-To: Message-ID: > if any one is interested i hacked my wiki to do this tonight. it's > pretty straight forward though i'm sure i've done this the ugliest way > possible :) ... i'm a moron. sorry all for the repeated spam. it turns out that this breaks the search capability. the problem is that when you run a search the context is differnet and the webapi call to get the page name doesn't work, but i don't know how to test for this so that it'll only try and do this when it's giving you a page that *can* be edited. could someone lend a hand please? thanks, adam. 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 last. the error i get is: /var/www/www.personaltelco.net/MoinMoin/cgimain.py in run() 170 try: 171 from MoinMoin.support import cgitb 172 cgitb.handler() cgitb = , handler = 173 except: 174 cgi.print_exception() /var/www/www.personaltelco.net/MoinMoin/wikiaction.py in do_fullsearch (pagename='FrontPage', form=FieldStorage(None, None, [MiniFieldStorage('acti...fullsearch'), MiniFieldStorage('value', 'adsf')])) 42 43 # send title 44 wikiutil.send_title(user.current.text('Full text search for "%s"') % (needle,)) global wikiutil = , global send_title = undefined, global user = , global current = undefined, global text = undefined, needle = 'adsf' 45 46 # search the pages /var/www/www.personaltelco.net/MoinMoin/wikiutil.py in send_title(text='Full text search for "adsf"', **keywords={}) 252 print ", global getScriptname = undefined, global quoteWikiname = , keywords = {} 255 print ">" 256 KeyError: pagename args = ('pagename',)