You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by wa...@apache.org on 2011/12/20 02:43:23 UTC

svn commit: r1221066 [7/7] - in /incubator/ooo/ooo-site/trunk/content/pt: about/ ajuda/ coop/ distribute/ download/ help/ html/ html/md5sum/ images/ images/apps_16/ images/apps_16/_vti_cnf/ images/fonte_dados_howto/ images/fusao_correio/ images/marketi...

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/JSFX_ImageZoom.js
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/JSFX_ImageZoom.js?rev=1221066&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/pt/sdmenu/JSFX_ImageZoom.js (added)
+++ incubator/ooo/ooo-site/trunk/content/pt/sdmenu/JSFX_ImageZoom.js Tue Dec 20 01:43:12 2011
@@ -0,0 +1,213 @@
+/******************************************************************* 
+* File    : JSFX_ImageZoom.js  © JavaScript-FX.com
+* Created : 2001/08/31 
+* Author  : Roy Whittle  (Roy@Whittle.com) www.Roy.Whittle.com 
+* Purpose : To create a zooming effect for images
+* History 
+* Date         Version        Description 
+* 2001-08-09  1.0    First version
+* 2001-08-31  1.1    Code split - others became JSFX_FadingRollovers,
+*                             JSFX_ImageFader and JSFX_ImageZoom.
+* 2002-01-27  1.2    Completed development by converting to JSFX namespace
+* 2002-04-25  1.3    Added the functions stretchIn & expandIn
+* 2004-01-06  1.4    Allowed for the image (tag) being forcibly sized
+***********************************************************************/ 
+/*** Create some global variables ***/
+if(!window.JSFX)
+  JSFX=new Object();
+JSFX.ImageZoomRunning = false;
+/*******************************************************************
+*
+* Function    : zoomIn
+*
+* Description : This function is based on the turn_on() function
+*          of animate2.js (animated rollovers from www.roy.whittle.com).
+*          Each zoom object is given a state. 
+*      OnMouseOver the state is switched depending on the current state.
+*      Current state -> Switch to
+*      ===========================
+*      null    ->  OFF.
+*      OFF    ->  ZOOM_IN + start timer
+*      ZOOM_OUT  ->  ZOOM_IN
+*      ZOOM_IN_OUT  ->  ZOOM_IN
+*****************************************************************/
+JSFX.zoomOn = function(img, zoomStep, maxZoom)
+{
+  if(img)
+  {
+    if(!zoomStep)
+    {
+      if(img.mode == "EXPAND")
+        zoomStep = img.height/10;
+      else
+        zoomStep = img.width/10;
+    }
+
+    if(!maxZoom)
+    {
+      if(img.mode == "EXPAND")
+        maxZoom = img.height/2;
+      else
+        maxZoom = img.width/2;
+    }
+
+
+    if(img.state == null)
+    {
+      img.state = "OFF";
+      img.index = 0;
+      img.orgWidth =  img.width;
+      img.orgHeight = img.height;
+      img.zoomStep = zoomStep;
+      img.maxZoom  = maxZoom;
+    }
+
+    if(img.state == "OFF")
+    {
+      img.state = "ZOOM_IN";
+      start_zooming();
+    }
+    else if( img.state == "ZOOM_IN_OUT"
+      || img.state == "ZOOM_OUT")
+    {
+      img.state = "ZOOM_IN";
+    }
+  }
+}
+JSFX.zoomIn = function(img, zoomStep, maxZoom)
+{
+  img.mode = "ZOOM";
+  JSFX.zoomOn(img, zoomStep, maxZoom);
+}
+JSFX.stretchIn = function(img, zoomStep, maxZoom)
+{
+  img.mode = "STRETCH";
+  JSFX.zoomOn(img, zoomStep, maxZoom);
+}
+JSFX.expandIn = function(img, zoomStep, maxZoom)
+{
+  img.mode = "EXPAND";
+  JSFX.zoomOn(img, zoomStep, maxZoom);
+}
+/*******************************************************************
+*
+* Function    : zoomOut
+*
+* Description : This function is based on the turn_off function
+*          of animate2.js (animated rollovers from www.roy.whittle.com).
+*          Each zoom object is given a state. 
+*      OnMouseOut the state is switched depending on the current state.
+*      Current state -> Switch to
+*      ===========================
+*      ON    ->  ZOOM_OUT + start timer
+*      ZOOM_IN  ->  ZOOM_IN_OUT.
+*****************************************************************/
+JSFX.zoomOut = function(img)
+{
+  if(img)
+  {
+    if(img.state=="ON")
+    {
+      img.state="ZOOM_OUT";
+      start_zooming();
+    }
+    else if(img.state == "ZOOM_IN")
+    {
+      img.state="ZOOM_IN_OUT";
+    }
+  }
+}
+/*******************************************************************
+*
+* Function    : start_zooming
+*
+* Description : This function is based on the start_animating() function
+*            of animate2.js (animated rollovers from www.roy.whittle.com).
+*      If the timer is not currently running, it is started.
+*      Only 1 timer is used for all objects
+*****************************************************************/
+function start_zooming()
+{
+  if(!JSFX.ImageZoomRunning)
+    ImageZoomAnimation();
+}
+
+JSFX.setZoom = function(img)
+{
+  if(img.mode == "STRETCH")
+  {
+    img.width  = img.orgWidth  + img.index;
+    img.height = img.orgHeight;
+  }
+  else if(img.mode == "EXPAND")
+  {
+    img.width  = img.orgWidth;
+    img.height = img.orgHeight + img.index;
+  }
+  else
+  {
+    img.width  = img.orgWidth   + img.index;
+    img.height = img.orgHeight  + (img.index * (img.orgHeight/img.orgWidth));
+  }
+}
+/*******************************************************************
+*
+* Function    : ImageZoomAnimation
+*
+* Description : This function is based on the Animate function
+*        of animate2.js (animated rollovers from www.roy.whittle.com).
+*        Each zoom object has a state. This function
+*        modifies each object and (possibly) changes its state.
+*****************************************************************/
+function ImageZoomAnimation()
+{
+  JSFX.ImageZoomRunning = false;
+  for(i=0 ; i<document.images.length ; i++)
+  {
+    var img = document.images[i];
+    if(img.state)
+    {
+      if(img.state == "ZOOM_IN")
+      {
+        img.index+=img.zoomStep;
+        if(img.index > img.maxZoom)
+          img.index = img.maxZoom;
+
+        JSFX.setZoom(img);
+
+        if(img.index == img.maxZoom)
+          img.state="ON";
+        else
+          JSFX.ImageZoomRunning = true;
+      }
+      else if(img.state == "ZOOM_IN_OUT")
+      {
+        img.index+=img.zoomStep;
+        if(img.index > img.maxZoom)
+          img.index = img.maxZoom;
+
+        JSFX.setZoom(img);
+  
+        if(img.index == img.maxZoom)
+          img.state="ZOOM_OUT";
+        JSFX.ImageZoomRunning = true;
+      }
+      else if(img.state == "ZOOM_OUT")
+      {
+        img.index-=img.zoomStep;
+        if(img.index < 0)
+          img.index = 0;
+
+        JSFX.setZoom(img);
+
+        if(img.index == 0)
+          img.state="OFF";
+        else
+          JSFX.ImageZoomRunning = true;
+      }
+    }
+  }
+  /*** Check to see if we need to animate any more frames. ***/
+  if(JSFX.ImageZoomRunning)
+    setTimeout("ImageZoomAnimation()", 40);
+}
\ No newline at end of file

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/JSFX_ImageZoom.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/JSFX_ImageZoom.js
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/bottom.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/bottom.gif?rev=1221066&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/bottom.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/collapsed.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/collapsed.gif?rev=1221066&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/estructura.css
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/estructura.css?rev=1221066&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/pt/sdmenu/estructura.css (added)
+++ incubator/ooo/ooo-site/trunk/content/pt/sdmenu/estructura.css Tue Dec 20 01:43:12 2011
@@ -0,0 +1,171 @@
+/* CSS Document */
+/* Estructura es la hoja de estilo BASE de la plantilla de OOoES */
+
+/* Regla para eliminar la columna izquierda de openoffice.org */
+#leftcol { display:none !important; }
+
+/* --- Reglas para elementos generales --- */
+body { margin: 0px; }
+
+h1 { 
+  padding: 5px;
+  background-color: #DEE4EE;
+  -moz-border-radius: 5px;
+}
+
+h2 {
+  padding-bottom: 2px;
+  border-bottom: 2px solid #DEE4EE;
+}
+
+a {
+        text-decoration: none !important;
+        color: #09388F;
+}
+
+/* --- Seccion Barra Lateral --- */
+#barra_lateral {
+  float: left;
+  width: 220px;
+}
+
+/* --- Menu --- */
+#menu { }
+
+#menu ul {
+  margin-left:0;
+  padding-left:0;
+  list-style-type:none;
+}
+  
+#menu_principal li {
+  padding:10px;
+  margin-bottom:5px;
+  background-color:#DEE4EE;
+  -moz-border-radius: 5px;
+  cursor: pointer;
+}
+
+#menu_principal li:hover{ background-color: #E1ECF4; }
+
+#menu_principal li.current {
+  background-color: #F2F2F2;
+  font-weight: bold;
+  color: gray;
+  cursor:default;
+}
+
+#menu_principal a {
+  text-decoration:none;
+  font-weight:bold;
+  color: #06348C;
+
+}
+
+#menu_principal a.current {
+  color: grey;
+}
+
+/* -- submenu -- */
+
+#submenu {
+  margin-top: 15px;
+  -moz-border-radius:5px;
+}
+
+#submenu li {
+  padding: 5px;
+  background-color:#A2D700;
+  -moz-border-radius:5px;
+  margin-bottom:5px;
+  margin-left:15px;
+  cursor: pointer;
+}
+
+#submenu li:hover {  background-color:#C4E65D; }
+
+#submenu li.current {
+  background-color:#D1D1D1;
+  //color: white;
+  cursor: default;
+}
+
+#submenu a {
+
+}
+
+#submenu a.current {
+  color: white;
+}
+
+/* --- Cuerpo del documento --- */ 
+
+.content {
+  margin-left: 230px;
+  padding-left: 10px;
+  padding-top: 1px;
+  border-left: dashed 1px gray;
+  margin-right:10px;
+}
+
+.content a {
+  text-decoration: none !important;
+  }
+
+.seccion {
+  padding: 5px;
+  margin: 5px;
+}
+
+.content p {
+  margin-left: 5px;
+}
+
+.head_menu {
+  background-color:#000099;
+  color:white;
+  font-size:10px;
+  text-align:center;
+  font-family:Arial, Helvetica, sans-serif;
+  font-weight: bold;
+  border-right-width: 2px;
+  border-bottom-width: 2px;
+  border-right-style: solid;
+  border-bottom-style: solid;
+  border-right-color: #555555;
+  border-bottom-color: #555555;
+  padding-top: 5px;
+  padding-bottom: 2px;
+}
+
+.optionitem {
+  background: #b9e06c;
+  margin-bottom: 2em;
+  padding: 0.5em;
+  padding-left: 1em;
+  padding-right: 1em; cursor: pointer;
+  -moz-border-radius: 5px;
+}
+
+/* --- Pie de pagina --- */
+#pie {
+  clear:left;
+}
+
+.tabs {
+  display: none ! important;
+}
+
+#projecttools {
+  display: none ! important;
+}
+#leftcol { display: none ! important;
+}
+#navcol { display: none ! important;
+}
+#contextualinformation { display: none ! important;
+}
+#contextualinformation.contentpart { display: none ! important;
+}
+#toptabs { display: none ! important;
+}

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/estructura.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/expanded.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/expanded.gif?rev=1221066&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/inicio.jpg
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/inicio.jpg?rev=1221066&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/inicio.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/linkarrow.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/linkarrow.gif?rev=1221066&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/linkarrow.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/menu.htm
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/menu.htm?rev=1221066&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/pt/sdmenu/menu.htm (added)
+++ incubator/ooo/ooo-site/trunk/content/pt/sdmenu/menu.htm Tue Dec 20 01:43:12 2011
@@ -0,0 +1,70 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+	<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+	<title>menu</title>
+	<link rel="stylesheet" type="text/css" href="sdmenu.css" />
+	<script type="text/javascript" src="sdmenu.js">
+		/***********************************************
+		* Slashdot Menu script- By DimX
+		* Submitted to Dynamic Drive DHTML code library: http://www.dynamicdrive.com
+		* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
+		***********************************************/
+	</script>
+	<script type="text/javascript">
+	// <![CDATA[
+	var myMenu;
+	window.onload = function() {
+		myMenu = new SDMenu("my_menu");
+		myMenu.init();
+		myMenu.collapseAll();
+	};
+	// ]]>
+	</script>
+  </head>
+  <body>
+        <a target="main" href="../main.htm">
+        <img border="0" src="inicio.jpg" width="150" height="25"></a>
+<br><br>
+    <div style="float: left" id="my_menu" class="sdmenu">
+      <div>
+        <span>O que é</span>
+        <a target="main" href="../about/about.htm">Acerca do OOo</a>
+        <a target="main" href="../about/newsletter.htm">Inscrição em newsletter</a>
+		<a target="main" href="../about/success.htm">Casos de Sucesso</a>
+        <a target="main" href="../about/faq_ger.htm">FAQs gerais</a>
+      </div>
+	<br>
+      <div>
+        <span>Download</span> 
+        <a target="main" href="../download/download.htm">Descarregar</a>
+		<a target="main" href="../download/dics.htm">Dicionários</a>
+        <a target="main" href="../download/projects.htm">Outros Projectos</a>
+      </div>
+	<br>
+      <div>
+        <span>Ajuda</span>
+        <a target="main" href="../help/manuals.htm">Manuais</a>
+        <a target="main" href="http://www.look2oo.org/smf/">Fórum</a> 
+        <a target="main" href="../help/books.htm">Livro</a>
+        <a target="main" href="../help/learning.htm">Formação</a>
+        <a target="main" href="http://www.look2oo.org/index.php?option=com_content&task=category&sectionid=3&id=7&Itemid=25">FAQs de utilização</a>
+      </div>
+	<br>
+      <div>
+        <span>Colaborar</span>
+        <a target="main" href="../coop/mailinglists.htm">Listas de Correio</a>
+		<a target="main" href="../coop/localization.htm">Tradução / Localização</a>
+		<a target="main" href="../coop/issue.htm">Reportar bugs  (issuezilla)</a>
+        <a target="main" href="../coop/marketing.htm">Material de Marketing</a>
+      </div>
+	<br>
+      <div>
+        <span>Distribuir</span> 
+        <a target="main" href="../distribute/distlist.htm">Lista de Distribuidores</a>
+		<a target="main" href="../distribute/wantdist.htm">Quer ser distribuidor?</a>
+      </div>      
+    </div>
+
+  </body>
+</html>
\ No newline at end of file

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/principal.css
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/principal.css?rev=1221066&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/pt/sdmenu/principal.css (added)
+++ incubator/ooo/ooo-site/trunk/content/pt/sdmenu/principal.css Tue Dec 20 01:43:12 2011
@@ -0,0 +1,83 @@
+/* Estilo de la pagina principal */
+a {
+  text-decoration: none !important;
+  color: #09388F;
+  font-weight:normal;
+}
+
+/* Encabezado */
+#toptabs { display: none ! important;
+}
+
+#contextualinformation.contentpart { background: none ! important;
+}
+
+#leftcol {
+display: none !important;
+}
+
+#navcol {
+display: none;
+}
+
+
+#break {
+  margin: auto; 
+  font-weight: bold; 
+  width: 400px; 
+  margin-bottom: 5em;}
+  
+#opt img {
+  padding-bottom:1em;
+  border: 0px;
+  }
+#logo {
+  width: 100%; 
+  height: 300px; 
+  float:right; 
+  background-image:url('../images/wiregulls.png'); 
+  background-repeat:no-repeat;
+  }
+
+#menu {
+float:right; width: 276px; margin-bottom: 3em;
+}
+
+
+
+/* Menus de componentes */ 
+.lmenu {
+  /*float: right;  margin-top: 0px;  padding-top: 0px;  top: 0px; */
+  position:relative;width:100%;height:125px;
+  background-color:#CDDEF8; 
+  border: 1px solid #000066;
+}
+
+.lmenu ul {
+list-style: none;
+display: inline; 
+font-family:Verdana, Arial, Helvetica, sans-serif; 
+font-weight:600; 
+color:#000066;
+}
+
+.lmenu li {
+  font-size: 14px; 
+  display: inline; 
+  padding-top:100px; 
+  padding-right:70px; 
+  background-repeat:no-repeat; 
+  }
+
+#Tour {
+  margin-left: 80%; 
+  background-image:url('../images/pill.png');
+  background-repeat:no-repeat; 
+  color: white; 
+  font-size: 14px; 
+  height: 30px; 
+  padding-top:5px; 
+  padding-left: 8px; 
+  font-family: Verdana, sans; 
+  text-decoration: none;
+}
\ No newline at end of file

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/principal.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.css
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.css?rev=1221066&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.css (added)
+++ incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.css Tue Dec 20 01:43:12 2011
@@ -0,0 +1,43 @@
+div.sdmenu {
+  width: 150px;
+  font-family: Arial, sans-serif;
+  font-size: 12px;
+  padding-bottom: 10px;
+  background: url(bottom.gif) no-repeat  right bottom;
+  color: #fff;
+}
+div.sdmenu div {
+  background: url(title.gif) repeat-x;
+  overflow: hidden;
+}
+div.sdmenu div.collapsed {
+  height: 25px;
+  background: url(toptitle.gif) no-repeat;
+}
+div.sdmenu div span {
+  display: block;
+  padding: 5px 25px;
+  font-weight: bold;
+  color: white;
+  background: url(expanded.gif) no-repeat 10px center;
+  cursor: default;
+  border-bottom: 1px solid #ddd;
+}
+div.sdmenu div.collapsed span {
+  background-image: url(collapsed.gif);
+}
+div.sdmenu div a {
+  padding: 5px 10px;
+  background: #eee;
+  display: block;
+  border-bottom: 1px solid #ddd;
+  color: #066;
+}
+div.sdmenu div a.current {
+  background : #ccc;
+}
+div.sdmenu div a:hover {
+  background : #066 url(linkarrow.gif) no-repeat right center;
+  color: #fff;
+  text-decoration: none;
+}
\ No newline at end of file

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.js
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.js?rev=1221066&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.js (added)
+++ incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.js Tue Dec 20 01:43:12 2011
@@ -0,0 +1,109 @@
+function SDMenu(id) {
+  if (!document.getElementById || !document.getElementsByTagName)
+    return false;
+  this.menu = document.getElementById(id);
+  this.submenus = this.menu.getElementsByTagName("div");
+  this.remember = false;
+  this.speed = 3;
+  this.markCurrent = true;
+  this.oneSmOnly = false;
+}
+SDMenu.prototype.init = function() {
+  var mainInstance = this;
+  for (var i = 0; i < this.submenus.length; i++)
+    this.submenus[i].getElementsByTagName("span")[0].onclick = function() {
+      mainInstance.toggleMenu(this.parentNode);
+    };
+  if (this.markCurrent) {
+    var links = this.menu.getElementsByTagName("a");
+    for (var i = 0; i < links.length; i++)
+      if (links[i].href == document.location.href) {
+        links[i].className = "current";
+        break;
+      }
+  }
+  if (this.remember) {
+    var regex = new RegExp("sdmenu_" + encodeURIComponent(this.menu.id) + "=([01]+)");
+    var match = regex.exec(document.cookie);
+    if (match) {
+      var states = match[1].split("");
+      for (var i = 0; i < states.length; i++)
+        this.submenus[i].className = (states[i] == 0 ? "collapsed" : "");
+    }
+  }
+};
+SDMenu.prototype.toggleMenu = function(submenu) {
+  if (submenu.className == "collapsed")
+    this.expandMenu(submenu);
+  else
+    this.collapseMenu(submenu);
+};
+SDMenu.prototype.expandMenu = function(submenu) {
+  var fullHeight = submenu.getElementsByTagName("span")[0].offsetHeight;
+  var links = submenu.getElementsByTagName("a");
+  for (var i = 0; i < links.length; i++)
+    fullHeight += links[i].offsetHeight;
+  var moveBy = Math.round(this.speed * links.length);
+  
+  var mainInstance = this;
+  var intId = setInterval(function() {
+    var curHeight = submenu.offsetHeight;
+    var newHeight = curHeight + moveBy;
+    if (newHeight < fullHeight)
+      submenu.style.height = newHeight + "px";
+    else {
+      clearInterval(intId);
+      submenu.style.height = "";
+      submenu.className = "";
+      mainInstance.memorize();
+    }
+  }, 30);
+  this.collapseOthers(submenu);
+};
+SDMenu.prototype.collapseMenu = function(submenu) {
+  var minHeight = submenu.getElementsByTagName("span")[0].offsetHeight;
+  var moveBy = Math.round(this.speed * submenu.getElementsByTagName("a").length);
+  var mainInstance = this;
+  var intId = setInterval(function() {
+    var curHeight = submenu.offsetHeight;
+    var newHeight = curHeight - moveBy;
+    if (newHeight > minHeight)
+      submenu.style.height = newHeight + "px";
+    else {
+      clearInterval(intId);
+      submenu.style.height = "";
+      submenu.className = "collapsed";
+      mainInstance.memorize();
+    }
+  }, 30);
+};
+SDMenu.prototype.collapseOthers = function(submenu) {
+  if (this.oneSmOnly) {
+    for (var i = 0; i < this.submenus.length; i++)
+      if (this.submenus[i] != submenu && this.submenus[i].className != "collapsed")
+        this.collapseMenu(this.submenus[i]);
+  }
+};
+SDMenu.prototype.expandAll = function() {
+  var oldOneSmOnly = this.oneSmOnly;
+  this.oneSmOnly = false;
+  for (var i = 0; i < this.submenus.length; i++)
+    if (this.submenus[i].className == "collapsed")
+      this.expandMenu(this.submenus[i]);
+  this.oneSmOnly = oldOneSmOnly;
+};
+SDMenu.prototype.collapseAll = function() {
+  for (var i = 0; i < this.submenus.length; i++)
+    if (this.submenus[i].className != "collapsed")
+      this.collapseMenu(this.submenus[i]);
+};
+SDMenu.prototype.memorize = function() {
+  if (this.remember) {
+    var states = new Array();
+    for (var i = 0; i < this.submenus.length; i++)
+      states.push(this.submenus[i].className == "collapsed" ? 0 : 1);
+    var d = new Date();
+    d.setTime(d.getTime() + (30 * 24 * 60 * 60 * 1000));
+    document.cookie = "sdmenu_" + encodeURIComponent(this.menu.id) + "=" + states.join("") + "; expires=" + d.toGMTString() + "; path=/";
+  }
+};
\ No newline at end of file

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/sdmenu.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/title.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/title.gif?rev=1221066&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/title.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/toptitle.gif
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/sdmenu/toptitle.gif?rev=1221066&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/ooo-site/trunk/content/pt/sdmenu/toptitle.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: incubator/ooo/ooo-site/trunk/content/pt/ssc/index.html
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/ssc/index.html?rev=1221066&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/pt/ssc/index.html (added)
+++ incubator/ooo/ooo-site/trunk/content/pt/ssc/index.html Tue Dec 20 01:43:12 2011
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html><head>
+<meta http-equiv="Content-Language" content="pt">
+<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
+<link rel="stylesheet" type="text/css" href="../sdmenu/sdmenu.css">
+
+  <title>OpenOffice.org - Issues</title><style type="text/css" media="screen, projection">
+
+/*<![CDATA[*/
+
+<!--
+
+@import url('../styles/display-none.css');
+
+-->
+
+/*]]>*/
+
+  </style><meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8"><meta name="GENERATOR" content="OpenOffice.org 2.3  (Linux)"><style type="text/css">
+  <!--
+    @page { margin: 2cm }
+    P { margin-bottom: 0.21cm }
+  -->
+  </style><meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8"><meta name="GENERATOR" content="OpenOffice.org 2.3  (Linux)"><style type="text/css">
+  <!--
+    @page { margin: 2cm }
+    P { margin-bottom: 0.21cm }
+  --></style></head>
+<body>
+
+<table id="table5" border="0" cellspacing="0" width="100%">
+  <tbody><tr>
+   
+  <td valign="top" width="800">
+
+
+<p style="line-height: 150%;" align="justify">
+<font size="4">
+<img src="../images/start_blue_bar.gif" border="0" height="7" width="28"> <b>Sapo Summerbits</b>
+<img src="../images/end_blue_bar.gif" border="0" height="7" width="126"></font></p><p></p><div style="text-align: center;">
+
+
+  
+  
+  
+  
+
+</div><p></p><p style="margin-bottom: 0cm; line-height: 150%; text-align: center;"><font face="Arial, sans-serif"><font size="4"><b>Projecto
+OpenThesaurus</b></font></font></p>
+
+<span style="font-weight: bold;"></span><p></p><p><span style="font-weight: bold;">Contextualização</span><br></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">O projecto <i>OpenThesaurus</i>
+(<a href="http://openthesaurus.caixamagica.pt/">http://openthesaurus.caixamagica.pt</a>),
+associado ao projecto <a href="http://pt.openoffice.org/">http://pt.openoffice.org</a>,
+é baseado no código do projecto <i>OpenThesaurus</i> e
+visa disponibilizar  um <i>thesaurus</i> (dicionário de sinónimos) em língua portuguesa
+sob uma licença Livre.</font></font></p>
+
+
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">O <i>Thesaurus</i> é
+a Base de Dados que permite que no processador de texto (ex: OpenOffice.org) seja possível
+ter sinónimos para uma determinada palavra.&nbsp;Por exemplo, para a
+palavra "carro", o <i>thesaurus</i> dá alternativas
+como "veículo" ou "automóvel".</font></font></p>
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">Este <i>thesaurus</i>
+pode ser utilizado fora do OpenOffice.org para efeitos de motores de
+pesquisa e outras aplicações Web.</font></font></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">Até ao momento, já
+se conseguiu disponibilizar 13.000 palavras, contudo, é
+necessário enriquecer esta base recorrendo a recursos de
+outros projectos como, por exemplo, do projecto NATURA da
+Universidade do Minho.</font></font></p>
+
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify"></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><span style="font-weight: bold;">Descrição do Projecto</span></p><br><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3">Este projecto, propõe-se
+então desenvolver mecanismos para importação e
+consolidação de sinónimos no <i>OpenThesaurus</i>
+bem como a implementação de ferramentas a integrar quer no
+OpenThesaurus quer como plugins de outras aplicações que permitam
+potenciar a utilização do OpenThesaurus.</font></font></p>
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">O objectivo não é
+o aluno inserir os sinónimos manualmente, para isso seria
+melhor um linguista, mas:</font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">&nbsp;&nbsp;&nbsp; - investigar bases de
+sinónimos para pt_PT e pt_BR existentes.</font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">  &nbsp;&nbsp;&nbsp; - desenvolver as
+ferramentas para as integrar na Base de Dados.</font></font></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3">&nbsp;&nbsp;&nbsp; - disponibilizar à
+comunidade.</font></font></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3">&nbsp;<br>Para além do ponto anterior pretende-se também (aceitam-se outras ideias):</font></font></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3">&nbsp;&nbsp;&nbsp;
+- Desenvolvimento de um plugin para o OpenOffice.org que permita aceder
+aos sinónimos de uma palavra a partir de um menu de contexto
+(tipicamente botão direito em cima da palavra sobre a qual se pretende
+consultar os sinónimos)</font></font></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3">&nbsp;&nbsp;&nbsp;
+- Desenvolvimento de uma ferramenta, que, a partir de um conjugador de
+verbos já existente, permita mapear pessoas e tempos verbais de dois ou
+mais verbos sinónimos. (ex: a primeira pessoa do presente do verbo
+'beber' é sinónimo </font></font><font face="Arial, sans-serif"><font size="3">da primeira pessoa do presente do verbo 'ingerir'</font></font><font face="Arial, sans-serif"><font size="3">)</font></font></p>
+<br><font face="Arial, sans-serif"><font size="3"><u><b>Conhecimentos<br><br></b></u></font></font><font face="Arial, sans-serif"><font size="3">&nbsp; &nbsp; &nbsp;- LAMP</font></font><br><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3"><u><b></b></u></font></font></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3"><u><b>Calendarização</b></u></font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<br>
+</p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3"><b>*Fase 1:</b>
+Investigação do estado da arte actual do OpenThesaurus
+(7 de Agosto de 2008)</font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">  <b>Objectivo:</b>
+Documento síntese dos contactos e levantamentos efectuados.</font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><br>
+</p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3"><b>* Fase 2:</b> Recolha
+de sinónimos &nbsp;e implementação de ferramentas (7 Setembro de 2008)</font></font></p>
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3"><b>  Objectivos:&nbsp;</b>- Implementação
+das ferramentas de importação de sinónimos na
+Base de dados do OpenThesaurus.</font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<br>
+</p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3"><b>* Fase 3:</b>
+Integração e Testes (15 Outubro)</font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">  <b>Objectivo:</b>
+Disponibilização da Base de Dados final e das
+ferramentas implementadas na fase anterior</font></font></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><big><font face="Arial, sans-serif"><font size="3"><big><b></b></big></font></font></big></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><big><font face="Arial, sans-serif"><font size="3"><big><b>Dados
+Pessoais do orientador</b></big></font></font></big></p>
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><b>&nbsp;&nbsp;&nbsp; Nome:  </b>Rui
+Sérgio Lopes Fernandes</font></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><b>&nbsp;&nbsp;&nbsp; Mail:</b>    <a href="mailto:rui.fernandes@caixamagica.pt">rui.fernandes@caixamagica.pt</a></font></p>
+<p></p><p></p><p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><big><span style="font-weight: bold;">Dados da entidade organizadora</span></big><br>
+</p>
+
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><b>&nbsp;&nbsp;&nbsp; Organização: </b><span style="">OpenOffice.org</span></font></p>
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">&nbsp;&nbsp;&nbsp; O projecto
+pt.OpenOffice.org é o responsável nacional pela
+localização e disponibilização do
+OpenOffice em Portugal.</font></font></p>
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">&nbsp;&nbsp;&nbsp; Neste momento, tem a
+seguinte estrutura de coordenação:</font></font></p>
+
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; - Rui Fernandes
+(Coordenador) - Site</font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3"><span style="">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; -
+Paulo Vilela – Responsável pela a área de </span></font><font size="3"><i><span style="">marketing</span></i></font><font size="3"><span style="font-style: normal;"><span style="">
+e localização do OpenOffice.org.</span></span></font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify"><font face="Arial, sans-serif"><font size="3"><span style="">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; -
+João Neves - Sistema de </span></font><font size="3"><i><span style="">builds</span></i></font></font></p>
+<p style="margin-bottom: 0cm; line-height: 150%;" align="justify">
+<font face="Arial, sans-serif"><font size="3">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; - Flávio Moringa -
+servidores FTP / mirror</font></font></p><p></p><p>
+
+
+  
+  
+  
+  </p></td>
+</tr></tbody></table>
+
+</body></html>
\ No newline at end of file

Propchange: incubator/ooo/ooo-site/trunk/content/pt/ssc/index.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/ooo/ooo-site/trunk/content/pt/ssc/index.html
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/ooo/ooo-site/trunk/content/pt/styles/display-none.css
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/pt/styles/display-none.css?rev=1221066&view=auto
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/pt/styles/display-none.css (added)
+++ incubator/ooo/ooo-site/trunk/content/pt/styles/display-none.css Tue Dec 20 01:43:12 2011
@@ -0,0 +1,27 @@
+/*#leftcol {
+display: none;
+} */
+
+#navcol {
+  display: none;
+}
+
+#contextualinformation {
+  display: none;
+}
+
+#breadcrumbs {
+  display: none;
+}
+
+/*#broadcastmsg {
+  display: none;
+}*/
+
+#toptabs {
+  display: none;
+}
+
+/*#footer {
+  display: none;
+}*/

Propchange: incubator/ooo/ooo-site/trunk/content/pt/styles/display-none.css
------------------------------------------------------------------------------
    svn:eol-style = native