RDF demo servlet

pull/1/head
cominch 13 years ago committed by Michael Peter Christen
parent 5f8ba7f4f2
commit a120ef660b

@ -0,0 +1,48 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>YaCy '#[clientname]#': Demo-Servlet</title>
<script type="text/javascript" src="js/html.js"></script>
<script src="/yacy/ui/js/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="/currentyacypeer/js/rdf/jquery.rdfquery.core-1.0.js" type="text/javascript"></script>
<!-- This element contains the jQuery libraries and interaction routines -->
#%env/templates/metas.template%#
</head>
<body id="index">
<div>
Global RDF content:
</div>
<div id="rdfxml" name="rdfxml">
here comes the rdf data
</div>
<script type="text/javascript" charset="utf-8">
var rdf = $.rdf();
var databank = jQuery.rdf.databank();
rdfload (databank);
$('#rdfxml').html($.rdf().databank.dump());
</script>
</body>
</html>

@ -0,0 +1,48 @@
import net.yacy.yacy;
import net.yacy.cora.protocol.RequestHeader;
import de.anomic.data.BookmarkHelper;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
public final class DemoServletRDF {
public static serverObjects respond(final RequestHeader header,
final serverObjects post, final serverSwitch env) {
// return variable that accumulates replacements
final serverObjects prop = new serverObjects();
// prop.put("temperature", "-10°C");
if (post != null) {
if (post.containsKey("submit")) {
prop.put("temperature", post.get("textthing"));
String filename= post.get("textthing");
// prop.put("imglink", filename+".jpg");
int counter = 0;
while (counter < 10) {
prop.put("localimg_"+counter+"_path","/"+filename);
prop.put("localimg_"+counter+"_checked", "2");
counter++;
}
prop.put("localimg", counter);
// prop.put("temperature",yacy.homedir+"/DATA/HTDOCS/"+filename);
}
}
// return rewrite properties
return prop;
}
}

@ -0,0 +1,104 @@
package interaction;
//ViewLog_p.java
//-----------------------
//part of the AnomicHTTPD caching proxy
//(C) by Michael Peter Christen; mc@yacy.net
//first published on http://www.anomic.de
//Frankfurt, Germany, 2004
//
//This File is contributed by Alexander Schier
//last major change: 14.12.2004
//
//This program is free software; you can redistribute it and/or modify
//it under the terms of the GNU General Public License as published by
//the Free Software Foundation; either version 2 of the License, or
//(at your option) any later version.
//
//This program is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with this program; if not, write to the Free Software
//Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//You must compile this file with
//javac -classpath .:../classes ViewLog_p.java
//if the shell's current path is HTROOT
import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import com.hp.hpl.jena.rdf.model.Model;
import net.yacy.cora.protocol.HeaderFramework;
import net.yacy.cora.protocol.RequestHeader;
import net.yacy.interaction.Interaction;
import net.yacy.interaction.TripleStore;
import net.yacy.kelondro.logging.Log;
import net.yacy.search.Switchboard;
import de.anomic.data.UserDB;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
public class PutRDF {
public static serverObjects respond(final RequestHeader header, final serverObjects post, final serverSwitch env) {
final Switchboard sb = (Switchboard) env;
final serverObjects prop = new serverObjects();
String url = "";
String s = "";
String p = "";
String o = "";
Boolean global = false;
if(post != null){
global = post.containsKey("global");
}
if (global) {
ByteArrayOutputStream fout;
fout = new ByteArrayOutputStream();
TripleStore.model.write(fout);
prop.put("resultXML", fout.toString());
} else {
Model tmp = TripleStore.privatestorage.get(Interaction.GetLoggedOnUser(header));
if (tmp != null) {
ByteArrayOutputStream fout;
fout = new ByteArrayOutputStream();
tmp.write(fout);
prop.put("resultXML", fout.toString());
} else {
prop.put("resultXML", "");
}
}
return prop;
}
}

@ -0,0 +1,3 @@
{
"result": "#[result]#"
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save