This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Server Software: | |
Server Hostname: localhost | |
Server Port: 3000 | |
Document Path: /de/home/ | |
Document Length: 11180 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 4.918 seconds | |
Complete requests: 200 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Server Software: | |
Server Hostname: localhost | |
Server Port: 3000 | |
Document Path: /de/home/ | |
Document Length: 11180 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 10.143 seconds | |
Complete requests: 200 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Server Software: | |
Server Hostname: localhost | |
Server Port: 3300 | |
Document Path: /de/home/ | |
Document Length: 15462 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 4.585 seconds | |
Complete requests: 200 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
props: ['schema', 'model'], | |
template: 'test' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
props: ['schema', 'model'], | |
template: 'test' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
json = { | |
"component": "root", | |
"body": [ | |
{ | |
"component": "headline", | |
"text": "42323" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
$(document).ready(function () { | |
if (['#download-container', '#video-container'].indexOf(window.location.hash) > -1 || window.location.hash.indexOf('video-play') > -1) { | |
if (window.location.hash.indexOf('video-play') > -1) { | |
var container = $('#video-container'); | |
} else { | |
var container = $(window.location.hash); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteCond %{REMOTE_HOST} !^62\.99\.210\.9 | |
RewriteCond $1 !^(wartung_index\.php|images/) | |
RewriteRule ^(.*)$ /wartung_index.php/$1 [L] | |
RewriteCond %{HTTP_X_FORWARDED_FOR} !^62\.99\.210\.9 | |
RewriteCond $1 !^(wartung_index\.php|images/) | |
RewriteRule ^(.*)$ /wartung_index.php/$1 [L] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
grunt.loadNpmTasks('grunt-contrib-sass'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.loadNpmTasks('grunt-contrib-concat'); | |
grunt.loadNpmTasks('grunt-browserify'); | |
grunt.registerTask('default',['watch']); | |
// Project configuration. | |
grunt.initConfig({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (isset($_FILES['file'])) { | |
move_uploaded_file($_FILES['file']['tmp_name'], 'tmp/'.$_FILES['file']['name']); | |
} |