Mercurial > moin > 1.9
changeset 4080:b23b95fc710c
bump version number to 1.7.2
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Mon, 08 Sep 2008 00:41:42 +0200 |
parents | 4a688e959bf6 |
children | ae9bf455eec6 |
files | MoinMoin/__init__.py MoinMoin/version.py docs/CHANGES moin.spec wiki/config/more_samples/ui_wikiconfig_snippet wiki/config/wikiconfig.py wiki/config/wikifarm/farmconfig.py wiki/server/moin.wsgi wiki/server/mointwisted.py |
diffstat | 9 files changed, 15 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/__init__.py Mon Sep 08 00:40:29 2008 +0200 +++ b/MoinMoin/__init__.py Mon Sep 08 00:41:42 2008 +0200 @@ -1,6 +1,6 @@ # -*- coding: iso-8859-1 -*- """ -MoinMoin Version 1.7.1 +MoinMoin Version 1.7.2 @copyright: 2000-2006 by Juergen Hermann <jh@web.de>, 2002-2008 MoinMoin:ThomasWaldmann
--- a/MoinMoin/version.py Mon Sep 08 00:40:29 2008 +0200 +++ b/MoinMoin/version.py Mon Sep 08 00:41:42 2008 +0200 @@ -15,8 +15,8 @@ patchlevel = 'release' project = "MoinMoin" -release = '1.7.1' -release_short = '171' # used for url_prefix_static +release = '1.7.2' +release_short = '172' # used for url_prefix_static revision = patchlevel def update():
--- a/docs/CHANGES Mon Sep 08 00:40:29 2008 +0200 +++ b/docs/CHANGES Mon Sep 08 00:41:42 2008 +0200 @@ -31,7 +31,7 @@ USE BOTH ON YOUR OWN RISK! -Version 1.7.current: +Version 1.7.2: Fixes: * Fix leakage of edit-log file handles (leaked 1 file handle / request!). * Fix for MoinMoinBugs/SystemAdminMailAccountData (using POST and forms)
--- a/moin.spec Mon Sep 08 00:40:29 2008 +0200 +++ b/moin.spec Mon Sep 08 00:41:42 2008 +0200 @@ -1,5 +1,5 @@ %define name moin -%define version 1.7.1 +%define version 1.7.2 %define release 1 #Upgrade Path Example: # moin-1.3-0.1.beta1
--- a/wiki/config/more_samples/ui_wikiconfig_snippet Mon Sep 08 00:40:29 2008 +0200 +++ b/wiki/config/more_samples/ui_wikiconfig_snippet Mon Sep 08 00:41:42 2008 +0200 @@ -4,7 +4,7 @@ # Wiki logo. You can use an image, text or both. [Unicode] # For no logo or text, use '' - the default is to show the sitename. # See also url_prefix setting below! - #logo_string = u'<img src="/moin_static171/common/moinmoin.png" alt="MoinMoin Logo">' + #logo_string = u'<img src="/moin_static172/common/moinmoin.png" alt="MoinMoin Logo">' # The default theme anonymous or new users get #theme_default = 'modern'
--- a/wiki/config/wikiconfig.py Mon Sep 08 00:40:29 2008 +0200 +++ b/wiki/config/wikiconfig.py Mon Sep 08 00:41:42 2008 +0200 @@ -38,7 +38,7 @@ # Wiki logo. You can use an image, text or both. [Unicode] # For no logo or text, use '' - the default is to show the sitename. # See also url_prefix setting below! - logo_string = u'<img src="/moin_static171/common/moinmoin.png" alt="MoinMoin Logo">' + logo_string = u'<img src="/moin_static172/common/moinmoin.png" alt="MoinMoin Logo">' # name of entry page / front page [Unicode], choose one of those: @@ -76,12 +76,12 @@ # The URL prefix we use to access the static stuff (img, css, js). # NOT touching this is maybe the best way to handle this setting as moin - # uses a good internal default (something like '/moin_static171' for moin - # version 1.7.1). + # uses a good internal default (something like '/moin_static172' for moin + # version 1.7.2). # For Twisted and standalone server, the default will automatically work. # For others, you should make a matching server config (e.g. an Apache # Alias definition pointing to the directory with the static stuff). - #url_prefix_static = '/moin_static171' + #url_prefix_static = '/moin_static172' # Security ----------------------------------------------------------
--- a/wiki/config/wikifarm/farmconfig.py Mon Sep 08 00:40:29 2008 +0200 +++ b/wiki/config/wikifarm/farmconfig.py Mon Sep 08 00:41:42 2008 +0200 @@ -93,12 +93,12 @@ # The URL prefix we use to access the static stuff (img, css, js). # NOT touching this is maybe the best way to handle this setting as moin - # uses a good internal default (something like '/moin_static171' for moin - # version 1.7.1). + # uses a good internal default (something like '/moin_static172' for moin + # version 1.7.2). # For Twisted and standalone server, the default will automatically work. # For others, you should make a matching server config (e.g. an Apache # Alias definition pointing to the directory with the static stuff). - #url_prefix_static = '/moin_static171' + #url_prefix_static = '/moin_static172' # Security ----------------------------------------------------------
--- a/wiki/server/moin.wsgi Mon Sep 08 00:40:29 2008 +0200 +++ b/wiki/server/moin.wsgi Mon Sep 08 00:41:42 2008 +0200 @@ -5,7 +5,7 @@ To use this, add those statements to your Apache's VirtualHost definition: # this is for icons, css, js (and must match url_prefix from wiki config): - Alias /moin_static171/ /usr/share/moin/htdocs/ + Alias /moin_static172/ /usr/share/moin/htdocs/ # this is the URL http://servername/moin/ you will use later to invoke moin: WSGIScriptAlias /moin/ /some/path/moin.wsgi
--- a/wiki/server/mointwisted.py Mon Sep 08 00:40:29 2008 +0200 +++ b/wiki/server/mointwisted.py Mon Sep 08 00:41:42 2008 +0200 @@ -48,7 +48,7 @@ # URL prefix for the static stuff (used to access stuff in docs) - you # usually should not need to change this because Twisted moin uses # matching defaults for here and for wikiconfig.py: - #url_prefix_static = '/moin_static171' + #url_prefix_static = '/moin_static172' # The server will run with as this user and group (default 'www-data') user = 'www-data'