From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: Version 0.10 (2001-10-28, Revision 1.134) ... Bugfixes: * Bugfix for a UNIX time billenium bug (affecting RecentChanges sorting and page diffs) --Original Message Text--- From: Charles Medcoff Date: Wed, 28 Nov 2001 12:57:07 -0500 I have MoinMoin 0.9 installed on Win2K with Python 2.1. When I selected= the information action all the revisions of the page are displayed. When I select diff I expect to see= a difference between the revision and the previous revision but all I ever see is "No differences found!". Perhap= s this is a bug or I don't understand how this feature works. Could someone clarify? Regards, Chuck Ciao, J=FCrgen --_=_=_=IMA.BOUNDARY.HTML_4924592=_=_=_ Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable From CHANGES:

Version 0.10 (2001-10-28, Revision 1.134)

...

Bugfixes:
* Bugfix for a UNIX time billenium bug (affecting RecentChanges
sorting and page diffs)

--Original Message Text---
From: Charles Medcoff
Date: Wed, 28 Nov 2001 12:57:07 -0500

I have MoinMoin 0= .9 installed on Win2K with Python 2.1. When I selected the information = action all the revisions of the page are displayed. When I select diff = I expect to see a difference between the revision and the previous revis= ion but all I ever see is "No differences found!". Perhaps this is a bu= g or I don't understand how this feature works. Could someone clarify?<= FONT FACE=3D"Lucida Console" DEFAULT=3D"FACE">

Regards,
Chuck


