Return-Path: X-Original-To: apmail-incubator-ooo-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ooo-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 60D297B54 for ; Tue, 20 Dec 2011 01:44:32 +0000 (UTC) Received: (qmail 75230 invoked by uid 500); 20 Dec 2011 01:44:32 -0000 Delivered-To: apmail-incubator-ooo-commits-archive@incubator.apache.org Received: (qmail 75207 invoked by uid 500); 20 Dec 2011 01:44:32 -0000 Mailing-List: contact ooo-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ooo-dev@incubator.apache.org Delivered-To: mailing list ooo-commits@incubator.apache.org Received: (qmail 75193 invoked by uid 99); 20 Dec 2011 01:44:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Dec 2011 01:44:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Dec 2011 01:44:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 98E982388AC8; Tue, 20 Dec 2011 01:43:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: 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... Date: Tue, 20 Dec 2011 01:43:23 -0000 To: ooo-commits@incubator.apache.org From: wave@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111220014326.98E982388AC8@eris.apache.org> 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 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 @@ + + + + + menu + + + + + + + +

+ + + + \ 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 @@ + + + + + + + OpenOffice.org - Issues + + + + + + +
+ + +

+ + Sapo Summerbits +

+ + + + + + + +

Projecto +OpenThesaurus

+ +

Contextualização

+O projecto OpenThesaurus +(http://openthesaurus.caixamagica.pt), +associado ao projecto http://pt.openoffice.org, +é baseado no código do projecto OpenThesaurus e +visa disponibilizar um thesaurus (dicionário de sinónimos) em língua portuguesa +sob uma licença Livre.

+ + + +

+O Thesaurus é +a Base de Dados que permite que no processador de texto (ex: OpenOffice.org) seja possível +ter sinónimos para uma determinada palavra. Por exemplo, para a +palavra "carro", o thesaurus dá alternativas +como "veículo" ou "automóvel".

+ +

+Este thesaurus +pode ser utilizado fora do OpenOffice.org para efeitos de motores de +pesquisa e outras aplicações Web.

+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.

+ + +

Descrição do Projecto


Este projecto, propõe-se +então desenvolver mecanismos para importação e +consolidação de sinónimos no OpenThesaurus +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.

+ +

+O objectivo não é +o aluno inserir os sinónimos manualmente, para isso seria +melhor um linguista, mas:

+

+    - investigar bases de +sinónimos para pt_PT e pt_BR existentes.

+

+     - desenvolver as +ferramentas para as integrar na Base de Dados.

    - disponibilizar à +comunidade.

 
Para além do ponto anterior pretende-se também (aceitam-se outras ideias):

    +- 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)

    +- 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 da primeira pessoa do presente do verbo 'ingerir')

+
Conhecimentos

     - LAMP

Calendarização

+

+
+

+

+*Fase 1: +Investigação do estado da arte actual do OpenThesaurus +(7 de Agosto de 2008)

+

+ Objectivo: +Documento síntese dos contactos e levantamentos efectuados.

+


+

+

+* Fase 2: Recolha +de sinónimos  e implementação de ferramentas (7 Setembro de 2008)

+ +

+ Objectivos: - Implementação +das ferramentas de importação de sinónimos na +Base de dados do OpenThesaurus.

+

+
+

+

+* Fase 3: +Integração e Testes (15 Outubro)

+

+ Objectivo: +Disponibilização da Base de Dados final e das +ferramentas implementadas na fase anterior

Dados +Pessoais do orientador

+ +

    Nome: Rui +Sérgio Lopes Fernandes

    Mail: rui.fernandes@caixamagica.pt

+

Dados da entidade organizadora
+

+ + +

    Organização: OpenOffice.org

+ +

+    O projecto +pt.OpenOffice.org é o responsável nacional pela +localização e disponibilização do +OpenOffice em Portugal.

+ +

+    Neste momento, tem a +seguinte estrutura de coordenação:

+ +

+        - Rui Fernandes +(Coordenador) - Site

+

        - +Paulo Vilela – Responsável pela a área de marketing +e localização do OpenOffice.org.

+

        - +João Neves - Sistema de builds

+

+        - Flávio Moringa - +servidores FTP / mirror

+ + + + + +

+ + \ 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