updated system version

This commit is contained in:
Messerbill 2015-11-29 22:26:43 +01:00
parent b9058c4602
commit 09a74698a6
13 changed files with 109 additions and 776 deletions

View File

@ -1,7 +1,7 @@
<?php
require_once dirname(__FILE__).'/path/register_path_classes.php';
require_once dirname(__FILE__).'/page/register_page_classes.php';
require_once dirname(__FILE__).'/dbd/autoload.inc.php';
require_once dirname(__FILE__).'/sql/autoload.inc.php';
require_once dirname(__FILE__).'/api/autoload.inc.php';
require_once dirname(__FILE__).'/files/autoload.inc.php';
require_once dirname(__FILE__).'/config/autoload.inc.php';

View File

@ -1,6 +0,0 @@
<?php
\SYSTEM\autoload::registerFolder(dirname(__FILE__).'/db/','DBD');
\SYSTEM\autoload::registerFolder(dirname(__FILE__).'/tbl/','DBD');
//$autoload->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');

View File

@ -1,8 +0,0 @@
<?php
namespace DBD;
class unet extends \SYSTEM\DB\DBInfoMYS {
public function __construct() {
parent::__construct('', '', '', '', '');}
}

View File

@ -1,31 +0,0 @@
<?php
namespace DBD;
class locale_string extends \SYSTEM\DBD\system_locale_string {
const VALUE_CATEGORY_DASENSE = 100;
const VALUE_CATEGORY_DASENSE_DEFAULTPAGE = 110;
const VALUE_CATEGORY_DASENSE_GEOPOINT = 111;
const VALUE_CATEGORY_DASENSE_IMPRESSUM = 112;
const VALUE_CATEGORY_DASENSE_PROJECT = 113;
const VALUE_CATEGORY_DASENSE_SENSOR = 114;
const VALUE_CATEGORY_DASENSE_USERLOGIN = 115;
const VALUE_CATEGORY_DASENSE_USERLOGOUT = 116;
const VALUE_CATEGORY_DASENSE_USER = 117;
const VALUE_CATEGORY_DASENSE_PRESS = 118;
const VALUE_CATEGORY_DASENSE_CONTACT = 119;
const VALUE_CATEGORY_DASENSE_USERSTATISTICS = 120;
const VALUE_CATEGORY_DASENSE_HIGHSCORE = 121;
const VALUE_CATEGORY_DASENSE_DEVS = 122;
const VALUE_CATEGORY_DB_ADMIN_LEVEL = 200;
const VALUE_CATEGORY_DB_BADGE_CATEGORY = 201;
const VALUE_CATEGORY_DB_BADGE = 202;
const VALUE_CATEGORY_DB_TITLE = 203;
const VALUE_CATEGORY_DB_LOCALITY = 204;
const VALUE_CATEGORY_APP_ALL = 300;
const VALUE_CATEGORY_APP_ANDROID = 301;
const VALUE_CATEGORY_APP_IOS = 302;
}

View File

@ -44,12 +44,12 @@
<a class="brand" href="" url="?action=default_page">${danube_menu_home}</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="javascript:switchTextBg('white')" url="./?action=introduction">${danube_menu_introduction}</a></li>
<li><a href="javascript:switchTextBg('white')" url="./?action=prices" url_pic="danube/page/default_page/pics/photos/bar_front2.png">${danube_menu_prices}</a></li>
<li><a href="javascript:switchTextBg('white')" url="./?action=contact">${danube_menu_contact}</a></li>
<li><a href="javascript:switchTextBg('black')" url="./?action=impressions" textbg="black">${danube_menu_impressions}</a></li>
<li><a href="javascript:switchTextBg('black')" url="./?action=partners">${danube_menu_partners}</a></li>
<li><a href="javascript:switchTextBg('black')" url="./?action=certificates">${danube_menu_certificates}</a></li></ul>
<li><a href="javascript:switchTextBg('white')" url="./?page=introduction">${danube_menu_introduction}</a></li>
<li><a href="javascript:switchTextBg('white')" url="./?page=prices" url_pic="danube/page/default_page/pics/photos/bar_front2.png">${danube_menu_prices}</a></li>
<li><a href="javascript:switchTextBg('white')" url="./?page=contact">${danube_menu_contact}</a></li>
<li><a href="javascript:switchTextBg('black')" url="./?page=impressions" textbg="black">${danube_menu_impressions}</a></li>
<li><a href="javascript:switchTextBg('black')" url="./?page=partners">${danube_menu_partners}</a></li>
<li><a href="javascript:switchTextBg('black')" url="./?page=certificates">${danube_menu_certificates}</a></li></ul>
</div><!--/.nav-collapse -->

View File

@ -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.</br> 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;
}

View File

