toshi       2005/01/26 01:31:18

  Added:       targets/axis/ja/skin/images add.jpg
                        built-with-forrest-button.png
                        corner-imports.svg.xslt dc.svg.xslt
                        external-link.gif favicon.ico fix.jpg
                        forrest-credit-logo.png hack.jpg note.gif
                        nw_maj_rond.gif nw_min.gif pdfdoc.gif poddoc.png
                        poddoc.svg.xslt printer.gif rc.svg.xslt README.txt
                        remove.jpg rss.png spacer.gif strich.gif update.jpg
                        valid-html401.png vcss.png void.gif xmldoc.gif
  Log:
  A feedback from the i18n task on the Japanese Axis Community.
  The translation was made by Youhei Kawada [EMAIL PROTECTED]
  
  Revision  Changes    Path
  1.1                  ws-site/targets/axis/ja/skin/images/add.jpg
  
        <<Binary file>>
  
  
  1.1                  
ws-site/targets/axis/ja/skin/images/built-with-forrest-button.png
  
        <<Binary file>>
  
  
  1.1                  
ws-site/targets/axis/ja/skin/images/corner-imports.svg.xslt
  
  Index: corner-imports.svg.xslt
  ===================================================================
  <?xml version="1.0"?>
  <!--
    Copyright 2002-2004 The Apache Software Foundation
  
    Licensed 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.
  -->
  <xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  
      <xsl:param name="orientation-tb"/>
      <xsl:param name="orientation-lr"/>
      <xsl:param name="size"/>
      <xsl:param name="bg-color-name"/>
      <xsl:param name="stroke-color-name"/>
      <xsl:param name="fg-color-name"/>    
  
     <!-- if not all colors are present, don't even try to render the corners 
-->
      <xsl:variable name="isize"><xsl:choose>
        <xsl:when test="$bg-color-name and $stroke-color-name and 
$fg-color-name"><xsl:value-of select="$size"/></xsl:when>
        <xsl:otherwise>0</xsl:otherwise>
      </xsl:choose></xsl:variable>
      <xsl:variable name="smallersize" select="number($isize)-1"/>
      <xsl:variable name="biggersize" select="number($isize)+1"/>     
      <xsl:variable name="bg"><xsl:if test="skinconfig/colors/[EMAIL 
PROTECTED]">fill:<xsl:value-of select="skinconfig/colors/[EMAIL 
PROTECTED]/@value"/>;</xsl:if></xsl:variable>
      <xsl:variable name="fill"><xsl:if test="skinconfig/colors/[EMAIL 
PROTECTED]">fill:<xsl:value-of select="skinconfig/colors/[EMAIL 
PROTECTED]/@value"/>;</xsl:if></xsl:variable>
      <xsl:variable name="stroke"><xsl:if test="skinconfig/colors/[EMAIL 
PROTECTED]">stroke:<xsl:value-of select="skinconfig/colors/[EMAIL 
PROTECTED]/@value"/>;</xsl:if></xsl:variable>
          
        <xsl:template match="skinconfig">
  
                
  
  <svg width="{$isize}" height="{$isize}">
      <!-- background-->
      <rect x="-1" y="-1" width="{$biggersize}" height="{$biggersize}" 
style="{$bg}stroke-width:0"/>
  <!-- 0,0 0,-4 4,0 4,-4-->
  
      <xsl:variable name="flip-tb-scale">
        <xsl:choose>
        <xsl:when test="$orientation-tb='t'">1</xsl:when>
        <xsl:otherwise>-1</xsl:otherwise>
        </xsl:choose>
      </xsl:variable>
  
      <xsl:variable name="flip-lr-scale">
        <xsl:choose>
        <xsl:when test="$orientation-lr='l'">1</xsl:when>
        <xsl:otherwise>-1</xsl:otherwise>
        </xsl:choose>
      </xsl:variable>
      
      <xsl:variable name="flip-tb-translate">
        <xsl:choose>
        <xsl:when test="$orientation-tb='t'">0</xsl:when>
        <xsl:otherwise>-<xsl:value-of select="$isize" /></xsl:otherwise>
        </xsl:choose>
      </xsl:variable>
  
      <xsl:variable name="flip-lr-translate">
        <xsl:choose>
        <xsl:when test="$orientation-lr='l'">0</xsl:when>
        <xsl:otherwise>-<xsl:value-of select="$isize" /></xsl:otherwise>
        </xsl:choose>
      </xsl:variable>    
      
      <!-- flip transform -->
      <g transform="scale({$flip-lr-scale},{$flip-tb-scale}) 
translate({$flip-lr-translate}, {$flip-tb-translate})"> 
        <xsl:call-template name="figure" />
      </g>
  </svg>
  </xsl:template>
  
          
    <xsl:template name="figure">
         <!-- Just change shape here -->     
                <g transform="translate(0.5 0.5)">
                        <ellipse cx="{$smallersize}" cy="{$smallersize}" 
