You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by en...@apache.org on 2011/04/01 15:01:46 UTC

svn commit: r1087691 [11/13] - in /incubator/stanbol/trunk/reengineer: ./ base/ base/.settings/ base/src/ base/src/main/ base/src/main/java/ base/src/main/java/org/ base/src/main/java/org/apache/ base/src/main/java/org/apache/stanbol/ base/src/main/jav...

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/scripts/tinybox.js
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/scripts/tinybox.js?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/scripts/tinybox.js (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/scripts/tinybox.js Fri Apr  1 13:01:38 2011
@@ -0,0 +1,342 @@
+var TINY={};
+
+function T$(i){return document.getElementById(i)}
+
+TINY.box=function(){
+	var p,m,b,fn,ic,iu,iw,ih,ia,f=0;
+	return{
+		show:function(c,u,w,h,a,t){
+			if(!f){
+				p=document.createElement('div'); p.id='tinybox';
+				m=document.createElement('div'); m.id='tinymask';
+				b=document.createElement('div'); b.id='tinycontent';
+				document.body.appendChild(m); document.body.appendChild(p); p.appendChild(b);
+				m.onclick=TINY.box.hide; window.onresize=TINY.box.resize; f=1
+				var useragent = navigator.userAgent;
+				
+				if(useragent.indexOf('MSIE')> -1){
+					p.style.marginLeft = "50%";
+					p.style.marginTop = "15%";
+					p.style.position = "absolute";
+				}
+				else{
+					p.style.position = "absolute";
+				}
+			}
+			if(!a&&!u){
+				p.style.width=w?w+'px':'auto'; p.style.height=h?h+'px':'auto';
+				p.style.backgroundImage='none'; b.innerHTML=c
+			}else{
+				b.style.display='none'; p.style.width=p.style.height='100px'
+			}
+			this.mask();
+			ic=c; iu=u; iw=w; ih=h; ia=a; this.alpha(m,1,80,3);
+			if(t){setTimeout(function(){TINY.box.hide()},1000*t)}
+		},
+		showS:function(c,u,w,h,a,t){
+			if(!f){
+				p=document.createElement('div'); p.id='tinybox';
+				m=document.createElement('div'); m.id='tinymask';
+				document.body.appendChild(m); document.body.appendChild(p);
+				m.onclick=TINY.box.hide; window.onresize=TINY.box.resize; f=1
+				var useragent = navigator.userAgent;
+				
+				if(useragent.indexOf('MSIE')> -1){
+					p.style.marginLeft = "50%";
+					p.style.marginTop = "15%";
+					p.style.position = "absolute";
+				}
+				else{
+					p.style.position = "absolute";
+				}
+			}
+			p.style.width=p.style.height='100px';
+			this.mask();
+			ic=c; iu=u; iw=w; ih=h; ia=a; this.alpha(m,1,80,3);
+			if(t){setTimeout(function(){TINY.box.hide()},1000*t)}
+		},
+		showL:function(c,u,w,h,a,t){
+			
+			b=document.createElement('div'); b.id='tinycontent';
+			p.appendChild(b);
+			
+			p.style.width=w?w+'px':'auto'; p.style.height=h?h+'px':'auto';
+			p.style.backgroundImage='none'; b.innerHTML=c
+			
+		},
+		fill:function(c,u,w,h,a){
+			if(u){
+				p.style.backgroundImage='';
+				var x=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject('Microsoft.XMLHTTP');
+				x.onreadystatechange=function(){
+					if(x.readyState==4&&x.status==200){TINY.box.psh(x.responseText,w,h,a)}
+				};
+				x.open('GET',c,1); x.send(null)
+			}else{
+				this.psh(c,w,h,a)
+			}
+		},
+		psh:function(c,w,h,a){
+			if(a){
+				if(!w||!h){
+					var x=p.style.width, y=p.style.height; b.innerHTML=c;
+					p.style.width=w?w+'px':''; p.style.height=h?h+'px':'';
+					b.style.display='';
+					w=parseInt(b.offsetWidth); h=parseInt(b.offsetHeight);
+					b.style.display='none'; p.style.width=x; p.style.height=y;
+				}else{
+					b.innerHTML=c
+				}
+				this.size(p,w,h,4)
+			}else{
+				p.style.backgroundImage='none'
+			}
+		},
+		hide:function(){
+			TINY.box.alpha(p,-1,0,3)
+		},
+		resize:function(){
+			TINY.box.pos(); TINY.box.mask()
+		},
+		mask:function(){
+			m.style.height=TINY.page.theight()+'px';
+			m.style.width=''; m.style.width=TINY.page.twidth()+'px'
+		},
+		pos:function(){
+			var t=(TINY.page.height()/2)-(p.offsetHeight/2); t=t<10?10:t;
+			p.style.top=(t+TINY.page.top())+'px';
+			p.style.left=(TINY.page.width()/2)-(p.offsetWidth/2)+'px'
+		},
+		alpha:function(e,d,a,s){
+			clearInterval(e.ai);
+			if(d==1){
+				e.style.opacity=0; e.style.filter='alpha(opacity=0)';
+				e.style.display='block'; this.pos()
+			}
+			e.ai=setInterval(function(){TINY.box.twalpha(e,a,d,s)},20)
+		},
+		twalpha:function(e,a,d,s){
+			var o=Math.round(e.style.opacity*100);
+			if(o==a){
+				clearInterval(e.ai);
+				if(d==-1){
+					e.style.display='none';
+					e==p?TINY.box.alpha(m,-1,0,2):b.innerHTML=p.style.backgroundImage=''
+				}else{
+					e==m?this.alpha(p,1,100,5):TINY.box.fill(ic,iu,iw,ih,ia)
+				}
+			}else{
+				var n=o+Math.ceil(Math.abs(a-o)/s)*d;
+				e.style.opacity=n/100; e.style.filter='alpha(opacity='+n+')'
+			}
+		},
+		size:function(e,w,h,s){
+			e=typeof e=='object'?e:T$(e); clearInterval(e.si);
+			var ow=e.offsetWidth, oh=e.offsetHeight,
+			wo=ow-parseInt(e.style.width), ho=oh-parseInt(e.style.height);
+			var wd=ow-wo>w?-1:1, hd=(oh-ho>h)?-1:1;
+			e.si=setInterval(function(){TINY.box.twsize(e,w,wo,wd,h,ho,hd,s)},20)
+		},
+		twsize:function(e,w,wo,wd,h,ho,hd,s){
+			var ow=e.offsetWidth-wo, oh=e.offsetHeight-ho;
+			if(ow==w&&oh==h){
+				clearInterval(e.si); p.style.backgroundImage='none'; b.style.display='block'
+			}else{
+				if(ow!=w){e.style.width=ow+(Math.ceil(Math.abs(w-ow)/s)*wd)+'px'}
+				if(oh!=h){e.style.height=oh+(Math.ceil(Math.abs(h-oh)/s)*hd)+'px'}
+				this.pos()
+			}
+		},
+		work:function(){
+			var tinybox = document.getElementById("tinybox");
+			if(tinybox != null){
+				tinybox.style.background = "#fff url(img/loading.gif) no-repeat 50% 50%";
+				tinybox.style.display = "block";
+				var tinycontent = document.getElementById("tinycontent");
+				if(tinycontent != null){
+					tinycontent.innerHTML = "<br>";
+					//tinycontent.style.background = "#fff url(img/loading.gif) no-repeat 40% 40%";
+					//tinycontent.style.display = 'none';
+				}
+				
+			}
+		},
+		searchShow:function(c,u,w,h,a,t){
+			if(!f){
+				p=document.createElement('div'); p.id='tinybox';
+				m=document.createElement('div'); m.id='tinymask';
+				document.body.appendChild(m); document.body.appendChild(p);
+				m.onclick=TINY.box.hide; window.onresize=TINY.box.resize; f=1
+				var useragent = navigator.userAgent;
+				
+				if(useragent.indexOf('MSIE')> -1){
+					p.style.marginLeft = "50%";
+					p.style.marginTop = "15%";
+					p.style.position = "absolute";
+				}
+				else{
+					p.style.position = "absolute";
+				}
+			}
+			
+			this.mask();
+			ic=c; iu=u; iw=w; ih=h; ia=a; this.alpha(m,1,80,3);
+			if(t){setTimeout(function(){TINY.box.hide()},1000*t)}
+		}
+	}
+}();
+
+TINY.page=function(){
+	return{
+		top:function(){return document.body.scrollTop||document.documentElement.scrollTop},
+		width:function(){return self.innerWidth||document.documentElement.clientWidth},
+		height:function(){return self.innerHeight||document.documentElement.clientHeight},
+		theight:function(){
+			var d=document, b=d.body, e=d.documentElement;
+			return Math.max(Math.max(b.scrollHeight,e.scrollHeight),Math.max(b.clientHeight,e.clientHeight))
+		},
+		twidth:function(){
+			var d=document, b=d.body, e=d.documentElement;
+			return Math.max(Math.max(b.scrollWidth,e.scrollWidth),Math.max(b.clientWidth,e.clientWidth))
+		}
+	}
+}();
+
+
+function popupCentrata(req, parameter) {
+	
+	var ebhclibrary = readCookie("ebhclibrary");
+	var auth;
+	var remember = false;
+	if(ebhclibrary != null){
+		auth = ebhclibrary.split(";");
+		auth = auth[0].split(" ");
+		remember = true;
+	}
+	
+	var content2;
+	
+	if(remember){
+		content2 = "<div id=\"popupbox\">" +
+					"<form name=\"login\" action=\"\" method=\"post\">" +
+					"<center>Username:</center>" +
+					"<center><input id=\"username\" name=\"username\" value=\""+auth[0]+"\" size=\"14\" /></center>" +
+					"<center>Password:</center>" +
+					"<center><input id=\"password\" name=\"password\" type=\"password\" value=\""+auth[1]+"\" size=\"14\" /></center>";
+	}
+	else{
+		content2 = "<div id=\"popupbox\">" +
+					"<form name=\"login\" action=\"\" method=\"post\">" +
+					"<center>Username:</center>" +
+					"<center><input id=\"username\" name=\"username\" size=\"14\" /></center>" +
+					"<center>Password:</center>" +
+					"<center><input id=\"password\" name=\"password\" type=\"password\" size=\"14\" /></center>";
+	}
+					
+	
+	if(req != null){
+		req = "'"+req+"'";
+	}
+	if(parameter != null){
+		parameter = "'"+parameter+"'";
+	}
+	
+	if(remember){
+		content2 += "<center><input id=\"rememberme\" type=\"checkbox\" name=\"rememberme\" value=\"rememberme\" checked/>Remember me</center></form>";
+	}
+	else{
+		content2 += "<center><input id=\"rememberme\" type=\"checkbox\" name=\"rememberme\" value=\"rememberme\"/>Remember me</center></form>";
+	}
+	
+	content2 += "<center><input type=\"button\" name=\"submit\" value=\"login\" onclick=\"javascript:loggin("+req+", "+parameter+")\"/></center></form>" +
+				"<center><span id=\"loginincorrect\" style=\"color:red\"></span></center>";
+	
+	//var content2 = "<img src='img/full-text.gif' width='298' height='373' alt='' />";
+	
+	//TINY.box.show(content2,0,0,0,1);
+	TINY.box.showL(content2,0,0,0,1);
+
+ }
+
+function poplog(req, parameter) {
+	
+	var ebhclibrary = readCookie("ebhclibrary");
+	var auth;
+	var remember = false;
+	if(ebhclibrary != null){
+		auth = ebhclibrary.split(";");
+		auth = auth[0].split(" ");
+		remember = true;
+	}
+	
+	var content2;
+	
+	if(remember){
+		content2 = "<div id=\"popupbox\">" +
+					"<form name=\"login\" action=\"\" method=\"post\">" +
+					"<center>Username:</center>" +
+					"<center><input id=\"username\" name=\"username\" value=\""+auth[0]+"\" size=\"14\" /></center>" +
+					"<center>Password:</center>" +
+					"<center><input id=\"password\" name=\"password\" type=\"password\" value=\""+auth[1]+"\" size=\"14\" /></center>";
+	}
+	else{
+		content2 = "<div id=\"popupbox\">" +
+					"<form name=\"login\" action=\"\" method=\"post\">" +
+					"<center>Username:</center>" +
+					"<center><input id=\"username\" name=\"username\" size=\"14\" /></center>" +
+					"<center>Password:</center>" +
+					"<center><input id=\"password\" name=\"password\" type=\"password\" size=\"14\" /></center>";
+	}
+					
+	
+	if(req != null){
+		req = "'"+req+"'";
+	}
+	if(parameter != null){
+		parameter = "'"+parameter+"'";
+	}
+	
+	if(remember){
+		content2 += "<center><input id=\"rememberme\" type=\"checkbox\" name=\"rememberme\" value=\"rememberme\" checked/>Remember me</center></form>";
+	}
+	else{
+		content2 += "<center><input id=\"rememberme\" type=\"checkbox\" name=\"rememberme\" value=\"rememberme\"/>Remember me</center></form>";
+	}
+	
+	content2 += "<center><input type=\"button\" name=\"submit\" value=\"login\" onclick=\"javascript:loggin("+req+", "+parameter+")\"/></center></form>" +
+				"<center><span id=\"loginincorrect\" style=\"color:red\"></span></center>";
+	
+	//var content2 = "<img src='img/full-text.gif' width='298' height='373' alt='' />";
+	
+	TINY.box.show(content2,0,0,0,1);
+
+ }
+
+
+function readCookie(name) {
+	var nameEQ = name + "=";
+	var ca = document.cookie.split(';');
+	for(var i=0;i < ca.length;i++) {
+		var c = ca[i];
+		while (c.charAt(0)==' ') c = c.substring(1,c.length);
+		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
+	}
+	return null;
+}
+
+function createCookie(name,value,days) {
+	if (days) {
+		var date = new Date();
+		date.setTime(date.getTime()+(days*24*60*60*1000));
+		var expires = "; expires="+date.toGMTString();
+	}
+	else var expires = "";
+	
+	document.cookie = name+"="+value+expires+"; path=/";
+}
+
+function eraseCookie(name) {
+	createCookie(name,"",-1);
+}
+
+

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/fise.css
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/fise.css?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/fise.css (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/fise.css Fri Apr  1 13:01:38 2011
@@ -0,0 +1,368 @@
+body {
+  font: normal 13px/20px Arial,Helvetica,sans-serif;
+  padding: 0;
+  margin: 0;
+  background-color: #eff9f0;
+}
+
+img {
+  border: none;
+}
+
+a:link, a:visited, a:hover {
+  color: #c43187;
+}
+
+a: active {
+  color: black;  
+}
+
+a:focus {
+  outline: none;
+}
+
+dt, dd {
+  margin-top: 1em;
+}
+
+pre, textarea {
+  border: 1px solid #f8dcbb;
+  padding: 1em;
+  background-color: #f8f8f8;
+  font-size: 90%;  
+  overflow: auto;
+}
+
+textarea {
+  width: 100%;
+}
+
+pre {
+  white-space: pre-wrap;       /* css-3 */
+  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
+  white-space: -pre-wrap;      /* Opera 4-6 */
+  white-space: -o-pre-wrap;    /* Opera 7 */
+  word-wrap: break-word;       /* Internet Explorer 5.5+ */  
+}
+
+form  {
+  margin-bottom: 2em;
+}
+
+.home {
+  position: absolute;
+}
+
+.header {
+  padding: 0.5em 1em;
+  background: #4c4c4c url("/static/images/header_bg.png") repeat-x top left;  
+  border-bottom: 1px solid black;
+}
+
+.header h1 {
+  float: left;
+}
+
+.header .mainNavigationMenu {
+  margin: 23px 1em 0;
+  text-align: right;
+}
+
+.header .mainNavigationMenu ul {
+  display: inline;
+}
+
+.header .mainNavigationMenu li {
+  display: inline;
+  margin-left: 0.5em;
+  border: 1px solid transparent;
+  padding: 0.3em 0.5em 0.5em 0.5em;
+  border-radius: 8px;
+}
+
+.header .mainNavigationMenu li.selected {
+  border: 1px solid #222;
+  background-color: #333;
+}
+
+.header .mainNavigationMenu a {
+  font-weight: bold;
+  color: #EFF9F0;
+}
+
+
+h1 {
+  color: #e9e9e9;
+  font-size: 18px;
+  font-weight: normal;
+  margin: 22px 0 3px;
+  padding: 0 0 0 160px;
+  text-shadow: 0 1px 0 #000;
+}
+
+h2 {
+  padding: 0;
+  margin: 1em 0;
+  font-size: 16px;
+}
+
+h3 {
+  padding: 0;
+  margin: 1em 0;
+  font-size: 14px;
+  font-weight:bold;
+}
+
+.content {
+  background-color: #fff;
+  border-color: #d1dfce;
+  border-style: solid;
+  border-width: 0 1px 2px;
+  margin: 0 auto 5em;
+  padding: 0.5em 2em 1em;
+  width: 75%;
+}
+
+.content img {
+  border: 1px solid gray;  
+  max-width: 800px;  
+}
+
+.content fieldset {
+  border-color: #d1dfce;
+  border-style: solid;
+  border-width: 1px;
+}
+
+.footer {
+  background-color: #494949;
+  border-top: 2px solid #373737;
+  color: #d9d9d9;
+  font-size: 85%;
+  padding: 1em 1em 2em;
+  text-shadow: 0 1px 0 #111111;
+}
+
+.footer .column {
+  float: left;
+  width: 48%;
+  padding: 0.5em;
+}
+
+.column a img {
+  border: 1px solid #373737;
+}
+
+.footer img.swcube {
+  padding: 6px;
+  background-color: white;  
+}
+
+.right {
+  text-align: right;
+} 
+
+table {
+  text-align: left;
+  width: 100%;
+}
+
+.storeContents table {
+  border-collapse: collapse;
+  margin: 5px 0 0px;
+}
+
+.storeContents th {  
+  color: #000;
+  font-size: 105%;
+  font-weight: normal;
+  padding: 6px 10px;
+  border-bottom: 1px solid #d1dfce;
+  background-color:#f8f8f8;
+}
+
+.storeContents th img {
+  vertical-align: top;
+  border: medium none;
+  margin: 0 0.1em;
+}
+
+.storeContents td {
+  padding: 4px 10px 5px;
+  border-bottom: 1px solid #ffe8f9;
+}
+
+.content input.url {
+  width: 600px;
+}
+
+.content .contentItemPreview pre {
+  max-height: 200px;  
+}
+
+.content table {
+  font-size: 95%; 
+}
+
+.entitylistings {
+  margin-top: 20px;
+  }
+
+.entitylisting h3 {
+  text-align: center;  
+}
+
+.entitylisting {
+  float: left;
+  width: 33%;
+  margin: auto;
+}
+
+.entitylisting p {
+  margin: 0.2em;
+}
+
+.entitylisting table {
+  border: 1px solid #eee;
+  border-radius: 8px;
+  background: url("/static/images/foldable_unfolded.png") no-repeat scroll right 17px transparent;
+}
+
+.entitylisting table.collapsed {
+  background: url("/static/images/foldable_folded.png") no-repeat scroll right center transparent;
+  }
+
+.entitylisting .subheader {
+  height: 25px;
+}
+
+.entitylisting .subheader td {
+  background-color: #f9f9f9;
+  border-bottom: 1px solid #eee;
+  border-top: 1px solid #eee;
+  font-weight: bold;
+  padding: 0 10px;
+}
+
+.entitylisting img {
+  vertical-align: middle;
+  border: 1px solid transparent;
+}
+
+.entitylisting .thumb {
+  width: 50px;
+}
+
+.entitylisting thead {
+  cursor: pointer;
+}
+
+.entitylisting tbody{
+  background-color: #fcfcfc;
+  }
+
+.entitylisting tbody tr {
+  height: 42px;
+}
+
+.entitylisting .collapsed tbody tr {
+  display: none;
+}
+
+.downloadLinks, .previousNext {
+  list-style: none;
+  text-align: right;
+  padding: 0;
+  }
+
+.downloadLinks li, .previousNext li {
+  border: 1px solid #c3c3c3;
+  display: inline;
+  margin: 0 0 0 30px;
+  padding: 4px 6px 5px;
+  background-color: #fafafa;
+  }
+
+.downloadLinks li a, .previousNext li a {
+  color: #333;
+  text-decoration: none;
+  }
+
+.downloadLinks li a:hover, .previousNext li a:hover {
+  text-decoration: underline;
+  }
+
+li.older a {
+  background: url("/static/images/next.png") no-repeat scroll right center transparent;
+  padding: 0 12px 0 0;
+  }
+  
+li.moreRecent a {
+  background: url("/static/images/previous.png") no-repeat scroll left center transparent;
+  padding: 0 0 0 13px;
+  }
+
+.download {
+  background: url("/static/images/download.png") no-repeat scroll left center transparent;
+  padding: 0 0 2px 20px;
+  }
+
+.downloadRDF {
+  background: url("/static/images/download_rdf.png") no-repeat scroll left center transparent;
+  padding: 0 0 2px 20px;
+  }
+
+.external {
+  background: url("/static/images/external.png") no-repeat scroll right center transparent;
+  padding: 0 18px 0 0;
+  }
+  
+#enginesOuputWaiter {
+  opacity: 90%;
+  font-style: italic;
+  text-align: center;  
+}
+
+#enginesOuput pre {
+  max-height: 200px;
+}
+
+.enginelisting {
+  padding: 0.5em;
+  border: 1px solid #eee;
+  border-radius: 8px;
+}
+
+.enginelisting .collapseheader {
+  margin: 0.1em;
+  cursor: pointer;
+  background: url("/static/images/foldable_unfolded.png") no-repeat scroll right center transparent;
+}
+
+.enginelisting .collapsed .collapseheader {
+  background: url("/static/images/foldable_folded.png") no-repeat scroll right center transparent;
+}
+
+.enginelisting ul {
+  padding-left: 0;
+}
+
+.enginelisting .collapsed .collapsable {
+  display: none;
+}
+
+.enginelisting li {
+  list-style: none;
+  padding-left: 20px; 
+  background: transparent url(/static/images/black_gear_16.png) no-repeat scroll 0% 50%;
+}
+
+#enginesInput .submitButtons {
+  text-align: right;  
+}
+
+p.note {
+  font-size: 90%;
+  font-style: italic;
+  text-align: right;
+}
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/date-bottom.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/date-bottom.gif?rev=1087691&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/date-bottom.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/date-top.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/date-top.gif?rev=1087691&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/date-top.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/footer.jpg
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/footer.jpg?rev=1087691&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/footer.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/frontphoto.jpg
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/frontphoto.jpg?rev=1087691&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/frontphoto.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/header.jpg
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/header.jpg?rev=1087691&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/header.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/wrapbg.gif
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/wrapbg.gif?rev=1087691&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/images/wrapbg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/kres.css
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/kres.css?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/kres.css (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/kres.css Fri Apr  1 13:01:38 2011
@@ -0,0 +1,108 @@
+
+* {margin:0; padding:0;}
+
+/******** General tags ********/
+body {margin:25px auto; padding:0; font:76% Verdana,Tahoma,Arial,sans-serif; background:#1e3044; color:#303030; line-height:1.3em;}
+a {text-decoration:none; color:#20526a; font-weight:bold;}
+a:hover {text-decoration:underline; color:#20526a;}
+a img {border:0;}
+p {margin:0 0 18px 8px;}
+h2 {font-size:1.5em; font-weight:normal; letter-spacing:-1px; margin:10px 0 8px 0;}
+h3 {font-size:1.2em; margin:2px 0 8px 0;}
+
+/******** Main wrap ********/
+#wrap {background:#ffffff url(images/wrapbg.gif) top left repeat-y; color:#303030; margin:0 auto; width:760px;}
+
+/******** Header ********/
+#header {clear:both; background:url(images/header.jpg) top left no-repeat; height:150px;}
+#header h1 {font-size:3.8em; letter-spacing:-4px; color:#d88d44; padding:10px 0 10px 45px;}
+#header h1 a {color:#d88d44; text-decoration:none;}
+#header h1 a:hover {color:#e99e55;}
+#slogan {color:#20526a; margin:60px 0 0 45px; font-size:1.6em; letter-spacing:-1px; }
+
+#leftHeader {width: 15%; float: left;}
+#rightHeader {width: 85%; float: right;}
+
+/******** Sitemenu, left sidebar ********/
+#sitemenu {clear:both; float:left; width:135px; margin:0; padding:20px 0 0 15px;}
+#sitemenu ul {list-style:none; width:135px; margin:0 0 20px 0; padding:0; font-size:1#2em; letter-spacing:-1px;}
+#sitemenu li {margin-bottom:4px;}
+#sitemenu li a {font-weight:bold; text-decoration:none; color:#20526a; display:block; height:1.1em; padding:2px 2px 2px 8px; border-left: 8px solid #70a2ba;}
+#sitemenu li a:hover {color:#d88d44; text-decoration:none; border-left:8px solid #d88d44;}
+#sitemenu #current {border-left:8px solid #d88d44;}
+#sitemenu ul ul {font-size:0.8em; width:110px; font-weight:normal; margin:5px 0 8px 20px;}
+#sitemenu ul ul li {margin-bottom:2px;}
+#sitemenu ul ul li a {border:0; padding:2px;}
+#sitemenu ul ul li a:hover {border:0; padding:2px; text-decoration:underline;}
+
+/******** Extras, right sitebar ********/
+#extras {float:right; width:135px; margin:0; padding:10px 15px 0 0;}
+#extras ul {margin:0 0 14px 2px; list-style:none; color:#808080;}
+#extras li {margin:0 0 2px 0;}
+#extras li a {padding:2px 2px 2px 2px; height:1.2em; letter-spacing:-1px; font-weight:bold;}
+#extras li a:hover {color:#d88d44;}
+#extras ul ul, #extras ul ul ul {font-size:0.9em; line-height:1.2em; margin:2px 0 2px 15px;}
+#extras ul ul a, #extras ul ul ul a {font-weight:normal;}
+
+/******** Content variations ********/
+#content {margin:5px 170px 0 170px; padding:2px 0 0 0; line-height:1.5em; text-align:left;}
+#content h2 {font-size:1.6em; margin:20px 0 10px 0;}
+#content h3 {font-size:1.4em; font-weight:normal; letter-spacing:-1px; margin:10px 0 8px 0;}
+#content p {text-align:justify;}
+
+/******** Footer ********/
+#footer {clear:both; margin:5px auto 0 auto; padding:10px 0 10px 0; width:760px; text-align:center; background: url(images/footer.jpg) bottom left no-repeat; color:#555; font-size:0.9em; line-height:1.5em;}
+#footer p {margin:3px;}
+#footer p strong {font-size:1.1em; font-weight:400;}
+#footer a {color:#777; font-weight:400; text-decoration:none;}
+#footer a:hover {text-decoration:underline;}
+
+/******** Various classes ********/
+.datetag {width:50px; padding:0 0 10px 0; text-align:center; background:.20526a url(images/date-bottom.gif) bottom left no-repeat; margin:2px 15px 1px 10px; color:.ffffff; font-size:2.2em; text-align:center; float:left;}
+.datetag .date {width:50px; display:block; letter-spacing:-1px; padding:15px 0 5px 0; background:.20526a url(images/date-top.gif) top left no-repeat;}
+.datetag .month {font-size:0.5em; letter-spacing:-1px; width:50px; display:block; font-weight:bold;}
+.textright {text-align:right;}
+.center {text-align:center;}
+.frontphoto {margin:20px 0 10px 0;}
+.small {font-size:0.8em;}
+.bold {font-weight:bold;}
+.clear {clear:both;}
+.hide {display:none;}
+
+input.url {width: 400px;}
+
+div#data-source-form{
+	margin-left: 25px;
+	margin-top: 25px;
+}
+
+ul.kressList{
+	margin: 0 0 0 25px;
+}
+
+.indent{margin-left: 20px;}
+.indent code{border: thin; border-style: dotted; padding: 5px 5px 5px 5px;}
+
+
+.configure {margin-left: 5px; width: 12px; height: 12px;}
+.scopeDIV {margin: 20px 0 20px 20px; display: none;}
+.contentAlign {margin: 20px 0 0 20px;}
+.menuLeft {width: 80%; float: left;}
+.menuRight {width: 20%; float: right; margin-top: 10px;}
+.menuRightText {width: 20%; float: right;}
+.contentTag {margin-right: 10px;}
+.contentTagNoShow {margin: 30px 0 0 30px; display: none;}
+.refactor {width: 350px; margin-bottom: 10px;}
+
+#recipeList {display: none; width: 100%;}
+
+#tinybox {width:230px; height:190px; display:none; padding:10px; background:#fff url(img/loading.gif) no-repeat 50% 50%; border:10px solid #e3e3e3; z-index:2000}
+#tinymask {text-align:center; position:absolute; display:none; top:0; left:0; height:100%; width:100%; background:#000; z-index:1500}
+#tinycontent {background:#fff}
+
+.code {width: 300px;}
+
+.contentTag fieldset {border-color: #d1dfce; border-style: solid; border-width: 1px; width: 380px; margin: 0 0 30px 18px;}
+.contentTag div.fieldset {margin: 20px 20px 20px 20px;}
+.fieldset select {width: 300px;}
+.fieldset .code {width: 200px;}
\ No newline at end of file

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/kress.css
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/kress.css?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/kress.css (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/static/style/kress.css Fri Apr  1 13:01:38 2011
@@ -0,0 +1,67 @@
+
+* {margin:0; padding:0;}
+
+/******** General tags ********/
+body {margin:25px auto; padding:0; font:76% Verdana,Tahoma,Arial,sans-serif; background:.1e3044; color:.303030; line-height:1.3em;}
+a {text-decoration:none; color:.20526a; font-weight:bold;}
+a:hover {text-decoration:underline; color:.20526a;}
+a img {border:0;}
+p {margin:0 0 18px 8px;}
+h2 {font-size:1.5em; font-weight:normal; letter-spacing:-1px; margin:10px 0 8px 0;}
+h3 {font-size:1.2em; margin:2px 0 8px 0;}
+
+/******** Main wrap ********/
+#wrap {background:.ffffff url(images/wrapbg.gif) top left repeat-y; color:.303030; margin:0 auto; width:760px;}
+
+/******** Header ********/
+.header {clear:both; background:url(images/header.jpg) top left no-repeat; height:150px;}
+.header h1 {font-size:3.8em; letter-spacing:-4px; color:.d88d44; padding:55px 0 10px 45px;}
+.header h1 a {color:.d88d44; text-decoration:none;}
+.header h1 a:hover {color:.e99e55;}
+.slogan {color:.20526a; margin:15px 0 0 45px; font-size:1.6em; letter-spacing:-1px;}
+
+/******** Sitemenu, left sidebar ********/
+.sitemenu {clear:both; float:left; width:135px; margin:0; padding:20px 0 0 15px;}
+.sitemenu ul {list-style:none; width:135px; margin:0 0 20px 0; padding:0; font-size:1.2em; letter-spacing:-1px;}
+.sitemenu li {margin-bottom:4px;}
+.sitemenu li a {font-weight:bold; text-decoration:none; color:.20526a; display:block; height:1.1em; padding:2px 2px 2px 8px; border-left: 8px solid .70a2ba;}
+.sitemenu li a:hover {color:.d88d44; text-decoration:none; border-left:8px solid .d88d44;}
+.sitemenu .current {border-left:8px solid .d88d44;}
+.sitemenu ul ul {font-size:0.8em; width:110px; font-weight:normal; margin:5px 0 8px 20px;}
+.sitemenu ul ul li {margin-bottom:2px;}
+.sitemenu ul ul li a {border:0; padding:2px;}
+.sitemenu ul ul li a:hover {border:0; padding:2px; text-decoration:underline;}
+
+/******** Extras, right sitebar ********/
+.extras {float:right; width:135px; margin:0; padding:10px 15px 0 0;}
+.extras ul {margin:0 0 14px 2px; list-style:none; color:.808080;}
+.extras li {margin:0 0 2px 0;}
+.extras li a {padding:2px 2px 2px 2px; height:1.2em; letter-spacing:-1px; font-weight:bold;}
+.extras li a:hover {color:.d88d44;}
+.extras ul ul, .extras ul ul ul {font-size:0.9em; line-height:1.2em; margin:2px 0 2px 15px;}
+.extras ul ul a, .extras ul ul ul a {font-weight:normal;}
+
+/******** Content variations ********/
+.content {margin:5px 170px 0 170px; padding:2px 0 0 0; line-height:1.5em; text-align:left;}
+.content h2 {font-size:1.6em; margin:20px 0 10px 0;}
+.content h3 {font-size:1.4em; font-weight:normal; letter-spacing:-1px; margin:10px 0 8px 0;}
+.content p {text-align:justify;}
+
+/******** Footer ********/
+.footer {clear:both; margin:5px auto 0 auto; padding:10px 0 10px 0; width:760px; text-align:center; background: url(images/footer.jpg) bottom left no-repeat; color:.555; font-size:0.9em; line-height:1.5em;}
+.footer p {margin:3px;}
+.footer p strong {font-size:1.1em; font-weight:400;}
+.footer a {color:.777; font-weight:400; text-decoration:none;}
+.footer a:hover {text-decoration:underline;}
+
+/******** Various classes ********/
+.datetag {width:50px; padding:0 0 10px 0; text-align:center; background:.20526a url(images/date-bottom.gif) bottom left no-repeat; margin:2px 15px 1px 10px; color:.ffffff; font-size:2.2em; text-align:center; float:left;}
+.datetag .date {width:50px; display:block; letter-spacing:-1px; padding:15px 0 5px 0; background:.20526a url(images/date-top.gif) top left no-repeat;}
+.datetag .month {font-size:0.5em; letter-spacing:-1px; width:50px; display:block; font-weight:bold;}
+.textright {text-align:right;}
+.center {text-align:center;}
+.frontphoto {margin:20px 0 10px 0;}
+.small {font-size:0.8em;}
+.bold {font-weight:bold;}
+.clear {clear:both;}
+.hide {display:none;}
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/ajax/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/ajax/contentitem.ftl
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/ajax/contentitem.ftl?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/ajax/contentitem.ftl (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/ajax/contentitem.ftl Fri Apr  1 13:01:38 2011
@@ -0,0 +1,9 @@
+<#import "/imports/contentitem.ftl" as contentitem>
+<#escape x as x?html>
+
+<@contentitem.view />
+
+<h3>Raw RDF output</h3>
+<pre>${it.rdfMetadata}</pre>
+</div>
+</#escape>
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/common.ftl
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/common.ftl?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/common.ftl (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/common.ftl Fri Apr  1 13:01:38 2011
@@ -0,0 +1,69 @@
+<#macro page title>
+<html>
+  <head>
+
+    <title>KReS Platform - ${title?html}</title>
+    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
+
+    <link rel="stylesheet" href="/kres/static/style/kres.css" title="KReS Style" media="screen,projection" /> 
+ 
+ 	<link rel="icon" type="image/png" href="/kres/static/images/kresLogoExtended.png" />
+ 	
+    <script type="text/javascript" src="/kres/static/scripts/jquery-1.4.2.js"></script>
+    <script type="text/javascript" src="/kres/static/scripts/kres.js"></script>
+    <script type="text/javascript" src="/kres/static/scripts/jquery.rdfquery.core-1.0.js"></script>
+    <script type="text/javascript" src="/kres/static/scripts/tinybox.js"></script>
+    <script type="text/javascript" src="/kres/static/scripts/jit-yc.js"></script>
+
+  </head>
+  <body> <div id="wrap">
+  		<div id="header">
+  			<div id="leftHeader">
+  				<h1><a href="/kres"><img alt="KReS Logo" src="/kres/static/images/kresLogoExtended.png" width="110" height="112"></a></h1>
+  			</div>
+  			<div id="rightHeader">
+  				<p id="slogan">The Knowledge Representation and Reasoning System!</p>
+  			</div> 
+			 
+		</div>  
+		
+		<#if it?exists && it.mainMenuItems?exists>
+		<div id="sitemenu"> 
+			<h2 class="hide">KReS menu:</h2> 
+			<ul> 
+				<#list it.mainMenuItems as item>
+					<li><a class="${item.cssClass}" href="${item.link}">${item.label}</a>
+					<#if item.subMenu?exists>
+						<div id="${item.id}" class="hide">
+							<ul>
+							<#list item.subMenu as subItem>
+								<a class="${subItem.cssClass}" href="${subItem.link}">${subItem.label}</a></li>
+							</#list>
+							</ul>	
+						</div>
+					</#if>
+					</li>
+				</#list> 
+			</ul> 
+			<h2><a href="http://stlab.istc.cnr.it/stlab/The_Semantic_Technology_Laboratory_(STLab)"><img src="/kres/static/images/stlabLogo.jpg" width="80" height="40"></a></h2>
+		</div> 
+		</#if>
+		
+	    <div id="content">
+	      <h2>${title?html}</h2>
+	      <#nested>
+	    </div>
+	
+		<div id="footer">
+		
+		  <a href="http://www.w3.org/standards/semanticweb/"><img class="swcube"
+		    src="/kres/static/images/sw-cube.png"/></a>
+	      <a href="http://www.iks-project.eu"><img
+	        height="60px" alt="IKS Project" src="/kres/static/images/iks_project_logo.jpg" /></a>
+	      <p><em>The research leading to these results has received funding from the European Community's
+	          Seventh Framework Programme (FP7/2007-2013) under grant agreement n° 231527</em></p>
+	   </div>
+	</div>
+  </body>
+</html>
+</#macro>

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/contentitem.ftl
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/contentitem.ftl?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/contentitem.ftl (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/contentitem.ftl Fri Apr  1 13:01:38 2011
@@ -0,0 +1,40 @@
+<#import "/imports/entities.ftl" as entities>
+<#macro view>
+
+<div class="entitylistings">
+<#if it.personOccurrences?size != 0 || it.organizationOccurrences?size != 0 ||  it.placeOccurrences?size != 0>
+<h3>Extracted entities</h3>
+</#if>
+
+<div class="entitylisting">
+<#if it.personOccurrences?size != 0>
+<h3>People</h3>
+<@entities.listing entities=it.personOccurrences
+  iconsrc="/static/images/user_48.png" /> 
+</#if>
+</div>
+
+<div class="entitylisting">
+<#if it.organizationOccurrences?size != 0>
+<h3>Organizations</h3>
+<@entities.listing entities=it.organizationOccurrences
+  iconsrc="/static/images/organization_48.png" /> 
+</#if>
+</div>
+
+<div class="entitylisting">
+<#if it.placeOccurrences?size != 0>
+<h3>Places</h3>
+<@entities.listing entities=it.placeOccurrences
+  iconsrc="/static/images/compass_48.png" /> 
+</#if>
+</div>
+</div>
+<div style="clear: both"></div>
+
+<script>
+$("th").click(function () {
+  $(this).parents("table").toggleClass("collapsed");
+});    
+</script>
+</#macro>
\ No newline at end of file

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/entities.ftl
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/entities.ftl?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/entities.ftl (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/entities.ftl Fri Apr  1 13:01:38 2011
@@ -0,0 +1,46 @@
+<#macro listing entities iconsrc>
+<#list entities as entity>
+<p>
+<table class="collapsed">
+<thead>
+<tr>
+  <th class="thumb">
+    <img src="${iconsrc}" height="42" width="48" />
+  </th>
+  <th class="name">
+    <#if entity.uri?exists>
+    <a href="${entity.uri}" title="${entity.uri}">${entity.name}</a>
+    <#else>
+    ${entity.name}
+    </#if>
+  </th>
+</tr>
+</thead>
+<tbody>
+<#if entity.suggestions?size != 0>
+<tr class="subheader">
+  <td colspan="2">Referenced entities</td>
+</tr>
+</#if>
+<#list entity.suggestions as suggestion>
+<tr>
+  <td><img src="${iconsrc}" height="42" width="48" /></td>
+  <td><a href="${suggestion.uri}" title="${suggestion.uri}" class="external">${suggestion.label}</a></td>
+</tr>
+</#list>
+<#if entity.mentions?size != 0>
+<tr class="subheader">
+  <td colspan="2">Mentions</td>
+</tr>
+</#if>
+<#list entity.mentions as mention>
+<tr>
+  <td></td>
+  <td>${mention}</td>
+</tr>
+</#list>
+</tbody>
+</table>
+</p>
+</#list>
+</#macro>
\ No newline at end of file

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/kres.ftl
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/kres.ftl?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/kres.ftl (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/kres.ftl Fri Apr  1 13:01:38 2011
@@ -0,0 +1,18 @@
+<#macro form>
+<form id="sparql" action="/kres" method="POST"
+ enctype="application/x-www-form-urlencoded"
+ accept="application/sparql-results+xml, application/rdf+xml">
+<input type="text" class="url" name="databaseName" value="" >Database Name for NGraph</Input
+<input type="text" class="url" name="namespace" value="" >Triples namespace
+<input type="text" class="url" name="phisicalDBName" value="" >Phisical DB Name
+<input type="text" class="url" name="jdbcDriver" value="" >JDBC Driver
+<input type="text" class="url" name="protocol" value="" >Protocol
+<input type="text" class="url" name="host" value="" >Host
+<input type="text" class="url" name="port" value="" >Port
+<input type="text" class="url" name="username" value="" >Username
+<input type="text" class="url" name="password" value="" >Password
+<p><input type="submit" class="submit" value="RDB Reengineering"/></p>
+<pre class="prettyprint result" style="max-height: 200px; display: none" disabled="disabled">
+</pre>
+</form>
+</#macro>
\ No newline at end of file

Added: incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/sparql.ftl
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/sparql.ftl?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/sparql.ftl (added)
+++ incubator/stanbol/trunk/reengineer/web/src/main/resources/META-INF/templates/imports/sparql.ftl Fri Apr  1 13:01:38 2011
@@ -0,0 +1,49 @@
+<#macro form>
+<form id="sparql" action="/sparql" method="GET"
+ enctype="application/x-www-form-urlencoded"
+ accept="application/sparql-results+xml, application/rdf+xml">
+<textarea class="query" rows="11" name="query">
+PREFIX fise: &lt;http://fise.iks-project.eu/ontology/&gt;
+PREFIX dc:   &lt;http://purl.org/dc/terms/&gt;
+SELECT distinct ?enhancement ?content ?engine ?extraction_time
+WHERE {
+  ?enhancement a fise:Enhancement .
+  ?enhancement fise:extracted-from ?content .
+  ?enhancement dc:creator ?engine .
+  ?enhancement dc:created ?extraction_time .
+}
+ORDER BY DESC(?extraction_time) LIMIT 5
+</textarea>
+<p><input type="submit" class="submit" value="Run SPARQL query" /></p>
+<pre class="prettyprint result" style="max-height: 200px; display: none" disabled="disabled">
+</pre>
+</form>
+<script language="javascript"><!--
+function registersSparqlHandler() {
+   $("#sparql input.submit", this).click(function(e) {
+     // disable regular form click
+     e.preventDefault();
+     
+     // clean the result area
+     $("#sparql textarea.result").text('');
+     
+     // submit sparql query using Ajax
+     $.ajax({
+       type: "POST",
+       url: "/sparql",
+       data: {query: $("#sparql textarea.query").val()},
+       dataType: "html",
+       cache: false,
+       success: function(result) {
+         $("#sparql pre.result").text(result).css("display", "block");
+         prettyPrint();
+       },
+       error: function(result) {
+         $("#sparql pre.result").text('Invalid query.').css("display", "block");
+       }
+     });
+   });
+ }
+ $(document).ready(registersSparqlHandler);
+--></script>
+</#macro>
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reengineer/web/src/test/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/web/src/test/org/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/web/src/test/org/apache/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/web/src/test/org/apache/stanbol/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/web/src/test/org/apache/stanbol/reengineer/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/web/src/test/org/apache/stanbol/reengineer/web/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/xerces/.classpath
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xerces/.classpath?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xerces/.classpath (added)
+++ incubator/stanbol/trunk/reengineer/xerces/.classpath Fri Apr  1 13:01:38 2011
@@ -0,0 +1,33 @@
+<classpath>
+  <classpathentry kind="src" path="src/test/java" output="target/test-classes" including="**/*.java"/>
+  <classpathentry kind="src" path="src/main/java" including="**/*.java"/>
+  <classpathentry kind="src" path="src/main/resources" excluding="**/*.java"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="var" path="M2_REPO/org/codehaus/castor/castor-codegen/1.3.1/castor-codegen-1.3.1.jar" sourcepath="M2_REPO/org/codehaus/castor/castor-codegen/1.3.1/castor-codegen-1.3.1-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/org/codehaus/castor/castor-codegen/1.3.1/castor-codegen-1.3.1-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/org/codehaus/castor/castor-core/1.3.1/castor-core-1.3.1.jar" sourcepath="M2_REPO/org/codehaus/castor/castor-core/1.3.1/castor-core-1.3.1-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/org/codehaus/castor/castor-core/1.3.1/castor-core-1.3.1-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/org/codehaus/castor/castor-xml/1.3.1/castor-xml-1.3.1.jar" sourcepath="M2_REPO/org/codehaus/castor/castor-xml/1.3.1/castor-xml-1.3.1-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/org/codehaus/castor/castor-xml/1.3.1/castor-xml-1.3.1-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/org/codehaus/castor/castor-xml-schema/1.3.1/castor-xml-schema-1.3.1.jar" sourcepath="M2_REPO/org/codehaus/castor/castor-xml-schema/1.3.1/castor-xml-schema-1.3.1-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/org/codehaus/castor/castor-xml-schema/1.3.1/castor-xml-schema-1.3.1-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar" sourcepath="M2_REPO/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.7.1/xercesImpl-2.7.1.jar"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+</classpath>
\ No newline at end of file

Added: incubator/stanbol/trunk/reengineer/xerces/.project
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xerces/.project?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xerces/.project (added)
+++ incubator/stanbol/trunk/reengineer/xerces/.project Fri Apr  1 13:01:38 2011
@@ -0,0 +1,18 @@
+<projectDescription>
+  <name>org.apache.stanbol.reengineer.xerces</name>
+  <comment>Parent POM for the Apache Stanbol project. NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse.</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+    <buildCommand>
+      <name>org.eclipse.m2e.core.maven2Builder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.pde.PluginNature</nature>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+    <nature>org.eclipse.m2e.core.maven2Nature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reengineer/xerces/.settings/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/xerces/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xerces/.settings/org.eclipse.jdt.core.prefs?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xerces/.settings/org.eclipse.jdt.core.prefs (added)
+++ incubator/stanbol/trunk/reengineer/xerces/.settings/org.eclipse.jdt.core.prefs Fri Apr  1 13:01:38 2011
@@ -0,0 +1,6 @@
+#Wed Mar 23 17:40:17 GMT 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
+org.eclipse.jdt.core.compiler.source=1.6

Added: incubator/stanbol/trunk/reengineer/xerces/.settings/org.eclipse.m2e.core.prefs
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xerces/.settings/org.eclipse.m2e.core.prefs?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xerces/.settings/org.eclipse.m2e.core.prefs (added)
+++ incubator/stanbol/trunk/reengineer/xerces/.settings/org.eclipse.m2e.core.prefs Fri Apr  1 13:01:38 2011
@@ -0,0 +1,5 @@
+#Wed Mar 23 17:37:29 GMT 2011
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1

Added: incubator/stanbol/trunk/reengineer/xerces/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xerces/pom.xml?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xerces/pom.xml (added)
+++ incubator/stanbol/trunk/reengineer/xerces/pom.xml Fri Apr  1 13:01:38 2011
@@ -0,0 +1,119 @@
+<?xml version="1.0" encoding="UTF-8"?>
+	<!--
+		Licensed to the Apache Software Foundation (ASF) under one or more
+		contributor license agreements. See the NOTICE file distributed with
+		this work for additional information regarding copyright ownership.
+		The ASF licenses this file to You under the Apache License, Version
+		2.0 (the "License"); you may not use this file except in compliance
+		with the License. You may obtain a copy of the License at
+
+		http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+		applicable law or agreed to in writing, software distributed under the
+		License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+		CONDITIONS OF ANY KIND, either express or implied. See the License for
+		the specific language governing permissions and limitations under the
+		License.
+	-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.apache.stanbol</groupId>
+		<artifactId>stanbol-parent</artifactId>
+		<version>${stanbol-version}</version>
+		<relativePath>../../../parent</relativePath>
+	</parent>
+	<artifactId>org.apache.stanbol.reengineer.xerces</artifactId>
+	<version>${stanbol-version}</version>
+	<packaging>bundle</packaging>
+	<name>Apache Stanbol Reengineer Xerces dependency</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>xerces</groupId>
+			<artifactId>xercesImpl</artifactId>
+			<version>2.7.1</version>
+			<scope>compile</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.codehaus.castor</groupId>
+			<artifactId>castor-xml</artifactId>
+			<version>1.3.1</version>
+		</dependency>
+		<dependency>
+			<groupId>org.codehaus.castor</groupId>
+			<artifactId>castor-codegen</artifactId>
+			<version>1.3.1</version>
+		</dependency>
+	</dependencies>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<extensions>true</extensions>
+				<configuration>
+					<instructions>
+						<Export-Package>
+							org.apache.xerces.*,
+							org.apache.xml.serialize,
+							org.castor.core.*,
+							org.castor.mapping,
+							org.exolab.castor.*,
+							org.exolab.javasource
+            			</Export-Package>
+						<Private-Package>
+							org.castor.xml
+            			</Private-Package>
+						<Import-Package>
+							javax.naming,
+							javax.naming.directory,
+							javax.servlet,
+							javax.xml.datatype,
+							javax.xml.namespace,
+							javax.xml.parsers,
+							javax.xml.transform.*,
+							javax.xml.validation,
+							!netscape.ldap,
+							org.apache.log4j,
+							!org.apache.oro.text.regex,
+							!org.apache.regexp,
+							!org.apache.velocity.*,
+							!org.apache.xml.resolver,
+							!org.apache.xml.resolver.readers,
+							org.castor.mapping,
+							org.w3c.dom.*,
+							org.xml.sax.*,
+							!sun.io,
+							*
+						</Import-Package>
+						<_nouses>true</_nouses>
+					</instructions>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-scr-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
+
+	<repositories>
+		<repository>
+			<id>codehaus</id>
+			<name>Maven Codehaus repository</name>
+			<url>http://repository.codehaus.org/</url>
+		</repository>
+	</repositories>
+    <groupId>org.apache.stanbol</groupId>
+</project>
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/assembly/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/xerces/src/main/assembly/felix.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xerces/src/main/assembly/felix.xml?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xerces/src/main/assembly/felix.xml (added)
+++ incubator/stanbol/trunk/reengineer/xerces/src/main/assembly/felix.xml Fri Apr  1 13:01:38 2011
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<assembly>
+ <id>all</id>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <dependencySets>
+    <dependencySet>
+        <useProjectArtifact>false</useProjectArtifact>
+        <outputDirectory>modules</outputDirectory>
+        <excludes>
+          <exclude>org.apache.felix:org.apache.felix.main</exclude>
+        </excludes>
+    </dependencySet>
+    <dependencySet>
+        <useProjectArtifact>false</useProjectArtifact>
+        <outputDirectory></outputDirectory>
+        <includes>
+          <include>org.apache.felix:org.apache.felix.main</include>
+        </includes>
+    </dependencySet>
+  </dependencySets>
+  <files>
+    <file>
+      <source>${project.build.directory}/${project.artifactId}-${project.version}.jar</source>
+      <outputDirectory>modules</outputDirectory>
+    </file>
+    <file>
+      <source>${project.build.directory}/felix.jar</source>
+      <outputDirectory>bin</outputDirectory>
+    </file>
+    <file>
+      <source>${project.build.directory}/config.properties</source>
+      <outputDirectory>conf</outputDirectory>
+    </file>
+  </files>
+</assembly>

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/eu/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/eu/iksproject/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/eu/iksproject/kres/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/eu/iksproject/kres/shared/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/eu/iksproject/kres/shared/dependency/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/org/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/org/apache/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/org/apache/stanbol/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/org/apache/stanbol/reengineer/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/java/org/apache/stanbol/reengineer/xerces/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/resources/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/resources/eu/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/resources/eu/iksproject/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/resources/eu/iksproject/kres/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/resources/eu/iksproject/kres/shared/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/main/resources/eu/iksproject/kres/shared/dependency/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/eu/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/eu/iksproject/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/eu/iksproject/kres/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/eu/iksproject/kres/shared/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/eu/iksproject/kres/shared/dependency/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/org/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/org/apache/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/org/apache/stanbol/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/org/apache/stanbol/reengineer/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xerces/src/test/java/org/apache/stanbol/reengineer/xerces/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/xml/.classpath
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xml/.classpath?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xml/.classpath (added)
+++ incubator/stanbol/trunk/reengineer/xml/.classpath Fri Apr  1 13:01:38 2011
@@ -0,0 +1,62 @@
+<classpath>
+  <classpathentry kind="src" path="src/test/java" output="target/test-classes" including="**/*.java"/>
+  <classpathentry kind="src" path="src/main/java" including="**/*.java"/>
+  <classpathentry kind="src" path="src/main/resources" excluding="**/*.java"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="var" path="M2_REPO/javax/activation/activation/1.1/activation-1.1.jar" sourcepath="M2_REPO/javax/activation/activation/1.1/activation-1.1-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/com/hp/hpl/jena/arq/2.8.3/arq-2.8.3.jar" sourcepath="M2_REPO/com/hp/hpl/jena/arq/2.8.3/arq-2.8.3-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/com/hp/hpl/jena/arq/2.8.3/arq-2.8.3-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpcore/4.0/httpcore-4.0.jar" sourcepath="M2_REPO/org/apache/httpcomponents/httpcore/4.0/httpcore-4.0-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/com/ibm/icu/icu4j/3.4.4/icu4j-3.4.4.jar" sourcepath="M2_REPO/com/ibm/icu/icu4j/3.4.4/icu4j-3.4.4-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/com/hp/hpl/jena/iri/0.8/iri-0.8.jar" sourcepath="M2_REPO/com/hp/hpl/jena/iri/0.8/iri-0.8-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/com/hp/hpl/jena/iri/0.8/iri-0.8-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/com/hp/hpl/jena/jena/2.6.2/jena-2.6.2.jar" sourcepath="M2_REPO/com/hp/hpl/jena/jena/2.6.2/jena-2.6.2-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/com/hp/hpl/jena/jena/2.6.2/jena-2.6.2-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/junit/junit/4.4/junit-4.4.jar" sourcepath="M2_REPO/junit/junit/4.4/junit-4.4-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/junit/junit/4.4/junit-4.4-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.13/log4j-1.2.13.jar" sourcepath="M2_REPO/log4j/log4j/1.2.13/log4j-1.2.13-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-core/2.9.4/lucene-core-2.9.4.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.core/0.12-incubating-SNAPSHOT/org.apache.clerezza.rdf.core-0.12-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.core/0.12-incubating-SNAPSHOT/org.apache.clerezza.rdf.core-0.12-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.commons/0.5-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.commons-0.5-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.commons/0.5-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.commons-0.5-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.facade/0.12-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.facade-0.12-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.facade/0.12-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.facade-0.12-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.parser/0.10-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.parser-0.10-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.parser/0.10-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.parser-0.10-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.serializer/0.9-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.serializer-0.9-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.serializer/0.9-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.serializer-0.9-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.sparql/0.5-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.sparql-0.5-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.sparql/0.5-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.sparql-0.5-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.storage/0.5-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.storage-0.5-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.jena.storage/0.5-incubating-SNAPSHOT/org.apache.clerezza.rdf.jena.storage-0.5-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.simple.storage/0.7-incubating-SNAPSHOT/org.apache.clerezza.rdf.simple.storage-0.7-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.rdf.simple.storage/0.7-incubating-SNAPSHOT/org.apache.clerezza.rdf.simple.storage-0.7-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/clerezza/org.apache.clerezza.utils/0.1-incubating-SNAPSHOT/org.apache.clerezza.utils-0.1-incubating-SNAPSHOT.jar" sourcepath="M2_REPO/org/apache/clerezza/org.apache.clerezza.utils/0.1-incubating-SNAPSHOT/org.apache.clerezza.utils-0.1-incubating-SNAPSHOT-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/felix/org.apache.felix.scr.annotations/1.2.0/org.apache.felix.scr.annotations-1.2.0.jar" sourcepath="M2_REPO/org/apache/felix/org.apache.felix.scr.annotations/1.2.0/org.apache.felix.scr.annotations-1.2.0-sources.jar"/>
+  <classpathentry kind="src" path="/org.apache.stanbol.ontologymanager.ontonet"/>
+  <classpathentry kind="src" path="/org.apache.stanbol.owlapi"/>
+  <classpathentry kind="src" path="/org.apache.stanbol.reengineer.base"/>
+  <classpathentry kind="var" path="M2_REPO/org/osgi/org.osgi.compendium/4.1.0/org.osgi.compendium-4.1.0.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/apache/felix/org.osgi.core/1.4.0/org.osgi.core-1.4.0.jar" sourcepath="M2_REPO/org/apache/felix/org.osgi.core/1.4.0/org.osgi.core-1.4.0-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/osgi/org.osgi.core/4.1.0/org.osgi.core-4.1.0.jar"/>
+  <classpathentry kind="var" path="M2_REPO/owlapi/owlapi/3.0.0/owlapi-3.0.0.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.5.2/slf4j-api-1.5.2.jar" sourcepath="M2_REPO/org/slf4j/slf4j-api/1.5.2/slf4j-api-1.5.2-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-simple/1.5.2/slf4j-simple-1.5.2.jar" sourcepath="M2_REPO/org/slf4j/slf4j-simple/1.5.2/slf4j-simple-1.5.2-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/stax/stax-api/1.0.1/stax-api-1.0.1.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/codehaus/woodstox/stax2-api/2.9.9-3/stax2-api-2.9.9-3.jar" sourcepath="M2_REPO/org/codehaus/woodstox/stax2-api/2.9.9-3/stax2-api-2.9.9-3-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/com/hp/hpl/jena/tdb/0.8.5/tdb-0.8.5.jar" sourcepath="M2_REPO/com/hp/hpl/jena/tdb/0.8.5/tdb-0.8.5-sources.jar">
+    <attributes>
+      <attribute value="jar:file:/home/x-marley/.m2/repository/com/hp/hpl/jena/tdb/0.8.5/tdb-0.8.5-javadoc.jar!/" name="javadoc_location"/>
+    </attributes>
+  </classpathentry>
+  <classpathentry kind="var" path="M2_REPO/org/codehaus/woodstox/wstx-asl/3.9.9-3/wstx-asl-3.9.9-3.jar" sourcepath="M2_REPO/org/codehaus/woodstox/wstx-asl/3.9.9-3/wstx-asl-3.9.9-3-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/wymiwyg/wymiwyg-commons-core/0.7.5/wymiwyg-commons-core-0.7.5.jar" sourcepath="M2_REPO/org/wymiwyg/wymiwyg-commons-core/0.7.5/wymiwyg-commons-core-0.7.5-sources.jar"/>
+  <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.7.1/xercesImpl-2.7.1.jar"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+</classpath>
\ No newline at end of file

Added: incubator/stanbol/trunk/reengineer/xml/.project
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xml/.project?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xml/.project (added)
+++ incubator/stanbol/trunk/reengineer/xml/.project Fri Apr  1 13:01:38 2011
@@ -0,0 +1,27 @@
+<projectDescription>
+  <name>org.apache.stanbol.reengineer.xml</name>
+  <comment>Provides functionality for reengineering xml 
+		into ontologies. NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse.</comment>
+  <projects>
+    <project>org.apache.stanbol.ontologymanager.ontonet</project>
+    <project>org.apache.stanbol.owlapi</project>
+    <project>org.apache.stanbol.reengineer.base</project>
+  </projects>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+    <buildCommand>
+      <name>org.maven.ide.eclipse.maven2Builder</name>
+    </buildCommand>
+    <buildCommand>
+      <name>org.eclipse.m2e.core.maven2Builder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.pde.PluginNature</nature>
+    <nature>org.eclipse.m2e.core.maven2Nature</nature>
+    <nature>org.maven.ide.eclipse.maven2Nature</nature>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Propchange: incubator/stanbol/trunk/reengineer/xml/.settings/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/reengineer/xml/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xml/.settings/org.eclipse.jdt.core.prefs?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xml/.settings/org.eclipse.jdt.core.prefs (added)
+++ incubator/stanbol/trunk/reengineer/xml/.settings/org.eclipse.jdt.core.prefs Fri Apr  1 13:01:38 2011
@@ -0,0 +1,6 @@
+#Fri Mar 18 11:28:58 CET 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
+org.eclipse.jdt.core.compiler.source=1.6

Added: incubator/stanbol/trunk/reengineer/xml/.settings/org.eclipse.m2e.core.prefs
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xml/.settings/org.eclipse.m2e.core.prefs?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xml/.settings/org.eclipse.m2e.core.prefs (added)
+++ incubator/stanbol/trunk/reengineer/xml/.settings/org.eclipse.m2e.core.prefs Fri Apr  1 13:01:38 2011
@@ -0,0 +1,5 @@
+#Wed Mar 23 17:37:31 GMT 2011
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1

Added: incubator/stanbol/trunk/reengineer/xml/.settings/org.maven.ide.eclipse.prefs
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xml/.settings/org.maven.ide.eclipse.prefs?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xml/.settings/org.maven.ide.eclipse.prefs (added)
+++ incubator/stanbol/trunk/reengineer/xml/.settings/org.maven.ide.eclipse.prefs Fri Apr  1 13:01:38 2011
@@ -0,0 +1,9 @@
+#Thu Mar 17 16:08:39 CET 2011
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1

Added: incubator/stanbol/trunk/reengineer/xml/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/reengineer/xml/pom.xml?rev=1087691&view=auto
==============================================================================
--- incubator/stanbol/trunk/reengineer/xml/pom.xml (added)
+++ incubator/stanbol/trunk/reengineer/xml/pom.xml Fri Apr  1 13:01:38 2011
@@ -0,0 +1,258 @@
+<?xml version="1.0" encoding="UTF-8"?>
+	<!--
+		Licensed to the Apache Software Foundation (ASF) under one or more
+		contributor license agreements. See the NOTICE file distributed with
+		this work for additional information regarding copyright ownership.
+		The ASF licenses this file to You under the Apache License, Version
+		2.0 (the "License"); you may not use this file except in compliance
+		with the License. You may obtain a copy of the License at
+
+		http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+		applicable law or agreed to in writing, software distributed under the
+		License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+		CONDITIONS OF ANY KIND, either express or implied. See the License for
+		the specific language governing permissions and limitations under the
+		License.
+	-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.apache.stanbol</groupId>
+		<artifactId>stanbol-parent</artifactId>
+		<version>${stanbol-version}</version>
+		<relativePath>../../../parent</relativePath>
+	</parent>
+
+	<groupId>org.apache.stanbol</groupId>
+	<artifactId>org.apache.stanbol.reengineer.xml</artifactId>
+	<packaging>bundle</packaging>
+	<version>${stanbol-version}</version>
+
+	<name>Apache Stanbol XML Reegineer</name>
+	<description>
+		Provides functionality for reengineering xml 
+		into ontologies.
+	</description>
+
+	<inceptionYear>2010</inceptionYear>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<extensions>true</extensions>
+				<configuration>
+					<instructions>
+						<Bundle-ClassPath>
+							.,
+							xerces/xercesImpl-2.7.1.jar,
+							OSGI-INF
+						</Bundle-ClassPath>
+						<Export-Package>
+							org.apache.stanbol.reengineer.xml.*;version=${stanbol-version}
+	          			</Export-Package>
+						<Import-Package>
+							!org.apache.xml.resolver.*,
+							!sun.io.*,
+							org.slf4j.*;version=1.5.2,
+							org.xml.sax.*,
+							*
+            			</Import-Package>
+						<_nouses>true</_nouses>
+					</instructions>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-scr-plugin</artifactId>
+				<dependencies>
+					<dependency>
+						<groupId>com.hp.hpl.jena</groupId>
+						<artifactId>jena</artifactId>
+						<version>2.6.2</version>
+					</dependency>
+				</dependencies>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+				<dependencies>
+					<dependency>
+						<groupId>com.hp.hpl.jena</groupId>
+						<artifactId>jena</artifactId>
+						<version>2.6.2</version>
+					</dependency>
+				</dependencies>
+			</plugin>
+		</plugins>
+	</build>
+
+	<dependencies>
+
+		<!-- OSGi deps -->
+		<dependency>
+			<groupId>org.apache.felix</groupId>
+			<artifactId>org.apache.felix.scr.annotations</artifactId>
+			<version>1.2.0</version>
+		</dependency>
+
+
+		<!-- Stanbol deps -->
+		<dependency>
+			<groupId>org.apache.stanbol</groupId>
+			<artifactId>org.apache.stanbol.ontologymanager.ontonet</artifactId>
+			<version>${stanbol-version}</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.stanbol</groupId>
+			<artifactId>org.apache.stanbol.reengineer.base</artifactId>
+			<version>${stanbol-version}</version>
+		</dependency>
+
+		<!-- OWL deps -->
+		<dependency>
+			<groupId>com.hp.hpl.jena</groupId>
+			<artifactId>iri</artifactId>
+			<version>0.8</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>com.hp.hpl.jena</groupId>
+			<artifactId>jena</artifactId>
+			<version>2.6.2</version>
+			<scope>provided</scope>
+			<exclusions>
+				<exclusion>
+					<artifactId>slf4j-log4j12</artifactId>
+					<groupId>org.slf4j</groupId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>com.hp.hpl.jena</groupId>
+			<artifactId>arq</artifactId>
+			<version>2.8.3</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>com.hp.hpl.jena</groupId>
+			<artifactId>tdb</artifactId>
+			<version>0.8.5</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>owlapi</groupId>
+			<artifactId>owlapi</artifactId>
+			<version>3.0.0</version>
+		</dependency>
+
+		<!-- Clerezza deps -->
+		<dependency>
+			<groupId>org.apache.clerezza</groupId>
+			<artifactId>org.apache.clerezza.rdf.core</artifactId>
+			<version>0.12-incubating-SNAPSHOT</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.clerezza</groupId>
+			<artifactId>org.apache.clerezza.rdf.jena.serializer</artifactId>
+			<version>0.9-incubating-SNAPSHOT</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.clerezza</groupId>
+			<artifactId>org.apache.clerezza.rdf.jena.sparql</artifactId>
+			<version>0.5-incubating-SNAPSHOT</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.clerezza</groupId>
+			<artifactId>org.apache.clerezza.rdf.simple.storage</artifactId>
+			<version>0.7-incubating-SNAPSHOT</version>
+			<scope>provided</scope>
+		</dependency>
+
+		<!-- XML deps -->
+		<dependency>
+			<groupId>stax</groupId>
+			<artifactId>stax-api</artifactId>
+			<version>1.0.1</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.codehaus.woodstox</groupId>
+			<artifactId>wstx-asl</artifactId>
+			<version>3.9.9-3</version>
+		</dependency>
+		<dependency>
+			<groupId>com.ibm.icu</groupId>
+			<artifactId>icu4j</artifactId>
+			<version>3.4.4</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>xerces</groupId>
+			<artifactId>xercesImpl</artifactId>
+			<version>2.7.1</version>
+			<scope>compile</scope>
+		</dependency>
+
+		<!-- Diagnostics deps -->
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+			<version>1.5.2</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>1.2.13</version>
+			<scope>provided</scope>
+		</dependency>
+
+		<!-- Testing deps -->
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.4</version>
+			<scope>test</scope>
+			<exclusions>
+				<exclusion>
+					<groupId>org.slf4j</groupId>
+					<artifactId>slf4j-api</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-simple</artifactId>
+			<version>1.5.2</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.clerezza</groupId>
+			<artifactId>org.apache.clerezza.rdf.jena.parser</artifactId>
+			<version>0.10-incubating-SNAPSHOT</version>
+			<scope>provided</scope>
+		</dependency>
+
+	</dependencies>
+
+
+	<repositories>
+		<repository>
+			<id>codehaus</id>
+			<name>Maven Codehaus repository</name>
+			<url>http://repository.codehaus.org/</url>
+		</repository>
+	</repositories>
+
+</project>

Propchange: incubator/stanbol/trunk/reengineer/xml/src/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/eu/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/eu/iksproject/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/eu/iksproject/kres/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/eu/iksproject/kres/semion/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/org/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/org/apache/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/org/apache/stanbol/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target

Propchange: incubator/stanbol/trunk/reengineer/xml/src/main/java/org/apache/stanbol/reengineer/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  1 13:01:38 2011
@@ -0,0 +1 @@
+target