From 09a74698a6f8311517180e0d7af7f827cc3c46de Mon Sep 17 00:00:00 2001
From: Messerbill
Date: Sun, 29 Nov 2015 22:26:43 +0100
Subject: [PATCH] updated system version
---
danube/autoload.inc | 2 +-
danube/dbd/autoload.inc.php | 6 -
danube/dbd/db/unet.php | 8 -
danube/dbd/tbl/locale_string.php | 31 --
danube/page/default_page/danube.tpl | 12 +-
danube/page/default_page/js/dasense-ui.js | 513 ----------------------
danube/page/default_page/js/dasense.tpl | 201 ---------
danube/page/page_danube.php | 18 +-
danube/path/PSQL.php | 5 +
danube/sai/autoload.inc | 2 +-
danube/sql/DATA_DANUBE.php | 8 +
danube/sql/autoload.inc.php | 3 +
danube/sql/mysql/system_text.sql | 76 ++++
13 files changed, 109 insertions(+), 776 deletions(-)
delete mode 100644 danube/dbd/autoload.inc.php
delete mode 100644 danube/dbd/db/unet.php
delete mode 100644 danube/dbd/tbl/locale_string.php
delete mode 100644 danube/page/default_page/js/dasense-ui.js
delete mode 100644 danube/page/default_page/js/dasense.tpl
create mode 100644 danube/path/PSQL.php
create mode 100644 danube/sql/DATA_DANUBE.php
create mode 100644 danube/sql/autoload.inc.php
create mode 100644 danube/sql/mysql/system_text.sql
diff --git a/danube/autoload.inc b/danube/autoload.inc
index e439e8a..6641740 100644
--- a/danube/autoload.inc
+++ b/danube/autoload.inc
@@ -1,7 +1,7 @@
registerFolder(dirname(__FILE__).'/tbl/definitions/','DBD\DEFINITIONS');
-//$autoload->registerFolder(dirname(__FILE__).'/tbl/data/','DBD\DATA');
-//$autoload->registerFolder(dirname(__FILE__).'/tbl/data_processed/','DBD\DATA_PROCESSED');
\ No newline at end of file
diff --git a/danube/dbd/db/unet.php b/danube/dbd/db/unet.php
deleted file mode 100644
index 3c639b4..0000000
--- a/danube/dbd/db/unet.php
+++ /dev/null
@@ -1,8 +0,0 @@
-${danube_menu_home}
diff --git a/danube/page/default_page/js/dasense-ui.js b/danube/page/default_page/js/dasense-ui.js
deleted file mode 100644
index 09b4755..0000000
--- a/danube/page/default_page/js/dasense-ui.js
+++ /dev/null
@@ -1,513 +0,0 @@
-
-
-/* global variables */
-
-var header_height = 85;
-var header_height_big = 117;
-var logo_padding = 0;
-var logo_padding_big = 15;
-var userbutton_padding = 30;
-var userbutton_padding_big = 17;
-
-//da_sense layer options
-var sensorType = 1;
-var algo = 'heatmapRect';
-var from = new Date();//'01.02.2011 20:00'; from.getDate()+'.'+from.getMonth()+1+'.'+from.getFullYear()+' 00:00';
-var to = new Date();
-var provider = 'gps';
-
-var sidebar_is_visible = false;
-var mainbar_is_visible = true;
-var site_content_is_visible = false;
-var last_site_content = 'empty';
-var seriesMenuOpen = false;
-
-
-/* IDLE TIMER */
-// http://paulirish.com/2009/jquery-idletimer-plugin/
- // idleTimer() takes an optional argument that defines the idle timeout
- // timeout is in milliseconds; defaults to 30000
- //$.idleTimer(21098);
-
- // function you want to fire when the user goes idle
- $(document).bind("idle.idleTimer", function(){
- if(!site_content_is_visible){
- hideMainbar();
- hideSidebar();
- }
- });
-
- // function you want to fire when the user becomes active again
- $(document).bind("active.idleTimer", function(){
- if(!site_content_is_visible){
- showMainbar();
- //toggleSidebar();
- }
- });
-
-
-
-/* jQuery on document ready */
-$(document).ready(function() {
-
- //set date:
- from.setFullYear(2012, 1, 1);
-
-
- //add select lib
- $("#measurement-series-select").select2({
- width: 'resolve'
- //allowClear: true
- });
-
- $('#showSeries').click(function(){
- seriesMenuOpen = !seriesMenuOpen;
- if(!seriesMenuOpen){
- $("#measurement-series-select").select2("close");
- document.getElementById('seriesDiv').style.display = 'none';
- }else{
- document.getElementById('seriesDiv').style.display = 'block';
- document.getElementById('seriesDiv').style.visibility = 'hidden';
- $("#measurement-series-select").select2("open");
- }
- });
-
- //check if user uses touch device -> changeUIToTouchDevices()
- if (!!('ontouchstart' in window) || !!('onmsgesturechange' in window) ||
- navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/iPhone/i)) {
- //changeUIToTouchDevices();
- }
-
-
- //last page == http://www.da-sense.de/ -> show info box
- if( document.referrer == 'http://www.da-sense.de/' ||
- document.referrer == 'http://da-sense.de/'){
- //loadAjaxContent('?action=welcome');
- setTimeout(setCookie, 10000);
- }
-
- //jqBootstrapValidation
- $("#login_form input").not("[type=submit]").jqBootstrapValidation(
- {
- preventSubmit: true,
- submitError: function($form, event, errors) {},
- submitSuccess: function($form, event){
- $.get('./api.php?call=account&action=login&username='+$('#bt_login_user').val()+'&password_sha='+$.sha1($('#bt_login_password').val())+'&password_md5='+hex_md5($('#bt_login_password').val()), function (data) {
- if(data == 1){
- //set cookie
- if(document.getElementById('remember_me').checked == true){
- var cookie = 'remember=true&username='+$('#bt_login_user').val()+'&password_sha='+$.sha1($('#bt_login_password').val())+'&password_md5='+hex_md5($('#bt_login_password').val());
- $.cookie("rememberMe", cookie, { expires: 365 });
- }
- window.location.href = location.href.replace(/#/g, "");
- } else {
- $('.help-block').html("Login not successfull. User & Password combination wrong.")
- }
- });
- event.preventDefault();
- }
- });
-
- //logout user
- $('#logout_user_top, #logout_user_sidebar').click(function (e) {
- $.get('./api.php?call=account&action=logout', function (data) {
- $.removeCookie('rememberMe');
- window.location.href = location.href.replace(/#/g, "");
- });
- });
-
- //show login box
- $('#show_login_box').click(function (e) {
- document.getElementById('show_login_form').click();
- });
-
- //place cursor in login field
- $('#show_login_form').click(function (e) {
- //TODO: implement
- });
-
-
- //add eventListener for key events
- addEventListener("keydown", function(e){
- handleKeyEvents(e.which, e);
- });
-
- //prevent login menu from being closed whenever user clicks inside
- $('.dropdown-menu').find('form').click(function (e) {
- e.stopPropagation();
- });
-
- // hide timepicker
- $('.filter-time .bootstrap-timepicker-component').hide();
-
- //hide site-content-wrapper
- $('#site-content-wrapper').slideUp('fast');
-
- // populate filter with first value
- $('div.btn-group.dasense-filter ul.dropdown-menu').each(function () {
- $(this).find('a').first().populateDasenseFilter();
- });
-
- // populate filter and get options after selection
- $('div.btn-group.dasense-filter ul.dropdown-menu a').click(function () {
- if($(this).attr('sensorType') != null){
- sensorType = $(this).attr('sensorType');
- }
- if($(this).attr('algo') != null){
- algo = $(this).attr('algo');
- }
-
- $(this).populateDasenseFilter();
- //call update function -> will generate the new da_sense_layer
- updateLayer();
- });
-
- // add timepicker
- $('.filter-add-time a').click(function () {
- $(this).parent().hide();
- $(this).parent().next('.bootstrap-timepicker-component').show();
- });
-
- //handle links
- $(document).on("click", "a", function(){
- if($(this).hasClass('blank')){
- $('#site-content-wrapper').slideUp('slow');
- site_content_is_visible = false;
- showNavbarControls();
- removeNavActive();
- }
-
- });
-
- // handle navigation link click
- $('#navigation-left ul li a, #user-button .dropdown-menu li a').click(function () {
- //show/hide navbar controls
- if($(this).is('#map-link')){
- showNavbarControls();
- toggleSidebar();
- }else{
- if(!$(this).is('#show_login_box')){
- hideNavbarControls();
- }
- }
-
- toggleNavActive(this);
-
- if($(this).hasClass('filter')) {
- showNavBarFilter();
- } else {
- hideNavBarFilter();
- }
-
-
- if($(this).hasClass('blank')) {
- $('#site-content-wrapper').slideUp('slow');
- site_content_is_visible = false;
- } else {
- if(last_site_content !== $(this).attr('url') || !site_content_is_visible){
- loadAjaxContent($(this).attr('url'));
- last_site_content = $(this).attr('url');
- }
-
- }
- return false;
- });
-
- //toggle navbars
- $('a.brand, #toggle-sidebar').click(function(e){
- toggleSidebar();
- });
- $('#toggle-mainbar').click(function(e){
- toggleMainbar();
- });
-
- // initialize date- and timepickers
- $('.filter-date').datepicker();
- $('#date_from').datepicker("setValue", from); //date_to = current date
- $('#date_to').datepicker("setValue", to); //date_to = current date
-
- $('.filter-date').datepicker().on('changeDate', function(obj){
- if($(this).attr('id') == 'date_from'){
- from = new Date(obj.date.valueOf());
- }
- if($(this).attr('id') == 'date_to'){
- to = new Date(obj.date.valueOf());
- }
-
- updateLayer();
-
- });
- $('.timepicker-default').timepicker({
- showMeridian : false
- });
-
-});
-
-// extend jQuery
-$.fn.extend({
-
- // populate twitter-bootstrap dropdowns
- populateDasenseFilter: function () {
- $(this).parents('div.btn-group').find('a.dropdown-toggle span.dropdown-text').text($(this).text());
- }
-
-});
-
-
-
-/*################################################################################################################################################################
- *
- * FUNCTIONS
- *
- *################################################################################################################################################################
- */
-
-
-
-
-
-/*
-* Updates da_sense_layer
-*/
-function updateLayer(){
- var from_wired_timestamp = from.getDate()+'.'+(from.getMonth()+1)+'.'+from.getFullYear()+' 00:00';
- var to_wired_timestamp = to.getDate()+'.'+(to.getMonth()+1)+'.'+to.getFullYear()+' 23:59';
-
- $DS.updateSenseLayer(sensorType, algo, from_wired_timestamp, to_wired_timestamp, provider);
-
- if(sidebar_is_visible){
- $('.leaflet-control-legend').css('left', '210px');
- }
-}
-
-/*
-* Loads html from the url and puts it into the content div
-*/
-function loadAjaxContent(url) {
- var dataTmp;
- $.get(url, function (data) {
- dataTmp = data;
- bodyelem = $("html,body");
- bodyelem.animate({scrollTop: 0});
- }).complete(function() {
- $('#site-content-wrapper').slideUp({duration: 'slow',
- complete: function(){
- $('#site-content').html(dataTmp);
- $('#site-content-wrapper').slideDown('slow');
- site_content_is_visible = true;
- }});
- });
-}
-
-/*
- * Function changes some stuff, so our page will look better on touch devices / tablets
- *
- */
-function changeUIToTouchDevices(){
- var oldlink = document.getElementById('cssFile');
- var newlink = document.createElement("link")
- newlink.setAttribute("rel", "stylesheet");
- newlink.setAttribute("type", "text/css");
- newlink.setAttribute("href", "dasense/page/new_default_page/css/dasenseTouch.css");
- document.getElementsByTagName("head").item(0).replaceChild(newlink, oldlink);
-}
-
-
-/*
- * Handling given keyEvents
- */
-function handleKeyEvents(keyCode, event){
-
- //no key events if input has focus
- if($("*:focus").is('input') || $("*:focus").is('textarea')){
- return;
- }
-
-
- //esc-key -> show map, hide navbars
- // n-key -> show navbars
- if(keyCode == 27 || keyCode == 78){
- event.preventDefault();
- event.stopPropagation();
- if(site_content_is_visible){
- $('#site-content-wrapper').slideUp('slow');
- site_content_is_visible = false;
- }
-
- if(sidebar_is_visible || mainbar_is_visible){
- hideSidebar();
- hideMainbar();
- } else {
- if(keyCode == 78){
- showSidebar();
- }
- showMainbar();
- }
- showNavbarControls();
- removeNavActive();
- }
-
-
- /*
- //+ zoom in
- if(keyCode == 43){//does not work
- }
- //- zoom out
- if(keyCode == 45){//does not work
- }
-
- //A < move map
- if(keyCode == A || keyCode == LEFT){}
- //W /\ move map
- if(keyCode == W || keyCode == UP){}
- //S \/ move map
- if(keyCode == S || keyCode == DOWN){}
- //D > move map
- if(keyCode == D || keyCode == RIGHT){}
- */
-}
-
-/*
-* Shows the left navigation bar with a slide effect
-*/
-function showSidebar() {
- $('#toggle-sidebar i').removeClass('icon-chevron-right').addClass('icon-chevron-left');
- $('#navigation-left-wrapper').animate({left: '0px'}, 'slow');
- $('#toggle-sidebar').animate({left: '200px'}, 'slow');
- $('.leaflet-control-legend').animate({left: '210px'}, 'slow');
- sidebar_is_visible = true;
-}
-
-/*
-* Hides the left navigation bar with a slide effect
-*/
-function hideSidebar() {
- $('#toggle-sidebar i').removeClass('icon-chevron-left').addClass('icon-chevron-right');
- $('#navigation-left-wrapper').animate({left: '-200px'}, 'slow');
- $('#toggle-sidebar').animate({left: '0px'}, 'slow');
- $('.leaflet-control-legend').animate({left: '10px'}, 'slow');
- sidebar_is_visible = false;
- removeNavActive();
- showNavbarControls();
-}
-
-function toggleSidebar() {
- if(sidebar_is_visible) hideSidebar();
- else showSidebar();
-}
-
-/*
- * Shows the top navigatio bar with a slide effect
- */
-function showMainbar() {
- $('#toggle-mainbar i').removeClass('icon-chevron-down').addClass('icon-chevron-up');
- $('#main-navbar').animate({top: '0px'}, 'slow');
- //document.getElementById('site-content-wrapper').style.top = '117';
- mainbar_is_visible = true;
-}
-
-/*
-* Hides the left navigation bar with a slide effect
-*/
-function hideMainbar() {
- $('#toggle-mainbar i').removeClass('icon-chevron-up').addClass('icon-chevron-down');
- $('#main-navbar').animate({top: '-117px'}, 'slow');
- //document.getElementById('site-content-wrapper').style.top = '0';
- mainbar_is_visible = false;
- showNavbarControls();
-}
-
-function toggleMainbar() {
- if(mainbar_is_visible) hideMainbar();
- else showMainbar();
-}
-
-/*
- * Shows the semicircles for showing/hiding navbars
- */
-function showNavbarControls(){
- document.getElementById('toggle-mainbar').style.visibility = 'visible';
- document.getElementById('toggle-sidebar').style.visibility = 'visible';
-}
-
-/*
- * Hides the semicircles for showing/hiding navbars
- */
-function hideNavbarControls(){
- document.getElementById('toggle-mainbar').style.visibility = 'hidden';
- document.getElementById('toggle-sidebar').style.visibility = 'hidden';
-}
-
-
-/*
-* Toggles 'active' class on navigation links
-*/
-function toggleNavActive(elem) {
- $('#navigation-left ul.nav li.active').removeClass('active');
- $(elem).parent().addClass('active');
-}
-
-/*
- * Removes 'active' class on navigation links
- */
-function removeNavActive(){
- $('#navigation-left ul.nav li.active').removeClass('active');
-}
-
-/*
-* Hides filter elements on top navigation bar
-*/
-function hideNavBarFilter() {
- $('.filter-container').hide();
- $('a.brand img').css({
- paddingTop : logo_padding,
- paddingBottom : logo_padding
- });
- $('#user-button').css({
- marginTop : userbutton_padding_big
- });
- $('#navigation-left, #wrapper').css({
- top : header_height
- });
-}
-
-/*
-* Shows filter elements on top navigation bar
-*/
-function showNavBarFilter() {
- $('.filter-container').show();
- $('a.brand img').css({
- paddingTop : logo_padding_big,
- paddingBottom : logo_padding_big
- });
- $('#user-button').css({
- marginTop : userbutton_padding
- });
-}
-
-function createCookie(name,value,days) {
- $.cookie(name, value, { expires: days });
-}
-
-
-function setCookie(){
- /*bootbox.classes("bootbox");
- bootbox.confirm("Soll das neue Design dauerhaft aktiviert werden?", "Nein", "Ja",
- function(check){
- if (check == true){
- createCookie("design", "new", 22);
- }
- });*/
-
- //TODO remove!
-
-}
-
-function selectSeries(){
- var seriesID = $('#measurement-series-select').val();
- var name = $('#measurement-series-select option[value="'+seriesID+'"]').text();
- alert("measurementSeriesID: "+seriesID+" name: "+name);
- document.getElementById('seriesDiv').style.display = 'none';
- document.getElementById('seriesName').innerHTML = name;
-
-}
\ No newline at end of file
diff --git a/danube/page/default_page/js/dasense.tpl b/danube/page/default_page/js/dasense.tpl
deleted file mode 100644
index 3260533..0000000
--- a/danube/page/default_page/js/dasense.tpl
+++ /dev/null
@@ -1,201 +0,0 @@
-
-
-
- da_sense
- ${js}
- ${css}
-
-
-
-
-
-
-
-
- ${introductionOverlay}
-
-
-
-
-
-
-
-
-
-
-
-
-
${legend_timerange}
-
-
-
-
-
-
-
-
-
-
-
- ${login_form}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${js_bottom}
-
-
-
\ No newline at end of file
diff --git a/danube/page/page_danube.php b/danube/page/page_danube.php
index b7ecc87..44ca047 100644
--- a/danube/page/page_danube.php
+++ b/danube/page/page_danube.php
@@ -5,33 +5,33 @@ class page_danube extends \SYSTEM\API\api_default {
public static function default_page($_escaped_fragment_ = NULL){
return (new default_page($_escaped_fragment_))->html();}
- public static function action_googlemaps(){
+ public static function page_googlemaps(){
return (new googlemaps())->html();
}
- public static function action_osm(){
+ public static function page_osm(){
return (new osm())->html();
}
- public static function action_test(){
+ public static function page_test(){
return (new default_page())->html();
}
- public static function action_prices(){
+ public static function page_prices(){
return (new default_prices())->html();}
- public static function action_contact(){
+ public static function page_contact(){
return (new default_contact())->html();}
- public static function action_certificates(){
+ public static function page_certificates(){
return (new default_certificates())->html();}
- public static function action_partners(){
+ public static function page_partners(){
return (new default_partners())->html();}
- public static function action_impressions(){
+ public static function page_impressions(){
return (new default_impressions())->html();}
- public static function action_introduction(){
+ public static function page_introduction(){
return (new default_introduction())->html();}
}
\ No newline at end of file
diff --git a/danube/path/PSQL.php b/danube/path/PSQL.php
new file mode 100644
index 0000000..5788357
--- /dev/null
+++ b/danube/path/PSQL.php
@@ -0,0 +1,5 @@
+
\nÜber Slingit - für was? für wen? warum?
\n
\nAnwendungsbereich
\nEine Datei ist zu groß für einen Email Anhang?
\nDu willst eine Datei von einem fremden Computer verschicken?
\nDu willst Files sicher Peer to Peer ohne Upload auf einen Server versenden?
\nDu willst eine oder viele Dateien mit vielen Leuten gleichzeitig teilen, ohne dass es ewig dauert?
\nSeite macht Sachen
\nLege die Datei die du verschicken möchtest in den gestrichelten Kasten ab. Die Datei wird nun in deinen Browser geladen.
\n
\nAnstatt sie aber nun auf einen Server hochzuladen, packt der Browser sie in ein Übertragungsformat und wartet auf Anfragen zum Download.
\n
\nUnter dem gestrichelten Kasten erscheint nun der Direkte Link, z.B.: Über diesen Link erreicht jeder nun mit seinem Browser die Datei, die du teilen möchtest.
\n
\nKlickt jemand auf den Link, lädt sein Browser die Datei direkt aus deinem Speicher. Per Mausklick lässt sie sich dann sofort in den Download Ordner ziehen.
\n
\n Das Beste
\nJe mehr Leute deinen Link herunterladen, desto schneller wird der Download für alle Dank des ultra-effizienten Webtorrent Prinzips.
\nKeine Dienste oder dubiose Anbieter über deren Server die geteilten Inhalte laufen. Nicht einmal wir könnten sagen was ihr teilt.
\nPeer to Peer bedeutet auch der kürzeste Weg. Dateien die via Slingit ausgetauscht werden nutzen deine vom Provider festgelegte Upload Rate maximal aus.
\nthe Circle of Files!
\n
\n', 1, 0, '2015-04-15 19:25:48', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('about', 'enUS', '
About Slingit - what it does and how this works
What slingit can do for you
You want to send a file that is too big for your e-mail provider to handle?
Your not working in your own envoirenment and need an easy gateway?
You want to share files friend-to-friend, without uploading them to any host whatsoever?
You want to share a file with many friends at at the same time, without taking ages?
slingit does stuff
Drag the data you want to share to the field. The file will be loaded into your browser cache.
Without uploading your data to an actual server, your browser\'s javascript creates a torrent for your file and initializes the WebRTC client for opening peers.
A log will appear providing the direct download link for your file. z.B.: Über diesen Link erreicht jeder nun mit seinem Browser die Datei, die du teilen möchtest.
Clicking this link will immedately start the WebRTC client and downloading the file directly from your peer. You can claim the file after it\'s loaded by clicking on download.
What\'s great about this
The more people download a file simultaniously, the FASTER the download will become for everybode, hence the efficiency of the torrent protocol.
No hosters or dubious sharing platforms needed. Even we can\'t tell what you\'re sharing.
Peer to Peer means: maximum download and upload efficiancy.
the Circle of Files!
', 1, 1, '2015-04-16 23:52:10', '2015-04-16 23:52:10');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('about', 'jaJA', '
About Slingit - what it does and how this works
What slingit can do for you
You want to send a file that is too big for your e-mail provider to handle?
Your not working in your own envoirenment and need an easy gateway?
You want to share files friend-to-friend, without uploading them to any host whatsoever?
You want to share a file with many friends at at the same time, without taking ages?
slingit does stuff
Drag the data you want to share to the field. The file will be loaded into your browser cache.
Without uploading your data to an actual server, your browser\'s javascript creates a torrent for your file and initializes the WebRTC client for opening peers.
A log will appear providing the direct download link for your file. z.B.: Über diesen Link erreicht jeder nun mit seinem Browser die Datei, die du teilen möchtest.
Clicking this link will immedately start the WebRTC client and downloading the file directly from your peer. You can claim the file after it\'s loaded by clicking on download.
What\'s great about this
The more people download a file simultaniously, the FASTER the download will become for everybode, hence the efficiency of the torrent protocol.
No hosters or dubious sharing platforms needed. Even we can\'t tell what you\'re sharing.
Peer to Peer means: maximum download and upload efficiancy.
the Circle of Files!
', 1, 1, '2015-04-16 23:53:40', '2015-04-16 23:53:40');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_footer', 'deDE', '', 0, 7, '2015-11-18 15:53:36', '2015-11-18 15:53:36');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_footer', 'enUS', '', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_footer', 'huHU', '', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_html_meta', 'deDE', ' ', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_html_meta', 'enUS', ' ', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_certificates', 'deDE', 'Zertifikate', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_certificates', 'enUS', 'Certificates', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_certificates', 'huHU', 'Oklevelek', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_contact', 'deDE', 'Kontakt', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_contact', 'enUS', 'Contact', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_contact', 'huHU', 'ElérhetÅ‘ség', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_home', 'deDE', 'Home', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_home', 'enUS', 'Home', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_home', 'huHU', 'Home', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_impressions', 'deDE', 'Galerie', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_impressions', 'enUS', 'Gallery', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_impressions', 'huHU', 'Galéria', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_introduction', 'deDE', 'Über mich', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_introduction', 'enUS', 'About me', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_introduction', 'huHU', 'Bemutatkozás', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_partners', 'deDE', 'Partner', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_partners', 'enUS', 'Partners', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_partners', 'huHU', 'Partner', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_prices', 'deDE', 'Preise', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_prices', 'enUS', 'Prices', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_menu_prices', 'huHU', 'Árak', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_contact', 'deDE', 'Szilvia Farsang Heidelberger Strasse 17 64673 Zwingenberg szilvia.farsang@gmail.com Mobil: 017630536809
', 0, 7, '2015-11-18 15:55:21', '2015-11-18 15:55:21');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_contact', 'enUS', 'Szilvia Farsang Heidelberger Strasse 17 64673 Zwingenbergszilvia.farsang@gmail.com bluedanubemassage@gmail.com Mobil: 017630536809 ', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_contact', 'huHU', 'Farsang Szilvia Heidelberger Strasse 17 64673 Zwingenbergszilvia.farsang@gmail.com bluedanubemassage@gmail.com Mobil: 004917630536809 ', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_content', 'deDE', 'Willkommen
Willkommen im Blue Danube Massage Studio - eine Insel der Ruhe und des Friedens. Eine kleine Oase an der Bergstrasse, in der Ihr Körper und Geist gleichermaßen entspannen können.
Termin unter der Telefonnummer 0176 30 53 68 09 oder E-Mail-Adresse szilvia.farsang@gmail.com zu konsultieren.
', 0, 7, '2015-11-18 15:57:45', '2015-11-18 15:57:45');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_content', 'enUS', 'Welcome \n
\n Welcome to the Blue Danube Massage Studio- An island of peace and calmness. A little oasis on the Bergstrasse where both your mind and body can truly relax.
\n Appointment by telephoning 0049 176 30 53 68 09 or e-mail addressszilvia.farsang@gmail.com or bluedanubemassage@gmail.com
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_content', 'huHU', 'Üdvözlés \n
\n Üdvözlöm Önt a Kék Duna Masszázs Stúdió,a béke és a nyugalom szigetén.
\n Egy kicsi oázis a Bergstrassen,ahol mindkettÅ‘: a test és a lélek valóban meg tud pihenni.
\n IdÅ‘pontot a következÅ‘ telefonszámon 0049 176 30 53 68 09 vagy e-mail címen
\n szilvia.farsang@gmail.com vagy a bluedanubemassage@gmail.com tud egyeztetni.
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_googlemaps', 'deDE', '\r\n \r\n
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_googlemaps', 'enUS', '\r\n \r\n
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_googlemaps', 'huHU', '\r\n \r\n
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_headpic_home', 'deDE', '', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_headpic_home', 'enUS', '', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_headpic_home', 'huHU', '', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_introduction', 'deDE', ' Willkommen auf meiner Website
Ich habe 36 Jahre Erfahrung als Lehrerin in Biologie und Sport. Auch habe ich mich 2008 qualifiziert, medizinische Heilmassagen zu praktizieren und eröffnete im gleichen Jahr meinen eigenen Salon in der Nähe von Budapest. Ich habe auch Yumeiho-, Körperformung-, Cellulite-, Büro-, Fußreflexzonen- und Hot Stone- Masssage studiert. Als Agent für StageHands Bodyworking Massage Services aus den USA werde ich regelmäßig zu Konzerten als offizielle Masseurin entsandt, zum Beispiel Justin Bieber und Alicia Keys in Frankfurt und im Jahr 2011 Roger Waters in Budapest und auch im Jahr 2013 in Frankfurt, Nickelback in Meinheim, im 2014 Trans-Siberian Orchestra, OneRepublic in Frankfurt und in 2015 Def Leppard. Ich habe vor kurzem mein eigenes Massagestudio in Zwingenberg eröffnet, wo ich mich freuen würde Ihnen meine Dienste zu erweisen.
Für einen Termin oder weitere Informationen wenden Sie sich bitte an mich.
', 0, 7, '2015-09-01 22:08:53', '2015-09-01 22:08:53');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_introduction', 'enUS', 'Welcome to my website
\n
\nI have 36 years experience as a school teacher in biology and sports. I qualified to practice therapeutic massage in 2008 and opened a salon near Budapest in that year. I have also studied yumeiho, cellulite, office, foot reflex and hotstone masssage.
\nAs an agent for StageHands Bodyworking Massage Services in the USA I regularily attend concerts as official masseuse, for exmple in 2013 Justin Bieber and Alicia Keys in Frankfurt and Roger Waters in Buadapest in 2011 , in Frankfurt in 2013,Nickelback in Meinheim,in 2014 Trans-Siberian Orchestra, OneRepublic in Frankfurt.
\nI recentlyopened myownmassage studio in Zwingenbergwhere I would be pleased to offer my services to you.
\nFor an appointment or further information please feel free to contact me!
\n
\n
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_introduction', 'huHU', 'Üdvözlöm a honlapomon !
\n
\n36 év tapasztalatom van a biológia és sport tanításában és mellette megtanultam a gyógymasszázst is 2008-ban. Még ebben az évben vállalkozóként megnyitottam saját masszázsszalonomat Budapest közelében .
\n Szintén megszereztem képesítésem yumeiho-, alakformáló -,cellulit-, irodai-, talpreflex zóna- és hotstone masszázsfajtákból.
\n Hivatalos masszörként rendszeresen dolgozom koncerteken az amerikai StageHands Massage Bodyworking Service felkérésére, mint pl. JUSTIN BIEBER és ALICIA KEYS Frankfurtban , ROGER WATERS Budapesten 2011-ben s Frankfurtban 2013-ban,NICKELBACK Meinheimban,majd 2014-ben TRANS-SIBERIAN ORCHESTRA és ONEREPUBLIC Frankfurtban.
\n 2013 elején nyitottam Zwingenbergben a saját masszázsstudiómat, ahová szeretettel meghívok mindenkit a kínált szolgáltatásaimra.
\n IdÅ‘pont egyeztetésért és további információkért bizalommal forduljon hozzám!
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_offers', 'deDE', 'Angebote 1. Die erste Massage für Neukunden zum halben Preis ,und für Rentnern ist kostenlos!!! 2 .Sie können Ihren Freunden auch einen Gutschein schenken. 3. Kunden werben Kunden : Eine Massage zum halben Preis für jeden neu geworbenen Kunden !!! 4. Beim Kauf 10er-Karte sparen Sie 20%!!! Die 10er-Karten besitzen eine Gültigkeitsdauer von 12 Monaten ab Erwerb. Aktionspreise können nicht gekoppelt werden.
', 0, 7, '2015-11-18 15:59:46', '2015-11-18 15:59:46');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_offers', 'enUS', 'Offers \n 1. The first massage for new customers is half price. 2. Recommend a new customer and also get a half price massage. 3. You can also give a massage voucher to your friends. 4. With a 10-visit card you save €2 per massage plus 1 extra for free. The 10-visit card is valid for 18 months. Offers cannot be combined. ', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_offers', 'huHU', 'Ajánlatok \n 1. Az elsÅ‘ masszázs minden új vendégnek fél ár és a nyugdíjasoknak ingyen!!! 2. Minden Ön által ajánlott vendég után Ön egy masszázst fál áron kap. 3. Ajándékutalványt vásárolhat barátainak. 4. 10 alkalmas bérlet vásárlása esetén minden alkalom 2€-val olcsóbb ,plusz 1 masszázst ingyen kap . A bérlet 18 hónapig érvényes. Az akciók nem vonhatók össze.
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_partners', 'deDE', 'Partner Als Agent für StageHands Bodyworking Massage Services aus den USA werde ich regelmäßig zu Konzerten als offizielle Masseurin entsandt, zum Beispiel im Jahr 2013 JUSTIN BIEBER und ALICIA KEYS in Frankfurt und im Jahr 2011 ROGER WATERS in Budapest und im 2013 in Frankfurt, NICKELBACK in Meinheim,im 2014 TRANS-SIBERIAN ORCHESTRA, ONEREPUBLIC und im 215 DEF LEPPARD in Frankfurt. ', 0, 7, '2015-11-18 16:02:17', '2015-11-18 16:02:17');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_partners', 'enUS', 'Partners \nAs an agent for StageHands Bodyworking Massage Services in the USA I regularily attend concerts as official masseuse, for exmple in 2013 JUSTIN BIEBER and ALICIA KEYS in Frankfurt , in 2011 ROGER WATERS in Budapest and in 2013 in Frankfurt, NICKELBACK in Meinheim,in 2014 TRANS-SIBERIAN ORCHESTRA, ONEREPUBLIC in Frankfurt. ', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_partners', 'huHU', 'Partner \nHivatalos masszÅ‘rként rendszeresen dolgozom az amerikai StageHands Massage Bodyworking Service-nek koncerteken, mint pl. 2013-ban JUSTIN BIEBER és ALICIA KEYS Frankfurtban , 2011-ben ROGER WATERS Budapesten és 2013-ban Frankfurtban, NICKELBACK Meinheimban,2014-ben TRANS-SIBERIAN ORCHESTRA, ONEREPUBLIC Frankfurtban. ', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_prices', 'deDE', 'Preise Programm Rücken-Nacken- Kreuz 30 Min 25 € Untere Gliedmaßen 30 Min 25 € Ganzkörper 60 Min 45 € Erfrischende Fußmassage 30 Min 25 € Büromassage 20 Min 20 € Hot Stone Massage 90 Min 65 €
', 0, 7, '2015-11-18 16:06:29', '2015-11-18 16:06:29');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_prices', 'enUS', 'Prices \n\n\nProgram Length (min) Price \n\nBack-neck waist (sacrum) \n30 \n25,- \n \n\nLower limbs \n30 \n25,- \n \n \n\nFull body \n60 \n45,- \n \n\nRefreshing sole massage \n30 \n25,- \n \n\nChair-and seated therapeutic massage \n20 \n20,- \n \n\nHot Stone massagetherapy \n90 \n65,- \n \n \n
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_prices', 'huHU', 'Árak \n\n\nProgram IdÅ‘ (min) Ár (€) \n\nHát-nyak-derék \n30 \n25,- \n \n\nAlsó végtagok \n30 \n25,- \n \n \n\nTeljes test \n60 \n45,- \n \n\nFrissító talpmasszázs \n30 \n25,- \n \n\nSzék-és ülömasszázs \n20 \n20,- \n \n\nLávaköves masszázs \n90 \n65,- \n \n \n
', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_title', 'deDE', 'Blue Danube Massage', 0, 1, '2015-05-16 12:37:03', '2015-05-16 12:37:03');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_title', 'enUS', 'Blue Danube Massage', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('danube_page_title', 'huHU', 'Blue Danube Massage', 0, 0, '2015-05-16 12:13:16', '0000-00-00 00:00:00');
+
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('about', 'slingit');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_footer', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_html_meta', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_menu_certificates', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_menu_contact', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_menu_home', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_menu_impressions', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_menu_introduction', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_menu_partners', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_menu_prices', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_contact', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_content', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_googlemaps', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_headpic_home', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_introduction', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_offers', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_partners', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_prices', 'danube');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('danube_page_title', 'danube');