From: Ed Page Date: Sun, 3 Oct 2010 04:08:46 +0000 (-0500) Subject: Moving webpage to wiki X-Git-Url: http://vcs.maemo.org/git/?p=multilist;a=commitdiff_plain;h=99305f82f1bbed1f346b0ed6e8ba1d1e5c67c752 Moving webpage to wiki --- diff --git a/src/constants.py b/src/constants.py index 472ef42..1dd2437 100644 --- a/src/constants.py +++ b/src/constants.py @@ -3,7 +3,8 @@ import os __pretty_app_name__ = "Multilist" __app_name__ = "multilist" __version__ = "0.3.11" -__build__ = 0 +__build__ = 2 _data_path_ = os.path.join(os.path.expanduser("~"), ".multilist") __app_magic__ = 0xdeadbeef +_user_settings_ = "%s/settings.ini" % _data_path_ _user_logpath_ = "%s/multilist.log" % _data_path_ diff --git a/src/libliststorehandler.py b/src/libliststorehandler.py index 893a354..4c64fe0 100644 --- a/src/libliststorehandler.py +++ b/src/libliststorehandler.py @@ -20,6 +20,8 @@ along with Multilist. If not, see . Copyright (C) 2008 Christoph Würstle """ +from __future__ import with_statement + import ConfigParser import csv import uuid diff --git a/src/multilist_gtk.py b/src/multilist_gtk.py index 0a050e1..9d78195 100755 --- a/src/multilist_gtk.py +++ b/src/multilist_gtk.py @@ -65,9 +65,6 @@ PROFILE_STARTUP = False class Multilist(hildonize.get_app_class()): - _user_data = os.path.join(os.path.expanduser("~"), ".%s" % constants.__app_name__) - _user_settings = "%s/settings.ini" % _user_data - def __init__(self): super(Multilist, self).__init__() self._clipboard = gtk.clipboard_get() @@ -75,7 +72,7 @@ class Multilist(hildonize.get_app_class()): logging.info('Starting Multilist') try: - os.makedirs(self._user_data) + os.makedirs(constants._data_path_) except OSError, e: if e.errno != 17: raise @@ -286,7 +283,7 @@ class Multilist(hildonize.get_app_class()): def _save_settings(self): config = ConfigParser.SafeConfigParser() self.save_settings(config) - with open(self._user_settings, "wb") as configFile: + with open(constants._user_settings_, "wb") as configFile: config.write(configFile) def save_settings(self, config): @@ -299,7 +296,7 @@ class Multilist(hildonize.get_app_class()): def _load_settings(self): config = ConfigParser.SafeConfigParser() - config.read(self._user_settings) + config.read(constants._user_settings_) self.load_settings(config) def load_settings(self, config): @@ -311,7 +308,7 @@ class Multilist(hildonize.get_app_class()): except ConfigParser.NoSectionError, e: _moduleLogger.info( "Settings file %s is missing section %s" % ( - self._user_settings, + constants._user_settings_, e.section, ) ) diff --git a/www/.htaccess b/www/.htaccess new file mode 100644 index 0000000..bc6f1b4 --- /dev/null +++ b/www/.htaccess @@ -0,0 +1,5 @@ +Redirect permanent /index.html http://wiki.maemo.org/Multilist +Redirect 301 /index.html http://wiki.maemo.org/Multilist +Redirect permanent /download.html http://wiki.maemo.org/Multilist +Redirect 301 /download.html http://wiki.maemo.org/Multilist + diff --git a/www/download.html b/www/download.html index 415c9db..a1a3c70 100644 --- a/www/download.html +++ b/www/download.html @@ -1,37 +1,9 @@ - Multilist + -

- Multilist -

-

Simple checklist program

-

[About] [Download] -

Download

- -

Packages

-

Maemo 5 and Later: Go to the application installer, enable Extras, and download Dialcentral (Note: technically its still in extras-testing because people haven't been reviewing it)

- -

Maemo 4.1 and Earlier: Add the Extras Repository and check the App Manager for DialCentral

- -

Linux: .deb files

- -

Development

-

Source

-

For the most up to date version check out svn. -

-

Requires

- - -

Bugs

- -

Discuss your issue on Maemo.Org Talk

- -

File a bug report against Extras->ejpi

-

View existing bug reports

+

Please follow link!

+ diff --git a/www/index.html b/www/index.html index 44eab92..a1a3c70 100644 --- a/www/index.html +++ b/www/index.html @@ -1,43 +1,9 @@ - Multilist + -

- Multilist -

-

Simple checklist program

-

[About] [Download] - -

Documentation

- -

About

-

- -

Multilist has been tested on Ubuntu 9.05, Maemo 5, and Maemo 4.1

- -

See also Multilist's old webpage

- -

Quicknote is Free Software and available under the GPLv2.1. - -

Features

-

Multilist 0.3.1 (See t.m.o Thread)

- - - -

Sample Screenshots

- -

- -

- -

- -

- +

Please follow link!

+ diff --git a/www/multilist.deb b/www/multilist.deb index c3a5d84..7520bed 100644 Binary files a/www/multilist.deb and b/www/multilist.deb differ