svn commit: r1421173 - /openoffice/devtools/scripts/svnlog2info.py

2012-12-13 Thread hdu
Author: hdu
Date: Thu Dec 13 09:51:06 2012
New Revision: 1421173

URL: http://svn.apache.org/viewvc?rev=1421173view=rev
Log:
fix quoting of commit title

Modified:
openoffice/devtools/scripts/svnlog2info.py

Modified: openoffice/devtools/scripts/svnlog2info.py
URL: 
http://svn.apache.org/viewvc/openoffice/devtools/scripts/svnlog2info.py?rev=1421173r1=1421172r2=1421173view=diff
==
--- openoffice/devtools/scripts/svnlog2info.py (original)
+++ openoffice/devtools/scripts/svnlog2info.py Thu Dec 13 09:51:06 2012
@@ -150,7 +150,7 @@ def revs2info( htmlname, all_revs, svnur
for r in bugid_map[ idnum]:
revurl = revurl_base % (r.revnum)
revtitle = r.log.splitlines()[0]
-   line += a href=%s title=\%s\c/a % 
(revurl, quoteattr(revtitle))
+   line += a href=\%s\ title=%sc/a % 
(revurl, quoteattr(revtitle))
line += /td
line += td%s/td % (bug_target)
line += td%s/td % (bug_status)




svn commit: r1421192 - /openoffice/devtools/scripts/svnlog2info.py

2012-12-13 Thread hdu
Author: hdu
Date: Thu Dec 13 10:20:56 2012
New Revision: 1421192

URL: http://svn.apache.org/viewvc?rev=1421192view=rev
Log:
add audience cmdline argument

Modified:
openoffice/devtools/scripts/svnlog2info.py

Modified: openoffice/devtools/scripts/svnlog2info.py
URL: 
http://svn.apache.org/viewvc/openoffice/devtools/scripts/svnlog2info.py?rev=1421192r1=1421191r2=1421192view=diff
==
--- openoffice/devtools/scripts/svnlog2info.py (original)
+++ openoffice/devtools/scripts/svnlog2info.py Thu Dec 13 10:20:56 2012
@@ -90,7 +90,7 @@ def parse_svn_log_xml( svnout):
return all_revs
 
 
-def revs2info( htmlname, all_revs, svnurl, revmin, revmax):
+def revs2info( htmlname, detail_level, all_revs, svnurl, revmin, revmax):
Create a HTML file with infos about revision range and its 
referenced issues
# emit html header to the info file
htmlfile = codecs.open( htmlname, wb, encoding='utf-8')
@@ -144,16 +144,20 @@ def revs2info( htmlname, all_revs, svnur
 
line = tr
line += tda href=\%s\#i%d#/a/td % (bug_url, 
idnum)
-   line += td%s/td % (priority)
+   if detail_level = 5:
+   line += td%s/td % (priority)
line += td%s/td % (bug_type)
-   line += td
-   for r in bugid_map[ idnum]:
-   revurl = revurl_base % (r.revnum)
-   revtitle = r.log.splitlines()[0]
-   line += a href=\%s\ title=%sc/a % 
(revurl, quoteattr(revtitle))
-   line += /td
-   line += td%s/td % (bug_target)
-   line += td%s/td % (bug_status)
+   if detail_level = 9:
+   line += td
+   for r in bugid_map[ idnum]:
+   revurl = revurl_base % (r.revnum)
+   revtitle = r.log.splitlines()[0]
+   line += a href=\%s\ title=%sc/a 
% (revurl, quoteattr(revtitle))
+   line += /td
+   if detail_level = 7:
+   line += td%s/td % (bug_target)
+   line += td%s/td % (bug_status)
+
line += td
if color:
line += font color=\%s\ % (color)
@@ -167,7 +171,7 @@ def revs2info( htmlname, all_revs, svnur
htmlfile.write( /table\n)
 
# emit info about other revisions
-   if len(other_revs):
+   if len(other_revs) and (detail_level = 6):
htmlfile.write( h2Commits without Issue 
References:/h2\ntable border=\0\\n)
for rev in all_revs:
if rev.issue:
@@ -191,17 +195,28 @@ def revs2info( htmlname, all_revs, svnur
 
 
 def main(args):
-   if len(args) != 4:
-   print Usage:  + args[0] + branchname minrev maxrev
+   if (len(args)  4) or (5  len(args)):
+   print Usage:  + args[0] + branchname minrev maxrev 
[enduser|developer]
sys.exit(1)
branchname = args[1]
revmin = int(args[2])
revmax = int(args[3])
 
+   if len(args) = 5:
+   audience = args[4]
+   else:
+   audience = developer
+
+   audience2verbosity = {enduser:1, developer:9}
+   if audience not in audience2verbosity:
+   print Audience \%s\ not known! Only \%s\ can be selected. 
% (audience,str(audience2verbosity.keys()))
+   sys.exit(2)
+   detail_level = audience2verbosity[ audience]
+
svnurl = http://svn.apache.org/repos/asf/openoffice/%s; % (branchname)
svnout = get_svn_log( svnurl, revmin, revmax)
revlist = parse_svn_log_xml( svnout)
-   revs2info( infoout_name, revlist, svnurl, revmin, revmax)
+   revs2info( infoout_name, detail_level, revlist, svnurl, revmin, revmax)
 
 
 if __name__ == __main__:




svn commit: r1421274 - in /openoffice/trunk/main/solenv/inc: rules.mk settings.mk

2012-12-13 Thread orw
Author: orw
Date: Thu Dec 13 13:02:45 2012
New Revision: 1421274

URL: http://svn.apache.org/viewvc?rev=1421274view=rev
Log:
#121466# - remove BUILD_SPECIAL and derived NETWORK_BUILD variable to 
workaround certain file locking failure

Modified:
openoffice/trunk/main/solenv/inc/rules.mk
openoffice/trunk/main/solenv/inc/settings.mk

Modified: openoffice/trunk/main/solenv/inc/rules.mk
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/inc/rules.mk?rev=1421274r1=1421273r2=1421274view=diff
==
--- openoffice/trunk/main/solenv/inc/rules.mk (original)
+++ openoffice/trunk/main/solenv/inc/rules.mk Thu Dec 13 13:02:45 2012
@@ -89,30 +89,12 @@ $(OBJ)/%.obj : %.cc
 
 .IF $(ENABLE_PCH)!=
 # workaround for file locking problems on network volumes
-.IF $(NETWORK_BUILD)==
 PCHOUTDIR=$(SLO)/pch
 PCHEXOUTDIR=$(SLO)/pch_ex
-.ELSE  # $(NETWORK_BUILD)==
-PCHOUTDIR=$(TMP)/$(BUILD)$(CWS_WORK_STAMP)$(PRJNAME)$(PROEXT)
-PCHEXOUTDIR=$(TMP)/$(BUILD)$(CWS_WORK_STAMP)$(PRJNAME)_ex$(PROEXT)
-.ENDIF # $(NETWORK_BUILD)==
 $(SLO)/precompiled.% .PHONY:
-$(MKDIRHIER) $(SLO)/pch
 .IF $(COM)==MSC
-.IF $(NETWORK_BUILD)!=
-   -$(MKDIRHIER) $(PCHOUTDIR)
-.IF $(HAVE_BIG_TMP)==
-   $(COMMAND_ECHO)-$(COPY) $(SLO)/pch/precompiled_$(PRJNAME).hxx$(PCHPOST) 
$(PCHOUTDIR)/precompiled_$(PRJNAME).hxx$(PCHPOST) 
-.ENDIF # $(HAVE_BIG_TMP)==
-.ENDIF # $(NETWORK_BUILD)!=
$(COMMAND_ECHO)$(CXX) @$(mktmp 
-Fp$(PCHOUTDIR)/precompiled_$(PRJNAME).hxx$(PCHPOST) $(CFLAGS_CREATE_PCH) 
$(CFLAGS) $(INCLUDE) $(CFLAGSCXX) $(CFLAGSCXXSLO) $(CFLAGSSLO) $(CDEFS) 
$(CDEFSSLO) $(CDEFSMT) $(CFLAGS_NO_EXCEPTIONS) -DEXCEPTIONS_OFF $(CFLAGSAPPEND) 
$(INCPCH)/precompiled_$(PRJNAME).cxx)
-.IF $(NETWORK_BUILD)!=
-   $(COMMAND_ECHO)$(COPY) 
$(PCHOUTDIR)/precompiled_$(PRJNAME).hxx$(PCHPOST) 
$(SLO)/pch/precompiled_$(PRJNAME).hxx$(PCHPOST)
-.IF $(HAVE_BIG_TMP)==
-   $(COMMAND_ECHO)$(RM) $(PCHOUTDIR)/precompiled_$(PRJNAME).hxx$(PCHPOST)
-   $(COMMAND_ECHO)$(RMDIR) $(PCHOUTDIR)
-.ENDIF # $(HAVE_BIG_TMP)==
-.ENDIF # $(NETWORK_BUILD)!=
 .ELIF $(COM)==GCC  $(CCNUMVER)=00030004
$(COMMAND_ECHO)$(CXX) -o$(SLO)/pch/precompiled_$(PRJNAME).hxx$(PCHPOST) 
$(CFLAGS_CREATE_PCH) $(CFLAGS) $(INCLUDE) $(CFLAGSCXX) $(CFLAGSCXXSLO) 
$(CFLAGSSLO) $(CDEFS) $(CDEFSSLO) $(CDEFSMT) $(CFLAGS_NO_EXCEPTIONS) 
-DEXCEPTIONS_OFF $(CFLAGSAPPEND) $(INCPCH)/precompiled_$(PRJNAME).hxx
@echo #error Tried to use wrong precompiled header  
$(SLO)/pch/precompiled_$(PRJNAME).hxx
@@ -124,20 +106,7 @@ $(SLO)/precompiled.% .PHONY:
 $(SLO)/precompiled_ex.% .PHONY:
-$(MKDIRHIER) $(SLO)/pch_ex
 .IF $(COM)==MSC
-.IF $(NETWORK_BUILD)!=
-   -$(MKDIRHIER) $(PCHEXOUTDIR)
-.IF $(HAVE_BIG_TMP)==
-   $(COMMAND_ECHO)-$(COPY) 
$(SLO)/pch_ex/precompiled_$(PRJNAME).hxx$(PCHPOST) 
$(PCHEXOUTDIR)/precompiled_$(PRJNAME).hxx$(PCHPOST) 
-.ENDIF # $(HAVE_BIG_TMP)==
-.ENDIF # $(NETWORK_BUILD)!=
$(COMMAND_ECHO)$(CXX) @$(mktmp 
-Fp$(PCHEXOUTDIR)/precompiled_$(PRJNAME).hxx$(PCHPOST) 
$(CFLAGS_CREATE_PCH:s/pchname/pchname_ex/) $(CFLAGS) $(INCLUDE) $(CFLAGSCXX) 
$(CFLAGSCXXSLO) $(CFLAGSSLO) $(CDEFS) $(CDEFSSLO) $(CDEFSMT) 
$(CFLAGSEXCEPTIONS) -DEXCEPTIONS_ON $(CFLAGSAPPEND) 
$(INCPCH)/precompiled_$(PRJNAME).cxx)
-.IF $(NETWORK_BUILD)!=
-   $(COMMAND_ECHO)$(COPY) 
$(PCHEXOUTDIR)/precompiled_$(PRJNAME).hxx$(PCHPOST) 
$(SLO)/pch_ex/precompiled_$(PRJNAME).hxx$(PCHPOST)
-.IF $(HAVE_BIG_TMP)==
-   $(COMMAND_ECHO)$(RM) $(PCHEXOUTDIR)/precompiled_$(PRJNAME).hxx$(PCHPOST)
-   $(COMMAND_ECHO)$(RMDIR) $(PCHEXOUTDIR)
-.ENDIF # $(HAVE_BIG_TMP)==
-.ENDIF # $(NETWORK_BUILD)!=
 .ELIF $(COM)==GCC  $(CCNUMVER)=00030004
$(COMMAND_ECHO)$(CXX) 
-o$(SLO)/pch_ex/precompiled_$(PRJNAME).hxx$(PCHPOST) $(CFLAGS_CREATE_PCH) 
$(CFLAGS) $(INCLUDE) $(CFLAGSCXX) $(CFLAGSCXXSLO) $(CFLAGSSLO) $(CDEFS) 
$(CDEFSSLO) $(CDEFSMT) $(CFLAGSEXCEPTIONS) -DEXCEPTIONS_ON $(CFLAGSAPPEND) 
$(INCPCH)/precompiled_$(PRJNAME).hxx
@echo #error Tried to use wrong precompiled header  
$(SLO)/pch_ex/precompiled_$(PRJNAME).hxx

Modified: openoffice/trunk/main/solenv/inc/settings.mk
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/inc/settings.mk?rev=1421274r1=1421273r2=1421274view=diff
==
--- openoffice/trunk/main/solenv/inc/settings.mk (original)
+++ openoffice/trunk/main/solenv/inc/settings.mk Thu Dec 13 13:02:45 2012
@@ -38,12 +38,6 @@ force_dmake_to_error
 ENABLE_PCH=TRUE
 .ENDIF # $(USE_PCH)!=
 
-.IF $(ENABLE_PCH)!=  $(BUILD_SPECIAL)!=
-.IF $(SOLARSRC)==$(SRC_ROOT)
-NETWORK_BUILD:=TRUE
-.ENDIF # $(SOLARSRC)==$(SRC_ROOT)
-.ENDIF # $(ENABLE_PCH)!=  $(BUILD_SPECIAL)!=
-
 .INCLUDE : unitools.mk
 
 .INCLUDE 

svn commit: r1421281 - /openoffice/trunk/main/solenv/inc/rules.mk

2012-12-13 Thread orw
Author: orw
Date: Thu Dec 13 13:08:32 2012
New Revision: 1421281

URL: http://svn.apache.org/viewvc?rev=1421281view=rev
Log:
#121466# - follow-up: remove comment for removed NETWORK_BUILD variable

Modified:
openoffice/trunk/main/solenv/inc/rules.mk

Modified: openoffice/trunk/main/solenv/inc/rules.mk
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/inc/rules.mk?rev=1421281r1=1421280r2=1421281view=diff
==
--- openoffice/trunk/main/solenv/inc/rules.mk (original)
+++ openoffice/trunk/main/solenv/inc/rules.mk Thu Dec 13 13:08:32 2012
@@ -88,7 +88,6 @@ $(OBJ)/%.obj : %.cc
 .ENDIF
 
 .IF $(ENABLE_PCH)!=
-# workaround for file locking problems on network volumes
 PCHOUTDIR=$(SLO)/pch
 PCHEXOUTDIR=$(SLO)/pch_ex
 $(SLO)/precompiled.% .PHONY:




buildbot failure in ASF Buildbot on aoo-win7

2012-12-13 Thread buildbot
Hi! , The aoo-win7 builder has just completed a run

STATUS: Failure

 Build revision 1421135 on branch None

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-win7

 Build results at: http://ci.apache.org/builders/aoo-win7/builds/420

 Build reason was: forced: by IRC user hdu_hh on channel #asftest: clobber 
incremental build to fix repeated failures in apr


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






svn commit: r1421425 - /openoffice/site/trunk/content/orientation/intro-marketing.mdtext

2012-12-13 Thread robweir
Author: robweir
Date: Thu Dec 13 18:57:35 2012
New Revision: 1421425

URL: http://svn.apache.org/viewvc?rev=1421425view=rev
Log:
CMS commit to openoffice by robweir

Modified:
openoffice/site/trunk/content/orientation/intro-marketing.mdtext

Modified: openoffice/site/trunk/content/orientation/intro-marketing.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/site/trunk/content/orientation/intro-marketing.mdtext?rev=1421425r1=1421424r2=1421425view=diff
==
--- openoffice/site/trunk/content/orientation/intro-marketing.mdtext (original)
+++ openoffice/site/trunk/content/orientation/intro-marketing.mdtext Thu Dec 13 
18:57:35 2012
@@ -141,7 +141,7 @@ Along with this orientation, and the ASF
 
 ##End of Module
 
-Congratulations!  You have completed this Module.  Please send a note to 
[market...@openoffice.apache.org](mailto:market...@openoffice.apache.org?subject=Completed
 Infrastructure Module) so 
+Congratulations!  You have completed this Module.  Please send a note to 
[market...@openoffice.apache.org](mailto:market...@openoffice.apache.org?subject=Completed
 Marketing Module) so 
 we all know you have completed this level.   This is also a good opportunity 
to send along any feedback or questions you might have on this Orientation 
Module.
 
 




svn commit: r842150 - in /websites/staging/openoffice/trunk/content: ./ orientation/intro-marketing.html

2012-12-13 Thread buildbot
Author: buildbot
Date: Thu Dec 13 18:57:40 2012
New Revision: 842150

Log:
Staging update by buildbot for openoffice

Modified:
websites/staging/openoffice/trunk/content/   (props changed)
websites/staging/openoffice/trunk/content/orientation/intro-marketing.html

Propchange: websites/staging/openoffice/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 18:57:40 2012
@@ -1 +1 @@
-1421008
+1421425

Modified: 
websites/staging/openoffice/trunk/content/orientation/intro-marketing.html
==
--- websites/staging/openoffice/trunk/content/orientation/intro-marketing.html 
(original)
+++ websites/staging/openoffice/trunk/content/orientation/intro-marketing.html 
Thu Dec 13 18:57:40 2012
@@ -195,7 +195,7 @@ decides another product serves them bett
 liMarketing != Competing against/li
 /ul
 h2 id=end-of-moduleEnd of Module/h2
-pCongratulations!  You have completed this Module.  Please send a note to a 
href=mailto:market...@openoffice.apache.org?subject=Completed Infrastructure 
Modulemarket...@openoffice.apache.org/a so 
+pCongratulations!  You have completed this Module.  Please send a note to a 
href=mailto:market...@openoffice.apache.org?subject=Completed Marketing 
Modulemarket...@openoffice.apache.org/a so 
 we all know you have completed this level.   This is also a good opportunity 
to send along any feedback or questions you might have on this Orientation 
Module./p
   /div
 




[CONF] Apache OpenOffice Community Localization Volunteers

2012-12-13 Thread confluence
Space: Apache OpenOffice Community 
(https://cwiki.apache.org/confluence/display/OOOUSERS)
Page: Localization Volunteers 
(https://cwiki.apache.org/confluence/display/OOOUSERS/Localization+Volunteers)


Edited by Katarzyna Kruszka:
-
h2. Volunteers


| *Language* | *Help with Product Translation* \\ | *Help with Website 
Translation* |
| Afar (aa) | | |
| Albanian (sq) | | |
| Afrikaans (af) | | |
| Amharic (am) | | |
| Arabic (ar) | Karwan Fendi| |
| Armenian (hy) | | |
| Asturian (ast) | Xuacu Saturio | [http://docu.softastur.org/OpenOffice.org] 
(outdated, refers to OOo) |
| Azeri (az) | | |
| Balochi (bal) | | |
| Basque (eu) | | |
| Bengali (bn) | | |
| Bosnian (bs) | | |
| Breton (bre) | | |
| Bulgarian (bg) | | |
| Burmese (my) | | |
| Catalan (ca) | | |
| ChiNyanja (NY) | | |
| 正體中文 Chinese (tw) | imacat | imacat |
| 简体中文 Chinese (cn) | Sun Simon | |
| Czech (cs) | | |
| Croatian (hr) | | |
| Danish (da) | Jan Iversen, John Rudolf H. Rask | |
| Dutch (nl) | DiGro - Help and UI at POOTLE | |
| | DiGro - User guide translation | |
| Dzongkha (dz) | | |
| British English (en_GB) | Stuart Swales - Help and UI at Pootle | |
| Esperanto (eo) | | |
| Estonian (et) | | |
| Finnish (fi) | ristoi - Help and UI at Pootle | |
| French (fr) | Several volunteers coordinated by Cyril Beaussier (aka 
Bidouille) | Cyril Beaussier (aka Bidouille) |
| Friulian (fur) | | |
| Galician (gl) | | |
| Gaelic - Irish (ga) | | |
| Gaelic - Scottish (gd) | | |
| Georgian (ka) | | |
| German (de) | Alexander Behrens - GUI l10n voluntee, Raphael Bircher | |
| Greek (el) | Panayiotis Kiriakopoulos | |
| Gujarati (gu) | | |
| Haitian Creole (ht) | | |
| Hebrew (he) | | |
| Hindi (hi) | | |
| Hungarian (hu) | Zoltán Reizinger (r4zoli) - Help and UI at Pootle | Zoltán 
Reizinger (r4zoli) |
| Icelandic (is) | | |
| Indonesian (id) | dirgita - Help and UI at Pootle | |
| Italian (it) | Several volunteers, coordinated by Paolo Pozzan (paolopoz) | 
Andrea Pescetti (pescetti), with contributions from Pedro Giffuni (pfg) |
| Japanese (ja) | | |
| Khmer (km) | | |
| Korean (ko) | | |
| Kurdish (ku) | Karwan Fendi| |
| Lao (lo) | | |
| Latvian (lv) | | |
| Lithuanian (lt) | | | 
| Macedonian (mk) | | |
| Malayalam (ml) | Ravi Panamana (ravipanamana)|Ravi Panamana (ravipanamana) |
| Marathi (mr) | | |
| Malagasy (mg) | | |
| Malaysian (ms) | | |
| Miskito (miq) | | |
| Mongolian (mn) | | |
| Nepali (ne) | | |
| Norwegian (no) | Jan Høydahl - GUI translation | |
| Oromoo (om) | | |
| Papmiento (pap) | | |
| Pashto (ps) | | |
| Persian (fa) | | |
| Polish (pl) | Kamil Wasik, Piotr Czapla, Bartosz Kozanecki (bartoo), 
Krzysztof Danisz, Paweł Szczepański, Timo Markowicz, Magdalena Mozgawa, Marcin 
Sawicz, Pawel Michalczak, Przemysław Łęgowski, Katarzyna Kruszka|Magdalena 
Mozgawa, Katarzyna Kruszka |
| Portuguese (pt) |Urbano José Ferreira Marques, Pedro Matias, Paulo Alexandre 
Romualdo | |
| Portuguese Brazil (pt_br) | Antonio C C Marques, Rui Ogawa, Claudio Filho, 
Kleberth Santos |Claudio Filho, Kleberth Santos | 
| Punjabi (pa) | | |
| Romanian (ro) | | |
| Russian (ru) | Serg Bormant | |
| Sängö (sg) | | |
| Serbian (sr) | | |
| Shuswap (shs) | | |
| Sidama (dm) | | |
| Sinhala (si) | | |
| Slovenian (sl) | | |
| Slovakian (sk) | Michal Hriň (hrin) | Michal Hriň (hrin) |
| Somali (so) | | |
| Spanish (es) | Ricardo Berlasso (rgb-es): UI and Help files on pootle | 
Ricardo Berlasso (rgb-es) |
| Swedish (sv) | Kent Åberg | |
| Tajik (tg) | | |
| Tamil (ta) |Kadal Amutham | |
| Tatar (tt-crh) | | |
| Telugu (te) | | |
| Thai (th) |I Intaso | |
| Tibetan (bo) | | |
| Tigrinya (ti) | | |
| Turkish (tr) | mehmet demir, Gökşin Akdeniz ||
| Uighur,Uyghur (ug) | Gheyret T kenji(coordinator), Sahran(translator)| 
Gheyret T kenji(coordinator), Sahran(translator)|
| Ukrainian (uk) | | |
| Urdu (urd) | | |
| Uzbek (uz) | | |
| Vietnamese (vi) | | |
| Welsh (cy) | | |
\\

Change your notification preferences: 
https://cwiki.apache.org/confluence/users/viewnotifications.action


svn commit: r1421453 - in /openoffice/ooo-site/trunk/content: l10n/documentation.mdtext l10n/how_to_join.mdtext legacy/thankyou.html servlets/Join/index.mdtext welcome/registration.html welcome/regist

2012-12-13 Thread robweir
Author: robweir
Date: Thu Dec 13 19:52:03 2012
New Revision: 1421453

URL: http://svn.apache.org/viewvc?rev=1421453view=rev
Log: (empty)

Added:
openoffice/ooo-site/trunk/content/welcome/registration20.html
Modified:
openoffice/ooo-site/trunk/content/l10n/documentation.mdtext
openoffice/ooo-site/trunk/content/l10n/how_to_join.mdtext
openoffice/ooo-site/trunk/content/legacy/thankyou.html
openoffice/ooo-site/trunk/content/servlets/Join/index.mdtext
openoffice/ooo-site/trunk/content/welcome/registration.html

Modified: openoffice/ooo-site/trunk/content/l10n/documentation.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/l10n/documentation.mdtext?rev=1421453r1=1421452r2=1421453view=diff
==
--- openoffice/ooo-site/trunk/content/l10n/documentation.mdtext (original)
+++ openoffice/ooo-site/trunk/content/l10n/documentation.mdtext Thu Dec 13 
19:52:03 2012
@@ -54,5 +54,5 @@ join just this one. Later you can join s
 [4]: http://wiki.openoffice.org/
 [5]: http://wiki.openoffice.org/wiki/Category:Localization
 [6]: https://cwiki.apache.org/confluence/display/OOOUSERS
-[7]: 
http://incubator.apache.org/openofficeorg/mailing-lists.html#localization-mailing-list
+[7]: http://openoffice.apache.org/mailing-lists.html#localization-mailing-list
 [8]: mailto:l10n-subscr...@openoffice.apache.org

Modified: openoffice/ooo-site/trunk/content/l10n/how_to_join.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/l10n/how_to_join.mdtext?rev=1421453r1=1421452r2=1421453view=diff
==
--- openoffice/ooo-site/trunk/content/l10n/how_to_join.mdtext (original)
+++ openoffice/ooo-site/trunk/content/l10n/how_to_join.mdtext Thu Dec 13 
19:52:03 2012
@@ -47,13 +47,13 @@ from 'accessibility' to 'framework'.
 want to read [advice][8]. And for any doubts, just write ooo-L10N
 and we'll be happy to assist!
 
-[1]: http://incubator.apache.org/openofficeorg/get-involved.html
+[1]: http://openoffice.apache.org/get-involved.html
 [2]: mailto:l10n-subscr...@openoffice.apache.org
 [3]: mailto:l...@openoffice.apache.org
 [4]: 
https://cwiki.apache.org/confluence/display/OOOUSERS/Localization+Volunteers
 [5]: http://people.apache.org/~jsc/translation/
 [6]: http://www.7-zip.org/ 
 [7]: http://poedit.net/ 
-[8]: http://incubator.apache.org/openofficeorg/translate.html
+[8]: http://openoffice.apache.org/translate.html
 
 

Modified: openoffice/ooo-site/trunk/content/legacy/thankyou.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/legacy/thankyou.html?rev=1421453r1=1421452r2=1421453view=diff
==
--- openoffice/ooo-site/trunk/content/legacy/thankyou.html (original)
+++ openoffice/ooo-site/trunk/content/legacy/thankyou.html Thu Dec 13 19:52:03 
2012
@@ -12,11 +12,11 @@
 
 pOpenOffice.org is now strongApache OpenOffice/strong./p
 
-pYou are running an older version of OpenOffice and are missing new features 
and bug fixes.  The latest version is OpenOffice 3.4.1, released in August 
2012. You can download it from it from 
-   a href=http://www.openoffice.org/download/;the official OpenOffice 
download site/a./p
+pstrongPlease note:/strong  You have just installed an outdated version 
of OpenOffice and are missing new features and bug fixes.  The latest version 
is OpenOffice 3.4.1, released in August 2012. 
+You can download the latest version, free, from:  a 
href=http://www.openoffice.org/download/;the official OpenOffice download 
site/a./p
 
 pIf the latest version of Apache OpenOffice is not yet available in your 
language, this means that we need volunteers to help us with the translation.  
If you are interested, we have a page on
-   a href=http://incubator.apache.org/openofficeorg/translate.html;How 
to Help Translate Apache OpenOffice/a.  Your a 
href=http://incubator.apache.org/openofficeorg/get-involved.html;volunteer 
contributions/a
+   a href=http://openoffice.apache.org/translate.html;How to Help 
Translate Apache OpenOffice/a.  Your a 
href=http://openoffice.apache.org/get-involved.html;volunteer 
contributions/a
help us bring free software to the entire world./p
 
 h2Other useful resources/h2

Modified: openoffice/ooo-site/trunk/content/servlets/Join/index.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/servlets/Join/index.mdtext?rev=1421453r1=1421452r2=1421453view=diff
==
--- openoffice/ooo-site/trunk/content/servlets/Join/index.mdtext (original)
+++ openoffice/ooo-site/trunk/content/servlets/Join/index.mdtext Thu Dec 13 
19:52:03 2012
@@ -18,9 +18,9 @@ Notice:Licensed to the Apache Softwa
 
 ##Joining the Apache OpenOffice project
 
-If you want to learn more about volunteering with the Apache 

svn commit: r1421460 - /openoffice/ooo-site/trunk/content/index.html

2012-12-13 Thread robweir
Author: robweir
Date: Thu Dec 13 19:57:26 2012
New Revision: 1421460

URL: http://svn.apache.org/viewvc?rev=1421460view=rev
Log:
CMS commit to ooo-site by robweir

Modified:
openoffice/ooo-site/trunk/content/index.html

Modified: openoffice/ooo-site/trunk/content/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/index.html?rev=1421460r1=1421459r2=1421460view=diff
==
--- openoffice/ooo-site/trunk/content/index.html (original)
+++ openoffice/ooo-site/trunk/content/index.html Thu Dec 13 19:57:26 2012
@@ -116,7 +116,7 @@
   div class=campaign
 h2Over 25 million downloads of AOO 3.4/h2
 
-pApache OpenOffice 3.4 was released in May. Downloads now exceed 25 
million. We invite you to take a look at 
+pApache OpenOffice 3.4 was released in May. Downloads now exceed 28 
million. We invite you to take a look at 
 a href=http://stats.openoffice.org/;our interactive charts/a of daily 
and cumulative downloads./p
   /div   
 




svn commit: r842161 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/index.html content/welcome/registration20.html

2012-12-13 Thread buildbot
Author: buildbot
Date: Thu Dec 13 19:58:42 2012
New Revision: 842161

Log:
Staging update by buildbot for openofficeorg

Added:
websites/staging/ooo-site/trunk/content/welcome/registration20.html
Modified:
websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
websites/staging/ooo-site/trunk/content/   (props changed)
websites/staging/ooo-site/trunk/content/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 19:58:42 2012
@@ -1 +1 @@
-1421453
+1421461

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 19:58:42 2012
@@ -1 +1 @@
-1421453
+1421461

Modified: websites/staging/ooo-site/trunk/content/index.html
==
--- websites/staging/ooo-site/trunk/content/index.html (original)
+++ websites/staging/ooo-site/trunk/content/index.html Thu Dec 13 19:58:42 2012
@@ -131,7 +131,7 @@
   div class=campaign
 h2Over 25 million downloads of AOO 3.4/h2
 
-pApache OpenOffice 3.4 was released in May. Downloads now exceed 25 
million. We invite you to take a look at 
+pApache OpenOffice 3.4 was released in May. Downloads now exceed 28 
million. We invite you to take a look at 
 a href=http://stats.openoffice.org/;our interactive charts/a of daily 
and cumulative downloads./p
   /div   
 

Added: websites/staging/ooo-site/trunk/content/welcome/registration20.html
==
--- websites/staging/ooo-site/trunk/content/welcome/registration20.html (added)
+++ websites/staging/ooo-site/trunk/content/welcome/registration20.html Thu Dec 
13 19:58:42 2012
@@ -0,0 +1,59 @@
+!--#include virtual=/doctype.html --
+html
+head
+link href=/css/ooo.css rel=stylesheet type=text/css
+
+  meta http-equiv=Content-Type CONTENT=text/html; charset=utf-8
+  titleThank you for using OpenOffice.org - now Apache OpenOffice/title
+
+!--#include virtual=/google-analytics.js --
+/head
+body
+!--#include virtual=/brand.html --
+  div id=topbara
+!--#include virtual=/topnav.html --
+div id=breadcrumbsaa href=/home/anbsp;raquo;nbsp;a 
href=/welcome/welcome/a/div
+  /div
+  div id=clear/div
+  
+  
+  div id=content
+
+
+
+
+h1Thank you for using OpenOffice.org - now Apache OpenOffice/h1
+
+h2Get the latest version/h2
+
+pOpenOffice.org is now strongApache OpenOffice/strong./p
+
+pstrongPlease note:/strong  You have just installed an outdated version 
of OpenOffice and are missing new features and bug fixes.  The latest version 
is OpenOffice 3.4.1, released in August 2012. 
+You can download the latest version, free, from:  a 
href=http://www.openoffice.org/download/;the official OpenOffice download 
site/a./p
+
+pIf the latest version of Apache OpenOffice is not yet available in your 
language, this means that we need volunteers to help us with the translation.  
If you are interested, we have a page on
+   a href=http://openoffice.apache.org/translate.html;How to Help 
Translate Apache OpenOffice/a.  Your a 
href=http://openoffice.apache.org/get-involved.html;volunteer 
contributions/a
+   help us bring free software to the entire world./p
+
+h2Other useful resources/h2
+
+ul
+  lia href=http://extensions.openoffice.org;Extensions Repository/a/li
+  lia href=http://templates.openoffice.org;Templates Repository/a/li
+  lia href=http://user.services.openoffice.org/;Community Support 
Forum/a/li  
+  lia href=http://openoffice.apache.org/mailing-lists.html;Mailing 
Lists/a/li
+  
+/ul
+
+h2Stay informed/h2
+
+ul
+  liSubscribe the a 
href=http://openoffice.apache.org/mailing-lists.html#announce-mailing-list;OpenOffice
 announce mailing list/a to receive important updates about the project (1-2 
e-mails/month)/li
+  lia href=http://openoffice.apache.org/social.html;OpenOffice on the 
social networks/a: links to the official accounts on Twitter, Identi.ca, 
Google+, Facebook and more./li
+/ul
+
+
+  /div
+!--#include virtual=/footer.html --
+/body
+/html




svn commit: r842164 - in /websites/production/ooo-site: cgi-bin/ content/

2012-12-13 Thread robweir
Author: robweir
Date: Thu Dec 13 20:02:39 2012
New Revision: 842164

Log:
Publishing svnmucc operation to ooo-site site by robweir

Added:
websites/production/ooo-site/cgi-bin/
  - copied from r842163, websites/staging/ooo-site/trunk/cgi-bin/
websites/production/ooo-site/content/
  - copied from r842163, websites/staging/ooo-site/trunk/content/



svn commit: r1421491 - /openoffice/ooo-site/trunk/content/brand.mdtext

2012-12-13 Thread robweir
Author: robweir
Date: Thu Dec 13 20:25:35 2012
New Revision: 1421491

URL: http://svn.apache.org/viewvc?rev=1421491view=rev
Log:
CMS commit to ooo-site by robweir

Modified:
openoffice/ooo-site/trunk/content/brand.mdtext

Modified: openoffice/ooo-site/trunk/content/brand.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/brand.mdtext?rev=1421491r1=1421490r2=1421491view=diff
==
--- openoffice/ooo-site/trunk/content/brand.mdtext (original)
+++ openoffice/ooo-site/trunk/content/brand.mdtext Thu Dec 13 20:25:35 2012
@@ -5,7 +5,7 @@ tagline:The Free and Open Productivity
 logo:  AOO_logos/OOo_Website_v2_copy.png
 domain:www.openoffice.org
 divid: bannera
-announce:  Wanted: Translation Volunteers (December 31st deadline)
-announceurl:   
https://blogs.apache.org/OOo/entry/apache_openoffice_reached_out_to
+announce:  OpenOffice@FOSDEM: Call for Talks (December 23rd deadline)
+announceurl:   
https://cwiki.apache.org/confluence/display/OOOUSERS/FOSDEM+2013+Proposals
 announcetip:   Read the announcement
 




svn commit: r842172 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/brand.html

2012-12-13 Thread buildbot
Author: buildbot
Date: Thu Dec 13 20:26:14 2012
New Revision: 842172

Log:
Staging update by buildbot for openofficeorg

Modified:
websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
websites/staging/ooo-site/trunk/content/   (props changed)
websites/staging/ooo-site/trunk/content/brand.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 20:26:14 2012
@@ -1 +1 @@
-1421461
+1421491

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 20:26:14 2012
@@ -1 +1 @@
-1421461
+1421491

Modified: websites/staging/ooo-site/trunk/content/brand.html
==
--- websites/staging/ooo-site/trunk/content/brand.html (original)
+++ websites/staging/ooo-site/trunk/content/brand.html Thu Dec 13 20:26:14 2012
@@ -17,4 +17,4 @@
 /div
 div id=bannercenterbr/The Free and Open Productivity Suite/div
   /div
-  div id=announcea 
href=https://blogs.apache.org/OOo/entry/apache_openoffice_reached_out_to; 
title=Read the announcementWanted: Translation Volunteers (December 31st 
deadline)/a/div
+  div id=announcea 
href=https://cwiki.apache.org/confluence/display/OOOUSERS/FOSDEM+2013+Proposals;
 title=Read the announcementOpenOffice@FOSDEM: Call for Talks (December 23rd 
deadline)/a/div




svn commit: r1421494 - /openoffice/ooo-site/trunk/content/pt-br/index.html

2012-12-13 Thread bino28
Author: bino28
Date: Thu Dec 13 20:29:46 2012
New Revision: 1421494

URL: http://svn.apache.org/viewvc?rev=1421494view=rev
Log:
CMS commit to ooo-site by bino28

Modified:
openoffice/ooo-site/trunk/content/pt-br/index.html

Modified: openoffice/ooo-site/trunk/content/pt-br/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/pt-br/index.html?rev=1421494r1=1421493r2=1421494view=diff
==
--- openoffice/ooo-site/trunk/content/pt-br/index.html (original)
+++ openoffice/ooo-site/trunk/content/pt-br/index.html Thu Dec 13 20:29:46 2012
@@ -110,7 +110,14 @@
 /ul
   /div
   div id=news
-
+ 
+  div class=campaign
+h2Ultrapassamos 28 milhões de downloads do AOO 3.4.x/h2
+ pApós a versão do Apache OpenOffice 3.4.1 que foi lançado em 
Novembro, tivemos bastante crescimento dos downloads.
+Pode visualizar em
+a href=http://www.openoffice.org/stats/downloads.html;nossos 
gráficos interativos/a por dia e acumulo de downloads.p
+  /div
+ 
   div class=campaign
 h2Mais de 12 milhões de downloads do AOO 3.4/h2
   pO Apache OpenOffice 3.4.0 foi lançado em Maio. Os downloads agora 
já 




svn commit: r842174 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/pt-br/index.html

2012-12-13 Thread buildbot
Author: buildbot
Date: Thu Dec 13 20:30:19 2012
New Revision: 842174

Log:
Staging update by buildbot for openofficeorg

Modified:
websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
websites/staging/ooo-site/trunk/content/   (props changed)
websites/staging/ooo-site/trunk/content/pt-br/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 20:30:19 2012
@@ -1 +1 @@
-1421491
+1421494

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 20:30:19 2012
@@ -1 +1 @@
-1421491
+1421494

Modified: websites/staging/ooo-site/trunk/content/pt-br/index.html
==
--- websites/staging/ooo-site/trunk/content/pt-br/index.html (original)
+++ websites/staging/ooo-site/trunk/content/pt-br/index.html Thu Dec 13 
20:30:19 2012
@@ -125,7 +125,14 @@
 /ul
   /div
   div id=news
-
+ 
+  div class=campaign
+h2Ultrapassamos 28 milhões de downloads do AOO 3.4.x/h2
+ pApós a versão do Apache OpenOffice 3.4.1 que foi lançado em 
Novembro, tivemos bastante crescimento dos downloads.
+Pode visualizar em
+a href=http://www.openoffice.org/stats/downloads.html;nossos 
gráficos interativos/a por dia e acumulo de downloads.p
+  /div
+ 
   div class=campaign
 h2Mais de 12 milhões de downloads do AOO 3.4/h2
   pO Apache OpenOffice 3.4.0 foi lançado em Maio. Os downloads agora 
já 




svn commit: r842175 - in /websites/production/ooo-site: cgi-bin/ content/

2012-12-13 Thread bino28
Author: bino28
Date: Thu Dec 13 20:31:13 2012
New Revision: 842175

Log:
News about 28 millions of downloads.

Added:
websites/production/ooo-site/cgi-bin/
  - copied from r842174, websites/staging/ooo-site/trunk/cgi-bin/
websites/production/ooo-site/content/
  - copied from r842174, websites/staging/ooo-site/trunk/content/



[CONF] Apache OpenOffice Community AOO 3.4.1 Respin for additional languages

2012-12-13 Thread confluence
Space: Apache OpenOffice Community 
(https://cwiki.apache.org/confluence/display/OOOUSERS)
Page: AOO 3.4.1 Respin for additional languages 
(https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+3.4.1+Respin+for+additional+languages)

Change Comment:
-
New volunteers and PO files to send

Edited by Andrea Pescetti:
-
We plan a respin on base of AOO 3.4.1 to support some further languages where 
we have received the missing pieces to make a release possible.

The scope of this respin is to provide new languages only, that means we plan 
to integrate the new translation in the AOO 3.4.1 branch, create a new source 
release package and provide for the convenience of our users some further new 
built binary packages for these new languages.

h1. Planned release schedule

|| Date || Description ||
| January 4th, 2013 | *Translation deadline*
All new translation have to be available as attachments to new created issues 
for each language |
| January 11th, 2013 | *Availability of 1. Developer Snapshot* |
| January 11th, 2013 | *Availability of 2. Developer Snapshot* |
| January 31th, 2013 | *GA* |

h1. New supported languages

|| Language || Volunteers contacted l10n? || PO file provided by jsc? || 
Translation status || Issue || Update Pootle || Integrated into AOO34 branch? 
|| Reference to dictionary || Issue for dictionary ||
| Afrikaans (af) | Yes | ? (announced on ML, not sure if sent) | Ongoing (Rudi 
Heymann rheymann senco.co.za) | | | Already released in 3.4.1 | | |
| Arabic (ar) | Yes | Yes |ABANDONED| | | Already released in 3.4.1 | | |
| Assamese (as) | Yes | Yes | Ongoing (Dhrubajyoti Gogoi dhruv.jrt gmail.com) | 
| | | | |
| Asturian (ast) | Yes | Yes | Ready to start (Xuacu xuacusk8 gmail.com) | | | 
| | |
| Basque (eu) | Yes | Yes | | | | | | |
| Catalan (ca) | Yes | | Ready to start (Joan Capdevila Fontanals jcapde32 
xtec.cat) | | | | | |
| Danish (da) | Yes, jani | Yes | Completed but updating (QA) | 
[121179|https://issues.apache.org/ooo/show_bug.cgi?id=121179] | Yes | Yes | | |
| English Australia (en_AU) | ApacheCon | Yes | | | | | | |
| Greek (el) | Yes | Yes | Ongoing (Vivi Sereti vivithegoddess gmail.com) | | | 
| | |
| Hebrew (he) | Yes |  | Ready to start (Shirley Khamani shirley 
sage-coaching.com) | | | | | |
| Icelandic (is) | Yes | Yes | Ongoing, needs help (Gisli Kristjansson 
alloutnow gmail.com) | | | | | |
| Kazakh (kk) | ? | Yes | | | | | | |
| Korean (ko) | Yes | Yes | Ongoing (Jeongkyu Kim jeongkyu.kim gmail.com) | | | 
| | |
| Kurdish (ku) | Yes | Yes |ABANDONED| | | | | |
| Malayan (ml) | Yes | Yes (11 Dec) |Ongoing (Ravi Panamana ravi.panamana 
gmail.com)| | | | | |
| Norwegian Bokmal (nb) | Yes | Yes | UI completed (100%) | | Yes | | | |
| Norwegian Nynorsk (nn) | Yes | ? | | | | | | |
| Polish (pl) | Yes, several | Yes | Completed, review necessary | 
[121195|https://issues.apache.org/ooo/show_bug.cgi?id=121195] | Yes, with 
problems | | | |
| Portuguese PT (pt_PT) | Yes | Yes |READY TO START waiting for PO files 
paulo.alexandre.romualdo gmail.com | | | | | |
| Scottish Gaelic (gd)| Yes, Michael Bauer | Yes | Completed | 
[120708|https://issues.apache.org/ooo/show_bug.cgi?id=120708] | Yes | | | |
| Swedish (sv) | Yes | Yes | | | | | | |
| Tamil (ta) | Yes | Yes | Ready to start (Kadal Amutham vkadal gmail.com) | | 
| | | |
| Turkish (tr) | Yes | Yes | Ready to start (Mehmet Demir mdx superposta.com) | 
| | | | |
| Uighur (ug) | ? | Yes | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |

h1. Proposed workflow

* request help for support of a new language via the l10n mailing list, po 
files will be made available immediately
* work on translations
* create a new issue (see below), attach the translated po files
* create a further issue for the integration of a related dictionary extension
* update Pootle with new translation files to reflect the status
* convert po files to sdf and integrate them on AOO 3.4.1 branch 
* prepare developer snapshots
* review developer snapshots
* release 

h3. Create new issue for translation files

* create [https://issues.apache.org/ooo/enter_bug.cgi?product=l10n]
* Product=l10n
* Component=UI
* Version=AOO 3.4.1
* Issue Type=Task
* Subject= language (iso code) translation for AOO 3.4.1, e.g. Danish 
(da) translation for AOO 3.4.1
* Assignee=jsc
* Attachment: new translated po files as zip or tar.gz

h3. Create new issue for dictionaries

* create [https://issues.apache.org/ooo/enter_bug.cgi?product=l10n]
* Product=l10n
* Component=localedata
* Version=AOO 3.4.1
* Issue Type=Task
* Subject= integrate language (iso code) dictionary for AOO 3.4.1, e.g. 
integrate Danish (da) dictionary for AOO 3.4.1
* Assignee=jsc
* Description: detailed information about the dictionary, name, download link 
etc.

Change your notification preferences: 

[CONF] Apache OpenOffice Community AOO 3.4.1 Respin for additional languages

2012-12-13 Thread confluence
Space: Apache OpenOffice Community 
(https://cwiki.apache.org/confluence/display/OOOUSERS)
Page: AOO 3.4.1 Respin for additional languages 
(https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+3.4.1+Respin+for+additional+languages)

Change Comment:
-
Swedish status update

Edited by Andrea Pescetti:
-
We plan a respin on base of AOO 3.4.1 to support some further languages where 
we have received the missing pieces to make a release possible.

The scope of this respin is to provide new languages only, that means we plan 
to integrate the new translation in the AOO 3.4.1 branch, create a new source 
release package and provide for the convenience of our users some further new 
built binary packages for these new languages.

h1. Planned release schedule

|| Date || Description ||
| January 4th, 2013 | *Translation deadline*
All new translation have to be available as attachments to new created issues 
for each language |
| January 11th, 2013 | *Availability of 1. Developer Snapshot* |
| January 11th, 2013 | *Availability of 2. Developer Snapshot* |
| January 31th, 2013 | *GA* |

h1. New supported languages

|| Language || Volunteers contacted l10n? || PO file provided by jsc? || 
Translation status || Issue || Update Pootle || Integrated into AOO34 branch? 
|| Reference to dictionary || Issue for dictionary ||
| Afrikaans (af) | Yes | ? (announced on ML, not sure if sent) | Ongoing (Rudi 
Heymann rheymann senco.co.za) | | | Already released in 3.4.1 | | |
| Arabic (ar) | Yes | Yes |ABANDONED| | | Already released in 3.4.1 | | |
| Assamese (as) | Yes | Yes | Ongoing (Dhrubajyoti Gogoi dhruv.jrt gmail.com) | 
| | | | |
| Asturian (ast) | Yes | Yes | Ready to start (Xuacu xuacusk8 gmail.com) | | | 
| | |
| Basque (eu) | Yes | Yes | | | | | | |
| Catalan (ca) | Yes | | Ready to start (Joan Capdevila Fontanals jcapde32 
xtec.cat) | | | | | |
| Danish (da) | Yes, jani | Yes | Completed but updating (QA) | 
[121179|https://issues.apache.org/ooo/show_bug.cgi?id=121179] | Yes | Yes | | |
| English Australia (en_AU) | ApacheCon | Yes | | | | | | |
| Greek (el) | Yes | Yes | Ongoing (Vivi Sereti vivithegoddess gmail.com) | | | 
| | |
| Hebrew (he) | Yes |  | Ready to start (Shirley Khamani shirley 
sage-coaching.com) | | | | | |
| Icelandic (is) | Yes | Yes | Ongoing, needs help (Gisli Kristjansson 
alloutnow gmail.com) | | | | | |
| Kazakh (kk) | ? | Yes | | | | | | |
| Korean (ko) | Yes | Yes | Ongoing (Jeongkyu Kim jeongkyu.kim gmail.com) | | | 
| | |
| Kurdish (ku) | Yes | Yes |ABANDONED| | | | | |
| Malayan (ml) | Yes | Yes (11 Dec) |Ongoing (Ravi Panamana ravi.panamana 
gmail.com)| | | | | |
| Norwegian Bokmal (nb) | Yes | Yes | UI completed (100%) | | Yes | | | |
| Norwegian Nynorsk (nn) | Yes | ? | | | | | | |
| Polish (pl) | Yes, several | Yes | Completed, review necessary | 
[121195|https://issues.apache.org/ooo/show_bug.cgi?id=121195] | Yes, with 
problems | | | |
| Portuguese PT (pt_PT) | Yes | Yes |READY TO START waiting for PO files 
paulo.alexandre.romualdo gmail.com | | | | | |
| Scottish Gaelic (gd)| Yes, Michael Bauer | Yes | Completed | 
[120708|https://issues.apache.org/ooo/show_bug.cgi?id=120708] | Yes | | | |
| Swedish (sv) | Yes | Yes | Ongoing, almost complete | 
[121470|https://issues.apache.org/ooo/show_bug.cgi?id=121470] | | | | |
| Tamil (ta) | Yes | Yes | Ready to start (Kadal Amutham vkadal gmail.com) | | 
| | | |
| Turkish (tr) | Yes | Yes | Ready to start (Mehmet Demir mdx superposta.com) | 
| | | | |
| Uighur (ug) | ? | Yes | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |

h1. Proposed workflow

* request help for support of a new language via the l10n mailing list, po 
files will be made available immediately
* work on translations
* create a new issue (see below), attach the translated po files
* create a further issue for the integration of a related dictionary extension
* update Pootle with new translation files to reflect the status
* convert po files to sdf and integrate them on AOO 3.4.1 branch 
* prepare developer snapshots
* review developer snapshots
* release 

h3. Create new issue for translation files

* create [https://issues.apache.org/ooo/enter_bug.cgi?product=l10n]
* Product=l10n
* Component=UI
* Version=AOO 3.4.1
* Issue Type=Task
* Subject= language (iso code) translation for AOO 3.4.1, e.g. Danish 
(da) translation for AOO 3.4.1
* Assignee=jsc
* Attachment: new translated po files as zip or tar.gz

h3. Create new issue for dictionaries

* create [https://issues.apache.org/ooo/enter_bug.cgi?product=l10n]
* Product=l10n
* Component=localedata
* Version=AOO 3.4.1
* Issue Type=Task
* Subject= integrate language (iso code) dictionary for AOO 3.4.1, e.g. 
integrate Danish (da) dictionary for AOO 3.4.1
* Assignee=jsc
* Description: detailed information about the dictionary, name, download link 
etc.

Change 

svn commit: r1421576 - /openoffice/ooo-site/trunk/content/contact_us.html

2012-12-13 Thread pescetti
Author: pescetti
Date: Thu Dec 13 22:18:47 2012
New Revision: 1421576

URL: http://svn.apache.org/viewvc?rev=1421576view=rev
Log:
clarify that mailing lists are public

Modified:
openoffice/ooo-site/trunk/content/contact_us.html

Modified: openoffice/ooo-site/trunk/content/contact_us.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/contact_us.html?rev=1421576r1=1421575r2=1421576view=diff
==
--- openoffice/ooo-site/trunk/content/contact_us.html (original)
+++ openoffice/ooo-site/trunk/content/contact_us.html Thu Dec 13 22:18:47 2012
@@ -32,7 +32,7 @@ issues or enter new ones. Or, use the de
 /li
 
 lih2If you want to contact the Apache OpenOffice developer team.../h2
-Please check out the a 
href=http://openoffice.apache.org/mailing-lists.html;mailing list page/a 
and use the developer mailing list.
+Please check out the a 
href=http://openoffice.apache.org/mailing-lists.html;public mailing lists 
page/a and use the developer public mailing list.
 /li

 lih2If this is a Press or Analyst inquiry.../h2




svn commit: r842216 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/contact_us.html

2012-12-13 Thread buildbot
Author: buildbot
Date: Thu Dec 13 22:19:28 2012
New Revision: 842216

Log:
Staging update by buildbot for openofficeorg

Modified:
websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
websites/staging/ooo-site/trunk/content/   (props changed)
websites/staging/ooo-site/trunk/content/contact_us.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 22:19:28 2012
@@ -1 +1 @@
-1421494
+1421576

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 22:19:28 2012
@@ -1 +1 @@
-1421494
+1421576

Modified: websites/staging/ooo-site/trunk/content/contact_us.html
==
--- websites/staging/ooo-site/trunk/content/contact_us.html (original)
+++ websites/staging/ooo-site/trunk/content/contact_us.html Thu Dec 13 22:19:28 
2012
@@ -46,7 +46,7 @@ issues or enter new ones. Or, use the de
 /li
 
 lih2If you want to contact the Apache OpenOffice developer team.../h2
-Please check out the a 
href=http://openoffice.apache.org/mailing-lists.html;mailing list page/a 
and use the developer mailing list.
+Please check out the a 
href=http://openoffice.apache.org/mailing-lists.html;public mailing lists 
page/a and use the developer public mailing list.
 /li

 lih2If this is a Press or Analyst inquiry.../h2




svn commit: r842217 - in /websites/staging/openoffice/trunk/content: ./ mailing-lists.html

2012-12-13 Thread buildbot
Author: buildbot
Date: Thu Dec 13 22:22:07 2012
New Revision: 842217

Log:
Staging update by buildbot for openoffice

Modified:
websites/staging/openoffice/trunk/content/   (props changed)
websites/staging/openoffice/trunk/content/mailing-lists.html

Propchange: websites/staging/openoffice/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 22:22:07 2012
@@ -1 +1 @@
-1421425
+1421579

Modified: websites/staging/openoffice/trunk/content/mailing-lists.html
==
--- websites/staging/openoffice/trunk/content/mailing-lists.html (original)
+++ websites/staging/openoffice/trunk/content/mailing-lists.html Thu Dec 13 
22:22:07 2012
@@ -97,7 +97,7 @@
   div id=contenta
   
 h1 class=titleMailing Lists/h1
-h2 id=apache-openoffice-mailing-listsApache OpenOffice Mailing 
Lists/h2
+h2 id=apache-openoffice-public-mailing-listsApache OpenOffice Public 
Mailing Lists/h2
 pWe welcome you to join our mailing lists and let us know about your 
thoughts or
 ideas about Apache OpenOffice./p
 ul
@@ -148,7 +148,7 @@ and any post you make will likely be arc
 policy for expunging posts can be found a 
href=http://www.apache.org/foundation/public-archives.html;here/a
 but this will only apply to Apache mail archives, not archives from
 other services such as Gmane or Markmail./p
-h2 id=users-mailing-listUsers Mailing List/h2
+h2 id=users-mailing-list-publicUsers Mailing List (Public)/h2
 pThis list is for users, for questions about OpenOffice, for feature 
requests, for
 discussions about the product and project, etc./p
 ul
@@ -161,7 +161,7 @@ discussions about the product and projec
 /ul
 /li
 /ul
-h2 id=api-mailing-listAPI Mailing List/h2
+h2 id=api-mailing-list-publicAPI Mailing List (Public)/h2
 pThis list is for application developers and other interested in scripting, 
macros or developing
 OpenOffice extensions./p
 ul
@@ -174,7 +174,7 @@ OpenOffice extensions./p
 /ul
 /li
 /ul
-h2 id=marketing-mailing-listMarketing Mailing List/h2
+h2 id=marketing-mailing-list-publicMarketing Mailing List (Public)/h2
 pThis is where the community discusses marketing, branding, communications, 
event
 planning and related activities./p
 ul
@@ -202,7 +202,7 @@ news from the project./p
 pstrongNote:/strong Only Apache OpenOffice committers may post to the 
Announce
 mailing list. And, you must use your Apache id and domain to post -- for
 example, send using strongmyapach...@apache.org/strong. /p
-h2 id=development-mailing-listDevelopment Mailing List/h2
+h2 id=development-mailing-list-publicDevelopment Mailing List (Public)/h2
 pThis is where the project community hangs out. This list is used to 
coordinate
 activities and ensure we are all pulling in the same direction. This is a high
 traffic list, with an average of 88 posts/day./p
@@ -217,7 +217,7 @@ traffic list, with an average of 88 post
 /ul
 /li
 /ul
-h2 id=qa-mailing-listQA Mailing List/h2
+h2 id=qa-mailing-list-publicQA Mailing List (Public)/h2
 pThe list is for bug reports, quality assurance for release, beta tests, 
manual
 test, automated tests, etc. You should subscribe (initiate the procedure by
 sending an empty e-mail to the address below, then follow the instructions
@@ -232,7 +232,7 @@ you will receive by e-mail) if you don't
 /ul
 /li
 /ul
-h2 id=localization-mailing-listLocalization Mailing List/h2
+h2 id=localization-mailing-list-publicLocalization Mailing List 
(Public)/h2
 pThe list is discussion of translation and other aspects of localization, for
 both the OpenOffice product, as well as documentation and the website./p
 ul




svn commit: r842218 - in /websites/production/ooo-site: cgi-bin/ content/

2012-12-13 Thread pescetti
Author: pescetti
Date: Thu Dec 13 22:22:24 2012
New Revision: 842218

Log:
Publishing svnmucc operation to ooo-site site by pescetti

Added:
websites/production/ooo-site/cgi-bin/
  - copied from r842216, websites/staging/ooo-site/trunk/cgi-bin/
websites/production/ooo-site/content/
  - copied from r842216, websites/staging/ooo-site/trunk/content/



svn commit: r842222 - in /websites/staging/openoffice/trunk/content: ./ mailing-lists.html

2012-12-13 Thread buildbot
Author: buildbot
Date: Thu Dec 13 22:48:44 2012
New Revision: 84

Log:
Staging update by buildbot for openoffice

Modified:
websites/staging/openoffice/trunk/content/   (props changed)
websites/staging/openoffice/trunk/content/mailing-lists.html

Propchange: websites/staging/openoffice/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu Dec 13 22:48:44 2012
@@ -1 +1 @@
-1421579
+1421595

Modified: websites/staging/openoffice/trunk/content/mailing-lists.html
==
--- websites/staging/openoffice/trunk/content/mailing-lists.html (original)
+++ websites/staging/openoffice/trunk/content/mailing-lists.html Thu Dec 13 
22:48:44 2012
@@ -102,13 +102,13 @@
 ideas about Apache OpenOffice./p
 ul
 lia href=#participation-guidelinesParticipation Guidelines/a./li
-lia href=#users-mailing-listUsers Mailing List/a./li
-lia href=#api-mailing-listAPI Mailing List/a./li
-lia href=#marketing-mailing-listMarketing Mailing List/a./li
+lia href=#users-mailing-list-publicUsers Mailing List/a./li
+lia href=#api-mailing-list-publicAPI Mailing List/a./li
+lia href=#marketing-mailing-list-publicMarketing Mailing List/a./li
 lia href=#announce-mailing-listAnnounce Mailing List/a./li
-lia href=#development-mailing-listDevelopment Mailing List/a./li
-lia href=#qa-mailing-listQuality Assurance (QA) Mailing List/a./li
-lia href=#localization-mailing-listLocalization Mailing List/a./li
+lia href=#development-mailing-list-publicDevelopment Mailing 
List/a./li
+lia href=#qa-mailing-list-publicQuality Assurance (QA) Mailing 
List/a./li
+lia href=#localization-mailing-list-publicLocalization Mailing 
List/a./li
 lia href=#commits-mailing-listCommits Mailing List/a./li
 lia href=#issues-mailing-listIssues Mailing List/a./li
 lia href=#legacy-openofficeorg-listsLegacy OpenOffice.org Lists/a./li




svn commit: r842223 - /websites/production/openoffice/content/

2012-12-13 Thread pescetti
Author: pescetti
Date: Thu Dec 13 22:50:12 2012
New Revision: 842223

Log:
Publishing svnmucc operation to openoffice site by pescetti

Added:
websites/production/openoffice/content/
  - copied from r84, websites/staging/openoffice/trunk/content/



svn commit: r1421612 - /openoffice/ooo-site/trunk/content/it/brand.mdtext

2012-12-13 Thread pescetti
Author: pescetti
Date: Thu Dec 13 23:09:38 2012
New Revision: 1421612

URL: http://svn.apache.org/viewvc?rev=1421612view=rev
Log:
Sync with international banner.

Modified:
openoffice/ooo-site/trunk/content/it/brand.mdtext

Modified: openoffice/ooo-site/trunk/content/it/brand.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/it/brand.mdtext?rev=1421612r1=1421611r2=1421612view=diff
==
--- openoffice/ooo-site/trunk/content/it/brand.mdtext (original)
+++ openoffice/ooo-site/trunk/content/it/brand.mdtext Thu Dec 13 23:09:38 2012
@@ -5,6 +5,6 @@ tagline:La suite libera e completa per
 logo:  AOO_logos/OOo_Website_v2_copy.png
 domain:www.openoffice.org
 divid: bannera
-announce:   OpenOffice cerca volontari per il Marketing Team
-announceurl:
https://blogs.apache.org/OOo/entry/call_for_marketing_volunteers
+announce:   OpenOffice a FOSDEM (Bruxelles, febbraio 2013): Call for Talks
+announceurl:
https://cwiki.apache.org/confluence/display/OOOUSERS/FOSDEM+2013+Proposals
 announcetip:   Annuncio in inglese




svn commit: r842228 - in /websites/production/ooo-site: cgi-bin/ content/

2012-12-13 Thread pescetti
Author: pescetti
Date: Thu Dec 13 23:11:38 2012
New Revision: 842228

Log:
Publishing svnmucc operation to ooo-site site by pescetti

Added:
websites/production/ooo-site/cgi-bin/
  - copied from r842227, websites/staging/ooo-site/trunk/cgi-bin/
websites/production/ooo-site/content/
  - copied from r842227, websites/staging/ooo-site/trunk/content/



buildbot failure in ASF Buildbot on aoo-win7

2012-12-13 Thread buildbot
Hi! , The aoo-win7 builder has just completed a run

STATUS: Failure

 Build revision 1421667 on branch openoffice/trunk

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-win7

 Build results at: http://ci.apache.org/builders/aoo-win7/builds/421

 Build reason was: The Nightly scheduler named 'aoo-win7-nightly' triggered 
this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






buildbot success in ASF Buildbot on openoffice-linux64-nightly

2012-12-13 Thread buildbot
Hi! , The openoffice-linux64-nightly builder has just completed a run

STATUS: Success

 Build revision 1421661 on branch openoffice/trunk

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: tethys_ubuntu

 Build results at: 
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/454

 Build reason was: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot