From renato.pontefice at gmail.com Wed Jun 12 05:22:39 2019 From: renato.pontefice at gmail.com (Renato Pontefice) Date: Wed, 12 Jun 2019 11:22:39 +0200 Subject: [moin-user] moin2 and sphinx-doc Message-ID: Hi, I would use this two product to buid my documentation. I'm wonderig if I could find any paper that describe how to let them work togheter. Can someone sudgest me somethings TIA Renato -------------- next part -------------- An HTML attachment was scrubbed... URL: From crosseyedpenguin at yahoo.com Wed Jun 12 10:50:32 2019 From: crosseyedpenguin at yahoo.com (Roger Haase) Date: Wed, 12 Jun 2019 14:50:32 +0000 (UTC) Subject: [moin-user] moin2 and sphinx-doc In-Reply-To: References: Message-ID: <939501044.399340.1560351033011@mail.yahoo.com> Sorry, no such documentation. Also the connection between moin and sphinx is so customized for the moin docs that it would be hard to change it to create sphinx docs for another application. On Wednesday, June 12, 2019, 2:22:56 AM MST, Renato Pontefice wrote: Hi, I would use this two product to buid my documentation.I'm wonderig if I could find any paper that describe how to let them work togheter. Can someone sudgest me somethings TIA Renato_______________________________________________ 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 post at volker-wysk.de Wed Jun 12 12:29:11 2019 From: post at volker-wysk.de (Volker Wysk) Date: Wed, 12 Jun 2019 18:29:11 +0200 Subject: [moin-user] Stemming does not work? Message-ID: <20190612182911.67b29033@desktop> Hi Is stemming for English language only? Wenn I search for "B?cher ?bungen", then the corresponding page is found. When searching for "B?cher ?bung", nothing is found. I have turned stemming on with "xapian_stemming = True" and "xapian_search = True" in wikiconfig.py. I've rebuilt the index. So what's wrong ..? Bye Volker From mariusz.sapinski at gmail.com Tue Jun 25 05:08:03 2019 From: mariusz.sapinski at gmail.com (mariusz sapinski) Date: Tue, 25 Jun 2019 11:08:03 +0200 Subject: [moin-user] problem after upgrade to Fedora 30 Message-ID: Dear all, I have upgraded to Fedora 30 (from 28) and since then, when I run standalone moin moin server: moin --config-dir=/home/rabarbar/PHYS/wiki server standalone I get error message: 2019-06-25 11:05:04,836 INFO MoinMoin.log:151 using logging configuration read from built-in fallback in MoinMoin.log module 2019-06-25 11:05:04,836 INFO MoinMoin.log:157 Running MoinMoin 1.9.10 release code from /usr/lib/python2.7/site-packages/MoinMoin Traceback (most recent call last): File "/usr/bin/moin", line 6, in run() File "/usr/lib/python2.7/site-packages/MoinMoin/script/moin.py", line 15, in run MoinScript().run(showtime=0) File "/usr/lib/python2.7/site-packages/MoinMoin/script/__init__.py", line 138, in run self.mainloop() File "/usr/lib/python2.7/site-packages/MoinMoin/script/__init__.py", line 251, in mainloop from MoinMoin import wikiutil File "/usr/lib/python2.7/site-packages/MoinMoin/wikiutil.py", line 892, in for name, short, patterns, mime in pygments.lexers.get_all_lexers(): File "/usr/lib/python2.7/site-packages/MoinMoin/support/pygments/lexers/__init__.py", line 53, in get_all_lexers for lexer in find_plugin_lexers(): File "/usr/lib/python2.7/site-packages/MoinMoin/support/pygments/plugin.py", line 53, in find_plugin_lexers yield entrypoint.load() File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2411, in load return self.resolve() File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2417, in resolve module = __import__(self.module_name, fromlist=['__name__'], level=0) ImportError: No module named IPython.lib.lexers I do have Ipython2 installed, however I also have Ipython3 and default Ipython points to version 3... So I suspect the problem somewhere there, but how to deal with it? Best! Mariusz -------------- next part -------------- An HTML attachment was scrubbed... URL: From tw at waldmann-edv.de Tue Jun 25 05:18:41 2019 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Tue, 25 Jun 2019 11:18:41 +0200 Subject: [moin-user] problem after upgrade to Fedora 30 In-Reply-To: References: Message-ID: > ? File > "/usr/lib/python2.7/site-packages/MoinMoin/support/pygments/lexers/__init__.py", > line 53, in get_all_lexers > ? ? for lexer in find_plugin_lexers(): > ? File > "/usr/lib/python2.7/site-packages/MoinMoin/support/pygments/plugin.py", > line 53, in find_plugin_lexers > ? ? yield entrypoint.load() > ? File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", > line 2411, in load > ? ? return self.resolve() > ? File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", > line 2417, in resolve > ? ? module = __import__(self.module_name, fromlist=['__name__'], level=0) > ImportError: No module named IPython.lib.lexers > > I do have Ipython2 installed, however I also have Ipython3 and default > Ipython points to version 3... So I suspect the problem somewhere there, > but how to deal with it? Moin does not not use IPython, but it uses pygments to highlight misc. text formats. As seen above, the crash is in pygments, so maybe ask the pygments and/or IPython developers. -- GPG ID: 9F88FB52FAF7B393 GPG FP: 6D5B EF9A DD20 7580 5747 B70F 9F88 FB52 FAF7 B393 From mariusz.sapinski at gmail.com Thu Jun 27 11:58:39 2019 From: mariusz.sapinski at gmail.com (mariusz sapinski) Date: Thu, 27 Jun 2019 17:58:39 +0200 Subject: [moin-user] problem after upgrade to Fedora 30 In-Reply-To: References: Message-ID: Could the dependence on pygment be easily removed from moin? On Tue, Jun 25, 2019 at 11:08 AM mariusz sapinski < mariusz.sapinski at gmail.com> wrote: > Dear all, > I have upgraded to Fedora 30 (from 28) and since then, when I run > standalone moin moin server: > moin --config-dir=/home/rabarbar/PHYS/wiki server standalone > > I get error message: > 2019-06-25 11:05:04,836 INFO MoinMoin.log:151 using logging configuration > read from built-in fallback in MoinMoin.log module > 2019-06-25 11:05:04,836 INFO MoinMoin.log:157 Running MoinMoin 1.9.10 > release code from /usr/lib/python2.7/site-packages/MoinMoin > Traceback (most recent call last): > File "/usr/bin/moin", line 6, in > run() > File "/usr/lib/python2.7/site-packages/MoinMoin/script/moin.py", line > 15, in run > MoinScript().run(showtime=0) > File "/usr/lib/python2.7/site-packages/MoinMoin/script/__init__.py", > line 138, in run > self.mainloop() > File "/usr/lib/python2.7/site-packages/MoinMoin/script/__init__.py", > line 251, in mainloop > from MoinMoin import wikiutil > File "/usr/lib/python2.7/site-packages/MoinMoin/wikiutil.py", line 892, > in > for name, short, patterns, mime in pygments.lexers.get_all_lexers(): > File > "/usr/lib/python2.7/site-packages/MoinMoin/support/pygments/lexers/__init__.py", > line 53, in get_all_lexers > for lexer in find_plugin_lexers(): > File > "/usr/lib/python2.7/site-packages/MoinMoin/support/pygments/plugin.py", > line 53, in find_plugin_lexers > yield entrypoint.load() > File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line > 2411, in load > return self.resolve() > File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line > 2417, in resolve > module = __import__(self.module_name, fromlist=['__name__'], level=0) > ImportError: No module named IPython.lib.lexers > > I do have Ipython2 installed, however I also have Ipython3 and default > Ipython points to version 3... So I suspect the problem somewhere there, > but how to deal with it? > > Best! Mariusz > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mariusz.sapinski at gmail.com Fri Jun 28 05:43:26 2019 From: mariusz.sapinski at gmail.com (mariusz sapinski) Date: Fri, 28 Jun 2019 11:43:26 +0200 Subject: [moin-user] standalone server problem Message-ID: Hi, I'm using MoimMoin 1.9.10. It runs in virtual environment. I run: ./moin --config-dir=/home/me/PHYS/wiki server standalone but when I connect to http://localhost:8080/ I don't see my wiki. If I click "FindPage" on the terminal I get: 2019-06-28 11:39:16,298 INFO MoinMoin.config.multiconfig:127 using wiki config: /home/me/SOFT/python4moin/menv/moin-1.9.10/wikiconfig.pyc what suggest that it is not using the right path, no? Cheers, Mariusz -------------- next part -------------- An HTML attachment was scrubbed... URL: From mariusz.sapinski at gmail.com Fri Jun 28 07:31:45 2019 From: mariusz.sapinski at gmail.com (mariusz sapinski) Date: Fri, 28 Jun 2019 13:31:45 +0200 Subject: [moin-user] all pages immutable Message-ID: One more question: when I finally managed to run moin, all pages turned out to be "Immutable". What is a possible reason for that? And how to make them editable again? Best, Mariusz -------------- next part -------------- An HTML attachment was scrubbed... URL: From tw at waldmann-edv.de Fri Jun 28 07:56:48 2019 From: tw at waldmann-edv.de (Thomas Waldmann) Date: Fri, 28 Jun 2019 13:56:48 +0200 Subject: [moin-user] all pages immutable In-Reply-To: References: Message-ID: <8dc5c56f-2c80-893a-ce54-1af129b16376@waldmann-edv.de> On 6/28/19 1:31 PM, mariusz sapinski wrote: > One more question: when I finally managed to run moin, all pages turned > out to be "Immutable". What is a possible reason for that? And how to > make them editable again? Check: - user/group running the moin process vs. the directory permissions for that user/group (data_dir) - ACLs in the wiki and/or farm config -- GPG ID: 9F88FB52FAF7B393 GPG FP: 6D5B EF9A DD20 7580 5747 B70F 9F88 FB52 FAF7 B393