rx="{$smallersize}" ry="{$smallersize}"
                                 style="{$fill}{$stroke}stroke-width:1"/>
                </g>
           <!-- end --> 
    </xsl:template>
      
    
    <xsl:template match="*"></xsl:template>
    <xsl:template match="text()"></xsl:template>
    
  </xsl:stylesheet>
  
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/dc.svg.xslt
  
  Index: dc.svg.xslt
  ===================================================================
  <?xml version="1.0"?>
  <!--
    Copyright 2002-2004 The Apache Software Foundation
  
    Licensed 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.
  -->
  <xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
    <xsl:import href="corner-imports.svg.xslt" />
    
    <!-- Diagonal 45 degrees corner -->
    <xsl:template name="figure">
          <xsl:variable name="biggersize" 
select="number($size)+number($size)"/>     
                <g transform="translate(0 0.5)">
             <polygon points="0,{$size} {$size},0 {$biggersize},0 
{$biggersize},{$biggersize} 0,{$biggersize}"
                      style="{$fill}{$stroke}stroke-width:1"/>
                </g>
    </xsl:template>
        
  </xsl:stylesheet>
  
  
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/external-link.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/favicon.ico
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/fix.jpg
  
        <<Binary file>>
  
  
  1.1                  
ws-site/targets/axis/ja/skin/images/forrest-credit-logo.png
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/hack.jpg
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/note.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/nw_maj_rond.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/nw_min.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/pdfdoc.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/poddoc.png
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/poddoc.svg.xslt
  
  Index: poddoc.svg.xslt
  ===================================================================
  <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  <!--
    Copyright 2002-2004 The Apache Software Foundation
  
    Licensed 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.
  -->
  <svg width="20pt" height="20pt"
     xmlns="http://www.w3.org/2000/svg";
     xmlns:xlink="http://www.w3.org/1999/xlink";>
    <defs
       id="defs550">
      <linearGradient id="gray2white">
        <stop style="stop-color:#7f7f7f;stop-opacity:1;" offset="0.000000"/>
        <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1.000000"/>
      </linearGradient>
      <linearGradient id="pageshade" xlink:href="#gray2white"
         x1="0.95" y1="0.95"
         x2="0.40" y2="0.20"
         gradientUnits="objectBoundingBox" spreadMethod="pad" />
      <path d="M 0 0 L 200 0" style="stroke:#000000;stroke-width:1pt;" id="hr"/>
    </defs>
  
    <g transform="scale(0.08)">
      <g transform="translate(40, 0)">
        <rect width="230" height="300" x="0" y="0"
              style="fill:url(#pageshade);fill-rule:evenodd;
              stroke:#000000;stroke-width:1.25;"/>
  
        <g transform="translate(15, 60)">
          <use xlink:href="#hr" x="0" y="0"/>
          <use xlink:href="#hr" x="0" y="60"/>
          <use xlink:href="#hr" x="0" y="120"/>
          <use xlink:href="#hr" x="0" y="180"/>
        </g>
      </g>
  
      <g transform="translate(0,70),scale(1.1,1.6)">
        <rect width="200" height="100" x="0" y="0"
           style="fill:#ff0000;fill-rule:evenodd;
                  stroke:#000000;stroke-width:2.33903;"/>
        <text x="20" y="75"
              style="stroke:#ffffff;stroke-width:1.0;
                     font-size:72;font-weight:normal;fill:#ffffff;
                     font-family:Arial;text-anchor:start;">POD</text>
      </g>
    </g>
  </svg>
  
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/printer.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/rc.svg.xslt
  
  Index: rc.svg.xslt
  ===================================================================
  <?xml version="1.0"?>
  <!--
    Copyright 2002-2004 The Apache Software Foundation
  
    Licensed 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.
  -->
  <xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
    <xsl:import href="corner-imports.svg.xslt" />
  
    <!-- Rounded corner -->
    <xsl:template name="figure">
                <g transform="translate(0.5 0.5)">
                        <ellipse cx="{$smallersize}" cy="{$smallersize}" 
rx="{$smallersize}" ry="{$smallersize}"
                                 style="{$fill}{$stroke}stroke-width:1"/>
                </g>
    </xsl:template>
        
  </xsl:stylesheet>
  
  
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/README.txt
  
  Index: README.txt
  ===================================================================
  This directory is currently useless, as the sitemap only looks in
  skins/{forrest:skin}, so files must be kept in synch manually until this is
  fixed.
  
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/remove.jpg
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/rss.png
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/spacer.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/strich.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/update.jpg
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/valid-html401.png
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/vcss.png
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/void.gif
  
        <<Binary file>>
  
  
  1.1                  ws-site/targets/axis/ja/skin/images/xmldoc.gif
  
        <<Binary file>>
  
  

Reply via email to