From 76766736aae5e3ca2a7a9508437ce9a5a5f24aca Mon Sep 17 00:00:00 2001 From: alangrafu <alvaro@graves.cl> Date: Sun, 6 Nov 2011 23:14:41 -0800 Subject: [PATCH] Changing import entry point to URL/import Also, moving script as a class to 'classes' fixing bug in Utils creating static dir --- classes/Exporter.php | 4 +++- classes/Utils.php | 6 +++++- index.php | 11 ++++++++++- static/README.TXT | 3 +++ 4 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 static/README.TXT diff --git a/classes/Exporter.php b/classes/Exporter.php index 8dc07816..0899a857 100644 --- a/classes/Exporter.php +++ b/classes/Exporter.php @@ -382,7 +382,9 @@ class Exporter{ //break; } - + echo "#You can copy and paste the following data into a new\n"; + echo "#LODSPeaKr instance at http://exampleofinstance.org/benegesserit.php\n\n\n"; + echo "#As a side note: this is a turtle document but is served as text/plain to make it easier to copy&paste echo $ser->getSerializedTriples($triples); } diff --git a/classes/Utils.php b/classes/Utils.php index 9e9685ed..321057c4 100644 --- a/classes/Utils.php +++ b/classes/Utils.php @@ -49,7 +49,11 @@ class Utils{ if(preg_match('|^//|', $parts[1])){ return $curie; } - return $ns[$parts[0]].$parts[1]; + if(sizeof($parts)>1 && isset($ns[$parts[0]])){ + return $ns[$parts[0]].$parts[1]; + }else{ + return $curie; + } } public static function getPrefix($curie){ diff --git a/index.php b/index.php index 962cd99a..43b9204e 100755 --- a/index.php +++ b/index.php @@ -1,4 +1,12 @@ <? + +if($_GET['q'] == 'import'){ + include_once('classes/Importer.php'); + $imp = new Importer(); + $imp->run(); + exit(0); +} + include_once('common.inc.php'); if($conf['debug']){ error_reporting(E_ALL); @@ -10,6 +18,7 @@ if(!file_exists('settings.inc.php')){ exit(0); } + include_once('classes/Utils.php'); include_once('classes/Queries.php'); include_once('classes/Endpoint.php'); @@ -32,7 +41,7 @@ if($_GET['q'] == 'export'){ include_once('settings.inc.php'); include_once('classes/Exporter.php'); $exp = new Exporter(); - header('Content-Type: text/turtle'); + header('Content-Type: text/plain'); $exp->run(); exit(0); } diff --git a/static/README.TXT b/static/README.TXT new file mode 100644 index 00000000..7791f577 --- /dev/null +++ b/static/README.TXT @@ -0,0 +1,3 @@ +This folder can be used to store static documents, such as HTML pages, CSS files and JS code. LODSPeaKr doesn't force you to use it, however, it is considered a good practice to have everything under static/ and not disperse everywhere. + +A second benefit is that it will allow other people to reuse your static pages if you decide to export the code. LODSPeaKr will only look on static/ models/ and views/ directories. -- GitLab