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} - - - - - - - - - -
- -
- - -
- - -
- - -
-
-
-
- - - - - ${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

 

\n

Anwendungsbereich

\n

Eine Datei ist zu groß für einen Email Anhang?

\n

Du willst eine Datei von einem fremden Computer verschicken?

\n

Du willst Files sicher Peer to Peer ohne Upload auf einen Server versenden?

\n

Du willst eine oder viele Dateien mit vielen Leuten gleichzeitig teilen, ohne dass es ewig dauert?

\n


Seite macht Sachen

\n

Lege die Datei die du verschicken möchtest in den gestrichelten Kasten ab. Die Datei wird nun in deinen Browser geladen.

\n

\n

Anstatt sie aber nun auf einen Server hochzuladen, packt der Browser sie in ein Übertragungsformat und wartet auf Anfragen zum Download.

\n

\n

Unter 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

\n

Klickt 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

\n

Je mehr Leute deinen Link herunterladen, desto schneller wird der Download für alle Dank des ultra-effizienten Webtorrent Prinzips.

\n

Keine Dienste oder dubiose Anbieter über deren Server die geteilten Inhalte laufen. Nicht einmal wir könnten sagen was ihr teilt.

\n

Peer to Peer bedeutet auch der kürzeste Weg. Dateien die via Slingit ausgetauscht werden nutzen deine vom Provider festgelegte Upload Rate maximal aus.

\n


the 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', '
szilvia.farsang@gmail.com / Mobil: 0176 30 53 68 09
', 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', '
szilvia.farsang@gmail.com / bluedanubemassage@gmail.com mobile: 0049 176 30 53 68 09
', 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', '
szilvia.farsang@gmail.com / bluedanubemassage@gmail.com mobile: 0049 176 30 53 68 09
', 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 Zwingenberg
szilvia.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 Zwingenberg
szilvia.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', '
\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_headpic_home', 'enUS', '
\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_headpic_home', 'huHU', '
\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', '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

 

\n

I 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.

\n

As 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.

\n

I recentlyopened myownmassage studio in Zwingenbergwhere I would be pleased to offer my services to you. 

\n

For 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

 

\n

36 é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- Kreuz30 Min25 €
Untere Gliedmaßen30 Min25 €
Ganzkörper60 Min45 €
Erfrischende Fußmassage30 Min25 €
Büromassage20 Min20 €
Hot Stone Massage90 Min65 €
', 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\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ProgramLength
(min)
Price
Back-neck waist (sacrum)3025,-
Lower limbs3025,- 
Full body6045,-
Refreshing sole massage3025,-
Chair-and seated therapeutic massage2020,-
Hot Stone massagetherapy9065,-
', 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\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ProgramIdő
(min)   
Ár
(€)
Hát-nyak-derék3025,-
Alsó végtagok3025,- 
Teljes test6045,-
Frissító talpmasszázs3025,-
Szék-és ülömasszázs2020,-
Lávaköves masszázs9065,-
', 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');