mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-27 10:44:33 +00:00
Updated references after move.
This commit is contained in:
parent
8fe7e82260
commit
d14f85bfc4
@ -3,7 +3,7 @@ import sys
|
|||||||
sys.path.extend(["../..", ".",
|
sys.path.extend(["../..", ".",
|
||||||
"/home/nick/programs/python-gnupg/python-gnupg-0.2.9"])
|
"/home/nick/programs/python-gnupg/python-gnupg-0.2.9"])
|
||||||
import gnupg
|
import gnupg
|
||||||
import simple_santiago as SimpleSantiago
|
import simplesantiago
|
||||||
|
|
||||||
|
|
||||||
# important variables.
|
# important variables.
|
||||||
@ -139,7 +139,7 @@ def unwrapper_test(data):
|
|||||||
|
|
||||||
# unwrap it!
|
# unwrap it!
|
||||||
|
|
||||||
dog = SimpleSantiago.PgpUnwrapper(str(data))
|
dog = simplesantiago.PgpUnwrapper(str(data))
|
||||||
|
|
||||||
print "unwrapping..."
|
print "unwrapping..."
|
||||||
for message in dog:
|
for message in dog:
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
"""The HTTPS Santiago listener and sender."""
|
"""The HTTPS Santiago listener and sender."""
|
||||||
|
|
||||||
from simple_santiago import SantiagoListener, SantiagoSender
|
from simplesantiago import SantiagoListener, SantiagoSender
|
||||||
|
|
||||||
import cherrypy
|
import cherrypy
|
||||||
import httplib, urllib
|
import httplib, urllib
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
Start me with:
|
Start me with:
|
||||||
|
|
||||||
$ python -i simple_santiago.py
|
$ python -i simplesantiago.py
|
||||||
|
|
||||||
This will provide you with a running Santiago service. The important tags in
|
This will provide you with a running Santiago service. The important tags in
|
||||||
this file are:
|
this file are:
|
||||||
|
|||||||
@ -4,4 +4,4 @@ PYTHONPATH=$PYTHONPATH:../..
|
|||||||
PYTHONPATH=$PYTHONPATH:/home/nick/programs/python-gnupg/python-gnupg-0.2.9
|
PYTHONPATH=$PYTHONPATH:/home/nick/programs/python-gnupg/python-gnupg-0.2.9
|
||||||
export PYTHONPATH
|
export PYTHONPATH
|
||||||
|
|
||||||
python simple_santiago.py
|
python simplesantiago.py
|
||||||
|
|||||||
@ -326,5 +326,5 @@ class TestSimpleSantiago(unittest.TestCase):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
# os.fork("python simple_santiago.py")
|
# os.fork("python simplesantiago.py")
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user