@ -1,201 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" itemscope itemtype="http://schema.org/Research">
<head>
<title>da_sense</title>
${js}
${css}
<!-- content for +1- / Like-Button -->
<meta itemprop="name" content="da_sense">
<meta itemprop="description" content="${likeButtonsContent}">
<meta itemprop="image" content="${PATH_LOCAL_IMG}icon_small.png">
</head>
<body>
${introductionOverlay}
<!-- Top Bar ############################################################### -->
<div id="main-navbar" class="navbar navbar-fixed-top">
<div class="navbar-inner">
<!-- Logo ############################################################## -->
<a class="brand" ref="#">
<img src="${PATH_LOCAL_IMG}logo.png" alt="da_sense" />
</a>
<!-- Filter Datatype ################################################### -->
<div id="filter-type" class="filter-container">
<label>${sp_type}</label>
<div class="btn-group dasense-filter dasense-type">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<i class="icon-filter"></i>
<span class="dropdown-text">${sp_noise_level}</span>
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="#" sensorType="1">${sp_noise_level}</a></li>
<li><a href="#" sensorType="4">${sp_temperature}</a></li>
<li><a href="#" sensorType="5">${sp_luminance}</a></li>
<li><a href="#" sensorType="6">${sp_humidity}</a></li>
</ul>
</div>
</div>
<!-- Filter Time ####################################################### -->
<div id="filter-time" class="filter-container">
<label>${legend_timerange}</label>
<div id="filter-time-from">
<form class="navbar-form pull-left">
<div class="filter-inner">
<div class="input-append input-prepend date filter-date" id="date_from" data-date="01.01.2012" data-date-format="dd.mm.yyyy">
<span style="width: 25px;" class="add-on">${tr_from}</span>
<input class="datepicker-input" size="10" type="text" value="01.01.2012">
<span class="add-on"><i class="icon-th"></i></span>
</div>
<div class="filter-time">
<div class="filter-add-time">
<a class="btn" href="#">
<i class="icon-time"></i>
</a>
</div>
<div class="input-append bootstrap-timepicker-component">
<input type="text" class="timepicker-default">
<span class="add-on">
<i class="icon-time"></i>
</span>
</div>
</div>
</div>
</form>
</div>
<div id="filter-time-to">
<form class="navbar-form pull-left">
<div class="filter-inner">
<div class="input-append input-prepend date filter-date" id="date_to" data-date="12.02.2012" data-date-format="dd.mm.yyyy">
<span style="width: 25px;" class="add-on">${tr_to}</span>
<input class="datepicker-input" size="10" type="text" value="12.02.2012">
<span class="add-on"><i class="icon-th"></i></span>
</div>
<div class="filter-time">
<div class="filter-add-time">
<a class="btn" href="#">
<i class="icon-time"></i>
</a>
</div>
<div class="input-append bootstrap-timepicker-component">
<input type="text" class="timepicker-default">
<span class="add-on">
<i class="icon-time"></i>
</span>
</div>
</div>
</div>
</form>
</div>
</div>
<!-- Filter Visualtisation ############################################# -->
<div id="filter-visualization" class="filter-container">
<form class="navbar-form pull-left">
<label>${visualisation}</label>
<div class="filter-inner">
<div class="btn-group dasense-filter dasense-visualization">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<i class="icon-globe"></i>
<span class="dropdown-text">Visualisierung</span>
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="#" algo="heatmapRect">${heatmapRect}</a></li>
<li><a href="#" algo="differencemap">${differencemap}</a></li>
<!--<li><a href="#" algo="heatmapStd">${heatmapStd}</a></li>-->
<!--<li><a href="#" algo="tests">Tests...</a></li>-->
</ul>
</div>
<!--
<label class="checkbox">
<input type="checkbox"> Messpunkte anzeigen
</label>
-->
</div>
</form>
</div>
<!-- Localization ######################################################## -->
<div id="localization">
<i class="icon-info-sign icon-white showInfoOverlay"></i>
<a href="javascript:switchLocale('deDE');"><img src="${PATH_LOCAL_IMG}flag_germany.png" alt="Deutsch"></a>
<a href="javascript:switchLocale('enUS');"><img src="${PATH_LOCAL_IMG}flag_usa.png" alt="English"></a>
<!-- User Login ######################################################## -->
${login_form}
</div>
</div>
<!-- Top Bar Hide ###################################################### -->
<div class="halfCircleBottom" id="toggle-mainbar">
<i class="icon-chevron-up icon-white"></i>
</div>
</div>
<!-- Left Bar ############################################################## -->
<div id="navigation-left-wrapper">
<!-- Navigation ######################################################## -->
<div id="navigation-left">
<div id="navigation-left-logo" style="height: 100px;">
<img src="${PATH_LOCAL_IMG}logo.png" alt="da_sense" style="width: 175px; padding-top:30px;"/>
</div>
<ul class="nav nav-list">
<li class="active"><a class="blank filter" id="map-link" href="#"><i class="android-ic_action_map"></i> ${map}</a></li>
<li><a href="#" class="filter" url="?action=project"><i class="android-ic_action_book"></i> ${info}</a></li>
${user_leftmenu}
<li class="nav-header">${community}</li>
<li class="divider" id="divGreen"></li>
<li class=""><a class="filter" id="highscore" url="?module=default&action=highscore" href="#"><i class="android-ic_action_list"></i> ${highscore}</a></li>
<!--<li class=""><a class="filter" id="achievement" url="?module=user&action=area" href="#"><i class="android-ic_action_achievement"></i> ${awards}</a></li>-->
<li class="nav-header">${other}</li>
<li class="divider" id="divGreen"></li>
<li class=""><a class="filter" id="press" href="#" url="?action=press"><i class="android-ic_action_edit"></i> ${press}</a></li>
<li class=""><a class="filter" id="devs" href="#" url="?action=devs"><i class="android-ic_action_users"></i> ${devs}</a></li>
<li><a href="#" class="disableKeyEvents filter" url="?action=contact" id="bugreport"><i class="android-ic_action_mail"></i> ${feedback}</a></li>
<li class=""><a class="filter" id="impressum" href="#" url="?action=impressum"><i class="android-ic_action_business"></i> ${imprint}</a></li>
<li class="divider" id="divGreen" style="margin-top: 25px"></li>
<!-- Like-Buttons / Twitter -->
<li class="" ><g:plusone size="medium" count="true" href="${PATH_ROOT}"></g:plusone></li>
<li class="" style="padding-top: 6px"><div class="fb-like" data-href="http://www.da-sense.de" data-send="false" data-layout="button_count" data-width="450" data-show-faces="true" data-font="tahoma"></div></li>
<li class="" style="padding-top: 6px"><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url="http://www.da-sense.de" data-lang="de">Twittern</a></li>
<div style="padding-top: 25px">
<div>
<a href="http://play.google.com/store/apps/details?id=de.tudarmstadt.tk.noisemap" class="appstore filter" target="_blank">
<img alt="Android app on Google Play" src="${PATH_LOCAL_IMG}playstore.png" width="120" height="42">
</a>
</div>
<div style="margin-top: 15px">
<a href="https://itunes.apple.com/de/app/noisemap/id630756037?mt=8&uo=4" class="itunes_store" target="_blank">
<img alt="Android app on Google Play" src="${PATH_LOCAL_IMG}appstore.png" width="135" height="40">
</a>
</div>
</div>
</ul>
</div>
</div>
<!-- Left Bar Hide Button ############################################## -->
<div class="halfCircleRight" id="toggle-sidebar">
<i class="icon-chevron-right icon-white" style="margin-top: 50%; color: #d6d6d6"></i>
</div>
<!-- Content ############################################################### -->
<div id="wrapper">
<!-- Map ############################################################### -->
<!-- will be filled on buttom js load -->
<div id="map"></div>
<!-- Content ########################################################### -->
<!-- will be filled by javascript -->
<div id="site-content-wrapper">
<div id="site-content"></div>
</div>
</div>
<!-- Bottom JS ############################################################# -->
${js_bottom}
<script>$DS.init();</script>
</body>
</html>

