From eced38bfff26a9c7faf78683fe15f148732cd9cf Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Tue, 13 Jan 2015 08:36:01 +0200 Subject: incorporate https://github.com/ivoviz/feedback allows user to mark an image and send it. sends an email to configured recipient. defaults to using localhost:25 as the SMTP server (no user name, no password, see [1] for configuration parameters of flask-mail). Introduces a config parameter: FEEDBACK_RECIPIENT = feedback@localhost left TODO: 1. customize the 'thank you' text 2. document in user guide (setting MAIL_DEFAULT_SENDER correctly) [1] https://pythonhosted.org/Flask-Mail/#configuring-flask-mail --- README.mediawiki | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) (limited to 'README.mediawiki') diff --git a/README.mediawiki b/README.mediawiki index 25bc6433..37f7dca3 100644 --- a/README.mediawiki +++ b/README.mediawiki @@ -14,14 +14,29 @@ A collaborative editor for organizing, communicating, and analyzing data in grap = Use = == requirements == +=== Server === +==== neo4j ==== Install [neo4j](http://neo4j.com/download/) -Install [gevent-socketio](https://pypi.python.org/pypi/gevent-socketio/) Or Run pip install gevent-socketio - -Install [simplejson](http://undefined.org/python/#simplejson) Or Run pip install simplejson - - flask uses itsdangerous which uses simplejson - - the default json converts namedtuples to arrays stripping the names. - - simplejson converts them to a dictionary, a behavior we rely on. +==== python libs ==== +Install all of: +# [gevent-socketio](https://pypi.python.org/pypi/gevent-socketio/) +# [flask](http://flask.pocoo.org/) +# [flask-mail](https://github.com/mattupstate/flask-mail) + +Or install it all via pip: + + pip install gevent-socketio + pip install flask + pip install flask-mail + + +=== Client === +All of the following are already bundled but noted here for reference: +# [feedback](https://github.com/ivoviz/feedback) (it also bundles [html2canvas](http://html2canvas.hertzen.com/)) +# jquery +# d3 +# FileSaver == Running Rhizi Locally == To run Rhizi locally: -- cgit v1.3.1