From: Eric Morris Date: Tue, 29 Oct 2013 23:28:34 +0000 (-0700) Subject: Move testing scaffold into subfolder and create grunt task to build docs test. X-Git-Tag: v1.0.0~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fe75ce4de8c6aa036c51c3553ae65fe515bc5a7;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Move testing scaffold into subfolder and create grunt task to build docs test. --- diff --git a/Gruntfile.js b/Gruntfile.js index b56e259b..1008f15f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -2,10 +2,18 @@ module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), includes: { - files: { + templates: { src: 'templates/base/*.html', dest: 'build/downloads/templates', - flatten: true, + cwd: '.', + options: { + includeRegexp: /^\s*\/\*\s*[Ii]nclude\s+([^'"\s]+)\s*\*\/$/, + includePath: 'css', + } + }, + docs: { + src: 'docs/examples/*.html', + dest: 'build', cwd: '.', options: { includeRegexp: /^\s*\/\*\s*[Ii]nclude\s+([^'"\s]+)\s*\*\/$/, @@ -21,6 +29,7 @@ module.exports = function(grunt) { 'mkdir build/downloads', 'mkdir build/downloads/templates', 'mkdir build/downloads/framework', + 'mkdir build/docs', ].join('&&') }, zipTemplates: { @@ -55,9 +64,15 @@ module.exports = function(grunt) { 'cd ../../' ].join('&&') }, + testDocs: { + command: [ + 'cp -r docs/test/* build/docs', + 'cp docs/docs.php build/docs/docs.php', + ].join('&&') + }, deployDocs: { command: [ - 'rsync -r docs build/docs --exclude geshi --exclude geshi.php --exclude index.php', + 'rsync -r docs build/docs --exclude test', 'cd build/docs', 'rsync -r . ink@zurb.com:/var/www/ink/shared/docs', 'cd ../../' @@ -76,8 +91,9 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-shell'); - grunt.registerTask('make:templates', ['includes', 'shell:zipTemplates']); - grunt.registerTask('deploy:downloads', ['shell:makeStage', 'includes', 'shell:zipTemplates', 'shell:zipFramework', 'shell:linkFramework', 'shell:deployDownloads', 'shell:cleanUp']); - grunt.registerTask('deploy:docs', ['shell:makeStage', 'shell:deployDocs', 'shell:cleanUp']); + grunt.registerTask('make:templates', ['includes:templates', 'shell:zipTemplates']); + grunt.registerTask('deploy:downloads', ['shell:makeStage', 'includes:templates', 'shell:zipTemplates', 'shell:zipFramework', 'shell:linkFramework', 'shell:deployDownloads', 'shell:cleanUp']); + grunt.registerTask('make:docs', ['shell:makeStage', 'shell:testDocs', 'includes:docs']); + grunt.registerTask('deploy:docs', ['shell:makeStage', 'includes:docs', 'shell:deployDocs', 'shell:cleanUp']); // grunt.registerTask('default', ['includes']); }; \ No newline at end of file diff --git a/docs/docs.php b/docs/docs.php index 74a449f6..555c3644 100644 --- a/docs/docs.php +++ b/docs/docs.php @@ -124,7 +124,7 @@ ' , 'html'); ?>
- +

Breakdown

diff --git a/docs/examples/basic-grid.html b/docs/examples/basic-grid.html index 30035eba..6164772a 100644 --- a/docs/examples/basic-grid.html +++ b/docs/examples/basic-grid.html @@ -16,6 +16,9 @@ + + +
@@ -26,7 +29,7 @@ -
+ Main content @@ -40,7 +43,7 @@ -
+ Sidebar content @@ -57,6 +60,8 @@
+ +
diff --git a/docs/geshi.php b/docs/test/geshi.php similarity index 100% rename from docs/geshi.php rename to docs/test/geshi.php diff --git a/docs/geshi/4cs.php b/docs/test/geshi/4cs.php similarity index 100% rename from docs/geshi/4cs.php rename to docs/test/geshi/4cs.php diff --git a/docs/geshi/6502acme.php b/docs/test/geshi/6502acme.php similarity index 100% rename from docs/geshi/6502acme.php rename to docs/test/geshi/6502acme.php diff --git a/docs/geshi/6502kickass.php b/docs/test/geshi/6502kickass.php similarity index 100% rename from docs/geshi/6502kickass.php rename to docs/test/geshi/6502kickass.php diff --git a/docs/geshi/6502tasm.php b/docs/test/geshi/6502tasm.php similarity index 100% rename from docs/geshi/6502tasm.php rename to docs/test/geshi/6502tasm.php diff --git a/docs/geshi/68000devpac.php b/docs/test/geshi/68000devpac.php similarity index 100% rename from docs/geshi/68000devpac.php rename to docs/test/geshi/68000devpac.php diff --git a/docs/geshi/abap.php b/docs/test/geshi/abap.php similarity index 100% rename from docs/geshi/abap.php rename to docs/test/geshi/abap.php diff --git a/docs/geshi/actionscript.php b/docs/test/geshi/actionscript.php similarity index 100% rename from docs/geshi/actionscript.php rename to docs/test/geshi/actionscript.php diff --git a/docs/geshi/actionscript3.php b/docs/test/geshi/actionscript3.php similarity index 100% rename from docs/geshi/actionscript3.php rename to docs/test/geshi/actionscript3.php diff --git a/docs/geshi/ada.php b/docs/test/geshi/ada.php similarity index 100% rename from docs/geshi/ada.php rename to docs/test/geshi/ada.php diff --git a/docs/geshi/algol68.php b/docs/test/geshi/algol68.php similarity index 100% rename from docs/geshi/algol68.php rename to docs/test/geshi/algol68.php diff --git a/docs/geshi/apache.php b/docs/test/geshi/apache.php similarity index 100% rename from docs/geshi/apache.php rename to docs/test/geshi/apache.php diff --git a/docs/geshi/applescript.php b/docs/test/geshi/applescript.php similarity index 100% rename from docs/geshi/applescript.php rename to docs/test/geshi/applescript.php diff --git a/docs/geshi/apt_sources.php b/docs/test/geshi/apt_sources.php similarity index 100% rename from docs/geshi/apt_sources.php rename to docs/test/geshi/apt_sources.php diff --git a/docs/geshi/arm.php b/docs/test/geshi/arm.php similarity index 100% rename from docs/geshi/arm.php rename to docs/test/geshi/arm.php diff --git a/docs/geshi/asm.php b/docs/test/geshi/asm.php similarity index 100% rename from docs/geshi/asm.php rename to docs/test/geshi/asm.php diff --git a/docs/geshi/asp.php b/docs/test/geshi/asp.php similarity index 100% rename from docs/geshi/asp.php rename to docs/test/geshi/asp.php diff --git a/docs/geshi/asymptote.php b/docs/test/geshi/asymptote.php similarity index 100% rename from docs/geshi/asymptote.php rename to docs/test/geshi/asymptote.php diff --git a/docs/geshi/autoconf.php b/docs/test/geshi/autoconf.php similarity index 100% rename from docs/geshi/autoconf.php rename to docs/test/geshi/autoconf.php diff --git a/docs/geshi/autohotkey.php b/docs/test/geshi/autohotkey.php similarity index 100% rename from docs/geshi/autohotkey.php rename to docs/test/geshi/autohotkey.php diff --git a/docs/geshi/autoit.php b/docs/test/geshi/autoit.php similarity index 100% rename from docs/geshi/autoit.php rename to docs/test/geshi/autoit.php diff --git a/docs/geshi/avisynth.php b/docs/test/geshi/avisynth.php similarity index 100% rename from docs/geshi/avisynth.php rename to docs/test/geshi/avisynth.php diff --git a/docs/geshi/awk.php b/docs/test/geshi/awk.php similarity index 100% rename from docs/geshi/awk.php rename to docs/test/geshi/awk.php diff --git a/docs/geshi/bascomavr.php b/docs/test/geshi/bascomavr.php similarity index 100% rename from docs/geshi/bascomavr.php rename to docs/test/geshi/bascomavr.php diff --git a/docs/geshi/bash.php b/docs/test/geshi/bash.php similarity index 100% rename from docs/geshi/bash.php rename to docs/test/geshi/bash.php diff --git a/docs/geshi/basic4gl.php b/docs/test/geshi/basic4gl.php similarity index 100% rename from docs/geshi/basic4gl.php rename to docs/test/geshi/basic4gl.php diff --git a/docs/geshi/bf.php b/docs/test/geshi/bf.php similarity index 100% rename from docs/geshi/bf.php rename to docs/test/geshi/bf.php diff --git a/docs/geshi/bibtex.php b/docs/test/geshi/bibtex.php similarity index 100% rename from docs/geshi/bibtex.php rename to docs/test/geshi/bibtex.php diff --git a/docs/geshi/blitzbasic.php b/docs/test/geshi/blitzbasic.php similarity index 100% rename from docs/geshi/blitzbasic.php rename to docs/test/geshi/blitzbasic.php diff --git a/docs/geshi/bnf.php b/docs/test/geshi/bnf.php similarity index 100% rename from docs/geshi/bnf.php rename to docs/test/geshi/bnf.php diff --git a/docs/geshi/boo.php b/docs/test/geshi/boo.php similarity index 100% rename from docs/geshi/boo.php rename to docs/test/geshi/boo.php diff --git a/docs/geshi/c.php b/docs/test/geshi/c.php similarity index 100% rename from docs/geshi/c.php rename to docs/test/geshi/c.php diff --git a/docs/geshi/c_loadrunner.php b/docs/test/geshi/c_loadrunner.php similarity index 100% rename from docs/geshi/c_loadrunner.php rename to docs/test/geshi/c_loadrunner.php diff --git a/docs/geshi/c_mac.php b/docs/test/geshi/c_mac.php similarity index 100% rename from docs/geshi/c_mac.php rename to docs/test/geshi/c_mac.php diff --git a/docs/geshi/caddcl.php b/docs/test/geshi/caddcl.php similarity index 100% rename from docs/geshi/caddcl.php rename to docs/test/geshi/caddcl.php diff --git a/docs/geshi/cadlisp.php b/docs/test/geshi/cadlisp.php similarity index 100% rename from docs/geshi/cadlisp.php rename to docs/test/geshi/cadlisp.php diff --git a/docs/geshi/cfdg.php b/docs/test/geshi/cfdg.php similarity index 100% rename from docs/geshi/cfdg.php rename to docs/test/geshi/cfdg.php diff --git a/docs/geshi/cfm.php b/docs/test/geshi/cfm.php similarity index 100% rename from docs/geshi/cfm.php rename to docs/test/geshi/cfm.php diff --git a/docs/geshi/chaiscript.php b/docs/test/geshi/chaiscript.php similarity index 100% rename from docs/geshi/chaiscript.php rename to docs/test/geshi/chaiscript.php diff --git a/docs/geshi/cil.php b/docs/test/geshi/cil.php similarity index 100% rename from docs/geshi/cil.php rename to docs/test/geshi/cil.php diff --git a/docs/geshi/clojure.php b/docs/test/geshi/clojure.php similarity index 100% rename from docs/geshi/clojure.php rename to docs/test/geshi/clojure.php diff --git a/docs/geshi/cmake.php b/docs/test/geshi/cmake.php similarity index 100% rename from docs/geshi/cmake.php rename to docs/test/geshi/cmake.php diff --git a/docs/geshi/cobol.php b/docs/test/geshi/cobol.php similarity index 100% rename from docs/geshi/cobol.php rename to docs/test/geshi/cobol.php diff --git a/docs/geshi/coffeescript.php b/docs/test/geshi/coffeescript.php similarity index 100% rename from docs/geshi/coffeescript.php rename to docs/test/geshi/coffeescript.php diff --git a/docs/geshi/cpp-qt.php b/docs/test/geshi/cpp-qt.php similarity index 100% rename from docs/geshi/cpp-qt.php rename to docs/test/geshi/cpp-qt.php diff --git a/docs/geshi/cpp.php b/docs/test/geshi/cpp.php similarity index 100% rename from docs/geshi/cpp.php rename to docs/test/geshi/cpp.php diff --git a/docs/geshi/csharp.php b/docs/test/geshi/csharp.php similarity index 100% rename from docs/geshi/csharp.php rename to docs/test/geshi/csharp.php diff --git a/docs/geshi/css.php b/docs/test/geshi/css.php similarity index 100% rename from docs/geshi/css.php rename to docs/test/geshi/css.php diff --git a/docs/geshi/cuesheet.php b/docs/test/geshi/cuesheet.php similarity index 100% rename from docs/geshi/cuesheet.php rename to docs/test/geshi/cuesheet.php diff --git a/docs/geshi/d.php b/docs/test/geshi/d.php similarity index 100% rename from docs/geshi/d.php rename to docs/test/geshi/d.php diff --git a/docs/geshi/dcl.php b/docs/test/geshi/dcl.php similarity index 100% rename from docs/geshi/dcl.php rename to docs/test/geshi/dcl.php diff --git a/docs/geshi/dcpu16.php b/docs/test/geshi/dcpu16.php similarity index 100% rename from docs/geshi/dcpu16.php rename to docs/test/geshi/dcpu16.php diff --git a/docs/geshi/dcs.php b/docs/test/geshi/dcs.php similarity index 100% rename from docs/geshi/dcs.php rename to docs/test/geshi/dcs.php diff --git a/docs/geshi/delphi.php b/docs/test/geshi/delphi.php similarity index 100% rename from docs/geshi/delphi.php rename to docs/test/geshi/delphi.php diff --git a/docs/geshi/diff.php b/docs/test/geshi/diff.php similarity index 100% rename from docs/geshi/diff.php rename to docs/test/geshi/diff.php diff --git a/docs/geshi/div.php b/docs/test/geshi/div.php similarity index 100% rename from docs/geshi/div.php rename to docs/test/geshi/div.php diff --git a/docs/geshi/dos.php b/docs/test/geshi/dos.php similarity index 100% rename from docs/geshi/dos.php rename to docs/test/geshi/dos.php diff --git a/docs/geshi/dot.php b/docs/test/geshi/dot.php similarity index 100% rename from docs/geshi/dot.php rename to docs/test/geshi/dot.php diff --git a/docs/geshi/e.php b/docs/test/geshi/e.php similarity index 100% rename from docs/geshi/e.php rename to docs/test/geshi/e.php diff --git a/docs/geshi/ecmascript.php b/docs/test/geshi/ecmascript.php similarity index 100% rename from docs/geshi/ecmascript.php rename to docs/test/geshi/ecmascript.php diff --git a/docs/geshi/eiffel.php b/docs/test/geshi/eiffel.php similarity index 100% rename from docs/geshi/eiffel.php rename to docs/test/geshi/eiffel.php diff --git a/docs/geshi/email.php b/docs/test/geshi/email.php similarity index 100% rename from docs/geshi/email.php rename to docs/test/geshi/email.php diff --git a/docs/geshi/epc.php b/docs/test/geshi/epc.php similarity index 100% rename from docs/geshi/epc.php rename to docs/test/geshi/epc.php diff --git a/docs/geshi/erlang.php b/docs/test/geshi/erlang.php similarity index 100% rename from docs/geshi/erlang.php rename to docs/test/geshi/erlang.php diff --git a/docs/geshi/euphoria.php b/docs/test/geshi/euphoria.php similarity index 100% rename from docs/geshi/euphoria.php rename to docs/test/geshi/euphoria.php diff --git a/docs/geshi/f1.php b/docs/test/geshi/f1.php similarity index 100% rename from docs/geshi/f1.php rename to docs/test/geshi/f1.php diff --git a/docs/geshi/falcon.php b/docs/test/geshi/falcon.php similarity index 100% rename from docs/geshi/falcon.php rename to docs/test/geshi/falcon.php diff --git a/docs/geshi/fo.php b/docs/test/geshi/fo.php similarity index 100% rename from docs/geshi/fo.php rename to docs/test/geshi/fo.php diff --git a/docs/geshi/fortran.php b/docs/test/geshi/fortran.php similarity index 100% rename from docs/geshi/fortran.php rename to docs/test/geshi/fortran.php diff --git a/docs/geshi/freebasic.php b/docs/test/geshi/freebasic.php similarity index 100% rename from docs/geshi/freebasic.php rename to docs/test/geshi/freebasic.php diff --git a/docs/geshi/freeswitch.php b/docs/test/geshi/freeswitch.php similarity index 100% rename from docs/geshi/freeswitch.php rename to docs/test/geshi/freeswitch.php diff --git a/docs/geshi/fsharp.php b/docs/test/geshi/fsharp.php similarity index 100% rename from docs/geshi/fsharp.php rename to docs/test/geshi/fsharp.php diff --git a/docs/geshi/gambas.php b/docs/test/geshi/gambas.php similarity index 100% rename from docs/geshi/gambas.php rename to docs/test/geshi/gambas.php diff --git a/docs/geshi/gdb.php b/docs/test/geshi/gdb.php similarity index 100% rename from docs/geshi/gdb.php rename to docs/test/geshi/gdb.php diff --git a/docs/geshi/genero.php b/docs/test/geshi/genero.php similarity index 100% rename from docs/geshi/genero.php rename to docs/test/geshi/genero.php diff --git a/docs/geshi/genie.php b/docs/test/geshi/genie.php similarity index 100% rename from docs/geshi/genie.php rename to docs/test/geshi/genie.php diff --git a/docs/geshi/gettext.php b/docs/test/geshi/gettext.php similarity index 100% rename from docs/geshi/gettext.php rename to docs/test/geshi/gettext.php diff --git a/docs/geshi/glsl.php b/docs/test/geshi/glsl.php similarity index 100% rename from docs/geshi/glsl.php rename to docs/test/geshi/glsl.php diff --git a/docs/geshi/gml.php b/docs/test/geshi/gml.php similarity index 100% rename from docs/geshi/gml.php rename to docs/test/geshi/gml.php diff --git a/docs/geshi/gnuplot.php b/docs/test/geshi/gnuplot.php similarity index 100% rename from docs/geshi/gnuplot.php rename to docs/test/geshi/gnuplot.php diff --git a/docs/geshi/go.php b/docs/test/geshi/go.php similarity index 100% rename from docs/geshi/go.php rename to docs/test/geshi/go.php diff --git a/docs/geshi/groovy.php b/docs/test/geshi/groovy.php similarity index 100% rename from docs/geshi/groovy.php rename to docs/test/geshi/groovy.php diff --git a/docs/geshi/gwbasic.php b/docs/test/geshi/gwbasic.php similarity index 100% rename from docs/geshi/gwbasic.php rename to docs/test/geshi/gwbasic.php diff --git a/docs/geshi/haskell.php b/docs/test/geshi/haskell.php similarity index 100% rename from docs/geshi/haskell.php rename to docs/test/geshi/haskell.php diff --git a/docs/geshi/haxe.php b/docs/test/geshi/haxe.php similarity index 100% rename from docs/geshi/haxe.php rename to docs/test/geshi/haxe.php diff --git a/docs/geshi/hicest.php b/docs/test/geshi/hicest.php similarity index 100% rename from docs/geshi/hicest.php rename to docs/test/geshi/hicest.php diff --git a/docs/geshi/hq9plus.php b/docs/test/geshi/hq9plus.php similarity index 100% rename from docs/geshi/hq9plus.php rename to docs/test/geshi/hq9plus.php diff --git a/docs/geshi/html4strict.php b/docs/test/geshi/html4strict.php similarity index 100% rename from docs/geshi/html4strict.php rename to docs/test/geshi/html4strict.php diff --git a/docs/geshi/html5.php b/docs/test/geshi/html5.php similarity index 100% rename from docs/geshi/html5.php rename to docs/test/geshi/html5.php diff --git a/docs/geshi/icon.php b/docs/test/geshi/icon.php similarity index 100% rename from docs/geshi/icon.php rename to docs/test/geshi/icon.php diff --git a/docs/geshi/idl.php b/docs/test/geshi/idl.php similarity index 100% rename from docs/geshi/idl.php rename to docs/test/geshi/idl.php diff --git a/docs/geshi/ini.php b/docs/test/geshi/ini.php similarity index 100% rename from docs/geshi/ini.php rename to docs/test/geshi/ini.php diff --git a/docs/geshi/inno.php b/docs/test/geshi/inno.php similarity index 100% rename from docs/geshi/inno.php rename to docs/test/geshi/inno.php diff --git a/docs/geshi/intercal.php b/docs/test/geshi/intercal.php similarity index 100% rename from docs/geshi/intercal.php rename to docs/test/geshi/intercal.php diff --git a/docs/geshi/io.php b/docs/test/geshi/io.php similarity index 100% rename from docs/geshi/io.php rename to docs/test/geshi/io.php diff --git a/docs/geshi/j.php b/docs/test/geshi/j.php similarity index 100% rename from docs/geshi/j.php rename to docs/test/geshi/j.php diff --git a/docs/geshi/java.php b/docs/test/geshi/java.php similarity index 100% rename from docs/geshi/java.php rename to docs/test/geshi/java.php diff --git a/docs/geshi/java5.php b/docs/test/geshi/java5.php similarity index 100% rename from docs/geshi/java5.php rename to docs/test/geshi/java5.php diff --git a/docs/geshi/javascript.php b/docs/test/geshi/javascript.php similarity index 100% rename from docs/geshi/javascript.php rename to docs/test/geshi/javascript.php diff --git a/docs/geshi/jquery.php b/docs/test/geshi/jquery.php similarity index 100% rename from docs/geshi/jquery.php rename to docs/test/geshi/jquery.php diff --git a/docs/geshi/kixtart.php b/docs/test/geshi/kixtart.php similarity index 100% rename from docs/geshi/kixtart.php rename to docs/test/geshi/kixtart.php diff --git a/docs/geshi/klonec.php b/docs/test/geshi/klonec.php similarity index 100% rename from docs/geshi/klonec.php rename to docs/test/geshi/klonec.php diff --git a/docs/geshi/klonecpp.php b/docs/test/geshi/klonecpp.php similarity index 100% rename from docs/geshi/klonecpp.php rename to docs/test/geshi/klonecpp.php diff --git a/docs/geshi/latex.php b/docs/test/geshi/latex.php similarity index 100% rename from docs/geshi/latex.php rename to docs/test/geshi/latex.php diff --git a/docs/geshi/lb.php b/docs/test/geshi/lb.php similarity index 100% rename from docs/geshi/lb.php rename to docs/test/geshi/lb.php diff --git a/docs/geshi/ldif.php b/docs/test/geshi/ldif.php similarity index 100% rename from docs/geshi/ldif.php rename to docs/test/geshi/ldif.php diff --git a/docs/geshi/lisp.php b/docs/test/geshi/lisp.php similarity index 100% rename from docs/geshi/lisp.php rename to docs/test/geshi/lisp.php diff --git a/docs/geshi/llvm.php b/docs/test/geshi/llvm.php similarity index 100% rename from docs/geshi/llvm.php rename to docs/test/geshi/llvm.php diff --git a/docs/geshi/locobasic.php b/docs/test/geshi/locobasic.php similarity index 100% rename from docs/geshi/locobasic.php rename to docs/test/geshi/locobasic.php diff --git a/docs/geshi/logtalk.php b/docs/test/geshi/logtalk.php similarity index 100% rename from docs/geshi/logtalk.php rename to docs/test/geshi/logtalk.php diff --git a/docs/geshi/lolcode.php b/docs/test/geshi/lolcode.php similarity index 100% rename from docs/geshi/lolcode.php rename to docs/test/geshi/lolcode.php diff --git a/docs/geshi/lotusformulas.php b/docs/test/geshi/lotusformulas.php similarity index 100% rename from docs/geshi/lotusformulas.php rename to docs/test/geshi/lotusformulas.php diff --git a/docs/geshi/lotusscript.php b/docs/test/geshi/lotusscript.php similarity index 100% rename from docs/geshi/lotusscript.php rename to docs/test/geshi/lotusscript.php diff --git a/docs/geshi/lscript.php b/docs/test/geshi/lscript.php similarity index 100% rename from docs/geshi/lscript.php rename to docs/test/geshi/lscript.php diff --git a/docs/geshi/lsl2.php b/docs/test/geshi/lsl2.php similarity index 100% rename from docs/geshi/lsl2.php rename to docs/test/geshi/lsl2.php diff --git a/docs/geshi/lua.php b/docs/test/geshi/lua.php similarity index 100% rename from docs/geshi/lua.php rename to docs/test/geshi/lua.php diff --git a/docs/geshi/m68k.php b/docs/test/geshi/m68k.php similarity index 100% rename from docs/geshi/m68k.php rename to docs/test/geshi/m68k.php diff --git a/docs/geshi/magiksf.php b/docs/test/geshi/magiksf.php similarity index 100% rename from docs/geshi/magiksf.php rename to docs/test/geshi/magiksf.php diff --git a/docs/geshi/make.php b/docs/test/geshi/make.php similarity index 100% rename from docs/geshi/make.php rename to docs/test/geshi/make.php diff --git a/docs/geshi/mapbasic.php b/docs/test/geshi/mapbasic.php similarity index 100% rename from docs/geshi/mapbasic.php rename to docs/test/geshi/mapbasic.php diff --git a/docs/geshi/matlab.php b/docs/test/geshi/matlab.php similarity index 100% rename from docs/geshi/matlab.php rename to docs/test/geshi/matlab.php diff --git a/docs/geshi/mirc.php b/docs/test/geshi/mirc.php similarity index 100% rename from docs/geshi/mirc.php rename to docs/test/geshi/mirc.php diff --git a/docs/geshi/mmix.php b/docs/test/geshi/mmix.php similarity index 100% rename from docs/geshi/mmix.php rename to docs/test/geshi/mmix.php diff --git a/docs/geshi/modula2.php b/docs/test/geshi/modula2.php similarity index 100% rename from docs/geshi/modula2.php rename to docs/test/geshi/modula2.php diff --git a/docs/geshi/modula3.php b/docs/test/geshi/modula3.php similarity index 100% rename from docs/geshi/modula3.php rename to docs/test/geshi/modula3.php diff --git a/docs/geshi/mpasm.php b/docs/test/geshi/mpasm.php similarity index 100% rename from docs/geshi/mpasm.php rename to docs/test/geshi/mpasm.php diff --git a/docs/geshi/mxml.php b/docs/test/geshi/mxml.php similarity index 100% rename from docs/geshi/mxml.php rename to docs/test/geshi/mxml.php diff --git a/docs/geshi/mysql.php b/docs/test/geshi/mysql.php similarity index 100% rename from docs/geshi/mysql.php rename to docs/test/geshi/mysql.php diff --git a/docs/geshi/nagios.php b/docs/test/geshi/nagios.php similarity index 100% rename from docs/geshi/nagios.php rename to docs/test/geshi/nagios.php diff --git a/docs/geshi/netrexx.php b/docs/test/geshi/netrexx.php similarity index 100% rename from docs/geshi/netrexx.php rename to docs/test/geshi/netrexx.php diff --git a/docs/geshi/newlisp.php b/docs/test/geshi/newlisp.php similarity index 100% rename from docs/geshi/newlisp.php rename to docs/test/geshi/newlisp.php diff --git a/docs/geshi/nsis.php b/docs/test/geshi/nsis.php similarity index 100% rename from docs/geshi/nsis.php rename to docs/test/geshi/nsis.php diff --git a/docs/geshi/oberon2.php b/docs/test/geshi/oberon2.php similarity index 100% rename from docs/geshi/oberon2.php rename to docs/test/geshi/oberon2.php diff --git a/docs/geshi/objc.php b/docs/test/geshi/objc.php similarity index 100% rename from docs/geshi/objc.php rename to docs/test/geshi/objc.php diff --git a/docs/geshi/objeck.php b/docs/test/geshi/objeck.php similarity index 100% rename from docs/geshi/objeck.php rename to docs/test/geshi/objeck.php diff --git a/docs/geshi/ocaml-brief.php b/docs/test/geshi/ocaml-brief.php similarity index 100% rename from docs/geshi/ocaml-brief.php rename to docs/test/geshi/ocaml-brief.php diff --git a/docs/geshi/ocaml.php b/docs/test/geshi/ocaml.php similarity index 100% rename from docs/geshi/ocaml.php rename to docs/test/geshi/ocaml.php diff --git a/docs/geshi/octave.php b/docs/test/geshi/octave.php similarity index 100% rename from docs/geshi/octave.php rename to docs/test/geshi/octave.php diff --git a/docs/geshi/oobas.php b/docs/test/geshi/oobas.php similarity index 100% rename from docs/geshi/oobas.php rename to docs/test/geshi/oobas.php diff --git a/docs/geshi/oorexx.php b/docs/test/geshi/oorexx.php similarity index 100% rename from docs/geshi/oorexx.php rename to docs/test/geshi/oorexx.php diff --git a/docs/geshi/oracle11.php b/docs/test/geshi/oracle11.php similarity index 100% rename from docs/geshi/oracle11.php rename to docs/test/geshi/oracle11.php diff --git a/docs/geshi/oracle8.php b/docs/test/geshi/oracle8.php similarity index 100% rename from docs/geshi/oracle8.php rename to docs/test/geshi/oracle8.php diff --git a/docs/geshi/oxygene.php b/docs/test/geshi/oxygene.php similarity index 100% rename from docs/geshi/oxygene.php rename to docs/test/geshi/oxygene.php diff --git a/docs/geshi/oz.php b/docs/test/geshi/oz.php similarity index 100% rename from docs/geshi/oz.php rename to docs/test/geshi/oz.php diff --git a/docs/geshi/parasail.php b/docs/test/geshi/parasail.php similarity index 100% rename from docs/geshi/parasail.php rename to docs/test/geshi/parasail.php diff --git a/docs/geshi/parigp.php b/docs/test/geshi/parigp.php similarity index 100% rename from docs/geshi/parigp.php rename to docs/test/geshi/parigp.php diff --git a/docs/geshi/pascal.php b/docs/test/geshi/pascal.php similarity index 100% rename from docs/geshi/pascal.php rename to docs/test/geshi/pascal.php diff --git a/docs/geshi/pcre.php b/docs/test/geshi/pcre.php similarity index 100% rename from docs/geshi/pcre.php rename to docs/test/geshi/pcre.php diff --git a/docs/geshi/per.php b/docs/test/geshi/per.php similarity index 100% rename from docs/geshi/per.php rename to docs/test/geshi/per.php diff --git a/docs/geshi/perl.php b/docs/test/geshi/perl.php similarity index 100% rename from docs/geshi/perl.php rename to docs/test/geshi/perl.php diff --git a/docs/geshi/perl6.php b/docs/test/geshi/perl6.php similarity index 100% rename from docs/geshi/perl6.php rename to docs/test/geshi/perl6.php diff --git a/docs/geshi/pf.php b/docs/test/geshi/pf.php similarity index 100% rename from docs/geshi/pf.php rename to docs/test/geshi/pf.php diff --git a/docs/geshi/php-brief.php b/docs/test/geshi/php-brief.php similarity index 100% rename from docs/geshi/php-brief.php rename to docs/test/geshi/php-brief.php diff --git a/docs/geshi/php.php b/docs/test/geshi/php.php similarity index 100% rename from docs/geshi/php.php rename to docs/test/geshi/php.php diff --git a/docs/geshi/pic16.php b/docs/test/geshi/pic16.php similarity index 100% rename from docs/geshi/pic16.php rename to docs/test/geshi/pic16.php diff --git a/docs/geshi/pike.php b/docs/test/geshi/pike.php similarity index 100% rename from docs/geshi/pike.php rename to docs/test/geshi/pike.php diff --git a/docs/geshi/pixelbender.php b/docs/test/geshi/pixelbender.php similarity index 100% rename from docs/geshi/pixelbender.php rename to docs/test/geshi/pixelbender.php diff --git a/docs/geshi/pli.php b/docs/test/geshi/pli.php similarity index 100% rename from docs/geshi/pli.php rename to docs/test/geshi/pli.php diff --git a/docs/geshi/plsql.php b/docs/test/geshi/plsql.php similarity index 100% rename from docs/geshi/plsql.php rename to docs/test/geshi/plsql.php diff --git a/docs/geshi/postgresql.php b/docs/test/geshi/postgresql.php similarity index 100% rename from docs/geshi/postgresql.php rename to docs/test/geshi/postgresql.php diff --git a/docs/geshi/povray.php b/docs/test/geshi/povray.php similarity index 100% rename from docs/geshi/povray.php rename to docs/test/geshi/povray.php diff --git a/docs/geshi/powerbuilder.php b/docs/test/geshi/powerbuilder.php similarity index 100% rename from docs/geshi/powerbuilder.php rename to docs/test/geshi/powerbuilder.php diff --git a/docs/geshi/powershell.php b/docs/test/geshi/powershell.php similarity index 100% rename from docs/geshi/powershell.php rename to docs/test/geshi/powershell.php diff --git a/docs/geshi/proftpd.php b/docs/test/geshi/proftpd.php similarity index 100% rename from docs/geshi/proftpd.php rename to docs/test/geshi/proftpd.php diff --git a/docs/geshi/progress.php b/docs/test/geshi/progress.php similarity index 100% rename from docs/geshi/progress.php rename to docs/test/geshi/progress.php diff --git a/docs/geshi/prolog.php b/docs/test/geshi/prolog.php similarity index 100% rename from docs/geshi/prolog.php rename to docs/test/geshi/prolog.php diff --git a/docs/geshi/properties.php b/docs/test/geshi/properties.php similarity index 100% rename from docs/geshi/properties.php rename to docs/test/geshi/properties.php diff --git a/docs/geshi/providex.php b/docs/test/geshi/providex.php similarity index 100% rename from docs/geshi/providex.php rename to docs/test/geshi/providex.php diff --git a/docs/geshi/purebasic.php b/docs/test/geshi/purebasic.php similarity index 100% rename from docs/geshi/purebasic.php rename to docs/test/geshi/purebasic.php diff --git a/docs/geshi/pycon.php b/docs/test/geshi/pycon.php similarity index 100% rename from docs/geshi/pycon.php rename to docs/test/geshi/pycon.php diff --git a/docs/geshi/pys60.php b/docs/test/geshi/pys60.php similarity index 100% rename from docs/geshi/pys60.php rename to docs/test/geshi/pys60.php diff --git a/docs/geshi/python.php b/docs/test/geshi/python.php similarity index 100% rename from docs/geshi/python.php rename to docs/test/geshi/python.php diff --git a/docs/geshi/q.php b/docs/test/geshi/q.php similarity index 100% rename from docs/geshi/q.php rename to docs/test/geshi/q.php diff --git a/docs/geshi/qbasic.php b/docs/test/geshi/qbasic.php similarity index 100% rename from docs/geshi/qbasic.php rename to docs/test/geshi/qbasic.php diff --git a/docs/geshi/rails.php b/docs/test/geshi/rails.php similarity index 100% rename from docs/geshi/rails.php rename to docs/test/geshi/rails.php diff --git a/docs/geshi/rebol.php b/docs/test/geshi/rebol.php similarity index 100% rename from docs/geshi/rebol.php rename to docs/test/geshi/rebol.php diff --git a/docs/geshi/reg.php b/docs/test/geshi/reg.php similarity index 100% rename from docs/geshi/reg.php rename to docs/test/geshi/reg.php diff --git a/docs/geshi/rexx.php b/docs/test/geshi/rexx.php similarity index 100% rename from docs/geshi/rexx.php rename to docs/test/geshi/rexx.php diff --git a/docs/geshi/robots.php b/docs/test/geshi/robots.php similarity index 100% rename from docs/geshi/robots.php rename to docs/test/geshi/robots.php diff --git a/docs/geshi/rpmspec.php b/docs/test/geshi/rpmspec.php similarity index 100% rename from docs/geshi/rpmspec.php rename to docs/test/geshi/rpmspec.php diff --git a/docs/geshi/rsplus.php b/docs/test/geshi/rsplus.php similarity index 100% rename from docs/geshi/rsplus.php rename to docs/test/geshi/rsplus.php diff --git a/docs/geshi/ruby.php b/docs/test/geshi/ruby.php similarity index 100% rename from docs/geshi/ruby.php rename to docs/test/geshi/ruby.php diff --git a/docs/geshi/sas.php b/docs/test/geshi/sas.php similarity index 100% rename from docs/geshi/sas.php rename to docs/test/geshi/sas.php diff --git a/docs/geshi/scala.php b/docs/test/geshi/scala.php similarity index 100% rename from docs/geshi/scala.php rename to docs/test/geshi/scala.php diff --git a/docs/geshi/scheme.php b/docs/test/geshi/scheme.php similarity index 100% rename from docs/geshi/scheme.php rename to docs/test/geshi/scheme.php diff --git a/docs/geshi/scilab.php b/docs/test/geshi/scilab.php similarity index 100% rename from docs/geshi/scilab.php rename to docs/test/geshi/scilab.php diff --git a/docs/geshi/sdlbasic.php b/docs/test/geshi/sdlbasic.php similarity index 100% rename from docs/geshi/sdlbasic.php rename to docs/test/geshi/sdlbasic.php diff --git a/docs/geshi/smalltalk.php b/docs/test/geshi/smalltalk.php similarity index 100% rename from docs/geshi/smalltalk.php rename to docs/test/geshi/smalltalk.php diff --git a/docs/geshi/smarty.php b/docs/test/geshi/smarty.php similarity index 100% rename from docs/geshi/smarty.php rename to docs/test/geshi/smarty.php diff --git a/docs/geshi/spark.php b/docs/test/geshi/spark.php similarity index 100% rename from docs/geshi/spark.php rename to docs/test/geshi/spark.php diff --git a/docs/geshi/sparql.php b/docs/test/geshi/sparql.php similarity index 100% rename from docs/geshi/sparql.php rename to docs/test/geshi/sparql.php diff --git a/docs/geshi/sql.php b/docs/test/geshi/sql.php similarity index 100% rename from docs/geshi/sql.php rename to docs/test/geshi/sql.php diff --git a/docs/geshi/stonescript.php b/docs/test/geshi/stonescript.php similarity index 100% rename from docs/geshi/stonescript.php rename to docs/test/geshi/stonescript.php diff --git a/docs/geshi/systemverilog.php b/docs/test/geshi/systemverilog.php similarity index 100% rename from docs/geshi/systemverilog.php rename to docs/test/geshi/systemverilog.php diff --git a/docs/geshi/tcl.php b/docs/test/geshi/tcl.php similarity index 100% rename from docs/geshi/tcl.php rename to docs/test/geshi/tcl.php diff --git a/docs/geshi/teraterm.php b/docs/test/geshi/teraterm.php similarity index 100% rename from docs/geshi/teraterm.php rename to docs/test/geshi/teraterm.php diff --git a/docs/geshi/text.php b/docs/test/geshi/text.php similarity index 100% rename from docs/geshi/text.php rename to docs/test/geshi/text.php diff --git a/docs/geshi/thinbasic.php b/docs/test/geshi/thinbasic.php similarity index 100% rename from docs/geshi/thinbasic.php rename to docs/test/geshi/thinbasic.php diff --git a/docs/geshi/tsql.php b/docs/test/geshi/tsql.php similarity index 100% rename from docs/geshi/tsql.php rename to docs/test/geshi/tsql.php diff --git a/docs/geshi/typoscript.php b/docs/test/geshi/typoscript.php similarity index 100% rename from docs/geshi/typoscript.php rename to docs/test/geshi/typoscript.php diff --git a/docs/geshi/unicon.php b/docs/test/geshi/unicon.php similarity index 100% rename from docs/geshi/unicon.php rename to docs/test/geshi/unicon.php diff --git a/docs/geshi/upc.php b/docs/test/geshi/upc.php similarity index 100% rename from docs/geshi/upc.php rename to docs/test/geshi/upc.php diff --git a/docs/geshi/urbi.php b/docs/test/geshi/urbi.php similarity index 100% rename from docs/geshi/urbi.php rename to docs/test/geshi/urbi.php diff --git a/docs/geshi/uscript.php b/docs/test/geshi/uscript.php similarity index 100% rename from docs/geshi/uscript.php rename to docs/test/geshi/uscript.php diff --git a/docs/geshi/vala.php b/docs/test/geshi/vala.php similarity index 100% rename from docs/geshi/vala.php rename to docs/test/geshi/vala.php diff --git a/docs/geshi/vb.php b/docs/test/geshi/vb.php similarity index 100% rename from docs/geshi/vb.php rename to docs/test/geshi/vb.php diff --git a/docs/geshi/vbnet.php b/docs/test/geshi/vbnet.php similarity index 100% rename from docs/geshi/vbnet.php rename to docs/test/geshi/vbnet.php diff --git a/docs/geshi/vedit.php b/docs/test/geshi/vedit.php similarity index 100% rename from docs/geshi/vedit.php rename to docs/test/geshi/vedit.php diff --git a/docs/geshi/verilog.php b/docs/test/geshi/verilog.php similarity index 100% rename from docs/geshi/verilog.php rename to docs/test/geshi/verilog.php diff --git a/docs/geshi/vhdl.php b/docs/test/geshi/vhdl.php similarity index 100% rename from docs/geshi/vhdl.php rename to docs/test/geshi/vhdl.php diff --git a/docs/geshi/vim.php b/docs/test/geshi/vim.php similarity index 100% rename from docs/geshi/vim.php rename to docs/test/geshi/vim.php diff --git a/docs/geshi/visualfoxpro.php b/docs/test/geshi/visualfoxpro.php similarity index 100% rename from docs/geshi/visualfoxpro.php rename to docs/test/geshi/visualfoxpro.php diff --git a/docs/geshi/visualprolog.php b/docs/test/geshi/visualprolog.php similarity index 100% rename from docs/geshi/visualprolog.php rename to docs/test/geshi/visualprolog.php diff --git a/docs/geshi/whitespace.php b/docs/test/geshi/whitespace.php similarity index 100% rename from docs/geshi/whitespace.php rename to docs/test/geshi/whitespace.php diff --git a/docs/geshi/whois.php b/docs/test/geshi/whois.php similarity index 100% rename from docs/geshi/whois.php rename to docs/test/geshi/whois.php diff --git a/docs/geshi/winbatch.php b/docs/test/geshi/winbatch.php similarity index 100% rename from docs/geshi/winbatch.php rename to docs/test/geshi/winbatch.php diff --git a/docs/geshi/xbasic.php b/docs/test/geshi/xbasic.php similarity index 100% rename from docs/geshi/xbasic.php rename to docs/test/geshi/xbasic.php diff --git a/docs/geshi/xml.php b/docs/test/geshi/xml.php similarity index 100% rename from docs/geshi/xml.php rename to docs/test/geshi/xml.php diff --git a/docs/geshi/xorg_conf.php b/docs/test/geshi/xorg_conf.php similarity index 100% rename from docs/geshi/xorg_conf.php rename to docs/test/geshi/xorg_conf.php diff --git a/docs/geshi/xpp.php b/docs/test/geshi/xpp.php similarity index 100% rename from docs/geshi/xpp.php rename to docs/test/geshi/xpp.php diff --git a/docs/geshi/yaml.php b/docs/test/geshi/yaml.php similarity index 100% rename from docs/geshi/yaml.php rename to docs/test/geshi/yaml.php diff --git a/docs/geshi/z80.php b/docs/test/geshi/z80.php similarity index 100% rename from docs/geshi/z80.php rename to docs/test/geshi/z80.php diff --git a/docs/geshi/zxbasic.php b/docs/test/geshi/zxbasic.php similarity index 100% rename from docs/geshi/zxbasic.php rename to docs/test/geshi/zxbasic.php diff --git a/docs/index.php b/docs/test/index.php similarity index 100% rename from docs/index.php rename to docs/test/index.php