View File

@ -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();}
}

5
danube/path/PSQL.php Normal file
View File

@ -0,0 +1,5 @@
<?php
class PSQL extends \SYSTEM\PATH {
public static function getPath(){
return \SYSTEM\C_ROOT.'danube/sql/'.\SYSTEM\C_SUBPATH;}
}

View File

@ -1,2 +1,2 @@
<?php
require_once dirname(__FILE__).'/saimod_webcraft_billing_satelite/autoload.inc';
//require_once dirname(__FILE__).'/saimod_webcraft_billing_satelite/autoload.inc';

View File

@ -0,0 +1,8 @@
<?php
namespace SQL;
class DATA_DANUBE extends \SYSTEM\DB\QI {
public static function get_class(){return \get_class();}
public static function files_mysql(){
return array( \SYSTEM\SERVERPATH(new \PSQL(),'/mysql/system_text.sql'));
}
}

View File

@ -0,0 +1,3 @@
<?php
\SYSTEM\autoload::registerFolder(dirname(__FILE__),'SQL');
\SYSTEM\SQL\setup::register('SQL\\DATA_DANUBE');

View File

@ -0,0 +1,76 @@
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('about', 'deDE', '<p style="text-align: center;"><strong><img style="margin-bot: 10px;" src="http://www.neopolimatrix.eu/api.php?call=files&amp;cat=person&amp;id=logo.png" alt="" width="350" height="149"/></strong></p>\n<p style="text-align: center;"><strong>&Uuml;ber Slingit - <strong>f&uuml;r was? f&uuml;r wen? warum?</strong></strong></p>\n<p style="text-align: center;">&nbsp;</p>\n<p style="text-align: center;"><em>Anwendungsbereich</em></p>\n<p style="text-align: left;">Eine Datei ist zu gro&szlig; f&uuml;r einen Email Anhang?</p>\n<p style="text-align: left;">Du willst eine Datei von einem fremden Computer verschicken?</p>\n<p style="text-align: left;">Du willst Files sicher Peer to Peer ohne Upload auf einen Server versenden?</p>\n<p style="text-align: left;">Du willst eine oder viele Dateien mit vielen Leuten gleichzeitig teilen, ohne dass es ewig dauert?</p>\n<p style="text-align: center;"><br /><em>Seite macht Sachen</em></p>\n<p style="text-align: justify;">Lege die Datei die du verschicken m&ouml;chtest in den gestrichelten Kasten ab. Die Datei wird nun in deinen Browser geladen.</p>\n<p style="text-align: center;"><img width="400" src="./api.php?call=files&amp;cat=img&amp;id=about_file_input.png"/></p>\n<p style="text-align: justify;">Anstatt sie aber nun auf einen Server hochzuladen, packt der Browser sie in ein &Uuml;bertragungsformat und wartet auf Anfragen zum Download.</p>\n<p style="text-align: center;"><img width="400" src="./api.php?call=files&amp;cat=img&amp;id=about_file_no_server.png"/></p>\n<p style="text-align: justify;">Unter dem gestrichelten Kasten erscheint nun der Direkte Link, <br />z.B.: <input style="width: 90%;" type="text" value="http://www.slingit.org/#!start;hash.4192b9c3d3ab413c1720d3f20v0643b7645b79f7" /><br />&Uuml;ber diesen Link erreicht jeder nun mit seinem Browser die Datei, die du teilen m&ouml;chtest.</p>\n<p style="text-align: center;"><img width="400" src="./api.php?call=files&amp;cat=img&amp;id=about_file_to_client.png"/></p>\n<p style="text-align: justify;">Klickt jemand auf den Link, l&auml;dt sein Browser die Datei direkt aus deinem Speicher. Per Mausklick l&auml;sst sie sich dann sofort in den Download Ordner ziehen.</p>\n<p style="text-align: center;"><img width="400" src="./api.php?call=files&amp;cat=img&amp;id=about_file_to_harddrive.png"/></p>\n<p style="text-align: center;"><em><br />Das Beste </em></p>\n<p style="text-align: justify;">Je mehr Leute deinen Link herunterladen, desto schneller wird der Download f&uuml;r alle Dank des ultra-effizienten Webtorrent Prinzips.</p>\n<p style="text-align: justify;">Keine Dienste oder dubiose Anbieter &uuml;ber deren Server die geteilten Inhalte laufen. Nicht einmal wir k&ouml;nnten sagen was ihr teilt.</p>\n<p style="text-align: justify;">Peer to Peer bedeutet auch der k&uuml;rzeste Weg. Dateien die via Slingit ausgetauscht werden nutzen deine vom Provider festgelegte Upload Rate maximal aus.</p>\n<p style="text-align: center;"><br /><em>the Circle of Files!</em></p>\n<p style="text-align: center;"><img width="400" src="./api.php?call=files&amp;cat=img&amp;id=circle_of_files.png"/></p>\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', '<p style="text-align: center;" data-mce-style="text-align: center;"><strong><img style="margin-bot: 10px;" src="http://www.neopolimatrix.eu/api.php?call=files&amp;cat=person&amp;id=logo.png" alt="" width="350" height="149" data-mce-src="http://www.neopolimatrix.eu/api.php?call=files&amp;cat=person&amp;id=logo.png" data-mce-style="margin-bot: 10px;"></strong></p><p style="text-align: center;" data-mce-style="text-align: center;"><strong>About Slingit - what it does and how this works</strong></p><p style="text-align: center;" data-mce-style="text-align: center;">&nbsp;</p><p style="text-align: center;" data-mce-style="text-align: center;"><em>What slingit can do for you</em></p><p style="text-align: left;" data-mce-style="text-align: left;">You want to send a file that is too big for your e-mail provider to handle?</p><p style="text-align: left;" data-mce-style="text-align: left;">Your not working in your own envoirenment and need an easy gateway?</p><p style="text-align: left;" data-mce-style="text-align: left;">You want to share files friend-to-friend, without uploading them to any host whatsoever?</p><p style="text-align: left;" data-mce-style="text-align: left;">You want to share a file with many friends at at the same time, without taking ages?</p><p style="text-align: center;" data-mce-style="text-align: center;"><br><em>slingit does stuff</em></p><p style="text-align: justify;" data-mce-style="text-align: justify;">Drag the data you want to share to the field. The file will be loaded into your browser cache.</p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="./api.php?call=files&amp;cat=img&amp;id=about_file_input.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=about_file_input.png"></p><p style="text-align: justify;" data-mce-style="text-align: justify;">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.</p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="./api.php?call=files&amp;cat=img&amp;id=about_file_no_server.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=about_file_no_server.png"></p><p style="text-align: justify;" data-mce-style="text-align: justify;">A log will appear providing the direct download link for your file. <br>z.B.: <input style="width: 90%;" type="text" value="http://www.slingit.org/#!start;hash.4192b9c3d3ab413c1720d3f20v0643b7645b79f7" data-mce-style="width: 90%;"><br>Über diesen Link erreicht jeder nun mit seinem Browser die Datei, die du teilen möchtest.</p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="./api.php?call=files&amp;cat=img&amp;id=about_file_to_client.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=about_file_to_client.png"></p><p style="text-align: justify;" data-mce-style="text-align: justify;">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.</p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="./api.php?call=files&amp;cat=img&amp;id=about_file_to_harddrive.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=about_file_to_harddrive.png"></p><p style="text-align: center;" data-mce-style="text-align: center;"><em><br>What\'s great about this </em></p><p style="text-align: justify;" data-mce-style="text-align: justify;">The more people download a file simultaniously, the FASTER the download will become for everybode, hence the efficiency of the torrent protocol.</p><p style="text-align: justify;" data-mce-style="text-align: justify;">No hosters or dubious sharing platforms needed. Even we can\'t tell what you\'re sharing.</p><p style="text-align: justify;" data-mce-style="text-align: justify;">Peer to Peer means: maximum download and upload efficiancy.</p><p style="text-align: center;" data-mce-style="text-align: center;"><br><em>the Circle of Files!</em></p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="./api.php?call=files&amp;cat=img&amp;id=circle_of_files.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=circle_of_files.png"></p>', 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', '<p style="text-align: center;" data-mce-style="text-align: center;"><strong><img style="margin-bot: 10px;" src="http://www.neopolimatrix.eu/api.php?call=files&amp;cat=person&amp;id=logo.png" alt="" width="350" height="149" data-mce-src="http://www.neopolimatrix.eu/api.php?call=files&amp;cat=person&amp;id=logo.png" data-mce-style="margin-bot: 10px;"></strong></p><p style="text-align: center;" data-mce-style="text-align: center;"><strong>About Slingit - what it does and how this works</strong></p><p style="text-align: center;" data-mce-style="text-align: center;">&nbsp;</p><p style="text-align: center;" data-mce-style="text-align: center;"><em>What slingit can do for you</em></p><p style="text-align: left;" data-mce-style="text-align: left;">You want to send a file that is too big for your e-mail provider to handle?</p><p style="text-align: left;" data-mce-style="text-align: left;">Your not working in your own envoirenment and need an easy gateway?</p><p style="text-align: left;" data-mce-style="text-align: left;">You want to share files friend-to-friend, without uploading them to any host whatsoever?</p><p style="text-align: left;" data-mce-style="text-align: left;">You want to share a file with many friends at at the same time, without taking ages?</p><p style="text-align: center;" data-mce-style="text-align: center;"><br><em>slingit does stuff</em></p><p style="text-align: justify;" data-mce-style="text-align: justify;">Drag the data you want to share to the field. The file will be loaded into your browser cache.</p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="api.php?call=files&amp;cat=img&amp;id=about_file_input.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=about_file_input.png"></p><p style="text-align: justify;" data-mce-style="text-align: justify;">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.</p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="api.php?call=files&amp;cat=img&amp;id=about_file_no_server.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=about_file_no_server.png"></p><p style="text-align: justify;" data-mce-style="text-align: justify;">A log will appear providing the direct download link for your file. <br>z.B.: <input style="width: 90%;" type="text" value="http://www.slingit.org/#!start;hash.4192b9c3d3ab413c1720d3f20v0643b7645b79f7" data-mce-style="width: 90%;"><br>Über diesen Link erreicht jeder nun mit seinem Browser die Datei, die du teilen möchtest.</p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="api.php?call=files&amp;cat=img&amp;id=about_file_to_client.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=about_file_to_client.png"></p><p style="text-align: justify;" data-mce-style="text-align: justify;">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.</p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="api.php?call=files&amp;cat=img&amp;id=about_file_to_harddrive.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=about_file_to_harddrive.png"></p><p style="text-align: center;" data-mce-style="text-align: center;"><em><br>What\'s great about this </em></p><p style="text-align: justify;" data-mce-style="text-align: justify;">The more people download a file simultaniously, the FASTER the download will become for everybode, hence the efficiency of the torrent protocol.</p><p style="text-align: justify;" data-mce-style="text-align: justify;">No hosters or dubious sharing platforms needed. Even we can\'t tell what you\'re sharing.</p><p style="text-align: justify;" data-mce-style="text-align: justify;">Peer to Peer means: maximum download and upload efficiancy.</p><p style="text-align: center;" data-mce-style="text-align: center;"><br><em>the Circle of Files!</em></p><p style="text-align: center;" data-mce-style="text-align: center;"><img src="api.php?call=files&amp;cat=img&amp;id=circle_of_files.png" alt="" width="400" data-mce-src="api.php?call=files&amp;cat=img&amp;id=circle_of_files.png"></p>', 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', '<div style="font-size: 80%; font-weight: bold;" data-mce-style="font-size: 80%; font-weight: bold;"><a href="mailto:szilvia.farsang@gmail.com" data-mce-href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com</a>&nbsp;/<a href="mailto:bluedanubemassage@gmail.com" data-mce-href="mailto:bluedanubemassage@gmail.com">&nbsp;</a>Mobil: 0176 30 53 68 09</div>', 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', '<div style="font-size: 80%; font-weight: bold;"><a href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com</a><a href="mailto:szilvia.farsang@gmail.com">&nbsp;/&nbsp;</a><a href="mailto:bluedanubemassage@gmail.com">bluedanubemassage@gmail.com</a><a href="mailto:bluedanubemassage@gmail.com">&nbsp;</a>mobile:&nbsp;0049 176 30 53 68 09</div>', 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', '<div style="font-size: 80%; font-weight: bold;"><a href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com</a>&nbsp;/&nbsp;<a href="mailto:bluedanubemassage@gmail.com">bluedanubemassage@gmail.com</a><a href="mailto:bluedanubemassage@gmail.com">&nbsp;</a>mobile:&nbsp;0049 176 30 53 68 09</div>', 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', '<meta name="description" content="Blue Danube Massage Zwingenberg (Bergstrasse)">', 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', '<meta name="description" content="Blue Danube Massage Zwingenberg (Bergstrasse)">', 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&eacute;rhetÅs&eacute;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&eacute;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', '&Uuml;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&aacute;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', '&Aacute;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', '<p><strong>Szilvia Farsang<br> Heidelberger Strasse 17<br> 64673 Zwingenberg<br> <a href="mailto:szilvia.farsang@gmail.com" data-mce-href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com<br></a>Mobil: 017630536809</strong></p>', 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', '<strong>Szilvia Farsang<br /> Heidelberger Strasse 17<br /> 64673 Zwingenberg<strong><br /><a href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com&nbsp;<br /></a><a href="mailto:bluedanubemassage@gmail.com">bluedanubemassage@gmail.com</a>&nbsp;<br />Mobil: 017630536809</strong></strong>', 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', '<strong>Farsang Szilvia&nbsp;<br /> Heidelberger Strasse 17<br /> 64673 Zwingenberg<strong><br /><a href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com<br /></a><a href="mailto:bluedanubemassage@gmail.com">bluedanubemassage@gmail.com</a>&nbsp;<br />Mobil: 004917630536809</strong></strong>', 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', '<h4 class="western">Willkommen</h4><p><img src="danube/page/default_page/pics/photos/flower.png" alt="" align="left" data-mce-src="danube/page/default_page/pics/photos/flower.png"></p><p lang="de-DE" style="margin-left: 10px; margin-bottom: 0cm;" data-mce-style="margin-left: 10px; margin-bottom: 0cm;">&nbsp; Willkommen im Blue Danube Massage Studio - eine Insel der Ruhe und des Friedens. &nbsp; Eine kleine Oase an der Bergstrasse, in der Ihr Körper und Geist gleichermaßen &nbsp; &nbsp; &nbsp;entspannen können.</p><p style="margin-bottom: 0cm;" data-mce-style="margin-bottom: 0cm;">&nbsp; Termin unter der Telefonnummer <br>&nbsp; <strong>0176 30 53 68 09</strong> <br>&nbsp; oder <br>&nbsp; E-Mail-Adresse <a href="mailto:szilvia.farsang@gmail.com" data-mce-href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com</a><br>&nbsp;&nbsp; zu konsultieren.</p>', 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', '<h4 class="western">Welcome</h4>\n<p><img src="danube/page/default_page/pics/photos/flower.png" alt="" align="left" /></p>\n<p style="margin-bottom: 0cm; margin-left: 10px;">&nbsp; Welcome to the Blue Danube Massage Studio- An island of peace and calmness. A &nbsp; &nbsp; &nbsp;little oasis on the Bergstrasse where both your mind and body can truly relax.</p>\n<p>&nbsp; &nbsp;Appointment by telephoning 0049 176 30 53 68 09 <br />&nbsp; &nbsp;or e-mail address<a href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com</a><br />&nbsp; &nbsp;or <a href="bluedanubemassage@gmail.com">bluedanubemassage@gmail.com</a></p>', 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', '<h4 class="western">&Uuml;dv&ouml;zl&eacute;s</h4>\n<p><img src="danube/page/default_page/pics/photos/flower.png" alt="" align="left" /></p>\n<p style="margin-left: 10px; margin-bottom: 0cm;">&nbsp; &Uuml;dv&ouml;zl&ouml;m &Ouml;nt a K&eacute;k Duna Massz&aacute;zs St&uacute;di&oacute;,a b&eacute;ke &eacute;s a nyugalom sziget&eacute;n.</p>\n<p style="margin-left: 10px; margin-bottom: 0cm;">&nbsp; Egy kicsi &nbsp;o&aacute;zis a Bergstrassen,ahol mindkettÅ: a test &eacute;s a l&eacute;lek val&oacute;ban meg tud &nbsp; &nbsp;pihenni.</p>\n<p style="margin-bottom: 0cm;">&nbsp; IdÅpontot a k&ouml;vetkezÅ telefonsz&aacute;mon 0049 176 30 53 68 09 vagy e-mail c&iacute;men</p>\n<p style="margin-bottom: 0cm;">&nbsp; &nbsp;<a href="mailto:szilvia.farsang@gmail.com">szilvia.farsang@gmail.com</a><br />&nbsp; &nbsp;vagy a <a href="bluedanubemassage@gmail.com">bluedanubemassage@gmail.com</a><br />&nbsp; &nbsp;tud egyeztetni.</p>', 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', '<div style="width: 450px; padding: 0; margin: 0; height: 250px;">\r\n <iframe style="padding: 0; margin: 0; display: block; width: 450px; height: 250px; border: 3px solid grey; border-radius: 5px;" \r\n src="http://regiohelden.de/google-maps/map.php?width=450&amp;height=250&amp;hl=de&amp;q=Heidelbergerstra%C3%9Fe%2017%2064673%20Zwingenberg+(Blue%20Danube%20Massage)&amp;ie=UTF8&amp;t=&amp;z=14&amp;iwloc=A&amp;output=embed" \r\n frameborder="0" scrolling="no" marginwidth="auto">\r\n </iframe>\r\n </div>', 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', '<div style="width: 450px; padding: 0; margin: 0;height: 250px;">\r\n <iframe style="padding: 0; margin: 0; display: block; width: 450px; height: 250px;border: 1px solid navy;" \r\n src="http://regiohelden.de/google-maps/map.php?width=450&amp;height=250&amp;hl=de&amp;q=Heidelbergerstra%C3%9Fe%2017%2064673%20Zwingenberg+(Blue%20Danube%20Massage)&amp;ie=UTF8&amp;t=&amp;z=14&amp;iwloc=A&amp;output=embed" \r\n frameborder="0" scrolling="no" marginwidth="auto">\r\n </iframe>\r\n </div>', 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', '<div style="width: 450px; padding: 0; margin: 0;height: 250px;">\r\n <iframe style="padding: 0; margin: 0; display: block; width: 450px; height: 250px;border: 1px solid navy;" \r\n src="http://regiohelden.de/google-maps/map.php?width=450&amp;height=250&amp;hl=de&amp;q=Heidelbergerstra%C3%9Fe%2017%2064673%20Zwingenberg+(Blue%20Danube%20Massage)&amp;ie=UTF8&amp;t=&amp;z=14&amp;iwloc=A&amp;output=embed" \r\n frameborder="0" scrolling="no" marginwidth="auto">\r\n </iframe>\r\n </div>', 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', '<div class="hero-unit" style="background: url(\'danube/page/default_page/pics/photos/top2.png\') no-repeat black; border-bottom-left-radius: 5; border-bottom-right-radius: 5; margin: 0; padding: 0;">\n<div class="item active" style="height: 410px; width: 100%; text-align: right; padding-top: 5px;">&nbsp;</div>\n</div>', 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', '<div class="hero-unit" style="background: url(\'danube/page/default_page/pics/photos/top2.png\') no-repeat black; border-bottom-left-radius: 5; border-bottom-right-radius: 5; margin: 0; padding: 0;">\n<div class="item active" style="height: 410px; width: 100%; text-align: right; padding-top: 5px;">&nbsp;</div>\n</div>', 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', '<div class="hero-unit" style="background: url(\'danube/page/default_page/pics/photos/top2.png\') no-repeat black; border-bottom-left-radius: 5; border-bottom-right-radius: 5; margin: 0; padding: 0;">\n<div class="item active" style="height: 410px; width: 100%; text-align: right; padding-top: 5px;">&nbsp;</div>\n</div>', 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', '<p><strong>&nbsp; Willkommen auf meiner Website</strong></p><p><strong>&nbsp;</strong></p><p>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.<br> Als Agent für StageHands Bodyworking Massage Services aus den USA werde ich regelmäßig zu Konzerten als offizielle Masseurin entsandt, zum Beispiel <strong>Justin Bieber</strong> und <strong>Alicia Keys</strong> in Frankfurt und im Jahr 2011 <strong>Roger Waters</strong> in Budapest und auch im Jahr 2013 in Frankfurt, <strong>Nickelback</strong> in Meinheim, im 2014 <strong>Trans-Siberian Orchestra, OneRepublic </strong>in Frankfurt und in 2015 <span id="_mce_caret" data-mce-bogus="1" style=""><strong>Def Leppard.</strong></span>&nbsp;&nbsp;<br> Ich habe vor kurzem mein eigenes Massagestudio in Zwingenberg eröffnet, wo ich mich freuen würde Ihnen meine Dienste zu erweisen.&nbsp;</p><p>Für einen Termin oder weitere Informationen wenden Sie sich bitte an mich.</p>', 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', '<p><strong>Welcome to my website</strong></p>\n<p><strong>&nbsp;</strong></p>\n<p>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,&nbsp; cellulite, office, foot reflex and hotstone masssage.</p>\n<p>As an agent for StageHands Bodyworking Massage Services in the USA I&nbsp; regularily attend concerts as official masseuse, for exmple in 2013 <strong>Justin Bieber</strong> and <strong>Alicia Keys</strong> in Frankfurt and <strong>Roger Waters</strong> in Buadapest in 2011 , in Frankfurt in 2013,<strong>Nickelback </strong>in Meinheim,in 2014 <strong>Trans-Siberian Orchestra, OneRepublic </strong>in Frankfurt.</p>\n<p>I recentlyopened myownmassage studio in Zwingenbergwhere I would be pleased to offer my services to you.&nbsp;</p>\n<p>For an appointment or further information please feel free to contact me!</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>', 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', '<p><strong>&Uuml;dv&ouml;zl&ouml;m&nbsp; a honlapomon !</strong></p>\n<p>&nbsp;</p>\n<p>36 &eacute;v tapasztalatom van a biol&oacute;gia &eacute;s sport tan&iacute;t&aacute;s&aacute;ban &eacute;s mellette&nbsp; megtanultam a gy&oacute;gymassz&aacute;zst is&nbsp; 2008-ban. M&eacute;g ebben az &eacute;vben v&aacute;llalkoz&oacute;k&eacute;nt megnyitottam saj&aacute;t massz&aacute;zsszalonomat&nbsp; Budapest k&ouml;zel&eacute;ben&nbsp; .</p>\n<p>&nbsp;&nbsp; Szint&eacute;n megszereztem k&eacute;pes&iacute;t&eacute;sem&nbsp; yumeiho-, alakform&aacute;l&oacute; -,cellulit-, irodai-, talpreflex z&oacute;na-&nbsp; &eacute;s hotstone massz&aacute;zsfajt&aacute;kb&oacute;l.&nbsp;</p>\n<p>&nbsp;&nbsp; Hivatalos massz&ouml;rk&eacute;nt rendszeresen&nbsp; dolgozom&nbsp; koncerteken az amerikai StageHands&nbsp; Massage Bodyworking Service&nbsp; felk&eacute;r&eacute;s&eacute;re, mint pl.&nbsp; <strong>JUSTIN BIEBER</strong> &eacute;s&nbsp; <strong>ALICIA KEYS</strong> Frankfurtban&nbsp; <strong>, ROGER WATERS</strong>&nbsp; Budapesten 2011-ben s Frankfurtban 2013-ban,<strong>NICKELBACK</strong> Meinheimban,majd 2014-ben <strong>TRANS-SIBERIAN ORCHESTRA</strong> &eacute;s <strong>ONEREPUBLIC</strong> Frankfurtban.&nbsp;</p>\n<p>&nbsp; 2013 elej&eacute;n nyitottam Zwingenbergben a saj&aacute;t massz&aacute;zsstudi&oacute;mat, ahov&aacute;&nbsp; szeretettel megh&iacute;vok&nbsp; mindenkit&nbsp; a k&iacute;n&aacute;lt szolg&aacute;ltat&aacute;saimra.&nbsp;</p>\n<p>&nbsp;IdÅpont egyeztet&eacute;s&eacute;rt &eacute;s tov&aacute;bbi inform&aacute;ci&oacute;k&eacute;rt &nbsp;bizalommal forduljon hozz&aacute;m!</p>', 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', '<h3 style="color: navy;" data-mce-style="color: navy;">Angebote</h3><p><strong> 1. Die erste Massage<br> für Neukunden zum halben Preis ,und für Rentnern ist kostenlos!!!<br> <br> 2 .Sie können Ihren Freunden auch einen Gutschein schenken.<br> <br> 3. Kunden werben Kunden :<br> Eine Massage zum halben Preis für jeden neu geworbenen Kunden !!!<br> <br> 4. Beim Kauf 10er-Karte sparen Sie 20%!!! Die 10er-Karten besitzen eine Gültigkeitsdauer von 12 Monaten ab Erwerb. <br><br> Aktionspreise können nicht gekoppelt werden.</strong></p>', 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', '<h3 style="color: navy;">Offers</h3>\n<strong> 1. The first massage&nbsp;for new customers is half price.<br /> <br /> 2. Recommend a new customer and also get a half price massage.<br /> <br /> 3. You can also give a massage voucher to your friends.<br /><br /> 4. With a 10-visit card you save &euro;2 per massage plus 1 extra for free. The 10-visit card is valid for 18 months.&nbsp;<br /><br />Offers cannot be combined.</strong>', 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', '<h3 style="color: navy;">Aj&aacute;nlatok</h3>\n<p><strong> 1. Az elsÅ massz&aacute;zs minden &uacute;j vend&eacute;gnek f&eacute;l &aacute;r &eacute;s a nyugd&iacute;jasoknak ingyen!!!<br /> <br /> 2. Minden &Ouml;n &aacute;ltal aj&aacute;nlott vend&eacute;g ut&aacute;n &Ouml;n egy massz&aacute;zst f&aacute;l &aacute;ron kap. <br /> <br /> 3. Aj&aacute;nd&eacute;kutalv&aacute;nyt v&aacute;s&aacute;rolhat bar&aacute;tainak.<br /> <br /> 4. 10 alkalmas b&eacute;rlet v&aacute;s&aacute;rl&aacute;sa eset&eacute;n minden alkalom 2&euro;-val olcs&oacute;bb ,plusz 1 massz&aacute;zst ingyen kap . A b&eacute;rlet 18 h&oacute;napig &eacute;rv&eacute;nyes.<br /><br /> Az akci&oacute;k nem vonhat&oacute;k &ouml;ssze.</strong></p>', 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', '<h3 style="color: beige;" data-mce-style="color: beige;">Partner</h3>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 &nbsp;und im 215 DEF LEPPARD in Frankfurt. &nbsp;<br><br>', 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', '<h3 style="color: beige;">Partners</h3>\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.&nbsp;<br /><br />', 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', '<h3 style="color: beige;">Partner</h3>\nHivatalos masszÅrk&eacute;nt rendszeresen dolgozom az amerikai StageHands Massage Bodyworking Service-nek koncerteken, mint pl. 2013-ban JUSTIN BIEBER &eacute;s ALICIA KEYS Frankfurtban , 2011-ben ROGER WATERS Budapesten &eacute;s 2013-ban Frankfurtban, NICKELBACK &nbsp;Meinheimban,2014-ben TRANS-SIBERIAN ORCHESTRA, ONEREPUBLIC Frankfurtban.<br /><br />', 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', '<h3 style="color: navy;" data-mce-style="color: navy;"><strong>Preise</strong></h3><table style="height: 118px;" width="291" data-mce-style="height: 118px;" class="mce-item-table"><tbody><tr><td><strong>Programm</strong></td><td><strong><br><br></strong></td><td><strong><br></strong></td></tr><tr><td>Rücken-Nacken- Kreuz</td><td>30 Min</td><td>25 €</td></tr><tr><td>Untere Gliedmaßen</td><td>30 Min</td><td>25 €</td></tr><tr><td>Ganzkörper</td><td>60 Min</td><td>45 €</td></tr><tr><td>Erfrischende Fußmassage</td><td>30 Min</td><td>25 €</td></tr><tr><td>Büromassage</td><td>20 Min</td><td>20 €</td></tr><tr><td>Hot Stone Massage</td><td>90 Min</td><td>65 €</td></tr></tbody></table>', 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', '<h3 style="color: navy;">Prices</h3>\n<table style="text-align: left;">\n<tbody>\n<tr><th>Program</th><th>Length<br />(min)</th><th>Price</th></tr>\n<tr>\n<td>Back-neck waist (sacrum)</td>\n<td>30</td>\n<td>25,-</td>\n</tr>\n<tr>\n<td>Lower limbs</td>\n<td>30</td>\n<td>25,-</td>\n<td>&nbsp;</td>\n</tr>\n<tr>\n<td>Full body</td>\n<td>60</td>\n<td>45,-</td>\n</tr>\n<tr>\n<td>Refreshing sole massage</td>\n<td>30</td>\n<td>25,-</td>\n</tr>\n<tr>\n<td>Chair-and seated therapeutic massage</td>\n<td>20</td>\n<td>20,-</td>\n</tr>\n<tr>\n<td style="padding: 2px;">Hot Stone massagetherapy</td>\n<td>90</td>\n<td>65,-</td>\n</tr>\n</tbody>\n</table>', 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', '<h3 style="color: navy;">&Aacute;rak</h3>\n<table style="text-align: left;">\n<tbody>\n<tr><th>Program</th><th>IdÅ <br />(min) &nbsp;&nbsp;</th><th>&Aacute;r <br />(&euro;)</th></tr>\n<tr>\n<td>H&aacute;t-nyak-der&eacute;k</td>\n<td>30</td>\n<td>25,-</td>\n</tr>\n<tr>\n<td>Als&oacute; v&eacute;gtagok</td>\n<td>30</td>\n<td>25,-</td>\n<td>&nbsp;</td>\n</tr>\n<tr>\n<td>Teljes test</td>\n<td>60</td>\n<td>45,-</td>\n</tr>\n<tr>\n<td>Friss&iacute;t&oacute; talpmassz&aacute;zs</td>\n<td>30</td>\n<td>25,-</td>\n</tr>\n<tr>\n<td>Sz&eacute;k-&eacute;s &uuml;l&ouml;massz&aacute;zs</td>\n<td>20</td>\n<td>20,-</td>\n</tr>\n<tr>\n<td style="padding: 2px;">L&aacute;vak&ouml;ves massz&aacute;zs</td>\n<td>90</td>\n<td>65,-</td>\n</tr>\n</tbody>\n</table>', 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');