You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2010/02/11 03:07:09 UTC

svn commit: r908793 [8/8] - in /webservices/juddi/styles/trunk: ./ docbook/ docbook/juddi-docbook-style/ docbook/juddi-docbook-style/src/ docbook/juddi-docbook-style/src/main/ docbook/juddi-docbook-style/src/main/css/ docbook/juddi-docbook-style/src/ma...

Added: webservices/juddi/styles/trunk/site/src/main/resources/images/project.svg
URL: http://svn.apache.org/viewvc/webservices/juddi/styles/trunk/site/src/main/resources/images/project.svg?rev=908793&view=auto
==============================================================================
--- webservices/juddi/styles/trunk/site/src/main/resources/images/project.svg (added)
+++ webservices/juddi/styles/trunk/site/src/main/resources/images/project.svg Thu Feb 11 02:07:06 2010
@@ -0,0 +1,61 @@
+<?xml version="1.0" standalone="no"?>
+
+<!--
+       SVG Anteater logo
+        jefft@apache.org
+
+To get started with SVG, I'd recommend getting the Adobe SVG plugin, and the
+xml-batik CVS module. Then have a look at the xml-batik/samples files. Use the
+SVG spec (http://www.w3.org/TR/SVG/) as a reference.
+-->
+
+<!--
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
+"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+-->
+<svg xmlns="http://www.w3.org/2000/svg"
+     xmlns:xlink="http://www.w3.org/1999/xlink"
+     xmlns:for="http://xml.apache.org/forrest" width="220" height="65" >
+  <title>Anteater logo</title>
+
+  <defs>
+
+    <!--
+    <radialGradient id="radialGradient">
+      <stop style="stop-color:gold" offset="0"/>
+      <stop style="stop-color:orange" offset=".5"/>
+      <stop style="stop-color:crimson" offset="1"/>
+    </radialGradient>
+    <linearGradient id="linearGradient">
+      <stop style="stop-color:gold" offset="0"/>
+      <stop style="stop-color:orange" offset=".5"/>
+      <stop style="stop-color:crimson" offset="1"/>
+    </linearGradient>
+    -->
+
+    <linearGradient id="gradient" x1="0" y1="0" x2="0" y2="1">
+      <stop style="stop-color:white" offset="0"/>
+      <stop style="stop-color:lightgreen" offset="1"/>
+    </linearGradient>
+
+    <filter id="shadowFilter"  filterUnits="objectBoundingBox">
+      <!-- Takes the alpha channel (black outline of the text), blurs it and saves as 'blur' -->
+      <feGaussianBlur in="SourceAlpha" stdDeviation="2 2" result="blur"/>
+      <!-- Takes saved 'blur' and offsets it by 4 pixels, saves as 'offsetBlur' -->
+      <feOffset in="blur" dx="4" dy="4" result="offsetBlur"/>
+      <!-- Merges SourceGraphic (original image) and 'offsetBlur', putting the
+      former 'over' the latter, and using the merged result as the finished
+      image -->
+      <feComposite in="SourceGraphic" in2="offsetBlur" operator="over"/>
+    </filter>
+
+  </defs>
+
+  <g filter="url(#shadowFilter)" fill="url(#gradient)">
+    <text x="51%" y="75%" style="font-size:32pt; font-family:Verdana ; text-anchor: middle" >
+    <for:project-name />
+    </text>
+  </g>
+</svg>
+
+

Added: webservices/juddi/styles/trunk/site/src/main/resources/images/s.gif
URL: http://svn.apache.org/viewvc/webservices/juddi/styles/trunk/site/src/main/resources/images/s.gif?rev=908793&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/juddi/styles/trunk/site/src/main/resources/images/s.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/juddi/styles/trunk/site/src/main/resources/images/strong.gif
URL: http://svn.apache.org/viewvc/webservices/juddi/styles/trunk/site/src/main/resources/images/strong.gif?rev=908793&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/juddi/styles/trunk/site/src/main/resources/images/strong.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/juddi/styles/trunk/site/src/main/resources/images/tab_bkgd.png
URL: http://svn.apache.org/viewvc/webservices/juddi/styles/trunk/site/src/main/resources/images/tab_bkgd.png?rev=908793&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/juddi/styles/trunk/site/src/main/resources/images/tab_bkgd.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/juddi/styles/trunk/site/src/main/resources/unitpngfix.js
URL: http://svn.apache.org/viewvc/webservices/juddi/styles/trunk/site/src/main/resources/unitpngfix.js?rev=908793&view=auto
==============================================================================
--- webservices/juddi/styles/trunk/site/src/main/resources/unitpngfix.js (added)
+++ webservices/juddi/styles/trunk/site/src/main/resources/unitpngfix.js Thu Feb 11 02:07:06 2010
@@ -0,0 +1,35 @@
+var clear="images/s.gif" //path to clear.gif
+
+pngfix=function(){
+	var els=document.getElementsByTagName('*');
+	var ip=/\.png/i;
+	var i=els.length;
+	while(i-- >0){
+		var el=els[i];
+		var es=el.style;
+		if(el.src&&el.src.match(ip)&&!es.filter){
+			es.height=el.height;
+			es.width=el.width;
+			es.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+el.src+"',sizingMethod='crop')";
+			el.src=clear;
+		}
+		else{
+			var elb=el.currentStyle.backgroundImage;
+			if(elb.match(ip)){
+				var path=elb.split('"');
+				var rep=(el.currentStyle.backgroundRepeat=='no-repeat')?'crop':'scale';
+				es.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+path[1]+"',sizingMethod='"+rep+"')";
+				es.height=el.clientHeight+'px';
+				es.backgroundImage='none';
+				var elkids=el.getElementsByTagName('*');
+				if (elkids){
+					var j=elkids.length;
+					if(el.currentStyle.position!="absolute")es.position='static';
+					while (j-- >0)
+					if(!elkids[j].style.position)elkids[j].style.position="relative";
+				}
+			}
+		}
+	}
+}
+window.attachEvent('onload',pngfix);
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org