From: <tre...@us...> - 2010-06-23 14:41:40
|
Revision: 293 http://spd.svn.sourceforge.net/spd/?rev=293&view=rev Author: treibholz Date: 2010-06-23 14:41:34 +0000 (Wed, 23 Jun 2010) Log Message: ----------- * --local|-l works now. * removed old INSTALL Modified Paths: -------------- trunk/src/spd-cli Removed Paths: ------------- trunk/INSTALL Deleted: trunk/INSTALL =================================================================== --- trunk/INSTALL 2010-06-23 14:22:29 UTC (rev 292) +++ trunk/INSTALL 2010-06-23 14:41:34 UTC (rev 293) @@ -1,48 +0,0 @@ -Basic Installation -================== - - These are generic installation instructions. - -just change to directory and do - -./configure - -then everything should be set and you can install the application with - -make && make install - - -PERL Modules -================== - -you need the following perl modules installed: - --Getopt::Long --GnuPG::Interface --IO::Handle --IO::File --Switch --File::Temp --File::Copy --Term::ANSIColor --Digest::MD5::File - - -Mac OSX -================== - -you need to have macGPG and perl installed. -once you have spd installed you can install the missing libraries entering the following commands: - -sudo cpan - force install GnuPG::Interface - # you need to force this installation because of some security checks not making any sence to me - install Digest::MD5::file - -now everything should be set up and running - -WINDOWS Installation -================== - -you need to have strawberry perl and GnuPG installed. -Now you can install spd executing the related make.bat file. Modified: trunk/src/spd-cli =================================================================== --- trunk/src/spd-cli 2010-06-23 14:22:29 UTC (rev 292) +++ trunk/src/spd-cli 2010-06-23 14:41:34 UTC (rev 293) @@ -116,6 +116,13 @@ else: # regular search searchPatterns = sys.argv del searchPatterns[0] + if options.localStore: + try: + del searchPatterns[searchPatterns.index('-l')] + except: + del searchPatterns[searchPatterns.index('--local')] + + interface.listOutput(pc.findPassword(searchPatterns)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |