From a0b42aa257d0a6c56cd4a099aa0a2cea4a8dc2c9 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Sat, 10 Jun 2017 16:15:22 +0200 Subject: [locationinfo] Started rewrite for panel-based approach --- .../templates/ajax-config-location.html | 178 ++++++++++ .../locationinfo/templates/ajax-config-server.html | 99 ++++++ .../locationinfo/templates/config.html | 395 --------------------- .../locationinfo/templates/location-info.html | 219 ------------ .../locationinfo/templates/page-config-panel.html | 349 ++++++++++++++++++ .../locationinfo/templates/page-locations.html | 98 +++++ .../locationinfo/templates/page-servers.html | 113 ++++++ .../locationinfo/templates/server-settings.html | 99 ------ .../locationinfo/templates/timetable.html | 216 ----------- 9 files changed, 837 insertions(+), 929 deletions(-) create mode 100644 modules-available/locationinfo/templates/ajax-config-location.html create mode 100644 modules-available/locationinfo/templates/ajax-config-server.html delete mode 100644 modules-available/locationinfo/templates/config.html delete mode 100644 modules-available/locationinfo/templates/location-info.html create mode 100644 modules-available/locationinfo/templates/page-config-panel.html create mode 100644 modules-available/locationinfo/templates/page-locations.html create mode 100644 modules-available/locationinfo/templates/page-servers.html delete mode 100644 modules-available/locationinfo/templates/server-settings.html delete mode 100644 modules-available/locationinfo/templates/timetable.html (limited to 'modules-available/locationinfo/templates') diff --git a/modules-available/locationinfo/templates/ajax-config-location.html b/modules-available/locationinfo/templates/ajax-config-location.html new file mode 100644 index 00000000..2cbad89d --- /dev/null +++ b/modules-available/locationinfo/templates/ajax-config-location.html @@ -0,0 +1,178 @@ + +
+

{{lang_openingTime}}

+ {{^expertMode}} +
+ +
+ {{lang_expertMode}} +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
{{lang_day}}{{lang_openingTime}}{{lang_closingTime}}
{{lang_monTilFr}} +
+ + + + +
+
+
+ + + + +
+
{{lang_saturday}} +
+ + + + +
+
+
+ + + + +
+
{{lang_sunday}} +
+ + + + +
+
+
+ + + + +
+
+
+ {{/expertMode}} + +
+ +
+
+
+
{{lang_day}}
+
{{lang_delete}}
+
{{lang_openingTime}}
+
{{lang_closingTime}}
+
+
+
+
+ +

{{lang_remoteSchedule}}

