Subversion Repositories pub

Compare Revisions

No changes between revisions

Ignore whitespace Rev 192 → Rev 191

/relevation/branches/1.1/win/setup_py2exe.py
File deleted
/relevation/branches/1.1/win/make_exe.bat
File deleted
\ No newline at end of file
/relevation/branches/1.1/win/zipdist.py
File deleted
/relevation/branches/1.1/win
Property changes:
Deleted: bugtraq:number
-true
\ No newline at end of property
/relevation/branches/1.1/gui.py
104,12 → 104,6
top.columnconfigure(0, weight=1, pad=5)
frame.rowconfigure(0, weight=1, pad=5)
frame.columnconfigure(0, weight=1)
 
# Avoid printing to stderr
def ignoreme(s):
pass
relevation.printe = ignoreme
relevation.printen = ignoreme
FILL = tk.N+tk.S+tk.E+tk.W
BTNROW = 2
/relevation/branches/1.1/relevation.py
46,10 → 46,6
import stat
import sys
import zlib
# Help py2exe in packaging lxml
# <http://www.py2exe.org/index.cgi/WorkingWithVariousPackagesAndModules>
import lxml._elementpath as _dummy
import gzip # py2exe again
 
USE_PYCRYPTO = True
 
244,7 → 240,7
fl = os.path.expanduser(parser.get('relevation', 'file'))
if 'password' in ops:
if wr: # TODO: how to check in windows?
printe('Your password can be read by anyone!!!')
sys.stderr.write('Your password can be read by anyone!!!\n')
pw = parser.get('relevation', 'password')
else: # exists but not readable
printe('Configuration file (~/.relevation.conf) is not readable!')
/relevation/branches/1.1/CHANGELOG
1,15 → 1,11
$Date$
 
1.1 (2011-07-08):
1.1 (2011-07-05):
- Support cryptopy if PyCrypto is not available. Enhances
cross-platform support.
- Print an error message if the decryption produced wrong data
(normally caused by a bad password)
- Add PyCrypto/cryptopy to version info (--version)
- Windows support enhancements:
- Minimalistic GUI
- Py2exe support
- Packaging scripts
 
1.0 (2011-06-30):
- First public release
/relevation/branches/1.1/Makefile
18,7 → 18,6
 
distclean: clean
-$(RM) $(PKGVER).tar.gz $(PKGVER).zip
-$(RM) -r dist build
 
install:
install -D -m755 $(PKG).py $(DESTDIR)$(prefix)/bin/$(PKG)
57,5 → 56,3
zip -9 -r $(PKGVER).zip $(PKGVER)
-$(RM) -r $(PKGVER)
 
exe:
python setup_py2exe.py py2exe