CfP: ACM RecSys 2011 International Workshop on Information Heterogeneity and Fusion in Recommender Systems (HetRec 2011)

2011-05-06 Thread Iván Cantador
[Apologies if you receive this more than once] Call for Papers 2nd International Workshop on Information Heterogeneity and Fusion in Recommender Systems (HetRec 2011) 23rd or 27th October 2011 | Chicago, IL, USA

create HTML based on RDF?

2011-05-06 Thread Frans Knibbe
Hello, I am continuing my efforts with publishing Linked Data. I am trying to that step by step. I have now managed to publish data in static RDF files. Also, I have managed to configure my web server to do 303 redirection, returning either a HTML file or the RDF file, depending on the

Re: create HTML based on RDF?

2011-05-06 Thread Alexander De Leon
Hi Frans, You can use Pubby[1] to generate an HTML front end for your data. Take a look at the conf:loadRDF configuration property. [1] http://www4.wiwiss.fu-berlin.de/pubby/ Cheers, Alex On 06/05/2011, at 13:02, Frans Knibbe wrote: Hello, I am continuing my efforts with publishing

Re: create HTML based on RDF?

2011-05-06 Thread Kingsley Idehen
On 5/6/11 7:02 AM, Frans Knibbe wrote: Hello, I am continuing my efforts with publishing Linked Data. I am trying to that step by step. I have now managed to publish data in static RDF files. Also, I have managed to configure my web server to do 303 redirection, returning either a HTML file

Re: create HTML based on RDF?

2011-05-06 Thread Bob Ferris
Hi Frans, you can try the RDFa serializer plugin [1] of ARC [2] (written in PHP). Albeit, the results do not look really nice by this basis serialization. Generally, you will need customized templates for specific serialization, e.g., this on of FOAF profiles. You can check the ARC RDFa

Re: create HTML based on RDF?

2011-05-06 Thread Mischa Tuffield
Hi Frans, snip/ On 6 May 2011, at 12:02, Frans Knibbe wrote: Hello, I am continuing my efforts with publishing Linked Data. I am trying to that step by step. I have now managed to publish data in static RDF files. Also, I have managed to configure my web server to do 303 redirection,

Re: create HTML based on RDF?

2011-05-06 Thread Egon Willighagen
Dear Frans, On Fri, May 6, 2011 at 1:02 PM, Frans Knibbe frans.kni...@geodan.nl wrote: I notice that it would be really helpful if I could automatically generate HTML files based on the RDF files. That way I can focus on just keeping the RDF file in good shape. After creating or editing an RDF

Re: create HTML based on RDF?

2011-05-06 Thread David Wood
Hi Frans, The Callimachus Project (http://callimachusproject.org) allows you to load RDF data into a store and then use HTML+RDFa templates to build useful Semantic Web applications quickly and easily. We are working on a visual in-browser editor so you can build apps without leaving the

Re: create HTML based on RDF?

2011-05-06 Thread Egon Willighagen
On Fri, May 6, 2011 at 2:17 PM, Kingsley Idehen kide...@openlinksw.com wrote: On 5/6/11 7:53 AM, Egon Willighagen wrote: A very simple approach is to use standard web software, which everyone has installed already: a normal webbrowser, a normal webserver, RDF/XML, and XSLT. What is a normal

Re: create HTML based on RDF?

2011-05-06 Thread Christopher Gutteridge
May I tout my own work. I have a lightweight PHP library I use for this called Graphite. It is designed to work with small RDF documents (small is thousands of triples not millions!). I needed it to solve problems just like this. It's designed to be quick to work with and quite easy to read

Re: create HTML based on RDF?

2011-05-06 Thread Gregg Kellogg
The Ruby RDF::RDFa serializer [1] allows you to define templates to control the output of the HTML+RDFa generated from an arbitrary RDF graph. I demonstrate this on my rdf portal: [2]. An example serialization of generic content can be seen here [3]. Documentation on the writer is here [4].