From 68b2334cd8484ac72814060ced5703a2f94b57d7 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Tue, 23 Sep 2014 16:28:16 +0300 Subject: initial implementation --- res/etc/rhizi-backend.conf | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 res/etc/rhizi-backend.conf (limited to 'res') diff --git a/res/etc/rhizi-backend.conf b/res/etc/rhizi-backend.conf new file mode 100644 index 00000000..ae321264 --- /dev/null +++ b/res/etc/rhizi-backend.conf @@ -0,0 +1,3 @@ +{ + "neo4j_url": "http://127.0.0.1:50442" +} \ No newline at end of file -- cgit v1.3.1 From 2b19a163205bf8fadf026cba3937560046e58bdf Mon Sep 17 00:00:00 2001 From: LV-426 Date: Wed, 24 Sep 2014 02:00:49 +0300 Subject: add listen_address, listen_port conf options --- res/etc/rhizi-backend.conf | 2 ++ 1 file changed, 2 insertions(+) (limited to 'res') diff --git a/res/etc/rhizi-backend.conf b/res/etc/rhizi-backend.conf index ae321264..0ec058d4 100644 --- a/res/etc/rhizi-backend.conf +++ b/res/etc/rhizi-backend.conf @@ -1,3 +1,5 @@ { + "listen_address": "127.0.0.1", + "listen_port": "3000", "neo4j_url": "http://127.0.0.1:50442" } \ No newline at end of file -- cgit v1.3.1 From 933cf86244aff70e693e56edc508ba9c8cecb6b8 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Sun, 9 Nov 2014 12:23:17 +0200 Subject: rhizi-server.conf --- res/etc/rhizi-backend.conf | 5 ----- res/etc/rhizi-server.conf | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 res/etc/rhizi-backend.conf create mode 100644 res/etc/rhizi-server.conf (limited to 'res') diff --git a/res/etc/rhizi-backend.conf b/res/etc/rhizi-backend.conf deleted file mode 100644 index 0ec058d4..00000000 --- a/res/etc/rhizi-backend.conf +++ /dev/null @@ -1,5 +0,0 @@ -{ - "listen_address": "127.0.0.1", - "listen_port": "3000", - "neo4j_url": "http://127.0.0.1:50442" -} \ No newline at end of file diff --git a/res/etc/rhizi-server.conf b/res/etc/rhizi-server.conf new file mode 100644 index 00000000..bb68768e --- /dev/null +++ b/res/etc/rhizi-server.conf @@ -0,0 +1,5 @@ +{ + "listen_address": "127.0.0.1", + "listen_port": 3000, + "neo4j_url": "http://127.0.0.1:50442" +} \ No newline at end of file -- cgit v1.3.1 From 4e1a7cdfd5985948f84149227ffa26379acd7444 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Wed, 3 Dec 2014 12:16:02 +0200 Subject: login page template --- res/templates/login.html | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 res/templates/login.html (limited to 'res') diff --git a/res/templates/login.html b/res/templates/login.html new file mode 100644 index 00000000..afcc403f --- /dev/null +++ b/res/templates/login.html @@ -0,0 +1,59 @@ + + + + +Rhizi Sandbox Login + + + + + + +
+
+
Rhizi Sandbox Login
+
+ + +
+ + +

+ +

+
+
+ {% if login_failed %}Login Failed{% endif %} +
+
+ + + \ No newline at end of file -- cgit v1.3.1 From 6f61aefd06b9ae7fe9c3c5741f77d0cd9670583b Mon Sep 17 00:00:00 2001 From: LV-426 Date: Wed, 3 Dec 2014 13:14:49 +0200 Subject: mv index.html under templates/, duplicate file under rhizi/ temporarily co-exists --- res/templates/index.html | 132 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 res/templates/index.html (limited to 'res') diff --git a/res/templates/index.html b/res/templates/index.html new file mode 100644 index 00000000..dc40704c --- /dev/null +++ b/res/templates/index.html @@ -0,0 +1,132 @@ + + + Rhizi Prototype + + + + + + + + + + + +
+

Server test

+
+
+
+ UH +
Welcome {{ username }}!
+
+ +
+
+ + +
+
+
+ +
+
+
+
+ + +
+ +
+
+ + +
+
+ +
+
+ + +
+
+ +
+ + + +
Pick a type with [TAB] key
+
+ +
+ +
+
+
+ Save +
+
+
+
+ Export +
+
+
+
+
+
+ Load +
+
+
+ +
+
+
+
+ Import +
+
+
+ +
+ + + + + + -- cgit v1.3.1 From d1bddf995928ea308d391fd51b8068ecf9a8dbd1 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Wed, 3 Dec 2014 15:24:35 +0200 Subject: user-login panel --- res/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'res') diff --git a/res/templates/index.html b/res/templates/index.html index dc40704c..125caf49 100644 --- a/res/templates/index.html +++ b/res/templates/index.html @@ -18,7 +18,7 @@
UH -
Welcome {{ username }}!
+
Welcome {{ username }}!Logout
-- cgit v1.3.1 From 7337ada62992bafee6c8db23f103841eb0024d2e Mon Sep 17 00:00:00 2001 From: garbash Date: Wed, 3 Dec 2014 15:29:06 +0200 Subject: Added content to landing page - no styling yet --- .gitignore | 1 + res/templates/login.html | 28 +++++++++++++++++++++------- 2 files changed, 22 insertions(+), 7 deletions(-) create mode 100644 .gitignore (limited to 'res') diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..9f11b755 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea/ diff --git a/res/templates/login.html b/res/templates/login.html index afcc403f..5ec36570 100644 --- a/res/templates/login.html +++ b/res/templates/login.html @@ -1,14 +1,12 @@ - - + -Rhizi Sandbox Login - +Welcome to Rhizi