├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── beatles.rdf ├── beatles.ttl ├── classes ├── Convert.php ├── Endpoint.php ├── Exporter.php ├── HTTPStatus.php ├── Importer.php ├── Logging.php ├── MetaDb.php ├── Queries.php ├── Utils.php └── modules │ ├── abstractModule.php │ ├── adminModule.php │ ├── exportModule.php │ ├── redirectModule.php │ ├── serviceModule.php │ ├── sessionModule.php │ ├── sparqlFilterModule.php │ ├── staticModule.php │ ├── typeModule.php │ └── uriModule.php ├── common.inc.php ├── default.settings.inc.php ├── doc ├── README ├── examples │ ├── components │ │ ├── services │ │ │ ├── people │ │ │ │ ├── html.template │ │ │ │ └── queries │ │ │ │ │ └── main.query │ │ │ └── peopleByName │ │ │ │ ├── html.template │ │ │ │ ├── json.template │ │ │ │ └── queries │ │ │ │ └── main.query │ │ └── types │ │ │ └── foaf:Person │ │ │ ├── html.template │ │ │ └── queries │ │ │ ├── attendees.query │ │ │ ├── birthplace.query │ │ │ ├── endpoint.dbpedia │ │ │ ├── geo.query │ │ │ └── location.query │ │ │ ├── main.query │ │ │ └── personalDetails.query │ └── originalComponents │ │ ├── includes │ │ └── header.inc │ │ ├── services │ │ ├── classes │ │ │ ├── html.template │ │ │ └── queries │ │ │ │ └── main.query │ │ ├── instances │ │ │ ├── html.template │ │ │ └── queries │ │ │ │ └── main.query │ │ ├── namedGraphs │ │ │ ├── html.template │ │ │ └── queries │ │ │ │ └── main.query │ │ └── search │ │ │ ├── html.template │ │ │ ├── json.template │ │ │ └── queries │ │ │ └── main.query │ │ ├── static │ │ ├── README.TXT │ │ ├── admin │ │ │ ├── codemirror │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── demo │ │ │ │ │ ├── activeline.html │ │ │ │ │ ├── changemode.html │ │ │ │ │ ├── closetag.html │ │ │ │ │ ├── complete.html │ │ │ │ │ ├── emacs.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── formatting.html │ │ │ │ │ ├── fullscreen.html │ │ │ │ │ ├── loadmode.html │ │ │ │ │ ├── marker.html │ │ │ │ │ ├── matchhighlighter.html │ │ │ │ │ ├── multiplex.html │ │ │ │ │ ├── mustache.html │ │ │ │ │ ├── preview.html │ │ │ │ │ ├── resize.html │ │ │ │ │ ├── runmode.html │ │ │ │ │ ├── search.html │ │ │ │ │ ├── theme.html │ │ │ │ │ ├── vim.html │ │ │ │ │ ├── visibletabs.html │ │ │ │ │ └── xmlcomplete.html │ │ │ │ ├── doc │ │ │ │ │ ├── baboon.png │ │ │ │ │ ├── baboon_vector.svg │ │ │ │ │ ├── compress.html │ │ │ │ │ ├── docs.css │ │ │ │ │ ├── internals.html │ │ │ │ │ ├── manual.html │ │ │ │ │ ├── oldrelease.html │ │ │ │ │ ├── reporting.html │ │ │ │ │ └── upgrade_v2.2.html │ │ │ │ ├── index.html │ │ │ │ ├── keymap │ │ │ │ │ ├── emacs.js │ │ │ │ │ └── vim.js │ │ │ │ ├── lib │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── codemirror.js │ │ │ │ │ └── util │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ ├── formatting.js │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ ├── pig-hint.js │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── searchcursor.js │ │ │ │ │ │ ├── simple-hint.css │ │ │ │ │ │ ├── simple-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── mode │ │ │ │ │ ├── clike │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── go │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haskell │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── javascript.js │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── less │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── less.js │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mysql.js │ │ │ │ │ ├── ntriples │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── ocaml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ocaml.js │ │ │ │ │ ├── pascal │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── perl │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── php.js │ │ │ │ │ ├── pig │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── plsql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── plsql.js │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── python │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── r │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ │ ├── changes │ │ │ │ │ │ │ ├── changes.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── spec.css │ │ │ │ │ │ │ └── spec.js │ │ │ │ │ ├── rst │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ruby.js │ │ │ │ │ ├── rust │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── shell.js │ │ │ │ │ ├── sieve │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── sparql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── stex │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── vb │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── testBase.js │ │ │ │ │ │ │ ├── testEmptySequenceKeyword.js │ │ │ │ │ │ │ ├── testMultiAttr.js │ │ │ │ │ │ │ ├── testNamespaces.js │ │ │ │ │ │ │ ├── testProcessingInstructions.js │ │ │ │ │ │ │ └── testQuotes.js │ │ │ │ │ │ └── xquery.js │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml.js │ │ │ │ ├── package.json │ │ │ │ ├── test │ │ │ │ │ ├── driver.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ └── parse-js.js │ │ │ │ │ ├── mode_test.css │ │ │ │ │ ├── mode_test.js │ │ │ │ │ ├── phantom_driver.js │ │ │ │ │ ├── run.js │ │ │ │ │ └── test.js │ │ │ │ └── theme │ │ │ │ │ ├── ambiance.css │ │ │ │ │ ├── blackboard.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ └── xq-dark.css │ │ │ ├── img │ │ │ │ ├── barchart.png │ │ │ │ ├── circlepacking.png │ │ │ │ ├── columnchart.png │ │ │ │ ├── dendrogram.png │ │ │ │ ├── graph.png │ │ │ │ ├── linechart.png │ │ │ │ ├── maps.png │ │ │ │ ├── parallelcoordinates.png │ │ │ │ ├── piechart.png │ │ │ │ ├── radar.png │ │ │ │ ├── scatter.png │ │ │ │ ├── table.png │ │ │ │ ├── timeknots.png │ │ │ │ └── wordcloud.png │ │ │ └── js │ │ │ │ └── editor.js │ │ ├── css │ │ │ ├── basic.css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ └── person.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── lodspeakr_logotype.png │ │ │ └── wait.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-typeahead.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── d3.layout.cloud.js │ │ │ ├── jquery.js │ │ │ ├── raphael │ │ │ │ ├── g.bar.js │ │ │ │ ├── g.raphael.js │ │ │ │ └── raphael.js │ │ │ └── typeahead.js │ │ └── vendor │ │ │ └── timeknots │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example │ │ │ └── index.html │ │ │ └── src │ │ │ ├── d3.license │ │ │ ├── d3.v2.min.js │ │ │ ├── timeknots-min.js │ │ │ └── timeknots.js │ │ └── types │ │ └── rdfs__Resource │ │ ├── html.template │ │ └── queries │ │ ├── po.query │ │ └── sp.query └── img │ └── 303redirection.png ├── index.php ├── install.sh ├── lib ├── Haanga │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── contrib │ │ ├── dummy.php │ │ └── meneame_pagination.php │ ├── examples │ │ ├── complex │ │ │ ├── base.html │ │ │ ├── include.html │ │ │ ├── index-test.html │ │ │ ├── index.html │ │ │ └── subtemplate.html │ │ ├── django-yui-layout-templates │ │ │ ├── README │ │ │ ├── layout_1_column_full_width.html │ │ │ ├── layout_2_columns_narrow_left_column.html │ │ │ ├── layout_2_columns_narrow_right_column.html │ │ │ ├── layout_2_equal_columns.html │ │ │ ├── layout_3_columns_quarter_half_quarter.html │ │ │ ├── layout_3_columns_varying_width.html │ │ │ ├── layout_3_equal_columns.html │ │ │ ├── layout_4_equal_columns.html │ │ │ ├── layout_base.html │ │ │ ├── layout_overrides.html │ │ │ └── shared │ │ │ │ ├── footer.html │ │ │ │ └── header.html │ │ ├── django-yui.php │ │ ├── index.php │ │ ├── inheritance.php │ │ ├── inheritance │ │ │ ├── layout.html │ │ │ ├── page.html │ │ │ ├── section.html │ │ │ └── shared │ │ │ │ └── about.html │ │ ├── template_runtime.php │ │ └── tmp │ │ │ └── .empty │ ├── haanga-cli.php │ ├── lib │ │ ├── Haanga.php │ │ └── Haanga │ │ │ ├── AST.php │ │ │ ├── Compiler.php │ │ │ ├── Compiler │ │ │ ├── Exception.php │ │ │ ├── Parser.php │ │ │ ├── Parser.y │ │ │ ├── Runtime.php │ │ │ └── Tokenizer.php │ │ │ ├── Exception.php │ │ │ ├── Extension.php │ │ │ ├── Extension │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ │ ├── Alert.php │ │ │ │ ├── Capfirst.php │ │ │ │ ├── Count.php │ │ │ │ ├── Cut.php │ │ │ │ ├── D3circlepacking.php │ │ │ │ ├── D3dendrogram.php │ │ │ │ ├── D3forcegraph.php │ │ │ │ ├── D3linechart.php │ │ │ │ ├── D3parallelcoordinates.php │ │ │ │ ├── D3radarchart.php │ │ │ │ ├── D3stackedcolumnchart.php │ │ │ │ ├── D3wordcloud.php │ │ │ │ ├── Date.php │ │ │ │ ├── Default.php │ │ │ │ ├── Deurifier.php │ │ │ │ ├── Dictsort.php │ │ │ │ ├── Empty.php │ │ │ │ ├── Escape.php │ │ │ │ ├── Exists.php │ │ │ │ ├── Explode.php │ │ │ │ ├── Googlemaps.php │ │ │ │ ├── Googlevizannotatedtimeline.php │ │ │ │ ├── Googlevizbarchart.php │ │ │ │ ├── Googlevizcolumnchart.php │ │ │ │ ├── Googlevizlinechart.php │ │ │ │ ├── Googlevizpiechart.php │ │ │ │ ├── Googlevizscatterchart.php │ │ │ │ ├── Googleviztable.php │ │ │ │ ├── Hostname.php │ │ │ │ ├── Intval.php │ │ │ │ ├── Isarray.php │ │ │ │ ├── Join.php │ │ │ │ ├── Leafletmaps.php │ │ │ │ ├── Length.php │ │ │ │ ├── Lower.php │ │ │ │ ├── Null.php │ │ │ │ ├── Pluralize.php │ │ │ │ ├── Pop.php │ │ │ │ ├── Raphaeltimeline.php │ │ │ │ ├── Reverse.php │ │ │ │ ├── Safe.php │ │ │ │ ├── Slugify.php │ │ │ │ ├── Stringformat.php │ │ │ │ ├── Strlen.php │ │ │ │ ├── Substr.php │ │ │ │ ├── Timeknot.php │ │ │ │ ├── Title.php │ │ │ │ ├── Trans.php │ │ │ │ ├── Translation.php │ │ │ │ ├── Trim.php │ │ │ │ ├── Truncatechars.php │ │ │ │ ├── Truncatewords.php │ │ │ │ ├── Upper.php │ │ │ │ ├── Urifier.php │ │ │ │ ├── Urifragment.php │ │ │ │ ├── Uripath.php │ │ │ │ ├── Urischeme.php │ │ │ │ ├── Urldecode.php │ │ │ │ ├── Urlencode.php │ │ │ │ └── gRaphaelBarChart.php │ │ │ ├── Tag.php │ │ │ └── Tag │ │ │ │ ├── Buffer.php │ │ │ │ ├── Currenttime.php │ │ │ │ ├── Cycle.php │ │ │ │ ├── Dictsort.php │ │ │ │ ├── Escape.php │ │ │ │ ├── Exec.php │ │ │ │ ├── Firstof.php │ │ │ │ ├── Inline.php │ │ │ │ ├── Lower.php │ │ │ │ ├── Min.php │ │ │ │ ├── Setsafe.php │ │ │ │ ├── Spaceless.php │ │ │ │ ├── Templatetag.php │ │ │ │ ├── Trans.php │ │ │ │ ├── Tryinclude.php │ │ │ │ └── Upper.php │ │ │ └── Generator │ │ │ └── PHP.php │ └── tests │ │ ├── TestSuite.php │ │ ├── assert_templates │ │ ├── autoescape.html │ │ ├── autoescape.php │ │ ├── autoescape.tpl │ │ ├── base.html │ │ ├── base.php │ │ ├── base.tpl │ │ ├── bitwise.html │ │ ├── bitwise.tpl │ │ ├── bug_#14.html │ │ ├── bug_#14.php │ │ ├── bug_#14.tpl │ │ ├── bug_001.html │ │ ├── bug_001.php │ │ ├── bug_001.tpl │ │ ├── class_static.html │ │ ├── class_static.tpl │ │ ├── concat.html │ │ ├── concat.tpl │ │ ├── concat1.html │ │ ├── concat1.tpl │ │ ├── custom_tag.html.php │ │ ├── custom_tag.tpl │ │ ├── cycle.html │ │ ├── cycle.php │ │ ├── cycle.tpl │ │ ├── dummy.html │ │ ├── dummy.tpl │ │ ├── empty_block.html │ │ ├── empty_block.tpl │ │ ├── empty_block_base.tpl │ │ ├── empty_loop.html │ │ ├── empty_loop.php │ │ ├── empty_loop.tpl │ │ ├── exec-inc.tpl │ │ ├── exec.html.php │ │ ├── exec.tpl │ │ ├── expr.html │ │ ├── expr.php │ │ ├── expr.tpl │ │ ├── filter.html │ │ ├── filter.php │ │ ├── filter.tpl │ │ ├── first_of.html │ │ ├── first_of.php │ │ ├── first_of.tpl │ │ ├── for_range.html │ │ ├── for_range.tpl │ │ ├── for_range1.html │ │ ├── for_range1.tpl │ │ ├── for_range2.html │ │ ├── for_range2.tpl │ │ ├── for_range3.html │ │ ├── for_range3.tpl │ │ ├── for_range4.html │ │ ├── for_range4.php │ │ ├── for_range4.tpl │ │ ├── for_range5.html │ │ ├── for_range5.php │ │ ├── for_range5.tpl │ │ ├── foreach_vars.html │ │ ├── foreach_vars.php │ │ ├── foreach_vars.tpl │ │ ├── global.html │ │ ├── global.php │ │ ├── global.tpl │ │ ├── if_else_simple.html │ │ ├── if_else_simple.php │ │ ├── if_else_simple.tpl │ │ ├── ifchanged.html │ │ ├── ifchanged.php │ │ ├── ifchanged.tpl │ │ ├── ifequals.html │ │ ├── ifequals.tpl │ │ ├── in.html │ │ ├── in.php │ │ ├── in.tpl │ │ ├── inheritence_nested_block.html │ │ ├── inheritence_nested_block.tpl │ │ ├── inheritence_nested_block_duplicated.html │ │ ├── inheritence_nested_block_duplicated.tpl │ │ ├── inline.html │ │ ├── inline.tpl │ │ ├── inline_buffer.tpl │ │ ├── intval.html │ │ ├── intval.php │ │ ├── intval.tpl │ │ ├── is_array.html │ │ ├── is_array.php │ │ ├── is_array.tpl │ │ ├── join.html │ │ ├── join.php │ │ ├── join.tpl │ │ ├── load.html │ │ ├── load.php │ │ ├── load.tpl │ │ ├── locale │ │ │ └── es_ES │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.mo │ │ │ │ └── messages.po │ │ ├── loop.html │ │ ├── loop.php │ │ ├── loop.tpl │ │ ├── loop_object.html │ │ ├── loop_object.php │ │ ├── loop_object.tpl │ │ ├── method.html │ │ ├── method.php │ │ ├── method.tpl │ │ ├── nested_block.html │ │ ├── nested_block.tpl │ │ ├── nested_block_second_parent.html │ │ ├── nested_block_second_parent.tpl │ │ ├── nested_block_second_parent_override.html │ │ ├── nested_block_second_parent_override.tpl │ │ ├── null.html │ │ ├── null.php │ │ ├── null.tpl │ │ ├── object.html │ │ ├── object.php │ │ ├── object.tpl │ │ ├── partial.tpl │ │ ├── pluralize.html │ │ ├── pluralize.php │ │ ├── pluralize.tpl │ │ ├── regroup.html │ │ ├── regroup.php │ │ ├── regroup.tpl │ │ ├── set.html │ │ ├── set.tpl │ │ ├── spaceless.html │ │ ├── spaceless.tpl │ │ ├── strip_whitespace.html │ │ ├── strip_whitespace.tpl │ │ ├── sub_set.tpl │ │ ├── subtemplate.html │ │ ├── subtemplate.php │ │ ├── subtemplate.tpl │ │ ├── templatetag.html │ │ ├── templatetag.tpl │ │ ├── title.html │ │ ├── title.php │ │ ├── title.tpl │ │ ├── trans.html │ │ ├── trans.php │ │ ├── trans.tpl │ │ ├── truncatewords.html │ │ ├── truncatewords.php │ │ ├── truncatewords.tpl │ │ ├── try_include.html │ │ ├── try_include.tpl │ │ ├── variable_existe.html │ │ ├── variable_existe.tpl │ │ ├── with.html │ │ ├── with.php │ │ └── with.tpl │ │ ├── err_templates │ │ ├── block.tpl │ │ ├── block_nonparent.tpl │ │ ├── block_super.tpl │ │ ├── block_super_filter.tpl │ │ ├── block_super_nonsubtemplate.tpl │ │ ├── dictsort.tpl │ │ ├── dictsort1.tpl │ │ ├── dictsort2.tpl │ │ ├── err_block.tpl │ │ ├── err_block_nonparent.tpl │ │ ├── err_block_super.tpl │ │ ├── err_block_super_filter.tpl │ │ ├── err_block_super_nonsubtemplate.tpl │ │ ├── err_dictsort.tpl │ │ ├── err_dictsort1.tpl │ │ ├── err_dictsort2.tpl │ │ ├── err_forloop.tpl │ │ ├── err_forloop1.tpl │ │ ├── err_ifchanged.tpl │ │ ├── err_invalid_blockname.tpl │ │ ├── err_invalid_tryinclude.tpl │ │ ├── err_load1.tpl │ │ ├── err_load2.tpl │ │ ├── err_loop_varname.tpl │ │ ├── err_pluralize.tpl │ │ ├── err_reverse.tpl │ │ ├── err_templatetag1.tpl │ │ ├── err_templatetag2.tpl │ │ ├── err_templatetag3.tpl │ │ ├── err_title.tpl │ │ ├── exec_notallowed.tpl │ │ ├── forloop.tpl │ │ ├── forloop1.tpl │ │ ├── ifchanged.tpl │ │ ├── inline1.tpl │ │ ├── inline2.tpl │ │ ├── inline3.tpl │ │ ├── inline4.tpl │ │ ├── inline5.tpl │ │ ├── invalid_blockname.tpl │ │ ├── loop_varname.tpl │ │ ├── pluralize.tpl │ │ ├── reverse.tpl │ │ ├── templatetag1.tpl │ │ ├── templatetag2.tpl │ │ ├── templatetag3.tpl │ │ ├── title.tpl │ │ ├── tokenizer_1.tpl │ │ ├── tokenizer_2.tpl │ │ ├── tokenizer_3.tpl │ │ ├── tokenizer_4.tpl │ │ └── tokenizer_5.tpl │ │ ├── errorTest.php │ │ ├── templateTest.php │ │ └── tmp │ │ ├── assert_templates │ │ ├── autoescape.tpl.php │ │ ├── autoescape.tpl.php.dump │ │ ├── base.tpl.php │ │ ├── base.tpl.php.dump │ │ ├── bitwise.tpl.php │ │ ├── bitwise.tpl.php.dump │ │ ├── bug_001.tpl.php │ │ ├── bug_001.tpl.php.dump │ │ ├── class_static.tpl.php │ │ ├── class_static.tpl.php.dump │ │ ├── concat.tpl.php │ │ ├── concat.tpl.php.dump │ │ ├── concat1.tpl.php │ │ ├── concat1.tpl.php.dump │ │ ├── custom_tag.tpl.php │ │ ├── custom_tag.tpl.php.dump │ │ ├── cycle.tpl.php │ │ ├── cycle.tpl.php.dump │ │ ├── dummy.tpl.php │ │ ├── dummy.tpl.php.dump │ │ ├── empty_block.tpl.php │ │ ├── empty_block.tpl.php.dump │ │ ├── empty_block_base.tpl.php │ │ ├── empty_block_base.tpl.php.dump │ │ ├── empty_loop.tpl.php │ │ ├── empty_loop.tpl.php.dump │ │ ├── exec.tpl.php │ │ ├── exec.tpl.php.dump │ │ ├── filter.tpl.php │ │ ├── filter.tpl.php.dump │ │ ├── first_of.tpl.php │ │ ├── first_of.tpl.php.dump │ │ ├── for_range.tpl.php │ │ ├── for_range.tpl.php.dump │ │ ├── for_range1.tpl.php │ │ ├── for_range1.tpl.php.dump │ │ ├── for_range2.tpl.php │ │ ├── for_range2.tpl.php.dump │ │ ├── for_range3.tpl.php │ │ ├── for_range3.tpl.php.dump │ │ ├── for_range4.tpl.php │ │ ├── for_range4.tpl.php.dump │ │ ├── for_range5.tpl.php │ │ ├── for_range5.tpl.php.dump │ │ ├── foreach_vars.tpl.php │ │ ├── foreach_vars.tpl.php.dump │ │ ├── global.tpl.php │ │ ├── global.tpl.php.dump │ │ ├── if_else_simple.tpl.php │ │ ├── if_else_simple.tpl.php.dump │ │ ├── ifchanged.tpl.php │ │ ├── ifchanged.tpl.php.dump │ │ ├── ifequals.tpl.php │ │ ├── ifequals.tpl.php.dump │ │ ├── in.tpl.php │ │ ├── in.tpl.php.dump │ │ ├── inheritence_nested_block.tpl.php │ │ ├── inheritence_nested_block.tpl.php.dump │ │ ├── inheritence_nested_block_duplicated.tpl.php │ │ ├── inheritence_nested_block_duplicated.tpl.php.dump │ │ ├── inline.tpl.php │ │ ├── inline.tpl.php.dump │ │ ├── intval.tpl.php │ │ ├── intval.tpl.php.dump │ │ ├── join.tpl.php │ │ ├── join.tpl.php.dump │ │ ├── load.tpl.php │ │ ├── load.tpl.php.dump │ │ ├── loop.tpl.php │ │ ├── loop.tpl.php.dump │ │ ├── loop_object.tpl.php │ │ ├── loop_object.tpl.php.dump │ │ ├── method.tpl.php │ │ ├── method.tpl.php.dump │ │ ├── nested_block.tpl.php │ │ ├── nested_block.tpl.php.dump │ │ ├── nested_block_second_parent.tpl.php │ │ ├── nested_block_second_parent.tpl.php.dump │ │ ├── nested_block_second_parent_override.tpl.php │ │ ├── nested_block_second_parent_override.tpl.php.dump │ │ ├── object.tpl.php │ │ ├── object.tpl.php.dump │ │ ├── partial.tpl.php │ │ ├── partial.tpl.php.dump │ │ ├── pluralize.tpl.php │ │ ├── pluralize.tpl.php.dump │ │ ├── regroup.tpl.php │ │ ├── regroup.tpl.php.dump │ │ ├── set.tpl.php │ │ ├── set.tpl.php.dump │ │ ├── spaceless.tpl.php │ │ ├── spaceless.tpl.php.dump │ │ ├── strip_whitespace.tpl.php │ │ ├── strip_whitespace.tpl.php.dump │ │ ├── sub_set.tpl.php │ │ ├── sub_set.tpl.php.dump │ │ ├── subtemplate.tpl.php │ │ ├── subtemplate.tpl.php.dump │ │ ├── templatetag.tpl.php │ │ ├── templatetag.tpl.php.dump │ │ ├── title.tpl.php │ │ ├── title.tpl.php.dump │ │ ├── trans.tpl.php │ │ ├── trans.tpl.php.dump │ │ ├── truncatewords.tpl.php │ │ ├── truncatewords.tpl.php.dump │ │ ├── try_include.tpl.php │ │ ├── try_include.tpl.php.dump │ │ ├── variable_existe.tpl.php │ │ ├── variable_existe.tpl.php.dump │ │ ├── with.tpl.php │ │ └── with.tpl.php.dump │ │ └── err_templates │ │ ├── block.tpl.php │ │ ├── block_nonparent.tpl.php │ │ ├── block_super.tpl.php │ │ ├── block_super_filter.tpl.php │ │ ├── block_super_nonsubtemplate.tpl.php │ │ ├── dictsort.tpl.php │ │ ├── dictsort1.tpl.php │ │ ├── dictsort2.tpl.php │ │ ├── err_block.tpl.php │ │ ├── err_block_nonparent.tpl.php │ │ ├── err_block_super.tpl.php │ │ ├── err_block_super_filter.tpl.php │ │ ├── err_block_super_nonsubtemplate.tpl.php │ │ ├── err_dictsort.tpl.php │ │ ├── err_dictsort1.tpl.php │ │ ├── err_dictsort2.tpl.php │ │ ├── err_forloop.tpl.php │ │ ├── err_forloop1.tpl.php │ │ ├── err_ifchanged.tpl.php │ │ ├── err_invalid_blockname.tpl.php │ │ ├── err_invalid_tryinclude.tpl.php │ │ ├── err_load1.tpl.php │ │ ├── err_load2.tpl.php │ │ ├── err_loop_varname.tpl.php │ │ ├── err_pluralize.tpl.php │ │ ├── err_reverse.tpl.php │ │ ├── err_templatetag1.tpl.php │ │ ├── err_templatetag2.tpl.php │ │ ├── err_templatetag3.tpl.php │ │ ├── err_title.tpl.php │ │ ├── exec_notallowed.tpl.php │ │ ├── forloop.tpl.php │ │ ├── forloop1.tpl.php │ │ ├── ifchanged.tpl.php │ │ ├── inline1.tpl.php │ │ ├── inline2.tpl.php │ │ ├── inline3.tpl.php │ │ ├── inline4.tpl.php │ │ ├── inline5.tpl.php │ │ ├── invalid_blockname.tpl.php │ │ ├── loop_varname.tpl.php │ │ ├── pluralize.tpl.php │ │ ├── reverse.tpl.php │ │ ├── templatetag1.tpl.php │ │ ├── templatetag2.tpl.php │ │ ├── templatetag3.tpl.php │ │ ├── title.tpl.php │ │ ├── tokenizer_1.tpl.php │ │ ├── tokenizer_2.tpl.php │ │ ├── tokenizer_3.tpl.php │ │ ├── tokenizer_4.tpl.php │ │ └── tokenizer_5.tpl.php └── arc2 │ ├── .gitignore │ ├── ARC2.php │ ├── ARC2_Class.php │ ├── ARC2_Reader.php │ ├── ARC2_Resource.php │ ├── ARC2_TestHandler.php │ ├── ARC2_getFormat.php │ ├── ARC2_getPreferredFormat.php │ ├── extractors │ ├── ARC2_DcExtractor.php │ ├── ARC2_ErdfExtractor.php │ ├── ARC2_MicroformatsExtractor.php │ ├── ARC2_OpenidExtractor.php │ ├── ARC2_PoshRdfExtractor.php │ ├── ARC2_RDFExtractor.php │ ├── ARC2_RdfaExtractor.php │ └── ARC2_TwitterProfilePicExtractor.php │ ├── parsers │ ├── ARC2_AtomParser.php │ ├── ARC2_CBJSONParser.php │ ├── ARC2_JSONParser.php │ ├── ARC2_LegacyXMLParser.php │ ├── ARC2_RDFParser.php │ ├── ARC2_RDFXMLParser.php │ ├── ARC2_RSSParser.php │ ├── ARC2_SGAJSONParser.php │ ├── ARC2_SPARQLParser.php │ ├── ARC2_SPARQLPlusParser.php │ ├── ARC2_SPARQLXMLResultParser.php │ ├── ARC2_SPOGParser.php │ ├── ARC2_SemHTMLParser.php │ └── ARC2_TurtleParser.php │ ├── serializers │ ├── ARC2_LegacyHTMLSerializer.php │ ├── ARC2_LegacyJSONSerializer.php │ ├── ARC2_LegacyXMLSerializer.php │ ├── ARC2_MicroRDFSerializer.php │ ├── ARC2_NTriplesSerializer.php │ ├── ARC2_POSHRDFSerializer.php │ ├── ARC2_RDFJSONSerializer.php │ ├── ARC2_RDFSerializer.php │ ├── ARC2_RDFXMLSerializer.php │ ├── ARC2_RSS10Serializer.php │ └── ARC2_TurtleSerializer.php │ ├── sparqlscript │ ├── ARC2_SPARQLScriptParser.php │ └── ARC2_SPARQLScriptProcessor.php │ └── store │ ├── ARC2_MemStore.php │ ├── ARC2_RemoteStore.php │ ├── ARC2_Store.php │ ├── ARC2_StoreAskQueryHandler.php │ ├── ARC2_StoreAtomLoader.php │ ├── ARC2_StoreCBJSONLoader.php │ ├── ARC2_StoreConstructQueryHandler.php │ ├── ARC2_StoreDeleteQueryHandler.php │ ├── ARC2_StoreDescribeQueryHandler.php │ ├── ARC2_StoreDumpQueryHandler.php │ ├── ARC2_StoreDumper.php │ ├── ARC2_StoreEndpoint.php │ ├── ARC2_StoreHelper.php │ ├── ARC2_StoreInsertQueryHandler.php │ ├── ARC2_StoreLoadQueryHandler.php │ ├── ARC2_StoreQueryHandler.php │ ├── ARC2_StoreRDFXMLLoader.php │ ├── ARC2_StoreRSSLoader.php │ ├── ARC2_StoreSGAJSONLoader.php │ ├── ARC2_StoreSPOGLoader.php │ ├── ARC2_StoreSelectQueryHandler.php │ ├── ARC2_StoreSemHTMLLoader.php │ ├── ARC2_StoreTableManager.php │ └── ARC2_StoreTurtleLoader.php ├── namespaces.php ├── root.htaccess └── utils ├── changeNamespaceSparql.php ├── create_db.sh ├── defaults ├── service │ ├── html.template │ └── queries │ │ └── main.query └── type │ ├── html.template │ └── queries │ ├── po.query │ └── sp.query ├── install ├── install-dev ├── install-https ├── link-components.sh ├── lodspk.sh └── modules ├── add-endpoint.php ├── add-namespace.php ├── add-variable.php ├── backup.sh ├── cache.sh ├── change-password.php ├── create-scaffold.sh ├── create-service.sh ├── create-type.sh ├── create-uri.sh ├── debug.php ├── default.php ├── delete-service.sh ├── delete-type.sh ├── delete-uri.sh ├── detail-component.sh ├── disable-module.php ├── enable-module.php ├── getvar.php ├── list-components.sh ├── list-endpoints.php ├── list-modules.php ├── list-namespaces.php ├── remove-endpoint.php ├── remove-namespace.php ├── remove-variable.php ├── restore.sh ├── start-endpoint.sh ├── stop-endpoint.sh ├── test-endpoint.sh ├── update-lodspeakr.sh └── version.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/README.md -------------------------------------------------------------------------------- /beatles.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/beatles.rdf -------------------------------------------------------------------------------- /beatles.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/beatles.ttl -------------------------------------------------------------------------------- /classes/Convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/Convert.php -------------------------------------------------------------------------------- /classes/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/Endpoint.php -------------------------------------------------------------------------------- /classes/Exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/Exporter.php -------------------------------------------------------------------------------- /classes/HTTPStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/HTTPStatus.php -------------------------------------------------------------------------------- /classes/Importer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/Importer.php -------------------------------------------------------------------------------- /classes/Logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/Logging.php -------------------------------------------------------------------------------- /classes/MetaDb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/MetaDb.php -------------------------------------------------------------------------------- /classes/Queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/Queries.php -------------------------------------------------------------------------------- /classes/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/Utils.php -------------------------------------------------------------------------------- /classes/modules/abstractModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/abstractModule.php -------------------------------------------------------------------------------- /classes/modules/adminModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/adminModule.php -------------------------------------------------------------------------------- /classes/modules/exportModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/exportModule.php -------------------------------------------------------------------------------- /classes/modules/redirectModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/redirectModule.php -------------------------------------------------------------------------------- /classes/modules/serviceModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/serviceModule.php -------------------------------------------------------------------------------- /classes/modules/sessionModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/sessionModule.php -------------------------------------------------------------------------------- /classes/modules/sparqlFilterModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/sparqlFilterModule.php -------------------------------------------------------------------------------- /classes/modules/staticModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/staticModule.php -------------------------------------------------------------------------------- /classes/modules/typeModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/typeModule.php -------------------------------------------------------------------------------- /classes/modules/uriModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/classes/modules/uriModule.php -------------------------------------------------------------------------------- /common.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/common.inc.php -------------------------------------------------------------------------------- /default.settings.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/default.settings.inc.php -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/README -------------------------------------------------------------------------------- /doc/examples/components/services/people/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/services/people/html.template -------------------------------------------------------------------------------- /doc/examples/components/services/people/queries/main.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/services/people/queries/main.query -------------------------------------------------------------------------------- /doc/examples/components/services/peopleByName/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/services/peopleByName/html.template -------------------------------------------------------------------------------- /doc/examples/components/services/peopleByName/json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/services/peopleByName/json.template -------------------------------------------------------------------------------- /doc/examples/components/services/peopleByName/queries/main.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/services/peopleByName/queries/main.query -------------------------------------------------------------------------------- /doc/examples/components/types/foaf:Person/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/types/foaf:Person/html.template -------------------------------------------------------------------------------- /doc/examples/components/types/foaf:Person/queries/attendees.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/types/foaf:Person/queries/attendees.query -------------------------------------------------------------------------------- /doc/examples/components/types/foaf:Person/queries/birthplace.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/types/foaf:Person/queries/birthplace.query -------------------------------------------------------------------------------- /doc/examples/components/types/foaf:Person/queries/endpoint.dbpedia/geo.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/types/foaf:Person/queries/endpoint.dbpedia/geo.query -------------------------------------------------------------------------------- /doc/examples/components/types/foaf:Person/queries/main.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/types/foaf:Person/queries/main.query -------------------------------------------------------------------------------- /doc/examples/components/types/foaf:Person/queries/personalDetails.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/components/types/foaf:Person/queries/personalDetails.query -------------------------------------------------------------------------------- /doc/examples/originalComponents/includes/header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/includes/header.inc -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/classes/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/classes/html.template -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/classes/queries/main.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/classes/queries/main.query -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/instances/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/instances/html.template -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/instances/queries/main.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/instances/queries/main.query -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/namedGraphs/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/namedGraphs/html.template -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/namedGraphs/queries/main.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/namedGraphs/queries/main.query -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/search/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/search/html.template -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/search/json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/search/json.template -------------------------------------------------------------------------------- /doc/examples/originalComponents/services/search/queries/main.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/services/search/queries/main.query -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/README.TXT -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/.travis.yml -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/LICENSE -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/README.md -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/activeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/activeline.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/changemode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/changemode.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/closetag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/closetag.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/complete.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/emacs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/emacs.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/folding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/folding.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/formatting.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/fullscreen.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/loadmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/loadmode.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/marker.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/multiplex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/multiplex.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/mustache.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/preview.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/resize.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/runmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/runmode.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/search.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/theme.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/demo/vim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/demo/vim.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/doc/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/doc/baboon.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/doc/compress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/doc/compress.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/doc/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/doc/docs.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/doc/internals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/doc/internals.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/doc/manual.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/doc/oldrelease.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/doc/oldrelease.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/doc/reporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/doc/reporting.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/keymap/emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/keymap/emacs.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/keymap/vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/keymap/vim.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/codemirror.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/codemirror.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/closetag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/closetag.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/dialog.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/dialog.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/foldcode.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/loadmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/loadmode.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/overlay.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/pig-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/pig-hint.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/runmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/runmode.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/search.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/lib/util/xml-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/lib/util/xml-hint.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/clike/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/clike/clike.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/css/css.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/css/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/css/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/css/test.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/diff/diff.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/diff/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/ecl/ecl.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/ecl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/ecl/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/gfm/gfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/gfm/gfm.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/gfm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/gfm/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/gfm/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/gfm/test.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/go/go.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/go/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/haxe/haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/haxe/haxe.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/less/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/less/less.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/lua/lua.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/perl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/perl/LICENSE -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/perl/perl.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/php/php.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/pig/pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/pig/pig.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/r/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/r/LICENSE -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/r/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/rst/rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/rst/rst.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/ruby/LICENSE -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/ruby/ruby.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/rust/rust.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/sieve/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/sieve/LICENSE -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/stex/stex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/stex/stex.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/stex/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/stex/test.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/tiki/tiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/tiki/tiki.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/tiki/tiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/tiki/tiki.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/vb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/vb/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/vb/vb.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/xml/xml.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/mode/yaml/yaml.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/package.json -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/test/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/test/driver.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/test/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/test/lint/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/test/lint/lint.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/test/mode_test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/test/mode_test.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/test/mode_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/test/mode_test.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/test/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/test/run.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/test/test.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/ambiance.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/cobalt.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/eclipse.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/elegant.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/monokai.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/neat.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/night.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/rubyblue.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/codemirror/theme/xq-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/codemirror/theme/xq-dark.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/barchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/barchart.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/circlepacking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/circlepacking.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/columnchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/columnchart.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/dendrogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/dendrogram.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/graph.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/linechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/linechart.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/maps.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/parallelcoordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/parallelcoordinates.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/piechart.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/radar.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/scatter.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/table.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/timeknots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/timeknots.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/img/wordcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/img/wordcloud.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/admin/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/admin/js/editor.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/css/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/css/basic.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/css/bootstrap.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/css/person.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/css/person.css -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/img/lodspeakr_logotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/img/lodspeakr_logotype.png -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/img/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/img/wait.gif -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/bootstrap-typeahead.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/bootstrap.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/d3.layout.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/d3.layout.cloud.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/jquery.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/raphael/g.bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/raphael/g.bar.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/raphael/g.raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/raphael/g.raphael.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/raphael/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/raphael/raphael.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/js/typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/js/typeahead.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/vendor/timeknots/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/vendor/timeknots/LICENSE -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/vendor/timeknots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/vendor/timeknots/README.md -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/vendor/timeknots/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/vendor/timeknots/example/index.html -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/vendor/timeknots/src/d3.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/vendor/timeknots/src/d3.license -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/vendor/timeknots/src/d3.v2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/vendor/timeknots/src/d3.v2.min.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/static/vendor/timeknots/src/timeknots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/static/vendor/timeknots/src/timeknots.js -------------------------------------------------------------------------------- /doc/examples/originalComponents/types/rdfs__Resource/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/types/rdfs__Resource/html.template -------------------------------------------------------------------------------- /doc/examples/originalComponents/types/rdfs__Resource/queries/po.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/types/rdfs__Resource/queries/po.query -------------------------------------------------------------------------------- /doc/examples/originalComponents/types/rdfs__Resource/queries/sp.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/examples/originalComponents/types/rdfs__Resource/queries/sp.query -------------------------------------------------------------------------------- /doc/img/303redirection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/doc/img/303redirection.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/index.php -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/install.sh -------------------------------------------------------------------------------- /lib/Haanga/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/LICENSE -------------------------------------------------------------------------------- /lib/Haanga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/Makefile -------------------------------------------------------------------------------- /lib/Haanga/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/README -------------------------------------------------------------------------------- /lib/Haanga/contrib/dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/contrib/dummy.php -------------------------------------------------------------------------------- /lib/Haanga/contrib/meneame_pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/contrib/meneame_pagination.php -------------------------------------------------------------------------------- /lib/Haanga/examples/complex/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/complex/base.html -------------------------------------------------------------------------------- /lib/Haanga/examples/complex/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/complex/include.html -------------------------------------------------------------------------------- /lib/Haanga/examples/complex/index-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/complex/index-test.html -------------------------------------------------------------------------------- /lib/Haanga/examples/complex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/complex/index.html -------------------------------------------------------------------------------- /lib/Haanga/examples/complex/subtemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/complex/subtemplate.html -------------------------------------------------------------------------------- /lib/Haanga/examples/django-yui-layout-templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/django-yui-layout-templates/README -------------------------------------------------------------------------------- /lib/Haanga/examples/django-yui-layout-templates/layout_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/django-yui-layout-templates/layout_base.html -------------------------------------------------------------------------------- /lib/Haanga/examples/django-yui-layout-templates/layout_overrides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/django-yui-layout-templates/layout_overrides.html -------------------------------------------------------------------------------- /lib/Haanga/examples/django-yui-layout-templates/shared/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/django-yui-layout-templates/shared/footer.html -------------------------------------------------------------------------------- /lib/Haanga/examples/django-yui-layout-templates/shared/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/examples/django-yui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/django-yui.php -------------------------------------------------------------------------------- /lib/Haanga/examples/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/index.php -------------------------------------------------------------------------------- /lib/Haanga/examples/inheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/inheritance.php -------------------------------------------------------------------------------- /lib/Haanga/examples/inheritance/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/inheritance/layout.html -------------------------------------------------------------------------------- /lib/Haanga/examples/inheritance/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/inheritance/page.html -------------------------------------------------------------------------------- /lib/Haanga/examples/inheritance/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/inheritance/section.html -------------------------------------------------------------------------------- /lib/Haanga/examples/inheritance/shared/about.html: -------------------------------------------------------------------------------- 1 | included file -------------------------------------------------------------------------------- /lib/Haanga/examples/template_runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/examples/template_runtime.php -------------------------------------------------------------------------------- /lib/Haanga/examples/tmp/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/haanga-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/haanga-cli.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/AST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/AST.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Compiler.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Compiler/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Compiler/Exception.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Compiler/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Compiler/Parser.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Compiler/Parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Compiler/Parser.y -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Compiler/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Compiler/Runtime.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Compiler/Tokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Compiler/Tokenizer.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Exception.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Alert.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Capfirst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Capfirst.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Count.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Cut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Cut.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/D3circlepacking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/D3circlepacking.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/D3dendrogram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/D3dendrogram.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/D3forcegraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/D3forcegraph.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/D3linechart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/D3linechart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/D3parallelcoordinates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/D3parallelcoordinates.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/D3radarchart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/D3radarchart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/D3stackedcolumnchart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/D3stackedcolumnchart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/D3wordcloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/D3wordcloud.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Date.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Default.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Deurifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Deurifier.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Dictsort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Dictsort.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Empty.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Escape.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Exists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Exists.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Explode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Explode.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Googlemaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Googlemaps.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Googlevizannotatedtimeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Googlevizannotatedtimeline.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Googlevizbarchart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Googlevizbarchart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Googlevizcolumnchart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Googlevizcolumnchart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Googlevizlinechart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Googlevizlinechart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Googlevizpiechart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Googlevizpiechart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Googlevizscatterchart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Googlevizscatterchart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Googleviztable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Googleviztable.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Hostname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Hostname.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Intval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Intval.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Isarray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Isarray.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Join.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Leafletmaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Leafletmaps.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Length.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Lower.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Null.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Pluralize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Pluralize.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Pop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Pop.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Raphaeltimeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Raphaeltimeline.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Reverse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Reverse.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Safe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Safe.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Slugify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Slugify.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Stringformat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Stringformat.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Strlen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Strlen.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Substr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Substr.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Timeknot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Timeknot.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Title.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Trans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Trans.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Translation.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Trim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Trim.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Truncatechars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Truncatechars.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Truncatewords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Truncatewords.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Upper.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Urifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Urifier.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Urifragment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Urifragment.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Uripath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Uripath.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Urischeme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Urischeme.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Urldecode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Urldecode.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/Urlencode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/Urlencode.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Filter/gRaphaelBarChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Filter/gRaphaelBarChart.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Buffer.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Currenttime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Currenttime.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Cycle.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Dictsort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Dictsort.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Escape.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Exec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Exec.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Firstof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Firstof.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Inline.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Lower.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Min.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Min.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Setsafe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Setsafe.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Spaceless.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Spaceless.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Templatetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Templatetag.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Trans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Trans.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Tryinclude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Tryinclude.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Extension/Tag/Upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Extension/Tag/Upper.php -------------------------------------------------------------------------------- /lib/Haanga/lib/Haanga/Generator/PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/lib/Haanga/Generator/PHP.php -------------------------------------------------------------------------------- /lib/Haanga/tests/TestSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/TestSuite.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/autoescape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/autoescape.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/autoescape.php: -------------------------------------------------------------------------------- 1 | 'foo'); 4 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/autoescape.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/autoescape.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/base.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/base.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/base.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/bitwise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/bitwise.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/bitwise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/bitwise.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/bug_#14.html: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/bug_#14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/bug_#14.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/bug_#14.tpl: -------------------------------------------------------------------------------- 1 | {{ endsomething.endbar }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/bug_001.html: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/bug_001.php: -------------------------------------------------------------------------------- 1 | 1); 3 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/bug_001.tpl: -------------------------------------------------------------------------------- 1 | {{ date_end }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/class_static.html: -------------------------------------------------------------------------------- 1 | haanga 2 | foo 3 | Foo 4 | 5 | something 6 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/class_static.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/class_static.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/concat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | foobarbar 4 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/concat.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/concat.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/concat1.html: -------------------------------------------------------------------------------- 1 | 2 | Match 3 | 4 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/concat1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/concat1.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/custom_tag.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/custom_tag.html.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/custom_tag.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/custom_tag.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/cycle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/cycle.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/cycle.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/cycle.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/cycle.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/dummy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | testing dummy tag 4 | 5 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/dummy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/dummy.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/empty_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/empty_block.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/empty_block.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/empty_block.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/empty_block_base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/empty_block_base.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/empty_loop.html: -------------------------------------------------------------------------------- 1 | 2 | Else 3 | 4 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/empty_loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/empty_loop.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/empty_loop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/empty_loop.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/exec-inc.tpl: -------------------------------------------------------------------------------- 1 | {{ foo }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/exec.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/exec.html.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/exec.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/exec.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/expr.html: -------------------------------------------------------------------------------- 1 | 2 | hola 3 | 4 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/expr.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/expr.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/expr.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/filter.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/filter.php: -------------------------------------------------------------------------------- 1 | 'value'); 3 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/filter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/filter.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/first_of.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/first_of.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/first_of.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/first_of.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/first_of.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/first_of.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range1.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range1.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range2.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range2.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range3.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range3.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range4.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range4.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range4.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range4.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range5.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range5.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/for_range5.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/for_range5.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/foreach_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/foreach_vars.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/foreach_vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/foreach_vars.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/foreach_vars.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/foreach_vars.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/global.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/global.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/global.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/global.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/if_else_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/if_else_simple.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/if_else_simple.php: -------------------------------------------------------------------------------- 1 | 'cesar'); 4 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/if_else_simple.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/if_else_simple.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/ifchanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/ifchanged.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/ifchanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/ifchanged.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/ifchanged.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/ifchanged.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/ifequals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/ifequals.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/ifequals.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/ifequals.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/in.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/in.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/in.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/in.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/inheritence_nested_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/inheritence_nested_block.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/inheritence_nested_block.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/inheritence_nested_block.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/inheritence_nested_block_duplicated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/inheritence_nested_block_duplicated.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/inheritence_nested_block_duplicated.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/inheritence_nested_block_duplicated.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/inline.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/inline.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/inline.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/inline_buffer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/inline_buffer.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/intval.html: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/intval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/intval.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/intval.tpl: -------------------------------------------------------------------------------- 1 | {{ float|intval }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/is_array.html: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/is_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/is_array.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/is_array.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/is_array.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/join.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/join.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/join.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/join.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/load.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/load.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/load.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/load.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/locale/es_ES/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/locale/es_ES/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/locale/es_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/locale/es_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/loop.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/loop.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/loop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/loop.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/loop_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/loop_object.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/loop_object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/loop_object.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/loop_object.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/loop_object.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/method.html: -------------------------------------------------------------------------------- 1 | foo 2 | FOO 3 | bar 4 | BAR 5 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/method.php: -------------------------------------------------------------------------------- 1 | new Foo_Bar, 5 | ); 6 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/method.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/method.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/nested_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/nested_block.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/nested_block.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/nested_block.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/nested_block_second_parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/nested_block_second_parent.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/nested_block_second_parent.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/nested_block_second_parent.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/nested_block_second_parent_override.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/nested_block_second_parent_override.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/nested_block_second_parent_override.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/nested_block_second_parent_override.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/null.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/null.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/null.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/null.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/null.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/object.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/object.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/object.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/object.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/partial.tpl: -------------------------------------------------------------------------------- 1 | Partial part 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/pluralize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/pluralize.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/pluralize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/pluralize.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/pluralize.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/pluralize.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/regroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/regroup.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/regroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/regroup.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/regroup.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/regroup.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/set.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 4 | testing 5 | 6 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/set.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/set.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/spaceless.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/spaceless.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/spaceless.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/spaceless.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/strip_whitespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/strip_whitespace.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/strip_whitespace.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/strip_whitespace.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/sub_set.tpl: -------------------------------------------------------------------------------- 1 | {{ bar }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/subtemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/subtemplate.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/subtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/subtemplate.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/subtemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/subtemplate.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/templatetag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/templatetag.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/templatetag.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/templatetag.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/title.html: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/title.php: -------------------------------------------------------------------------------- 1 | 'HELLO wOrld'); 4 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/title.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/title.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/trans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/trans.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/trans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/trans.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/trans.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/trans.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/truncatewords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/truncatewords.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/truncatewords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/truncatewords.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/truncatewords.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/truncatewords.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/try_include.html: -------------------------------------------------------------------------------- 1 | 2 | Partial part 3 | 4 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/try_include.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/try_include.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/variable_existe.html: -------------------------------------------------------------------------------- 1 | No 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/variable_existe.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/variable_existe.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/with.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/with.html -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/with.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/with.php -------------------------------------------------------------------------------- /lib/Haanga/tests/assert_templates/with.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/assert_templates/with.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/block.tpl: -------------------------------------------------------------------------------- 1 | {{ block.super }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/block_nonparent.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/block_nonparent.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/block_super.tpl: -------------------------------------------------------------------------------- 1 | {{ block.super }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/block_super_filter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/block_super_filter.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/block_super_nonsubtemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/block_super_nonsubtemplate.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/dictsort.tpl: -------------------------------------------------------------------------------- 1 | {% dictsort foo "bar" %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/dictsort1.tpl: -------------------------------------------------------------------------------- 1 | {% dictsort "foo" "bar" as bar %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/dictsort2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/dictsort2.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_block.tpl: -------------------------------------------------------------------------------- 1 | {{ block.super }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_block_nonparent.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_block_nonparent.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_block_super.tpl: -------------------------------------------------------------------------------- 1 | {{ block.super }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_block_super_filter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_block_super_filter.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_block_super_nonsubtemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_block_super_nonsubtemplate.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_dictsort.tpl: -------------------------------------------------------------------------------- 1 | {% dictsort foo "bar" %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_dictsort1.tpl: -------------------------------------------------------------------------------- 1 | {% dictsort "foo" "bar" as bar %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_dictsort2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_dictsort2.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_forloop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_forloop.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_forloop1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_forloop1.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_ifchanged.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_ifchanged.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_invalid_blockname.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_invalid_blockname.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_invalid_tryinclude.tpl: -------------------------------------------------------------------------------- 1 | {% try_include "foobar.tpl" as foo %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_load1.tpl: -------------------------------------------------------------------------------- 1 | {% load "foobar.html" %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_load2.tpl: -------------------------------------------------------------------------------- 1 | {% load "../tests.sh" %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_loop_varname.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/err_loop_varname.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_pluralize.tpl: -------------------------------------------------------------------------------- 1 | {{ var|pluralize:bar}} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_reverse.tpl: -------------------------------------------------------------------------------- 1 | {{ foo|reverse:"bar"}} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_templatetag1.tpl: -------------------------------------------------------------------------------- 1 | {% templatetag invalid.name %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_templatetag2.tpl: -------------------------------------------------------------------------------- 1 | {% templatetag invalid args count %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_templatetag3.tpl: -------------------------------------------------------------------------------- 1 | {% templatetag unknown_arg %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/err_title.tpl: -------------------------------------------------------------------------------- 1 | {{ foo|title:"another useless param"}} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/exec_notallowed.tpl: -------------------------------------------------------------------------------- 1 | {% exec date %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/forloop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/forloop.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/forloop1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/forloop1.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/ifchanged.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/ifchanged.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/inline1.tpl: -------------------------------------------------------------------------------- 1 | {% inline "inexistent.tpl" %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/inline2.tpl: -------------------------------------------------------------------------------- 1 | {% inline "assert_templates/partial.tpl" as foobar %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/inline3.tpl: -------------------------------------------------------------------------------- 1 | {% inline foobar %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/inline4.tpl: -------------------------------------------------------------------------------- 1 | {% inline foo bar %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/inline5.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/inline5.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/invalid_blockname.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/invalid_blockname.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/loop_varname.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/loop_varname.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/pluralize.tpl: -------------------------------------------------------------------------------- 1 | {{ var|pluralize:bar}} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/reverse.tpl: -------------------------------------------------------------------------------- 1 | {{ foo|reverse:"bar"}} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/templatetag1.tpl: -------------------------------------------------------------------------------- 1 | {% templatetag invalid.name %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/templatetag2.tpl: -------------------------------------------------------------------------------- 1 | {% templatetag invalid args count %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/templatetag3.tpl: -------------------------------------------------------------------------------- 1 | {% templatetag unknown_arg %} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/title.tpl: -------------------------------------------------------------------------------- 1 | {{ foo|title:"another useless param"}} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/tokenizer_1.tpl: -------------------------------------------------------------------------------- 1 | {{ foobar 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/tokenizer_2.tpl: -------------------------------------------------------------------------------- 1 | {{ 9foo }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/tokenizer_3.tpl: -------------------------------------------------------------------------------- 1 | {{ 5.9.9 }} 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/tokenizer_4.tpl: -------------------------------------------------------------------------------- 1 | {# comment and no end :P 2 | -------------------------------------------------------------------------------- /lib/Haanga/tests/err_templates/tokenizer_5.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/err_templates/tokenizer_5.tpl -------------------------------------------------------------------------------- /lib/Haanga/tests/errorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/errorTest.php -------------------------------------------------------------------------------- /lib/Haanga/tests/templateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/templateTest.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/autoescape.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/autoescape.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/autoescape.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/autoescape.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/base.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/base.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/base.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/base.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/bitwise.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/bitwise.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/bitwise.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/bitwise.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/bug_001.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/bug_001.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/bug_001.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/bug_001.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/class_static.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/class_static.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/class_static.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/class_static.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/concat.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/concat.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/concat.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/concat.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/concat1.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/concat1.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/concat1.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/concat1.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/custom_tag.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/custom_tag.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/custom_tag.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/custom_tag.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/cycle.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/cycle.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/cycle.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/cycle.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/dummy.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/dummy.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/dummy.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/dummy.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/empty_block.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/empty_block.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/empty_block.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/empty_block.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/empty_block_base.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/empty_block_base.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/empty_block_base.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/empty_block_base.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/empty_loop.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/empty_loop.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/empty_loop.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/empty_loop.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/exec.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/exec.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/exec.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/exec.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/filter.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/filter.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/filter.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/filter.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/first_of.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/first_of.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/first_of.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/first_of.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range1.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range1.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range1.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range1.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range2.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range2.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range2.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range2.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range3.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range3.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range3.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range3.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range4.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range4.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range4.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range4.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range5.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range5.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/for_range5.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/for_range5.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/foreach_vars.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/foreach_vars.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/foreach_vars.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/foreach_vars.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/global.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/global.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/global.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/global.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/if_else_simple.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/if_else_simple.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/if_else_simple.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/if_else_simple.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/ifchanged.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/ifchanged.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/ifchanged.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/ifchanged.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/ifequals.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/ifequals.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/ifequals.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/ifequals.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/in.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/in.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/in.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/in.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/inheritence_nested_block.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/inheritence_nested_block.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/inline.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/inline.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/inline.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/inline.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/intval.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/intval.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/intval.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/intval.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/join.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/join.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/join.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/join.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/load.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/load.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/load.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/load.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/loop.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/loop.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/loop.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/loop.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/loop_object.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/loop_object.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/loop_object.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/loop_object.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/method.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/method.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/method.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/method.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/nested_block.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/nested_block.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/nested_block.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/nested_block.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/nested_block_second_parent.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/nested_block_second_parent.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/object.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/object.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/object.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/object.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/partial.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/partial.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/partial.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/partial.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/pluralize.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/pluralize.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/pluralize.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/pluralize.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/regroup.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/regroup.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/regroup.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/regroup.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/set.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/set.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/set.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/set.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/spaceless.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/spaceless.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/spaceless.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/spaceless.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/strip_whitespace.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/strip_whitespace.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/strip_whitespace.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/strip_whitespace.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/sub_set.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/sub_set.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/sub_set.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/sub_set.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/subtemplate.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/subtemplate.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/subtemplate.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/subtemplate.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/templatetag.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/templatetag.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/templatetag.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/templatetag.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/title.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/title.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/title.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/title.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/trans.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/trans.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/trans.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/trans.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/truncatewords.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/truncatewords.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/truncatewords.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/truncatewords.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/try_include.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/try_include.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/try_include.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/try_include.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/variable_existe.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/variable_existe.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/variable_existe.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/variable_existe.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/with.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/with.tpl.php -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/assert_templates/with.tpl.php.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/Haanga/tests/tmp/assert_templates/with.tpl.php.dump -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/block.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/block_nonparent.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/block_super.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/block_super_filter.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/block_super_nonsubtemplate.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/dictsort.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/dictsort1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/dictsort2.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_block.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_block_nonparent.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_block_super.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_block_super_filter.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_block_super_nonsubtemplate.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_dictsort.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_dictsort1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_dictsort2.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_forloop.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_forloop1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_ifchanged.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_invalid_blockname.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_invalid_tryinclude.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_load1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_load2.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_loop_varname.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_pluralize.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_reverse.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_templatetag1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_templatetag2.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_templatetag3.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/err_title.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/exec_notallowed.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/forloop.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/forloop1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/ifchanged.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/inline1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/inline2.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/inline3.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/inline4.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/inline5.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/invalid_blockname.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/loop_varname.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/pluralize.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/reverse.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/templatetag1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/templatetag2.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/templatetag3.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/title.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/tokenizer_1.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/tokenizer_2.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/tokenizer_3.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/tokenizer_4.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Haanga/tests/tmp/err_templates/tokenizer_5.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/arc2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/.gitignore -------------------------------------------------------------------------------- /lib/arc2/ARC2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/ARC2.php -------------------------------------------------------------------------------- /lib/arc2/ARC2_Class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/ARC2_Class.php -------------------------------------------------------------------------------- /lib/arc2/ARC2_Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/ARC2_Reader.php -------------------------------------------------------------------------------- /lib/arc2/ARC2_Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/ARC2_Resource.php -------------------------------------------------------------------------------- /lib/arc2/ARC2_TestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/ARC2_TestHandler.php -------------------------------------------------------------------------------- /lib/arc2/ARC2_getFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/ARC2_getFormat.php -------------------------------------------------------------------------------- /lib/arc2/ARC2_getPreferredFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/ARC2_getPreferredFormat.php -------------------------------------------------------------------------------- /lib/arc2/extractors/ARC2_DcExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/extractors/ARC2_DcExtractor.php -------------------------------------------------------------------------------- /lib/arc2/extractors/ARC2_ErdfExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/extractors/ARC2_ErdfExtractor.php -------------------------------------------------------------------------------- /lib/arc2/extractors/ARC2_MicroformatsExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/extractors/ARC2_MicroformatsExtractor.php -------------------------------------------------------------------------------- /lib/arc2/extractors/ARC2_OpenidExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/extractors/ARC2_OpenidExtractor.php -------------------------------------------------------------------------------- /lib/arc2/extractors/ARC2_PoshRdfExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/extractors/ARC2_PoshRdfExtractor.php -------------------------------------------------------------------------------- /lib/arc2/extractors/ARC2_RDFExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/extractors/ARC2_RDFExtractor.php -------------------------------------------------------------------------------- /lib/arc2/extractors/ARC2_RdfaExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/extractors/ARC2_RdfaExtractor.php -------------------------------------------------------------------------------- /lib/arc2/extractors/ARC2_TwitterProfilePicExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/extractors/ARC2_TwitterProfilePicExtractor.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_AtomParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_AtomParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_CBJSONParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_CBJSONParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_JSONParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_JSONParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_LegacyXMLParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_LegacyXMLParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_RDFParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_RDFParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_RDFXMLParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_RDFXMLParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_RSSParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_RSSParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_SGAJSONParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_SGAJSONParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_SPARQLParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_SPARQLParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_SPARQLPlusParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_SPARQLPlusParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_SPARQLXMLResultParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_SPARQLXMLResultParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_SPOGParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_SPOGParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_SemHTMLParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_SemHTMLParser.php -------------------------------------------------------------------------------- /lib/arc2/parsers/ARC2_TurtleParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/parsers/ARC2_TurtleParser.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_LegacyHTMLSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_LegacyHTMLSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_LegacyJSONSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_LegacyJSONSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_LegacyXMLSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_LegacyXMLSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_MicroRDFSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_MicroRDFSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_NTriplesSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_NTriplesSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_POSHRDFSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_POSHRDFSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_RDFJSONSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_RDFJSONSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_RDFSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_RDFSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_RDFXMLSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_RDFXMLSerializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_RSS10Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_RSS10Serializer.php -------------------------------------------------------------------------------- /lib/arc2/serializers/ARC2_TurtleSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/serializers/ARC2_TurtleSerializer.php -------------------------------------------------------------------------------- /lib/arc2/sparqlscript/ARC2_SPARQLScriptParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/sparqlscript/ARC2_SPARQLScriptParser.php -------------------------------------------------------------------------------- /lib/arc2/sparqlscript/ARC2_SPARQLScriptProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/sparqlscript/ARC2_SPARQLScriptProcessor.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_MemStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_MemStore.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_RemoteStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_RemoteStore.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_Store.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreAskQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreAskQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreAtomLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreAtomLoader.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreCBJSONLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreCBJSONLoader.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreConstructQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreConstructQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreDeleteQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreDeleteQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreDescribeQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreDescribeQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreDumpQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreDumpQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreDumper.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreEndpoint.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreHelper.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreInsertQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreInsertQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreLoadQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreLoadQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreRDFXMLLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreRDFXMLLoader.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreRSSLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreRSSLoader.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreSGAJSONLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreSGAJSONLoader.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreSPOGLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreSPOGLoader.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreSelectQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreSelectQueryHandler.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreSemHTMLLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreSemHTMLLoader.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreTableManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreTableManager.php -------------------------------------------------------------------------------- /lib/arc2/store/ARC2_StoreTurtleLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/lib/arc2/store/ARC2_StoreTurtleLoader.php -------------------------------------------------------------------------------- /namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/namespaces.php -------------------------------------------------------------------------------- /root.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/root.htaccess -------------------------------------------------------------------------------- /utils/changeNamespaceSparql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/changeNamespaceSparql.php -------------------------------------------------------------------------------- /utils/create_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/create_db.sh -------------------------------------------------------------------------------- /utils/defaults/service/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/defaults/service/html.template -------------------------------------------------------------------------------- /utils/defaults/service/queries/main.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/defaults/service/queries/main.query -------------------------------------------------------------------------------- /utils/defaults/type/html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/defaults/type/html.template -------------------------------------------------------------------------------- /utils/defaults/type/queries/po.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/defaults/type/queries/po.query -------------------------------------------------------------------------------- /utils/defaults/type/queries/sp.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/defaults/type/queries/sp.query -------------------------------------------------------------------------------- /utils/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/install -------------------------------------------------------------------------------- /utils/install-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/install-dev -------------------------------------------------------------------------------- /utils/install-https: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/install-https -------------------------------------------------------------------------------- /utils/link-components.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/link-components.sh -------------------------------------------------------------------------------- /utils/lodspk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/lodspk.sh -------------------------------------------------------------------------------- /utils/modules/add-endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/add-endpoint.php -------------------------------------------------------------------------------- /utils/modules/add-namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/add-namespace.php -------------------------------------------------------------------------------- /utils/modules/add-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/add-variable.php -------------------------------------------------------------------------------- /utils/modules/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/backup.sh -------------------------------------------------------------------------------- /utils/modules/cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/cache.sh -------------------------------------------------------------------------------- /utils/modules/change-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/change-password.php -------------------------------------------------------------------------------- /utils/modules/create-scaffold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/create-scaffold.sh -------------------------------------------------------------------------------- /utils/modules/create-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/create-service.sh -------------------------------------------------------------------------------- /utils/modules/create-type.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/create-type.sh -------------------------------------------------------------------------------- /utils/modules/create-uri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/create-uri.sh -------------------------------------------------------------------------------- /utils/modules/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/debug.php -------------------------------------------------------------------------------- /utils/modules/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/default.php -------------------------------------------------------------------------------- /utils/modules/delete-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/delete-service.sh -------------------------------------------------------------------------------- /utils/modules/delete-type.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/delete-type.sh -------------------------------------------------------------------------------- /utils/modules/delete-uri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/delete-uri.sh -------------------------------------------------------------------------------- /utils/modules/detail-component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/detail-component.sh -------------------------------------------------------------------------------- /utils/modules/disable-module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/disable-module.php -------------------------------------------------------------------------------- /utils/modules/enable-module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/enable-module.php -------------------------------------------------------------------------------- /utils/modules/getvar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/getvar.php -------------------------------------------------------------------------------- /utils/modules/list-components.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/list-components.sh -------------------------------------------------------------------------------- /utils/modules/list-endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/list-endpoints.php -------------------------------------------------------------------------------- /utils/modules/list-modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/list-modules.php -------------------------------------------------------------------------------- /utils/modules/list-namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/list-namespaces.php -------------------------------------------------------------------------------- /utils/modules/remove-endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/remove-endpoint.php -------------------------------------------------------------------------------- /utils/modules/remove-namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/remove-namespace.php -------------------------------------------------------------------------------- /utils/modules/remove-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/remove-variable.php -------------------------------------------------------------------------------- /utils/modules/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/restore.sh -------------------------------------------------------------------------------- /utils/modules/start-endpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/start-endpoint.sh -------------------------------------------------------------------------------- /utils/modules/stop-endpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/stop-endpoint.sh -------------------------------------------------------------------------------- /utils/modules/test-endpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/test-endpoint.sh -------------------------------------------------------------------------------- /utils/modules/update-lodspeakr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/update-lodspeakr.sh -------------------------------------------------------------------------------- /utils/modules/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alangrafu/lodspeakr/HEAD/utils/modules/version.sh --------------------------------------------------------------------------------