Skip to content
Snippets Groups Projects
Commit 76766736 authored by alangrafu's avatar alangrafu
Browse files

Changing import entry point to URL/import

Also, moving script as a class to 'classes'
fixing bug in Utils
creating static dir
parent 20e0c37b
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
......@@ -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){
......
<?
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);
}
......
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.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment