Changeset 939 for branches/0.3
- Timestamp:
- 06/08/08 19:51:10 (3 months ago)
- Files:
-
- branches/0.3/configure.ac (modified) (2 diffs)
- branches/0.3/etc/mesk-0.3.3.ebuild (added)
- branches/0.3/src/mesk/uri.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.3/configure.ac
r813 r939 1 1 dnl 2 dnl Copyright (C) 2006-200 7Travis Shirk <travis@pobox.com>2 dnl Copyright (C) 2006-2008 Travis Shirk <travis@pobox.com> 3 3 dnl 4 4 dnl This program is free software; you can redistribute it and/or modify … … 17 17 dnl 18 18 AC_PREREQ([2.59]) 19 AC_INIT([Mesk], [0.3. 2], [Travis Shirk <travis@pobox.com>], [mesk])19 AC_INIT([Mesk], [0.3.3], [Travis Shirk <travis@pobox.com>], [mesk]) 20 20 21 21 AC_CONFIG_AUX_DIR([scripts]) 22 22 23 PACKAGE_CODENAME=" Dead Edge of Town"23 PACKAGE_CODENAME="Suffer For Fashion" 24 24 AC_SUBST([PACKAGE_CODENAME]) 25 25 branches/0.3/src/mesk/uri.py
r522 r939 50 50 def escape_slashes(s): 51 51 return gnomevfs.escape_slashes(s) 52 53 def uri_to_filesys_path(uri): 54 return unescape(uri.path)
