Merge lp:~jamesh-f/ensoft-sextant/ensoft-sextant into lp:ensoft-sextant

Proposed by James
Status: Merged
Merged at revision: 3
Proposed branch: lp:~jamesh-f/ensoft-sextant/ensoft-sextant
Merge into: lp:ensoft-sextant
Diff against target: 38 lines (+2/-6)
3 files modified
bin/sextant (+0/-4)
setup.py (+1/-1)
src/sextant/web/server.py (+1/-1)
To merge this branch: bzr merge lp:~jamesh-f/ensoft-sextant/ensoft-sextant
Reviewer Review Type Date Requested Status
Ensoft Open Source Pending
Review via email: mp+230996@code.launchpad.net

Commit message

version 1.0.1

Description of the change

version 1.0.1 fixed web server so it looks in the right place for http and js files

To post a comment you must log in.
182. By Robert Wills <email address hidden>

Move resources to resources/sextant/

183. By Robert Wills <email address hidden>

Remove the path munging hack in sextant.web.server

184. By Patrick Stevens <email address hidden>

Fix file permissions on src/sextant/web/server.py

185. By James Harkin <email address hidden>

fixed Neo4j connection traceback when neo4j isn't running

186. By James Harkin <email address hidden>

sanitise message for connection to web server

187. By James Harkin <email address hidden>

node size fixed

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bin/sextant'
--- bin/sextant 2014-07-25 09:39:33 +0000
+++ bin/sextant 2014-08-15 16:13:24 +0000
@@ -1,8 +1,4 @@
1#!/bin/bash1#!/bin/bash
22
3DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4
5export PYTHONPATH=${PYTHONPATH}:${DIR}/../src
6
7python -m sextant $@3python -m sextant $@
84
95
=== modified file 'setup.py'
--- setup.py 2014-08-15 12:03:01 +0000
+++ setup.py 2014-08-15 16:13:24 +0000
@@ -11,7 +11,7 @@
1111
12setup(12setup(
13 name='Sextant',13 name='Sextant',
14 version='1.0',14 version='1.0.1',
15 description= 'Navigating the C',15 description= 'Navigating the C',
16 url='http://open.ensoft.co.uk/Sextant',16 url='http://open.ensoft.co.uk/Sextant',
17 license='Simplified BSD License',17 license='Simplified BSD License',
1818
=== modified file 'src/sextant/web/server.py' (properties changed: -x to +x)
--- src/sextant/web/server.py 2014-08-14 17:09:12 +0000
+++ src/sextant/web/server.py 2014-08-15 16:13:24 +0000
@@ -304,7 +304,7 @@
304 # serve static directory at root304 # serve static directory at root
305 root = File(os.path.join(305 root = File(os.path.join(
306 os.path.dirname(os.path.abspath(__file__)),306 os.path.dirname(os.path.abspath(__file__)),
307 "..", "..", "..", "resources", "web"))307 "..", "..", "resources", "web"))
308308
309 # serve a dynamic Echoer webpage at /echoer.html309 # serve a dynamic Echoer webpage at /echoer.html
310 root.putChild("echoer.html", Echoer())310 root.putChild("echoer.html", Echoer())

Subscribers

People subscribed via source and target branches