+
+
+ {{lang_server}} +
+
+ +
+
+ + + +
+
+
+
+ {{lang_roomId}} +
+
+ +
+
+ + + +
+
+ + diff --git a/modules-available/locationinfo/templates/ajax-config-server.html b/modules-available/locationinfo/templates/ajax-config-server.html new file mode 100644 index 00000000..940bc55a --- /dev/null +++ b/modules-available/locationinfo/templates/ajax-config-server.html @@ -0,0 +1,99 @@ +
+
{{lang_general}}
+
+
+
+
+
+ +
+
+ +
+
+ + + +
+
+
+
+
+
+ +
+
+ +
+
+ + + +
+
+
+
+
+
+ +{{#backendList}} +
+
+ + + + + + + + +
+
{{lang_credentials}}
+
+
+ {{#credentials}} + {{{credentialsHtml}}} + {{/credentials}} +
+
+
+
+
+{{/backendList}} + diff --git a/modules-available/locationinfo/templates/config.html b/modules-available/locationinfo/templates/config.html deleted file mode 100644 index cce63de1..00000000 --- a/modules-available/locationinfo/templates/config.html +++ /dev/null @@ -1,395 +0,0 @@ -
- - - - -
-
-
-
{{lang_server}}
-
-
-
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
-
-
-
-
- -
-
-
{{lang_display}}
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
-
-
-
-
-
- -
-
-
-
-
{{lang_mode}}
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
-  % - -
-
- - - -
-
-
- -
-
-
- -
-
-  {{lang_sec}} - -
-
- - - -
-
-
-
-
-
-
- -
-
-
{{lang_updateRates}}
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
- -
-
-
- -
-
- -
-
- - - -
-
-
-
-
-
-
-
-
- -
-
- - - - {{lang_customUrl}} -
-
-
- -
-
-
- - diff --git a/modules-available/locationinfo/templates/location-info.html b/modules-available/locationinfo/templates/location-info.html deleted file mode 100644 index e2ee2960..00000000 --- a/modules-available/locationinfo/templates/location-info.html +++ /dev/null @@ -1,219 +0,0 @@ -
-

{{lang_mainHeader}}

- -

{{lang_serverTable}}

- - - - - - - - - {{#serverlist}} - - - - - - - - - - - - {{/serverlist}} -
{{lang_serverType}}{{lang_locationName}}
{{typename}}{{servername}} - - - - -
- -
- -
- -

{{lang_buildingTable}}

- - - - - - - - - - {{#list}} - - - - - - - - {{/list}} -
{{lang_locationName}}{{lang_locationIsHidden}}{{lang_openingTime}}{{lang_locationSettings}}
-
- {{locationname}} -
-
- - -
-
- - - - - - - -
- - -
- diff --git a/modules-available/locationinfo/templates/page-config-panel.html b/modules-available/locationinfo/templates/page-config-panel.html new file mode 100644 index 00000000..244b80c9 --- /dev/null +++ b/modules-available/locationinfo/templates/page-config-panel.html @@ -0,0 +1,349 @@ +
+ + + + +
+
+
+
{{lang_display}}
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+
+
+
+
+
+ +
+
+
+
+
{{lang_mode}}
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+  % + +
+
+ + + +
+
+
+ +
+
+
+ +
+
+  {{lang_sec}} + +
+
+ + + +
+
+
+
+
+
+
+ +
+
+
{{lang_updateRates}}
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+ +
+
+ + + +
+
+
+
+
+
+
+
+
+ +
+
+ + + + {{lang_customUrl}} +
+
+
+ +
+
+
+ + diff --git a/modules-available/locationinfo/templates/page-locations.html b/modules-available/locationinfo/templates/page-locations.html new file mode 100644 index 00000000..436aa8d5 --- /dev/null +++ b/modules-available/locationinfo/templates/page-locations.html @@ -0,0 +1,98 @@ +

{{lang_buildingTable}}

+ + + + + + + + + {{#list}} + + + + + + + {{/list}} +
{{lang_locationName}}{{lang_openingTime}}{{lang_locationSettings}}
+
+ {{locationname}} +
+ + + + + + + +
+ + + + + + \ No newline at end of file diff --git a/modules-available/locationinfo/templates/page-servers.html b/modules-available/locationinfo/templates/page-servers.html new file mode 100644 index 00000000..2dfe63e1 --- /dev/null +++ b/modules-available/locationinfo/templates/page-servers.html @@ -0,0 +1,113 @@ +
+

{{lang_mainHeader}}

+ +

{{lang_serverTable}}

+ + + + + + + + + {{#serverlist}} + + + + + + + + + + + + {{/serverlist}} +
{{lang_serverType}}{{lang_locationName}}
{{typename}}{{servername}} + + + + +
+ +
+ +
+ + +
+ diff --git a/modules-available/locationinfo/templates/server-settings.html b/modules-available/locationinfo/templates/server-settings.html deleted file mode 100644 index 940bc55a..00000000 --- a/modules-available/locationinfo/templates/server-settings.html +++ /dev/null @@ -1,99 +0,0 @@ -
-
{{lang_general}}
-
-
-
-
-
- -
-
- -
-
- - - -
-
-
-
-
-
- -
-
- -
-
- - - -
-
-
-
-
-
- -{{#backendList}} -
-
- - - - - - - - -
-
{{lang_credentials}}
-
-
- {{#credentials}} - {{{credentialsHtml}}} - {{/credentials}} -
-
-
-
-
-{{/backendList}} - diff --git a/modules-available/locationinfo/templates/timetable.html b/modules-available/locationinfo/templates/timetable.html deleted file mode 100644 index 91a80877..00000000 --- a/modules-available/locationinfo/templates/timetable.html +++ /dev/null @@ -1,216 +0,0 @@ -
-
- - -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{lang_day}}{{lang_openingTime}}{{lang_closingTime}}
{{lang_monTilFr}} -
- - - - -
-
-
- - - - -
-
{{lang_saturday}} -
- - - - -
-
-
- - - - -
-
{{lang_sunday}} -
- - - - -
-
-
- - - - -
-
-
-
- -
-
- - - - - - - - - - - - - - - {{#openingtimes}} - - - - - - - {{/openingtimes}} - - -
{{lang_day}}{{lang_openingTime}}{{lang_closingTime}}{{lang_delete}}
{{days}}{{openingtime}}{{closingtime}}
- -
- - - {{lang_openingTime}} - -
-
-
- - -- cgit v1.2.3-55-g7522