Ciao, J=FCrgen --_=_=_=IMA.BOUNDARY.HTML_4924592=_=_=_-- From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: To : master at 15668.net Subject : test Message-ID: Attachment(s) removed: ----------------------------------------- document.scr From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: access to a page that I should only be able to read. Help appreciated. Mike -- Michael P. Soulier , 613-592-2122 x2522 6000/6010/60* Development, Mitel Networks Corporation "...the word HACK is used as a verb to indicate a massive amount of nerd-like effort." -Harley Hahn, A Student's Guide to Unix From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: is Location. In particular, .htaccess should only be used in certain instances per the Apache 2 docs: ''' When (not) to use .htaccess files In general, you should never use .htaccess files unless you don't have access to the main server configuration file. There is, for example, a prevailing misconception that user authentication should always be done in .htaccess files. This is simply not the case. You can put user authentication configurations in the main server configuration, and this is, in fact, the preferred way to do things. .htaccess files should be used in a case where the content providers need to make configuration changes to the server on a per-directory basis, but do not have root access on the server system. In the event that the server administrator is not willing to make frequent configuration changes, it might be desirable to permit individual users to make these changes in .htaccess files for themselves. This is particularly true, for example, in cases where ISPs are hosting multiple user sites on a single machine, and want their users to be able to alter their configuration. However, in general, use of .htaccess files should be avoided when possible. Any configuration that you would consider putting in a .htaccess file, can just as effectively be made in a section in your main server configuration file. There are two main reasons to avoid the use of .htaccess files. The first of these is performance. When AllowOverride is set to allow the use of .htaccess files, Apache will look in every directory for .htaccess files. Thus, permitting .htaccess files causes a performance hit, whether or not you actually even use them! Also, the .htaccess file is loaded every time a document is requested. ''' And extracting some of the advice for Location: ''' When to use Use to apply directives to content that lives outside the filesystem. For content that lives in the filesystem, use and . An exception is , which is an easy way to apply a configuration to the entire server. ...snip... The functionality is especially useful when combined with the SetHandler directive. For example, to enable status requests, but allow them only from browsers at foo.com, you might use: SetHandler server-status Order Deny,Allow Deny from all Allow from .foo.com ''' I think the starting point in fixing the mod_python docs is to nail down the tags that should be used. In particular, I don't understand why the docs suggest using .htaccess tags -- that seems to a choice that should be used in only very specialized cases. Roger Haase __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: cannot locate the dot program. When I modified the dot.py to look like: p = os.popen('which dot; which ls; dot -Tpng -Gbgcolor=transparent -o "' + pngpath The preview page provides the path to 'ls' but didn't provide the path to 'dot'. I restarted the web server thinking there may be a cache of the binaries under /usr/bin. But, that didn't work. How do I get moin to recognize that the 'dot' binary is under /usr/bin? It seem like moin does not recognize any binaries under /usr/bin that had been installed after the installation of moin. Your assistance is greatly appreciated. Thanks, Anthony From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: did not make it into the 1.3.5 release. The following fix seems to work for me on 1.3.4 using Windows/XP with Apache-mod_python. Find the following 4 lines of code at line 918 of Page.py in version 1.3.4 (line 912 of 1.3.5) and comment them out, and then add the single corresponding line from Moin 1.2.4. #~ if request.form.has_key('highlight'): #~ self.hilite_re = request.form['highlight'][0] #~ else: #~ self.hilite_re = None self.hilite_re = keywords.get('hilite_re', None) Consider the above lightly tested -- it seems to work for me. I do not understand the reason for the revised code (nor the "low" priority assigned to this bug). Roger Haase __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: Attempting to use this ( as [[PageHits]] ) on the FrontPage gives the following error; =20 UnicodeDecodeError'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128)=20 Please include this information in your bug reports!: Python Python 2.4.2: C:\Python24\python.exe Platform: win32 (nt) MoinMoin Release 1.3.5 [Revision 1.3.5 release] Tue Apr 11 13:38:20 2006=20 A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred. c:\Python24\lib\site-packages\MoinMoin\request.py in run(self=3D)=20 834 from MoinMoin.wikiaction import getHandler =20 835 handler =3D getHandler(self, action) =20 836 handler(self.page.page_name, self) =20 837=20 =20 838 # 5. Or redirect to another page =20 handler =3D , self =3D , self.page =3D , self.page.page_name =3D u'FrontPage'=20 c:\Python24\lib\site-packages\MoinMoin\wikiaction.py in do_savepage(pagename=3Du'FrontPage', request=3D)=20 636 pg =3D Page(request, backto) =20 637=20 =20 638 pg.send_page(request, msg=3Dsavemsg) =20 639 =20 =20 640=20 =20 pg =3D , pg.send_page =3D >, request =3D , msg undefined, savemsg =3D u'Thank you for your changes. Your attention to detail is appreciated.'=20 c:\Python24\lib\site-packages\MoinMoin\Page.py in send_page(self=3D, request=3D, msg=3Du'Thank you for your changes. Your attention to detail is appreciated.', **keywords=3D{})=20 1152 else: =20 1153 # parse the text and send the page content =20 1154 self.send_page_content(request, Parser, body, format_args=3Dpi_formatargs, do_cache=3Ddo_cache) =20 1155=20 =20 1156 # check for pending footnotes =20 self =3D , self.send_page_content =3D >, request =3D , Parser =3D , body =3D u'=3D TsmWiki =3D\n * If you are sim= ply looking for hel...This wiki is powered by MoinMoin. \n\n[[PageHits]]\n', format_args undefined, pi_formatargs =3D u'', do_cache =3D 1=20 c:\Python24\lib\site-packages\MoinMoin\Page.py in send_page_content(self=3D, request=3D, Parser=3D, body=3Du'=3D TsmWiki =3D\n * If you are simply looking for hel...This wiki is powered by MoinMoin. \n\n[[PageHits]]\n', needsupdate=3D1, format_args=3Du'', do_cache=3D1)=20 1312 __file__ =3D os.path.join(moinmodule.__loader__.archive, 'dummy') =20 1313=20 =20 1314 exec code =20 1315 except 'CacheNeedsUpdate': =20 1316 # if something goes wrong, try without caching =20 code =3D =20 C:\moin\TsmWiki\FrontPage =20 =20 c:\Python24\lib\site-packages\MoinMoin\formatter\base.py in macro(self=3D, macro_obj=3D, name=3Du'PageHits', args=3DNone)=20 229 def macro(self, macro_obj, name, args): =20 230 # call the macro =20 231 return macro_obj.execute(name, args) =20 =20 232=20 =20 233 def _get_bang_args(self, line): =20 macro_obj =3D , macro_obj.execute =3D >, name =3D u'PageHits', args =3D None=20 c:\Python24\lib\site-packages\MoinMoin\wikimacro.py in execute(self=3D, macro_name=3Du'PageHits', args=3DNone)=20 99 macro =3D wikiutil.importPlugin(self.request.cfg, 'macro', macro_name) =20 100 if macro: =20 101 return macro(self, args) =20 102=20 =20 103 builtins =3D vars(self.__class__) =20 macro =3D , self =3D , args =3D None=20 c:\Python24\lib\site-packages\MoinMoin\macro\PageHits.py in execute(macro=3D, args=3DNone)=20 106 return ''.join(result) =20 107=20 =20 108=20 =20 109 def execute(macro, args): =20 110 return PageHits(macro, args).execute() =20 global PageHits =3D , macro =3D , args =3D None, ).execute undefined=20 c:\Python24\lib\site-packages\MoinMoin\macro\PageHits.py in execute(self=3D)=20 37 """ Execute the macro and return output """ =20 38 cacheDate, hits =3D self.cachedHits() =20 39 self.addHitsFromLog(hits, cacheDate) =20 40 self.filterReadableHits(hits) =20 41 hits =3D [(hits[pagename], pagename) for pagename in hits] =20 self =3D , self.addHitsFromLog =3D >, hits =3D {u'!=3D(notEqual)': 1, u'"accessDenied"': 8, u'"classicRestore"': 4, u'"closedSug"': 3, u'"deleted"': 2, u'"incrementalForever"': 9, u'"ja"': 2, u'"manySmallFiles"Problem': 6, u'"notSupported"': 6, u'"outOfBand"': 4, .=2E.}, cacheDate =3D 1140011950000000L=20 c:\Python24\lib\site-packages\MoinMoin\macro\PageHits.py in addHitsFromLog(self=3D, hits=3D{u'!=3D(notEqual)': 1, u'"accessDenied"': 8, u'"classicRestore"': 4, u'"closedSug"': 3, u'"deleted"': 2, u'"incrementalForever"': 9, u'"ja"': 2, u'"manySmallFiles"Problem': 6, u'"notSupported"': 6, u'"outOfBand"': 4, ...}, cacheDate=3D1140011950000000L)=20 64 changed =3D False =20 65 event_log.set_filter(['VIEWPAGE']) =20 66 for event in event_log.reverse(): =20 67 if event[0] <=3D cacheDate: =20 68 break =20 event =3D (1144682954921000L, u'VIEWPAGE', {u'HTTP_REFERER': u'http://www.tsmwiki.com/tsmwiki/ModificationsR%C3%A9centes', u'HTTP_USER_AGENT': u'Mozilla/5.0 (Windows; U; Windows NT 5.0; fr-FR; rv:1.7.12) Gecko/20050919 Firefox/1.0.7', u'REMOTE_ADDR': u'160.92.7.69', u'pagename': u'DiscussionPages/TheTsmWikiLogo'}), event_log =3D , event_log.reverse =3D >=20 c:\Python24\lib\site-packages\MoinMoin\logfile\logfile.py in reverse(self=3D)=20 99 while 1: =20 100 try: =20 101 result =3D self.previous() =20 102 except StopIteration: =20 103 return =20 result =3D (1144682954921000L, u'VIEWPAGE', {u'HTTP_REFERER': u'http://www.tsmwiki.com/tsmwiki/ModificationsR%C3%A9centes', u'HTTP_USER_AGENT': u'Mozilla/5.0 (Windows; U; Windows NT 5.0; fr-FR; rv:1.7.12) Gecko/20050919 Firefox/1.0.7', u'REMOTE_ADDR': u'160.92.7.69', u'pagename': u'DiscussionPages/TheTsmWikiLogo'}), self =3D , self.previous =3D >=20 c:\Python24\lib\site-packages\MoinMoin\logfile\logfile.py in previous(self=3D)=20 294 while result =3D=3D None: =20 295 while result =3D=3D None: =20 296 result =3D self.__previous() =20 297 if self.filter and not self.filter(result): =20 298 result =3D None =20 result =3D None, self =3D , self.__previous undefined=20 c:\Python24\lib\site-packages\MoinMoin\logfile\logfile.py in __previous(self=3D)=20 284 def __previous(self): =20 285 if self.peek(-1): raise StopIteration =20 286 return self.parser(self.__buffer.lines[self.__rel_index]) =20 287=20 =20 288 def previous(self): =20 self =3D , self.parser =3D >, self.__buffer undefined, self.__rel_index undefined=20 c:\Python24\lib\site-packages\MoinMoin\logfile\eventlog.py in parser(self=3D, line=3Du'1144682941906000\tVIEWPAGE\tpagename=3DModifications...%3Faction%3D LocalSiteMap&REMOTE_ADDR=3D160.92.7.69\n')=20 53 # badly formatted line in file, skip it =20 54 return None =20 55 return long(time_usecs), eventtype, web.parseQueryString(kvpairs) =20 56 =20 57 def set_filter(self, event_types =3D None): =20 long undefined, time_usecs =3D u'1144682941906000', eventtype =3D u'VIEWPAGE', global web =3D , web.parseQueryString =3D , kvpairs =3D u'pagename=3DModificationsR%C3%A9centes&HTTP_USER_AG...i%3Faction%3DLocalS iteMap&REMOTE_ADDR=3D160.92.7.69'=20 c:\Python24\lib\site-packages\MoinMoin\util\web.py in parseQueryString(qstr=3Du'pagename=3DModificationsR%C3%A9centes&HTTP_USER_AG .=2E.i%3Faction%3DLocalSiteMap&REMOTE_ADDR=3D160.92.7.69')=20 28 import cgi =20 29 values =3D {} =20 30 for key, value in cgi.parse_qs(qstr).items(): =20 31 if len(value) < 2: =20 32 values[key] =3D ''.join(value) =20 key undefined, value undefined, cgi =3D , cgi.parse_qs =3D , qstr =3D u'pagename=3DModificationsR%C3%A9centes&HTTP_USER_AG...i%3Faction%3DLocalS iteMap&REMOTE_ADDR=3D160.92.7.69', ).items undefined=20 C:\Python24\lib\cgi.py in parse_qs(qs=3Du'pagename=3DModificationsR%C3%A9centes&HTTP_USER_AG...i%3Fact ion%3DLocalSiteMap&REMOTE_ADDR=3D160.92.7.69', keep_blank_values=3D0, strict_parsing=3D0)=20 181 """ =20 182 dict =3D {} =20 183 for name, value in parse_qsl(qs, keep_blank_values, strict_parsing): =20 184 if name in dict: =20 185 dict[name].append(value) =20 name undefined, value undefined, global parse_qsl =3D , qs =3D u'pagename=3DModificationsR%C3%A9centes&HTTP_USER_AG...i%3Faction%3DLocalS iteMap&REMOTE_ADDR=3D160.92.7.69', keep_blank_values =3D 0, strict_parsing = =3D 0=20 C:\Python24\lib\cgi.py in parse_qsl(qs=3Du'pagename=3DModificationsR%C3%A9centes&HTTP_USER_AG...i%3Fac tion%3DLocalSiteMap&REMOTE_ADDR=3D160.92.7.69', keep_blank_values=3D0, strict_parsing=3D0)=20 223 if len(nv[1]) or keep_blank_values: =20 224 name =3D urllib.unquote(nv[0].replace('+', ' ')) =20 225 value =3D urllib.unquote(nv[1].replace('+', ' ')) =20 226 r.append((name, value)) =20 227=20 =20 value undefined, global urllib =3D , urllib.unquote =3D , nv = =3D [u'pagename', u'ModificationsR%C3%A9centes'], ].replace undefined=20 C:\Python24\lib\urllib.py in unquote(s=3Du'ModificationsR%C3%A9centes')=20 1059 item =3D res[i] =20 1060 try: =20 1061 res[i] =3D _hextochr[item[:2]] + item[2:] =20 1062 except KeyError: =20 1063 res[i] =3D '%' + item =20 res =3D [u'ModificationsR', u'C3', u'A9centes'], i =3D 1, global _hextochr = =3D {'00': '\x00', '01': '\x01', '02': '\x02', '03': '\x03', '04': '\x04', '05': '\x05', '06': '\x06', '07': '\x07', '08': '\x08', '09': '\t', .=2E.}, item =3D u'C3'=20 UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128)=20 __doc__ =3D 'Unicode decoding error.'=20 __getitem__ =3D >=20 __init__ =3D >=20 __module__ =3D 'exceptions'=20 __str__ =3D >=20 args =3D ('ascii', '\xc3', 0, 1, 'ordinal not in range(128)')=20 encoding =3D 'ascii'=20 end =3D 1=20 object =3D '\xc3'=20 reason =3D 'ordinal not in range(128)'=20 start =3D 0=20 Does anyone have an idea as to whats happening? I have a CGI moinmoin setup on Pentium wintel XP Pro served via Apache. The page in error is currently 'live' so I have removed the offending line, but if you wish to view the page, edit it and insert [[PageHits]] you will recreate the error. http://tsmwiki.com/tsmwiki -------------------------- Matthew Warren. matthew.warren at eon-uk.com matthew_j_warren at hotmail.com http://tsmwiki.com/tsmwiki/MatthewWarren -----Original Message----- From: moin-user-admin at lists.sourceforge.net [mailto:moin-user-admin at lists.sourceforge.net] On Behalf Of Uriel Avalos Sent: 10 April 2006 20:48 To: moin-user at lists.sourceforge.net Subject: [Moin-user] DesktopEdition Questions Hello All. I'm currently using Desktop Edition 1.5.2-1 for windows. However, I've noticed that several features are not working. Have these=20 been disabled from the Desktop Edition? (1) user accounts---I create an account, but then logging in doesn't=20 seem to work. (2) search---I create a page, but then title search comes up with 0 hits. (3) categories---am I using categories correctly? I create a page with a "CategoryAlgebra" link at the bottom, then edit the "CategoryAlgebra"=20 page, but then the list all pages within a category macro gives no pages. --Thanks! ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat=3D1= 21642 _______________________________________________ Moin-user mailing list Moin-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/moin-user ___________________________ Disclaimer Notice ____________________ This message and any attachments are confidential and should only be read by those to whom they are addressed. If you are not the intended recipient, please contact us, delete the message from your computer and destroy any copies. Any distribution or copying without our prior permission is prohibited. Internet communications are not always secure and therefore the E=2EON Group does not accept legal responsibility for this message. The recipient is responsible for verifying its authenticity before acting on the contents. Any views or opinions presented are solely those of the author and do not necessarily represent those of the E.ON Group. E=2EON IS UK Limited, Westwood Way, Westwood Business Park, Coventry, CV4 8LG. Registered in England & Wales No. 5617434 Telephone +44 (0) 2476 42 4000 Fax +44 (0) 2476 42 5432 From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: 1.1 =3D> 1.2.4 1.2.4 =3D> 1.3 1.3 =3D> 1.5 Is this so? can I /choose/ the minor version number in 1.3 and 1.5? That is, can I do the following?: 1.1 =3D> 1.2.4 1.2.4 =3D> 1.3.5 1.3.5 =3D> 1.5.3 I do have ssh access to the server, but I can't edit httpd.conf or other system config files (I *can* add and edit .htaccess files, however). The python version that comes with the server is 2.2.3, but I'm gonna install 2.4.3 before the upgrade. Any comments on the upgrade path? Any other relevant links I should be reading? TIA -- Mariano Absatz - El Baby el (dot) baby (AT) gmail (dot) com el (punto) baby (ARROBA:@) gmail (punto) com From bogus@does.not.exist.com Thu Jun 16 07:37:48 2016 From: bogus@does.not.exist.com () Date: Thu, 16 Jun 2016 11:37:48 -0000 Subject: No subject Message-ID: users are no longer considered "Trusted". A couple of questions: * is there a way to know for sure whether users are trusted or not? e.g. is there a debug log file somewhere that I'm missing? or an option to increase logging? * I've been haphazardly adding my own "logging" by writing to stderr and seeing what lands in data/error.log ... it's quite frustrating, though, because I'm never quite sure if the lack of output by a particular print statement is because that line of code isn't hit, or because stderr doesn't happen to be redirected to data/error.log when it is hit. Some stderr output seems to go to /var/log/httpd/error_log, but it all seems rather random and unpredictable. What is the *right* way to add debug logging statements to Moin to try to figure out what it's doing? * our wikiconfig.py correctly (?) does from MoinMoin import auth [...] auth = [auth.http] but I'm having a hard time understanding exactly when auth.http() is called. Since we use the CGI interface only (performance is acceptable, so we haven't bothered with anything fancier), I would expect it to be called for every single request. But adding a "print >>sys.stderr, ..." statement in auth.http() does not backup that assumption. So ... am I right? is auth.http() supposed to be called on every hit? Thanks -- Greg From renato.pontefice at gmail.com Wed Jun 1 05:05:59 2016 From: renato.pontefice at gmail.com (Renato Pontefice) Date: Wed, 1 Jun 2016 02:05:59 -0700 (PDT) Subject: [Moin-user] port number prob? In-Reply-To: References: Message-ID: <648bd030-8f9e-4ea8-a0aa-41c757ec6912@googlegroups.com> Hi Paul, yes, your idea seem to be correct. I've just ask to google cloud help, how can I add a firewall rule to route (but is not a routing) the call fot the external addr (104.155.16.89) to 127.0.0.1, so the server can answer. The answer was on my attempt to connect from inside the VM (by lynx) to addr 127.0.0.1. This already said that the server work and answer... Remains the fact that I've not understand how to change the port where the server werkzung listen Renato Il giorno marted? 31 maggio 2016 16:07:45 UTC+2, Renato Pontefice ha scritto: > > Hi, > I think that my prob could be about port number: > If I try to access my moin2 wiki from an external browser, I do not > receive answer from the server. > I've tried - from inside the VM - the following command, that, I think, > explain the following: > - the VM, answer to a ping with the external addr > - does not answer neither at port 8081 nor port 8080. > > Could it be a prob of web server? > > TIA > > Renato > ping 104.155.16.89:8081 > ping: unknown host 104.155.16.89:8081 > renato_pontefice at instance-4:~/moin-2.0$ ping 104.155.16.89 > PING 104.155.16.89 (104.155.16.89) 56(84) bytes of data. > 64 bytes from 104.155.16.89: icmp_seq=1 ttl=64 time=0.818 ms > 64 bytes from 104.155.16.89: icmp_seq=2 ttl=64 time=0.462 ms > 64 bytes from 104.155.16.89: icmp_seq=3 ttl=64 time=0.497 ms > 64 bytes from 104.155.16.89: icmp_seq=4 ttl=64 time=0.444 ms > 64 bytes from 104.155.16.89: icmp_seq=5 ttl=64 time=0.423 ms > 64 bytes from 104.155.16.89: icmp_seq=6 ttl=64 time=0.465 ms > 64 bytes from 104.155.16.89: icmp_seq=7 ttl=64 time=0.465 ms > ^C > --- 104.155.16.89 ping statistics --- > 7 packets transmitted, 7 received, 0% packet loss, time 5997ms > rtt min/avg/max/mdev = 0.423/0.510/0.818/0.129 ms > renato_pontefice at instance-4:~/moin-2.0$ ping 104.155.16.89:8080 > ping: unknown host 104.155.16.89:8080 > renato_pontefice at instance-4:~/moin-2.0$ ping 104.155.16.89:8081 > ping: unknown host 104.155.16.89:8081 > renato_pontefice at instance-4:~/moin-2.0$ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul at boddie.org.uk Wed Jun 1 06:13:58 2016 From: paul at boddie.org.uk (Paul Boddie) Date: Wed, 1 Jun 2016 12:13:58 +0200 Subject: [Moin-user] port number prob? In-Reply-To: <648bd030-8f9e-4ea8-a0aa-41c757ec6912@googlegroups.com> References: <648bd030-8f9e-4ea8-a0aa-41c757ec6912@googlegroups.com> Message-ID: <201606011213.58923.paul@boddie.org.uk> On Wednesday 1. June 2016 11.05.59 Renato Pontefice wrote: > Hi Paul, > yes, your idea seem to be correct. > I've just ask to google cloud help, how can I add a firewall rule to route > (but is not a routing) the call fot the external addr (104.155.16.89) to > 127.0.0.1, so the server can answer. I can't help you there because I don't use the Google cloud. But 104.155.16.89 and 127.0.0.1 are likely to be addresses exposed by different interfaces. You really need to serve Moin on 104.155.16.89 because it is accessible by the external interface. Maybe you could route traffic between the interfaces, but that isn't how most people would solve this. Indeed, it's possible that the internal loopback interface (responsible for 127.0.0.1) isn't even participating in the general routing rules. (At least that's what I see when I run "/sbin/route -n".) > The answer was on my attempt to connect from inside the VM (by lynx) to > addr 127.0.0.1. This already said that the server work and answer... > > Remains the fact that I've not understand how to change the port where the > server werkzung listen Didn't the --host option work? Paul P.S. I don't even use Moin 2, so I just have the documentation to work with, and I honestly can't really justify the time to dig into that documentation or the code any deeper. From crosseyedpenguin at yahoo.com Wed Jun 1 10:32:48 2016 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Wed, 1 Jun 2016 14:32:48 +0000 (UTC) Subject: [Moin-user] port number prob? In-Reply-To: <201606011213.58923.paul@boddie.org.uk> References: <648bd030-8f9e-4ea8-a0aa-41c757ec6912@googlegroups.com> <201606011213.58923.paul@boddie.org.uk> Message-ID: <1158050797.3157518.1464791568171.JavaMail.yahoo@mail.yahoo.com> I am not familiar with Google Cloud, but it would be surprising for a service like that to give you your own IP address. With the service I use, Webfaction, you get an IP address and a unique port number. To make the server work it must listen to the right address and port. m run --host?104.155.16.89 --port 55555 where 55555 is the port assigned to you by google. On Wednesday, June 1, 2016 3:47 AM, Paul Boddie wrote: On Wednesday 1. June 2016 11.05.59 Renato Pontefice wrote: > Hi Paul, > yes, your idea seem to be correct. > I've just ask to google cloud help, how can I add a firewall rule to route > (but is not a routing) the call fot the external addr (104.155.16.89) to > 127.0.0.1, so the server can answer. I can't help you there because I don't use the Google cloud. But 104.155.16.89 and 127.0.0.1 are likely to be addresses exposed by different interfaces. You really need to serve Moin on 104.155.16.89 because it is accessible by the external interface. Maybe you could route traffic between the interfaces, but that isn't how most people would solve this. Indeed, it's possible that the internal loopback interface (responsible for 127.0.0.1) isn't even participating in the general routing rules. (At least that's what I see when I run "/sbin/route -n".) > The answer was on my attempt to connect from inside the VM (by lynx) to > addr 127.0.0.1. This already said that the server work and answer... > > Remains the fact that I've not understand how to change the port where the > server werkzung listen Didn't the --host option work? Paul P.S. I don't even use Moin 2, so I just have the documentation to work with, and I honestly can't really justify the time to dig into that documentation or the code any deeper. ------------------------------------------------------------------------------ What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic patterns at an interface-level. Reveals which users, apps, and protocols are consuming the most bandwidth. Provides multi-vendor support for NetFlow, J-Flow, sFlow and other flows. Make informed decisions using capacity planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e _______________________________________________ Moin-user mailing list Moin-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/moin-user -------------- next part -------------- An HTML attachment was scrubbed... URL: From renato.pontefice at gmail.com Wed Jun 1 11:45:43 2016 From: renato.pontefice at gmail.com (Renato Pontefice) Date: Wed, 1 Jun 2016 17:45:43 +0200 Subject: [Moin-user] [SOLVed]Re: Moin-user Digest, Vol 111, Issue 1 In-Reply-To: References: Message-ID: <20160601174543.774ba03f@debian> yeeeessss!!!!!!!!! It finally works!!!!! at the addr http://104.155.16.89:8080/ you can finaly view my working moin2!!!!!!! I ran the moin server with that instrucion: ./m run --host 10.132.0.3 --port 8080 where: 10.132.0.3 is the internal IP addr for my VM. externaly I reach it by 104.155.16.89, i thought that there were some included routing rule. Ok, Now, I just have to became able to work with it :-) Thank to all Renato From pcolsen at gmail.com Wed Jun 8 00:10:17 2016 From: pcolsen at gmail.com (Peter Olsen) Date: Wed, 8 Jun 2016 00:10:17 -0400 Subject: [Moin-user] How do I change fonts in Moin 1.9.8 Message-ID: <0A81079A-FED7-4DE3-9B92-1797818E2A5A@gmail.com> I?d like to change the font used for text entires in Moin 1.9.8. Can this be done? If it can how do I do it? From paul at boddie.org.uk Wed Jun 8 06:35:03 2016 From: paul at boddie.org.uk (Paul Boddie) Date: Wed, 8 Jun 2016 12:35:03 +0200 Subject: [Moin-user] How do I change fonts in Moin 1.9.8 In-Reply-To: <0A81079A-FED7-4DE3-9B92-1797818E2A5A@gmail.com> References: <0A81079A-FED7-4DE3-9B92-1797818E2A5A@gmail.com> Message-ID: <201606081235.03972.paul@boddie.org.uk> On Wednesday 8. June 2016 06.10.17 Peter Olsen wrote: > I?d like to change the font used for text entires in Moin 1.9.8. Can this > be done? If it can how do I do it? This isn't related to Firefox ESR replacing Iceweasel in Debian, by any chance? Today, after that upgrade, Moin's use of "monospace" no longer produces a monospace font in the edit box. At least under the above circumstances, the following bug seems to have returned: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=388478 As for the more general question, the stylesheets tend to dictate the font used. Take a look in screen.css for the theme you are using. Paul From tw at waldmann-edv.de Thu Jun 16 08:38:30 2016 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Thu, 16 Jun 2016 14:38:30 +0200 Subject: [moin-user] Welcome to the new moin-user mailing list! Message-ID: <57629DC6.6060004@waldmann-edv.de> https://mail.python.org/mailman/listinfo/moin-user From captwiggum at gmail.com Mon Jun 27 19:43:17 2016 From: captwiggum at gmail.com (Captain Wiggum) Date: Mon, 27 Jun 2016 17:43:17 -0600 Subject: [moin-user] Python2.7 Message-ID: Hi All, I tried to answer this question, but it looks like we can not search the mail list archives. :-( Does MoinMoin 1.9.8 run on RHEL7/CentOS7 with Python2.7? --Capt -------------- next part -------------- An HTML attachment was scrubbed... URL: From tw at waldmann-edv.de Tue Jun 28 06:56:15 2016 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Tue, 28 Jun 2016 12:56:15 +0200 Subject: [moin-user] Python2.7 In-Reply-To: References: Message-ID: <577257CF.6080103@waldmann-edv.de> > I tried to answer this question, but it looks like we can not search the > mail list archives. :-( > > Does MoinMoin 1.9.8 run on RHEL7/CentOS7 with Python2.7? Well, I didn't try yet, but it should work. -- GPG ID: FAF7B393 GPG FP: 6D5B EF9A DD20 7580 5747 B70F 9F88 FB52 FAF7 B393 From captwiggum at gmail.com Thu Jun 30 16:28:50 2016 From: captwiggum at gmail.com (Captain Wiggum) Date: Thu, 30 Jun 2016 14:28:50 -0600 Subject: [moin-user] Python2.7 In-Reply-To: <577257CF.6080103@waldmann-edv.de> References: <577257CF.6080103@waldmann-edv.de> Message-ID: I tried MoinMoin 1.9.8 on RHEL7/CentOS7 and it did not work. When running, it throws lots of python exceptions and crashes. There is no Python 2.6 pkg for RHEL7/CentOS7 that I can find anyway. But I would rather get it working on the native Python 2.7 if possible. Any tips appreciated. --John On Tue, Jun 28, 2016 at 4:56 AM, Thomas Waldmann wrote: > > > > Does MoinMoin 1.9.8 run on RHEL7/CentOS7 with Python2.7? > > Well, I didn't try yet, but it should work. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul at boddie.org.uk Thu Jun 30 16:44:27 2016 From: paul at boddie.org.uk (Paul Boddie) Date: Thu, 30 Jun 2016 22:44:27 +0200 Subject: [moin-user] Python2.7 In-Reply-To: References: <577257CF.6080103@waldmann-edv.de> Message-ID: <201606302244.27518.paul@boddie.org.uk> On Thursday 30. June 2016 22.28.50 Captain Wiggum wrote: > I tried MoinMoin 1.9.8 on RHEL7/CentOS7 and it did not work. > When running, it throws lots of python exceptions and crashes. If you could show us some of these exceptions it would help us to help you. > There is no Python 2.6 pkg for RHEL7/CentOS7 that I can find anyway. > But I would rather get it working on the native Python 2.7 if possible. > Any tips appreciated. Debian has been using Python 2.7 by default for some time, and MoinMoin works fine with Python 2.7 on Debian, so that shouldn't be the problem here. Paul P.S. I imagine that the "how to" guides on the wiki are a bit old and are still rather incoherent, so there may be a need to tidy them up a bit. From captwiggum at gmail.com Thu Jun 30 19:30:55 2016 From: captwiggum at gmail.com (Captain Wiggum) Date: Thu, 30 Jun 2016 17:30:55 -0600 Subject: [moin-user] Python2.7 In-Reply-To: <201606302244.27518.paul@boddie.org.uk> References: <577257CF.6080103@waldmann-edv.de> <201606302244.27518.paul@boddie.org.uk> Message-ID: Thank you for the reply. From the web browser it gives the msg: "Unhandled Exception An unhandled exception was thrown by the application." And in in the apache error_log I get this: http://pastebin.com/sbCLBCkU I know that apache is executing Moin from what we see in the error_log, but just in case, this is my Moin part of httpd.conf: Alias /wiki/ /var/www/wiki/cai/htdocs/ ScriptAlias /caiwiki /var/www/wiki/cai/moin.cgi On Thu, Jun 30, 2016 at 2:44 PM, Paul Boddie wrote: > On Thursday 30. June 2016 22.28.50 Captain Wiggum wrote: > > I tried MoinMoin 1.9.8 on RHEL7/CentOS7 and it did not work. > > When running, it throws lots of python exceptions and crashes. > > If you could show us some of these exceptions it would help us to help you. > > > There is no Python 2.6 pkg for RHEL7/CentOS7 that I can find anyway. > > But I would rather get it working on the native Python 2.7 if possible. > > Any tips appreciated. > > Debian has been using Python 2.7 by default for some time, and MoinMoin > works > fine with Python 2.7 on Debian, so that shouldn't be the problem here. > > Paul > > P.S. I imagine that the "how to" guides on the wiki are a bit old and are > still rather incoherent, so there may be a need to tidy them up a bit. > _______________________________________________ > moin-user mailing list > moin-user at python.org > https://mail.python.org/mailman/listinfo/moin-user > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tw at waldmann-edv.de Thu Jun 30 20:31:39 2016 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Fri, 1 Jul 2016 02:31:39 +0200 Subject: [moin-user] Python2.7 In-Reply-To: References: <577257CF.6080103@waldmann-edv.de> <201606302244.27518.paul@boddie.org.uk> Message-ID: <5775B9EB.7050407@waldmann-edv.de> > And in in the apache error_log I get this: > http://pastebin.com/sbCLBCkU This is because the cached bytecode from an earlier python version is not compatible with python 2.7. Run (as the same user usually running the moin process): moin ... maint cleancache replace ... by the required options for your setup, usually you need --config-dir and --wiki-url. repeat for every wiki you have. -- GPG ID: FAF7B393 GPG FP: 6D5B EF9A DD20 7580 5747 B70F 9F88 FB52 FAF7 B393