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

svn commit: r1089481 - in /incubator/stanbol/trunk: commons/web/home/src/main/resources/org/apache/stanbol/commons/web/home/static/style/stanbol.css enhancer/jersey/src/main/java/org/apache/stanbol/enhancer/jersey/resource/ContentItemResource.java

Author: ogrisel
Date: Wed Apr  6 15:06:11 2011
New Revision: 1089481

URL: http://svn.apache.org/viewvc?rev=1089481&view=rev
Log:
STANBOL-120: missing image path fixes

Modified:
    incubator/stanbol/trunk/commons/web/home/src/main/resources/org/apache/stanbol/commons/web/home/static/style/stanbol.css
    incubator/stanbol/trunk/enhancer/jersey/src/main/java/org/apache/stanbol/enhancer/jersey/resource/ContentItemResource.java

Modified: incubator/stanbol/trunk/commons/web/home/src/main/resources/org/apache/stanbol/commons/web/home/static/style/stanbol.css
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/commons/web/home/src/main/resources/org/apache/stanbol/commons/web/home/static/style/stanbol.css?rev=1089481&r1=1089480&r2=1089481&view=diff
==============================================================================
--- incubator/stanbol/trunk/commons/web/home/src/main/resources/org/apache/stanbol/commons/web/home/static/style/stanbol.css (original)
+++ incubator/stanbol/trunk/commons/web/home/src/main/resources/org/apache/stanbol/commons/web/home/static/style/stanbol.css Wed Apr  6 15:06:11 2011
@@ -55,7 +55,7 @@ form  {
 
 .header {
   padding: 0.5em 1em;
-  background: #4c4c4c url("/static/images/header_bg.png") repeat-x top left;  
+  background: #4c4c4c url("/static/home/images/header_bg.png") repeat-x top left;  
   border-bottom: 1px solid black;
 }
 
@@ -251,11 +251,11 @@ table {
 .entitylisting table {
   border: 1px solid #eee;
   border-radius: 8px;
-  background: url("/static/images/foldable_unfolded.png") no-repeat scroll right 17px transparent;
+  background: url("/static/home/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;
+  background: url("/static/home/images/foldable_folded.png") no-repeat scroll right center transparent;
   }
 
 .entitylisting .subheader {
@@ -326,27 +326,27 @@ table {
   }
 
 li.older a {
-  background: url("/static/images/next.png") no-repeat scroll right center transparent;
+  background: url("/static/home/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;
+  background: url("/static/home/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;
+  background: url("/static/home/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;
+  background: url("/static/home/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;
+  background: url("/static/home/images/external.png") no-repeat scroll right center transparent;
   padding: 0 18px 0 0;
   }
   
@@ -369,11 +369,11 @@ li.moreRecent a {
 .enginelisting .collapseheader {
   margin: 0.1em;
   cursor: pointer;
-  background: url("/static/images/foldable_unfolded.png") no-repeat scroll right center transparent;
+  background: url("/static/home/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;
+  background: url("/static/home/images/foldable_folded.png") no-repeat scroll right center transparent;
 }
 
 .enginelisting ul {
@@ -387,7 +387,7 @@ li.moreRecent a {
 .enginelisting li {
   list-style: none;
   padding-left: 20px; 
-  background: transparent url(/static/images/black_gear_16.png) no-repeat scroll 0% 50%;
+  background: transparent url(/static/home/images/black_gear_16.png) no-repeat scroll 0% 50%;
 }
 
 #enginesInput .submitButtons {

Modified: incubator/stanbol/trunk/enhancer/jersey/src/main/java/org/apache/stanbol/enhancer/jersey/resource/ContentItemResource.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/enhancer/jersey/src/main/java/org/apache/stanbol/enhancer/jersey/resource/ContentItemResource.java?rev=1089481&r1=1089480&r2=1089481&view=diff
==============================================================================
--- incubator/stanbol/trunk/enhancer/jersey/src/main/java/org/apache/stanbol/enhancer/jersey/resource/ContentItemResource.java (original)
+++ incubator/stanbol/trunk/enhancer/jersey/src/main/java/org/apache/stanbol/enhancer/jersey/resource/ContentItemResource.java Wed Apr  6 15:06:11 2011
@@ -122,7 +122,7 @@ public class ContentItemResource extends
             this.metadataHref = uriInfo.getBaseUriBuilder().path("/store/metadata").path(localId).build();
         }
         defaultThumbnails.put(DBPEDIA_PERSON, getStaticRootUrl() + "/home/images/user_48.png");
-        defaultThumbnails.put(DBPEDIA_ORGANISATION, getStaticRootUrl() + "/home/organization_48.png");
+        defaultThumbnails.put(DBPEDIA_ORGANISATION, getStaticRootUrl() + "/home/images/organization_48.png");
         defaultThumbnails.put(DBPEDIA_PLACE, getStaticRootUrl() + "/home/images/compass_48.png");
 
     }