buildbot success in ASF Buildbot on openoffice-linux64-nightly

2013-10-25 Thread buildbot
Hi! , The openoffice-linux64-nightly builder has just completed a run

STATUS: Success

 Build revision 1535621 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/771

 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






buildbot success in ASF Buildbot on aoo-win7

2013-10-25 Thread buildbot
Hi! , The aoo-win7 builder has just completed a run

STATUS: Success

 Build revision 1535143 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/811

 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-linux32-nightly

2013-10-25 Thread buildbot
Hi! , The openoffice-linux32-nightly builder has just completed a run

STATUS: Success

 Build revision 1535628 on branch openoffice/trunk

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

 Build using the ASF buildslave: bb-vm2_ubuntu_32bit

 Build results at: 
http://ci.apache.org/builders/openoffice-linux32-nightly/builds/530

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


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

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






svn commit: r1535717 - /openoffice/trunk/main/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx

2013-10-25 Thread arielch
Author: arielch
Date: Fri Oct 25 12:49:16 2013
New Revision: 1535717

URL: http://svn.apache.org/r1535717
Log:
i123544 - Prevent accessing empty filters' vector

Modified:

openoffice/trunk/main/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx

Modified: 
openoffice/trunk/main/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx?rev=1535717&r1=1535716&r2=1535717&view=diff
==
--- 
openoffice/trunk/main/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx 
(original)
+++ 
openoffice/trunk/main/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx 
Fri Oct 25 12:49:16 2013
@@ -915,15 +915,18 @@ void VistaFilePickerImpl::impl_sta_ShowD
 ::rtl::OUString aExt;
 UINT nFileType;
 hResult = iDialog->GetFileTypeIndex(&nFileType);
-   if ( SUCCEEDED(hResult) )
+if ( SUCCEEDED(hResult) && nFileType > 0 )
 {
 ::sal_Int32 nRealIndex = (nFileType-1); // COM dialog 
base on 1 ... filter container on 0 .-)
 ::std::vector< COMDLG_FILTERSPEC > lFilters = 
lcl_buildFilterList(m_lFilters);
-   LPCWSTR lpFilterExt = 
lFilters[nRealIndex].pszSpec;
+if ( nRealIndex < lFilters.size() )
+{
+LPCWSTR lpFilterExt = lFilters[nRealIndex].pszSpec;
 
-   lpFilterExt = wcsrchr( lpFilterExt, '.' );
-   if ( lpFilterExt )
-aFileURL += reinterpret_cast(lpFilterExt);
+lpFilterExt = wcsrchr( lpFilterExt, '.' );
+if ( lpFilterExt )
+aFileURL += reinterpret_cast(lpFilterExt);
+}
 }
 }
 




svn commit: r1535756 - /openoffice/ooo-site/trunk/content/nl/why/why_compliance.mdtext

2013-10-25 Thread digro
Author: digro
Date: Fri Oct 25 15:06:24 2013
New Revision: 1535756

URL: http://svn.apache.org/r1535756
Log:
Corrected one typo

Modified:
openoffice/ooo-site/trunk/content/nl/why/why_compliance.mdtext

Modified: openoffice/ooo-site/trunk/content/nl/why/why_compliance.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/nl/why/why_compliance.mdtext?rev=1535756&r1=1535755&r2=1535756&view=diff
==
--- openoffice/ooo-site/trunk/content/nl/why/why_compliance.mdtext (original)
+++ openoffice/ooo-site/trunk/content/nl/why/why_compliance.mdtext Fri Oct 25 
15:06:24 2013
@@ -33,7 +33,7 @@ De gezamenlijke kosten van het gebruik v
 
 ##Nalevingskosten van Open Source
 
-In tegenstelling tot commerciële softwarelicenties, heeft opensource-software 
licenties die expliciet toestemming geven om te software verder te 
distribueren.  Dit  verlaagt de kosten van naleving voor veel
+In tegenstelling tot commerciële softwarelicenties, heeft opensource-software 
licenties die expliciet toestemming geven om de software verder te 
distribueren.  Dit  verlaagt de kosten van naleving voor veel
 organisaties, omdat het bijhouden van het gebruik van software niet nodig is.
 
 Het is echter mogelijk dat organisaties die opensource-software gebruiken en 
ook hun eigen propriëtaire software ontwikkelen en verspreiden, zichzelf in de 
problemen brengen als gevolg van de virale aard (copyleft)




svn commit: r884080 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/nl/why/why_compliance.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 15:07:39 2013
New Revision: 884080

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 15:07:39 2013
@@ -1 +1 @@
-1535546
+1535756

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 15:07:39 2013
@@ -1 +1 @@
-1535546
+1535756

Modified: websites/staging/ooo-site/trunk/content/nl/why/why_compliance.html
==
--- websites/staging/ooo-site/trunk/content/nl/why/why_compliance.html 
(original)
+++ websites/staging/ooo-site/trunk/content/nl/why/why_compliance.html Fri Oct 
25 15:07:39 2013
@@ -31,7 +31,7 @@ een clausule bevatten die de verkoper to
 Om de kosten en boetes van een BSA-controle te vermijden, gaan organisaties 
steeds vaker over tot het gebruik van Software Asset Management (SAM) om er 
zeker van te zijn dat het gebruik van commerciële software in overeenstemming 
is met de van toepassing zijnde licenties.  Deze praktijk gaat vaak samen met 
het opleiden van medewerkers en het aankopen van software om het gebruik van 
licenties en software in te organisatie op te sporen.
 De gezamenlijke kosten van het gebruik van SAM zijn de "nalevingskosten" 
voor het gebruik van commerciële software.  Het zijn kosten die uw organisatie 
niet productiever maken, waar uw klanten geen baat bij hebben en die niets 
toevoegen onder de streep. Het is puur risicobeperking.  Net als de licentie- 
en onderhoudskosten en de training, vormt het een onderdeel van de kosten voor 
het gebruik van commerciële software.
 Nalevingskosten van Open Source
-In tegenstelling tot commerciële softwarelicenties, heeft 
opensource-software licenties die expliciet toestemming geven om te software 
verder te distribueren.  Dit  verlaagt de kosten van naleving voor veel
+In tegenstelling tot commerciële softwarelicenties, heeft 
opensource-software licenties die expliciet toestemming geven om de software 
verder te distribueren.  Dit  verlaagt de kosten van naleving voor veel
 organisaties, omdat het bijhouden van het gebruik van software niet nodig 
is.
 Het is echter mogelijk dat organisaties die opensource-software gebruiken 
en ook hun eigen propriëtaire software ontwikkelen en verspreiden, zichzelf in 
de problemen brengen als gevolg van de virale aard (copyleft)
 van sommige opensource-licenties.  Als een van uw medewerkers of contractanten 
onbedoeld copyleft-code opnemen in uw propriëtaire product, kan het zijn dat u 
door die licentie gehouden bent om de broncode van uw gehele product vrij 
beschikbaar te maken voor het publiek.




svn commit: r1535772 - in /openoffice/trunk/main/cui/source/tabpages: tpbitmap.cxx tpcolor.cxx tplneend.cxx

2013-10-25 Thread alg
Author: alg
Date: Fri Oct 25 16:22:15 2013
New Revision: 1535772

URL: http://svn.apache.org/r1535772
Log:
i123497 corrected modify implementations for bitmap, lineend and color

Modified:
openoffice/trunk/main/cui/source/tabpages/tpbitmap.cxx
openoffice/trunk/main/cui/source/tabpages/tpcolor.cxx
openoffice/trunk/main/cui/source/tabpages/tplneend.cxx

Modified: openoffice/trunk/main/cui/source/tabpages/tpbitmap.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/cui/source/tabpages/tpbitmap.cxx?rev=1535772&r1=1535771&r2=1535772&view=diff
==
--- openoffice/trunk/main/cui/source/tabpages/tpbitmap.cxx (original)
+++ openoffice/trunk/main/cui/source/tabpages/tpbitmap.cxx Fri Oct 25 16:22:15 
2013
@@ -756,9 +756,12 @@ IMPL_LINK( SvxBitmapTabPage, ClickModify
bLoop = sal_False;
 
const BitmapEx 
aBitmapEx(aBitmapCtl.GetBitmapEx());
-const XBitmapEntry aEntry(Graphic(aBitmapEx), aName);
 
-   aLbBitmaps.Modify( 
rStyleSettings.GetListBoxPreviewDefaultPixelSize(), aEntry, nPos );
+// #123497# Need to replace the existing entry with a new one 
(old returned needs to be deleted)
+XBitmapEntry* pEntry = new XBitmapEntry(Graphic(aBitmapEx), 
aName);
+delete maBitmapList->Replace(pEntry, nPos);
+
+   aLbBitmaps.Modify( 
rStyleSettings.GetListBoxPreviewDefaultPixelSize(), *pEntry, nPos );
aLbBitmaps.SelectEntryPos( nPos );
 
// Flag fuer modifiziert setzen

Modified: openoffice/trunk/main/cui/source/tabpages/tpcolor.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/cui/source/tabpages/tpcolor.cxx?rev=1535772&r1=1535771&r2=1535772&view=diff
==
--- openoffice/trunk/main/cui/source/tabpages/tpcolor.cxx (original)
+++ openoffice/trunk/main/cui/source/tabpages/tpcolor.cxx Fri Oct 25 16:22:15 
2013
@@ -631,13 +631,15 @@ IMPL_LINK( SvxColorTabPage, ClickModifyH
 if (eCM != CM_RGB)
ConvertColorValues (aTmpColor, CM_RGB);
 
-const XColorEntry aEntry(aTmpColor, aName);
+// #123497# Need to replace the existing entry with a new one (old 
returned needs to be deleted)
+XColorEntry* pEntry = new XColorEntry(aTmpColor, aName);
+delete maColorTab->Replace(pEntry, nPos);
 
-aLbColor.Modify( aEntry, nPos );
+aLbColor.Modify( *pEntry, nPos );
aLbColor.SelectEntryPos( nPos );
 
-aValSetColorTable.SetItemColor( nPos + 1, aEntry.GetColor() );
-   aValSetColorTable.SetItemText( nPos + 1, 
aEntry.GetName() );
+aValSetColorTable.SetItemColor( nPos + 1, pEntry->GetColor() );
+   aValSetColorTable.SetItemText( nPos + 1, 
pEntry->GetName() );
aEdtName.SetText( aName );
 
aCtlPreviewOld.Invalidate();

Modified: openoffice/trunk/main/cui/source/tabpages/tplneend.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/cui/source/tabpages/tplneend.cxx?rev=1535772&r1=1535771&r2=1535772&view=diff
==
--- openoffice/trunk/main/cui/source/tabpages/tplneend.cxx (original)
+++ openoffice/trunk/main/cui/source/tabpages/tplneend.cxx Fri Oct 25 16:22:15 
2013
@@ -402,19 +402,28 @@ IMPL_LINK( SvxLineEndDefTabPage, ClickMo
 // Wenn nicht vorhanden, wird Eintrag aufgenommen
 if( bDifferent )
 {
-const XLineEndEntry* pEntry = maLineEndList->GetLineEnd( nPos );
+const XLineEndEntry* pOldEntry = maLineEndList->GetLineEnd( nPos );
 
-aEdtName.SetText( aName );
-
-const XLineEndEntry aEntry(pEntry->GetLineEnd(), aName);
-
-aLbLineEnds.Modify( aEntry, nPos, maLineEndList->GetUiBitmap( nPos 
) );
-aLbLineEnds.SelectEntryPos( nPos );
-
-// Flag fuer modifiziert setzen
-*pnLineEndListState |= CT_MODIFIED;
-
-*pPageType = 3;
+if(pOldEntry)
+{
+// #123497# Need to replace the existing entry with a new one 
(old returned needs to be deleted)
+XLineEndEntry* pEntry = new 
XLineEndEntry(pOldEntry->GetLineEnd(), aName);
+delete maLineEndList->Replace(pEntry, nPos);
+
+aEdtName.SetText( aName );
+
+aLbLineEnds.Modify( *pEntry, nPos, maLineEndList->GetUiBitmap( 
nPos ) );
+aLbLineEnds.SelectEntryPos( nPos );
+
+// Flag fuer modifiziert setzen
+*pnLineEndListState |= CT_MODIFIED;
+
+*pPageType = 3;
+}
+  

svn commit: r1535773 - in /openoffice/branches/alg/aw080/main: filter/source/msfilter/ sc/source/ui/view/ svx/inc/svx/ svx/source/sdr/overlay/ svx/source/unodraw/ sw/source/filter/ww8/ xmloff/source/d

2013-10-25 Thread alg
Author: alg
Date: Fri Oct 25 16:25:48 2013
New Revision: 1535773

URL: http://svn.apache.org/r1535773
Log:
in-between commit with changes to MS binary format stuff, Calc overlay, circle 
type cleanup, rotated obejct export for word

Modified:
openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.cxx
openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.hxx
openoffice/branches/alg/aw080/main/sc/source/ui/view/tabview5.cxx
openoffice/branches/alg/aw080/main/svx/inc/svx/svdocirc.hxx
openoffice/branches/alg/aw080/main/svx/source/sdr/overlay/overlaymanager.cxx
openoffice/branches/alg/aw080/main/svx/source/unodraw/unoshape.cxx
openoffice/branches/alg/aw080/main/sw/source/filter/ww8/wrtw8esh.cxx
openoffice/branches/alg/aw080/main/xmloff/source/draw/ximpshap.cxx

Modified: openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.cxx?rev=1535773&r1=1535772&r2=1535773&view=diff
==
--- openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.cxx 
(original)
+++ openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.cxx Fri 
Oct 25 16:25:48 2013
@@ -166,7 +166,6 @@ void ImplEESdrWriter::ImplHandleRotation
 const basegfx::B2DPoint 
aCurrentCenter(ImplMapB2DPoint(rMat.getB2DHomMatrix() * basegfx::B2DPoint(0.5, 
0.5)));
 const basegfx::B2DPoint 
aObjectRangeCenter(rObj.getObjectRange().getCenter());
 basegfx::B2DRange aObjectRange(rObj.getObjectRange());
-bool bChanged(false);
 
 if(!aCurrentCenter.equal(aObjectRangeCenter))
 {
@@ -175,7 +174,6 @@ void ImplEESdrWriter::ImplHandleRotation
 aCurrentCenter - aObjectRangeCenter));
 
 aObjectRange.transform(aAdaptToCenterRotation);
-bChanged = true;
 }
 
 // do use inverted rotation here: The old model format (in which the 
value is here)
@@ -199,7 +197,6 @@ void ImplEESdrWriter::ImplHandleRotation
 F_PI2));
 
 aObjectRange.transform(aMirrorDiagonal);
-bChanged = true;
 }
 
 rObj.setObjectRange(aObjectRange);
@@ -1551,4 +1548,29 @@ bool ImplEESdrObject::ImplHasText() cons
return xXText.is() && xXText->getString().getLength();
 }
 
+void ImplEESdrObject::setObjectRange(const basegfx::B2DRange& rObjectRange)
+{ 
+maObjectRange = rObjectRange; 
+}
+
+const basegfx::B2DRange& ImplEESdrObject::getObjectRange() const 
+{ 
+return maObjectRange; 
+}
+
+sal_Int32 ImplEESdrObject::GetAngle() const
+{ 
+return mnAngle; 
+}
+
+void ImplEESdrObject::SetAngle(sal_Int32 nVal)
+{ 
+mnAngle = nVal; 
+}
+
+basegfx::tools::B2DHomMatrixBufferedOnDemandDecompose& 
ImplEESdrObject::getTransform() 
+{ 
+return maObjTrans; 
+}
+
 // eof

Modified: openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.hxx?rev=1535773&r1=1535772&r2=1535773&view=diff
==
--- openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.hxx 
(original)
+++ openoffice/branches/alg/aw080/main/filter/source/msfilter/eschesdo.hxx Fri 
Oct 25 16:25:48 2013
@@ -74,11 +74,11 @@ public:
const String&   GetType() const { return mType; 
}
voidSetType( const String& rS ) { mType = 
rS; }
 
-void setObjectRange(const basegfx::B2DRange& rObjectRange) { maObjectRange 
= rObjectRange; }
-const basegfx::B2DRange& getObjectRange() const { return maObjectRange; }
+void setObjectRange(const basegfx::B2DRange& rObjectRange);
+const basegfx::B2DRange& getObjectRange() const;
 
-   sal_Int32   GetAngle() const
{ return mnAngle; }
-   voidSetAngle( sal_Int32 nVal )  { 
mnAngle = nVal; }
+sal_Int32 GetAngle() const;
+void SetAngle(sal_Int32 nVal);
 
sal_uInt32  GetTextSize() const { 
return mnTextSize; }
 
@@ -93,7 +93,7 @@ public:
sal_uInt32  ImplGetText();
boolImplHasText() const;
 
-basegfx::tools::B2DHomMatrixBufferedOnDemandDecompose& getTransform() { 
return maObjTrans; }
+basegfx::tools::B2DHomMatrixBufferedOnDemandDecompose& getTransform();
 };
 
 

Modified: openoffice/branches/alg/aw080/main/sc/source/ui/view/tabview5.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/alg/aw080/main/sc/source/ui/view/tabview5.cxx?rev=1535773&r1=1535772&r2=1535773&view=diff
==
--- openoffice/branches/alg/aw080/main/sc/sourc

svn commit: r1535875 - /openoffice/ooo-site/trunk/content/tr/news/index.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:24:28 2013
New Revision: 1535875

URL: http://svn.apache.org/r1535875
Log:
Added news

Modified:
openoffice/ooo-site/trunk/content/tr/news/index.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/news/index.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/news/index.mdtext?rev=1535875&r1=1535874&r2=1535875&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/news/index.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/news/index.mdtext Fri Oct 25 21:24:28 
2013
@@ -1,4 +1,4 @@
-Title: News
+Title: Haberler
 Notice:Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
@@ -15,5 +15,15 @@ Notice:Licensed to the Apache Softwa
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
+
  
-## TODO ##
+## Apache OpenOffice Türkçe ile ilgili Haberler ##
+
+**Apache OpenOffice Türkçe sitesi hazırlanıyor**
+
+Apache OpenOffice Resmi Türkçe sitesi çevirisi devam ediyor
+
+
+**Apache OpenOffice'in yeni sürümü artık Türkçe olarak indirilebilir**
+
+Apache OpenOffice 4.0.1 Türkçe olarak *1 Ekim 2013* tarihinde yayınlandı!
\ No newline at end of file




svn commit: r884116 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/news/index.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 21:25:29 2013
New Revision: 884116

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:25:29 2013
@@ -1 +1 @@
-1535756
+1535875

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:25:29 2013
@@ -1 +1 @@
-1535756
+1535875

Modified: websites/staging/ooo-site/trunk/content/tr/news/index.html
==
--- websites/staging/ooo-site/trunk/content/tr/news/index.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/news/index.html Fri Oct 25 
21:25:29 2013
@@ -3,7 +3,7 @@
 
 
 
-News
+Haberler
 
 
 
@@ -21,8 +21,12 @@
   
   
 
-News
-TODO
+Haberler
+Apache OpenOffice 
Türkçe ile ilgili Haberler
+Apache OpenOffice Türkçe sitesi hazırlanıyor
+Apache OpenOffice Resmi Türkçe sitesi çevirisi devam ediyor
+Apache OpenOffice'in yeni sürümü artık Türkçe olarak 
indirilebilir
+Apache OpenOffice 4.0.1 Türkçe olarak 1 Ekim 2013 tarihinde 
yayınlandı!
   
 
 




svn commit: r1535876 - /openoffice/ooo-site/trunk/content/tr/news/index.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:29:09 2013
New Revision: 1535876

URL: http://svn.apache.org/r1535876
Log:
page format update

Modified:
openoffice/ooo-site/trunk/content/tr/news/index.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/news/index.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/news/index.mdtext?rev=1535876&r1=1535875&r2=1535876&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/news/index.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/news/index.mdtext Fri Oct 25 21:29:09 
2013
@@ -19,11 +19,13 @@ Notice:Licensed to the Apache Softwa
  
 ## Apache OpenOffice Türkçe ile ilgili Haberler ##
 
-**Apache OpenOffice Türkçe sitesi hazırlanıyor**
+Apache OpenOffice Türkçe sitesi hazırlanıyor
+
 
 Apache OpenOffice Resmi Türkçe sitesi çevirisi devam ediyor
 
 
-**Apache OpenOffice'in yeni sürümü artık Türkçe olarak indirilebilir**
+Apache OpenOffice'in yeni sürümü artık Türkçe olarak indirilebilir
+--
 
 Apache OpenOffice 4.0.1 Türkçe olarak *1 Ekim 2013* tarihinde yayınlandı!
\ No newline at end of file




svn commit: r884118 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/news/index.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 21:29:38 2013
New Revision: 884118

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:29:38 2013
@@ -1 +1 @@
-1535875
+1535876

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:29:38 2013
@@ -1 +1 @@
-1535875
+1535876

Modified: websites/staging/ooo-site/trunk/content/tr/news/index.html
==
--- websites/staging/ooo-site/trunk/content/tr/news/index.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/news/index.html Fri Oct 25 
21:29:38 2013
@@ -23,9 +23,9 @@
 
 Haberler
 Apache OpenOffice 
Türkçe ile ilgili Haberler
-Apache OpenOffice Türkçe sitesi hazırlanıyor
+Apache OpenOffice Türkçe 
sitesi hazırlanıyor
 Apache OpenOffice Resmi Türkçe sitesi çevirisi devam ediyor
-Apache OpenOffice'in yeni sürümü artık Türkçe olarak 
indirilebilir
+Apache 
OpenOffice'in yeni sürümü artık Türkçe olarak indirilebilir
 Apache OpenOffice 4.0.1 Türkçe olarak 1 Ekim 2013 tarihinde 
yayınlandı!
   
 




svn commit: r1535877 - /openoffice/ooo-site/trunk/content/tr/news/index.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:31:43 2013
New Revision: 1535877

URL: http://svn.apache.org/r1535877
Log:
CMS commit to ooo-site by bourock

Modified:
openoffice/ooo-site/trunk/content/tr/news/index.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/news/index.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/news/index.mdtext?rev=1535877&r1=1535876&r2=1535877&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/news/index.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/news/index.mdtext Fri Oct 25 21:31:43 
2013
@@ -1,4 +1,4 @@
-Title: Haberler
+Title: Apache OpenOffice Türkçe ile ilgili Haberler
 Notice:Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
@@ -15,10 +15,6 @@ Notice:Licensed to the Apache Softwa
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
-
- 
-## Apache OpenOffice Türkçe ile ilgili Haberler ##
-
 Apache OpenOffice Türkçe sitesi hazırlanıyor
 
 




svn commit: r884119 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/news/index.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 21:32:14 2013
New Revision: 884119

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:32:14 2013
@@ -1 +1 @@
-1535876
+1535877

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:32:14 2013
@@ -1 +1 @@
-1535876
+1535877

Modified: websites/staging/ooo-site/trunk/content/tr/news/index.html
==
--- websites/staging/ooo-site/trunk/content/tr/news/index.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/news/index.html Fri Oct 25 
21:32:14 2013
@@ -3,7 +3,7 @@
 
 
 
-Haberler
+Apache OpenOffice Türkçe ile ilgili Haberler
 
 
 
@@ -21,9 +21,8 @@
   
   
 
-Haberler
-Apache OpenOffice 
Türkçe ile ilgili Haberler
-Apache OpenOffice Türkçe 
sitesi hazırlanıyor
+Apache OpenOffice Türkçe ile ilgili Haberler
+Apache OpenOffice 
Türkçe sitesi hazırlanıyor
 Apache OpenOffice Resmi Türkçe sitesi çevirisi devam ediyor
 Apache 
OpenOffice'in yeni sürümü artık Türkçe olarak indirilebilir
 Apache OpenOffice 4.0.1 Türkçe olarak 1 Ekim 2013 tarihinde 
yayınlandı!




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

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:34:11 2013
New Revision: 884120

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

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



svn commit: r1535879 - /openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:39:56 2013
New Revision: 1535879

URL: http://svn.apache.org/r1535879
Log:
First translation

Modified:
openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext?rev=1535879&r1=1535878&r2=1535879&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext Fri Oct 25 
21:39:56 2013
@@ -1,6 +1,6 @@
 divid:  leftnav
 
-# Products
+# Ürünler
 
   - [Writer](/tr/product/writer.html)
   - [Calc](/tr/product/calc.html)
@@ -9,7 +9,7 @@ divid:  leftnav
   - [Math](/tr/product/math.html)
   - [Base](/tr/product/base.html)
 
-# More
+# Daha Fazlası
 
-  - [Suite](/tr/product/suite.html)
-  - [Reviews](/tr/product/reviews.html)
+  - [Paket](/tr/product/suite.html)
+  - [Gözden Geçirmeler](/tr/product/reviews.html)




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

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:41:02 2013
New Revision: 884123

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

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



svn commit: r884122 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/product/leftnav.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 21:40:28 2013
New Revision: 884122

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:40:28 2013
@@ -1 +1 @@
-1535877
+1535879

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:40:28 2013
@@ -1 +1 @@
-1535877
+1535879

Modified: websites/staging/ooo-site/trunk/content/tr/product/leftnav.html
==
--- websites/staging/ooo-site/trunk/content/tr/product/leftnav.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/product/leftnav.html Fri Oct 25 
21:40:28 2013
@@ -1,4 +1,4 @@
-Products
+Ürünler
 
 Writer
 Calc
@@ -7,8 +7,8 @@
 Math
 Base
 
-More
+Daha Fazlası
 
-Suite
-Reviews
+Paket
+Gözden Geçirmeler
 




svn commit: r1535881 - /openoffice/ooo-site/trunk/content/tr/product/index.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:48:02 2013
New Revision: 1535881

URL: http://svn.apache.org/r1535881
Log:
Started to translation

Modified:
openoffice/ooo-site/trunk/content/tr/product/index.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/product/index.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/product/index.mdtext?rev=1535881&r1=1535880&r2=1535881&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/product/index.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/product/index.mdtext Fri Oct 25 
21:48:02 2013
@@ -1,4 +1,4 @@
-Title:  Apache OpenOffice Product Description
+Title:  Apache OpenOffice Ürün Açıklaması
 Notice:Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
@@ -17,8 +17,7 @@ Notice:Licensed to the Apache Softwa
under the License.
 css:/product/styles.css
 
-Compatible with other major office suites, Apache OpenOffice is free to
-download, use, and distribute. [Download it now][1], and get:
+Diğer büyük ofis paketleriyle uyumlu, Apache OpenOffice, indirmek, 
kullanmak ve dağıtmak için ücretsizdir. [Şimdi indirin][1], ve şunları 
alın:
 
 ![Apache OpenOffice?](/images/AOO_logos/orb.jpg) # {.rfloatimg}
 
@@ -39,7 +38,7 @@ download, use, and distribute. [Download
 mathematical equations with a graphic user interface or by directly typing
 your formulas into the equation editor. # { .product-math }
 
-## Why Apache OpenOffice? #{ .why }
+## Neden Apache OpenOffice? #{ .why }
 
 Apache OpenOffice is synonymous with **quality**:
 
@@ -77,7 +76,7 @@ Apache OpenOffice is **standards complia
 ### [Find out more][8] or [try it today][1]!
 
 
-[1]: /tr/download "Download Apache OpenOffice"
+[1]: /tr/download "Apache OpenOffice'i İndirin"
 [2]: /about_us/milestones.html
 [3]: reviews.html
 [4]: /projects/native-lang.html




svn commit: r884124 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/product/index.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 21:48:35 2013
New Revision: 884124

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:48:35 2013
@@ -1 +1 @@
-1535879
+1535881

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:48:35 2013
@@ -1 +1 @@
-1535879
+1535881

Modified: websites/staging/ooo-site/trunk/content/tr/product/index.html
==
--- websites/staging/ooo-site/trunk/content/tr/product/index.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/product/index.html Fri Oct 25 
21:48:35 2013
@@ -3,7 +3,7 @@
 
 
 
-Apache OpenOffice Product Description
+Apache OpenOffice Ürün Açıklaması
 
 
 
@@ -21,9 +21,8 @@
   
   
 
-Apache OpenOffice Product Description
-Compatible with other major office suites, Apache OpenOffice is free to
-download, use, and distribute. Download it now, and get:
+Apache OpenOffice Ürün Açıklaması
+Diğer büyük ofis paketleriyle uyumlu, Apache OpenOffice, indirmek, 
kullanmak ve dağıtmak için ücretsizdir. Şimdi indirin, ve şunları alın:
 
 
 Writer a word processor you can use for
@@ -42,7 +41,7 @@ download, use, and distribute. Why Apache OpenOffice?
+Neden Apache OpenOffice?
 Apache OpenOffice is synonymous with quality:
 
 The roots of Apache OpenOffice go 
back twenty years, creating a mature
@@ -76,7 +75,7 @@ happy to provide assistance to newcomers
 The first software package in the world to use http://www.oasis-open.org/";>OASIS http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office";>OpenDocument
 Format (ISO/IEC 26300)
   as its native file format.
 
-Find out more or 
try it today!
+Find out more or 
try it 
today!
   
 
 




svn commit: r1535882 - /openoffice/ooo-site/trunk/content/tr/product/index.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:49:45 2013
New Revision: 1535882

URL: http://svn.apache.org/r1535882
Log:
CMS commit to ooo-site by bourock

Modified:
openoffice/ooo-site/trunk/content/tr/product/index.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/product/index.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/product/index.mdtext?rev=1535882&r1=1535881&r2=1535882&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/product/index.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/product/index.mdtext Fri Oct 25 
21:49:45 2013
@@ -17,7 +17,7 @@ Notice:Licensed to the Apache Softwa
under the License.
 css:/product/styles.css
 
-Diğer büyük ofis paketleriyle uyumlu, Apache OpenOffice, indirmek, 
kullanmak ve dağıtmak için ücretsizdir. [Şimdi indirin][1], ve şunları 
alın:
+Diğer büyük ofis paketleriyle uyumlu olan, Apache OpenOffice, indirmek, 
kullanmak ve dağıtmak için ücretsizdir. [Şimdi indirin][1], ve şunları 
alın:
 
 ![Apache OpenOffice?](/images/AOO_logos/orb.jpg) # {.rfloatimg}
 




svn commit: r884125 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/product/index.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 21:50:25 2013
New Revision: 884125

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:50:25 2013
@@ -1 +1 @@
-1535881
+1535882

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:50:25 2013
@@ -1 +1 @@
-1535881
+1535882

Modified: websites/staging/ooo-site/trunk/content/tr/product/index.html
==
--- websites/staging/ooo-site/trunk/content/tr/product/index.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/product/index.html Fri Oct 25 
21:50:25 2013
@@ -22,7 +22,7 @@
   
 
 Apache OpenOffice Ürün Açıklaması
-Diğer büyük ofis paketleriyle uyumlu, Apache OpenOffice, indirmek, 
kullanmak ve dağıtmak için ücretsizdir. Şimdi indirin, ve şunları alın:
+Diğer büyük ofis paketleriyle uyumlu olan, Apache OpenOffice, 
indirmek, kullanmak ve dağıtmak için ücretsizdir. Şimdi indirin, ve şunları alın:
 
 
 Writer a word processor you can use for




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

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:51:15 2013
New Revision: 884126

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

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



svn commit: r1535883 - /openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:53:47 2013
New Revision: 1535883

URL: http://svn.apache.org/r1535883
Log:
CMS commit to ooo-site by bourock

Modified:
openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext?rev=1535883&r1=1535882&r2=1535883&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext Fri Oct 25 
21:53:47 2013
@@ -9,7 +9,7 @@ divid:  leftnav
   - [Math](/tr/product/math.html)
   - [Base](/tr/product/base.html)
 
-# Daha Fazlası
+# DAHA FAZLASI
 
   - [Paket](/tr/product/suite.html)
   - [Gözden Geçirmeler](/tr/product/reviews.html)




svn commit: r884127 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/product/leftnav.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 21:54:18 2013
New Revision: 884127

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:54:18 2013
@@ -1 +1 @@
-1535882
+1535883

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:54:18 2013
@@ -1 +1 @@
-1535882
+1535883

Modified: websites/staging/ooo-site/trunk/content/tr/product/leftnav.html
==
--- websites/staging/ooo-site/trunk/content/tr/product/leftnav.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/product/leftnav.html Fri Oct 25 
21:54:18 2013
@@ -7,7 +7,7 @@
 Math
 Base
 
-Daha Fazlası
+DAHA FAZLASI
 
 Paket
 Gözden Geçirmeler




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

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:54:28 2013
New Revision: 884128

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

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



svn commit: r1535884 - /openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:56:31 2013
New Revision: 1535884

URL: http://svn.apache.org/r1535884
Log:
CMS commit to ooo-site by bourock

Modified:
openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext?rev=1535884&r1=1535883&r2=1535884&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext Fri Oct 25 
21:56:31 2013
@@ -9,7 +9,7 @@ divid:  leftnav
   - [Math](/tr/product/math.html)
   - [Base](/tr/product/base.html)
 
-# DAHA FAZLASI
+# Daha Fazlasİ
 
   - [Paket](/tr/product/suite.html)
   - [Gözden Geçirmeler](/tr/product/reviews.html)




svn commit: r884129 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/product/leftnav.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 21:57:01 2013
New Revision: 884129

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:57:01 2013
@@ -1 +1 @@
-1535883
+1535884

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 21:57:01 2013
@@ -1 +1 @@
-1535883
+1535884

Modified: websites/staging/ooo-site/trunk/content/tr/product/leftnav.html
==
--- websites/staging/ooo-site/trunk/content/tr/product/leftnav.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/product/leftnav.html Fri Oct 25 
21:57:01 2013
@@ -7,7 +7,7 @@
 Math
 Base
 
-DAHA FAZLASI
+Daha Fazlasİ
 
 Paket
 Gözden Geçirmeler




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

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 21:57:28 2013
New Revision: 884130

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

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



svn commit: r1535886 - /openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 22:00:28 2013
New Revision: 1535886

URL: http://svn.apache.org/r1535886
Log:
CMS commit to ooo-site by bourock

Modified:
openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext?rev=1535886&r1=1535885&r2=1535886&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext Fri Oct 25 
22:00:28 2013
@@ -9,7 +9,9 @@ divid:  leftnav
   - [Math](/tr/product/math.html)
   - [Base](/tr/product/base.html)
 
-# Daha Fazlasİ
+ 
+Daha Fazlası
+
 
   - [Paket](/tr/product/suite.html)
   - [Gözden Geçirmeler](/tr/product/reviews.html)




svn commit: r884131 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/product/leftnav.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 22:00:57 2013
New Revision: 884131

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 22:00:57 2013
@@ -1 +1 @@
-1535884
+1535886

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 22:00:57 2013
@@ -1 +1 @@
-1535884
+1535886

Modified: websites/staging/ooo-site/trunk/content/tr/product/leftnav.html
==
--- websites/staging/ooo-site/trunk/content/tr/product/leftnav.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/product/leftnav.html Fri Oct 25 
22:00:57 2013
@@ -7,7 +7,7 @@
 Math
 Base
 
-Daha Fazlasİ
+Daha Fazlası
 
 Paket
 Gözden Geçirmeler




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

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 22:02:06 2013
New Revision: 884132

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

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



svn commit: r1535887 - /openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 22:04:37 2013
New Revision: 1535887

URL: http://svn.apache.org/r1535887
Log:
CMS commit to ooo-site by bourock

Modified:
openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext

Modified: openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext?rev=1535887&r1=1535886&r2=1535887&view=diff
==
--- openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext (original)
+++ openoffice/ooo-site/trunk/content/tr/product/leftnav.mdtext Fri Oct 25 
22:04:37 2013
@@ -10,8 +10,9 @@ divid:  leftnav
   - [Base](/tr/product/base.html)
 
  
+
 Daha Fazlası
-
+
 
   - [Paket](/tr/product/suite.html)
   - [Gözden Geçirmeler](/tr/product/reviews.html)




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

2013-10-25 Thread bourock
Author: bourock
Date: Fri Oct 25 22:05:14 2013
New Revision: 884134

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

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



svn commit: r884133 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/tr/product/leftnav.html

2013-10-25 Thread buildbot
Author: buildbot
Date: Fri Oct 25 22:05:06 2013
New Revision: 884133

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 22:05:06 2013
@@ -1 +1 @@
-1535886
+1535887

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Fri Oct 25 22:05:06 2013
@@ -1 +1 @@
-1535886
+1535887

Modified: websites/staging/ooo-site/trunk/content/tr/product/leftnav.html
==
--- websites/staging/ooo-site/trunk/content/tr/product/leftnav.html (original)
+++ websites/staging/ooo-site/trunk/content/tr/product/leftnav.html Fri Oct 25 
22:05:06 2013
@@ -7,7 +7,7 @@
 Math
 Base
 
-Daha Fazlası
+Daha Fazlası
 
 Paket
 Gözden Geçirmeler




buildbot success in ASF Buildbot on aoo-w7ia2

2013-10-25 Thread buildbot
Hi! , The aoo-w7ia2 builder has just completed a run

STATUS: Success

 Build revision 1533029 on branch openoffice/branches/ia2

 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-w7ia2/builds/280

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


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

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






buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

2013-10-25 Thread buildbot
Hi! , The openoffice-fbsd-nightly builder has just completed a run

STATUS: Failure

 Build revision 1535916 on branch openoffice/trunk

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

 Build using the ASF buildslave: bb-fbsd2_64bit

 Build results at: 
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/71

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


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

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






[CONF] Apache OpenOffice Community > Directory of Volunteers

2013-10-25 Thread Tae-Wong Seo (Confluence)







Directory of Volunteers
Page edited by Tae-Wong Seo


Comment:
Use hyphenated form of Chinese first name. Translated Istanbul, Turkey from Turkish. Remove underlines from Bangalore, India's value.


 Changes (7)
 




...
| Mucafir, Oliver | Zagreb, Croatia | Localization | | [Neto, Albino B|http://www.binoanb.eti.br] | Vila Velha, ES - Brazil | l10n, Documentation, Marketing, Support Users, Community Apache OpenOffice Brazil, ODF and Codes | 
| Ninkov, Nikolay | Sofia, Bulgaria | Localization | 
| Norton, Paul | Chatham, ON, Canada | Java, Writer, ODF | | O'Brien, Caroline | Washington, D.C., USA | Documentation creation and editing | 
...
| Rottensteiner, Chris | South Tyrol, Italy | v4 logo re-design, SVG testing/files | | Ryan, Benedict | Sheffield, UK | Java, C/C+\+ | 
| Saisyamala | _Bangalore,India_ | QA | 
| Saisyamala | Bangalore, India | QA | 
| Santa, Bruno | Torino, Italy | Localization | | Sanz, Juan C. | Logroño, Spain | Spanish localization and documentation | 
...
| Swales, Stuart | Aberfeldy, UK | British English (en-GB) localisation | | Sweeney, Jeremy | Oakland, CA | Documentation | 
| Tseng, Cheng -Chia | Taichung, Taiwan | Localization | 
| v, floris | Apeldoorn, Netherlands | User support forum (English and Dutch) | | [Vågsether, Håkon|http://linkedin.com/in/hkonv] | Ålesund, Norway | C/C++, Python, Linux, FOSS, Norwegian Localization | 
...
| Yambao, Lenard | California, USA | Documentation, QA | | Yan, Ji | Beijing, China | QA, Testing planning | 
| Yang, Wei | BeiJing,China Beijing, China | QA, Automation Testing,Spreadsheet | 
| Yavuz, Burak (BouRock) | İstanbul, Türkiye (Turkey) Istanbul, Turkey | Localization | 
| Yin, Steve | Beijing, CN | C++, JAVA, UNO, IAccessible2, Presentation, PDF, ODF | | Yohannan, Rosie | Manchester, UK | Documentation, User Support | | Youngdale, Brandon | San Diego, CA | documentation creation and editing, tutorials | 
| Zhe, Liu | BeiJing,China Beijing,hina | QA, Automated Testing, C/C++, Java | 


Full Content

Please keep this list in alphabetical order by family name.




 Name 
 Home 
 Skills/Interests 


 Ahrens, Kai 
 Hamburg, Germany 
 C++, Java, Linux, Graphics core, Graphics filters, VCL, Presentation, Impress, Draw 


 Albuquerque, Pedro 
 Pias, Serpa, Portugal 
 Portugal translation 


 Allen, Andrew 
 Arizona, US 
 Web Design, Business Management, Marketing 


 Anoyati, Katerina 
 Athens, Greece 
 Apache OpenOffice 


 Artus, Ben 
 Pueblo, CO, USA 
 User Support, Java, _javascript_, CSS/HTML, User 


 Bachard, Eric 
 Audincourt  France 
 C/C++, ObjectiveC, vcl and Impress hacker, All ports and build systems, Education Project, Student mentoring 


 Backus, Leah 
 Austin, TX 
 Documentation, Education, User assistance 


 Barton, Dave 
 Milan, Italy 
 User Support, Tutorials, Documentation, HTML, CSS, PHP, _javascript_, C/C++, Distribution. 


 Beaussier, Cyril 
 Saumur, France 
 Documentation, localization, User Support Forum (French) 


 Bergmann, Stephan 
 Hamburg, Germany 
 C++, Java, UNO, configmgr, Linux, Mac OS X, Solaris, Linkers/Libraries, Build System, -enable-werror, Code Quality, Unit Tests 


 Berlasso, Ricardo Gabriel 
 Como, Italy 
 User support (Forums, tutorials), Spanish localization 


 Bg, Alejandro 
 Stuttgart, Germany 
 QA, Localization 


 Bielefeld, Rainer-Uwe 
 Braunschweig, Germany 
 QA 


 Bircher, Raphael 
 Malans GR, Switzerland 
 QA, Infrastructure 


 Brown, Andy 
 Dublin, GA, USA 
 User, Documentation, Distribution, Marketing 


 Brown, Camelia 
 Davis, CA, USA 
 QA, Marketing, Word Processing 


 Canham, Liselle 
 Auckland, New Zealand 
 Documentation 


 Caniparoli, Massimiliano 
 Collegno (and Dogana Nuova), Italy 
 QA 


 Caresia, Marco 
 Bolzano, Italy 
 Localization, QA 


 Cernitore, Cinzia 
 Bari, Italy 
 Localization 


 Chen, Jin Hua 
 Beijing, China 
 C/C++, Java, UNO, Impress, programmability, Office, OpenSim/Virtual Worlds 


 Cherkashina, Alena 
 Sacramento, CA, USA 
 QA, Localization 


 Chiarini, Gabriele 
 San Pietro in Casale, Bologna, Italy 
 Localization 


 Colorado, Alexandro 
 Cancun, Mexico 
 Localization, ODF, Documentation, Marketing, Community Management, Python, XML, User Support 


 Constenla-Haile, Ariel 
 La Plata, Argentina 
 C/C++, Java, Python, UNO, API, Extensions, Application Framework 


 Counts, Marek 
 Louisville, KY, USA 
 C/C++, java, python, Security 


 Cunningham, Ian 
 Perth, Australia 
 C/C++, Java, XML, ODF, Testing 


 Curcuru, Shane 
 Cambridge, MA, USA 
 Project mentor; Apache Brand Management; QE 


 D'Alessandr

[CONF] Apache OpenOffice Community > Localization Volunteers

2013-10-25 Thread Tae-Wong Seo (Confluence)







Localization Volunteers
Page edited by Tae-Wong Seo


Comment:
Fix alphabetization of language names and remove HTML entity. Fix last name as well.


 Changes (16)
 




...
| *Language* | *Help with Product Translation* | *Help with Website Translation* | | Afar (aa) | | | 
| Albanian (sq) | | | 
| Afrikaans (af) | | | 
| Albanian (sq) | | | 
| Amharic (am) | | | | Arabic (ar) | Karwan Fendi | | 
...
| Burmese (my) | | | | Catalan (ca) | Maria Bosch | | 
| Chinese (simplified) (cn) | Sun Simon | | | Chinese (traditional) (tw) | imacat, Chia-Yu Lee | imacat, Chia-Yu Lee | 
| ChiNyanja (NY) | | | 
| 简体中文 Chinese (simplified) (cn) | Sun Simon | | | 正體中文 Chinese (traditional) (tw) | imacat, Chia-Yu Lee | imacat, Chia-Yu Lee | | Czech (cs) | | | 
| Croatian (hr) |Oliver Mucafir - App UI | Oliver Mucafir| 
| Czech (cs) | | | 
| Danish (da) | | | | Dutch (nl) | DiGro - Help and UI at Pootle, DiGro - User Guide translation | | 
...
| French (fr) | Several volunteers coordinated by Cyril Beaussier (aka Bidouille) | Cyril Beaussier (aka Bidouille) | | Friulian (fur) | | | 
| Galician (gl) | | | 
| Gaelic (Irish) (ga) | | | | Gaelic (Scottish) (gd) | | | 
| Galician (gl) | | | 
| Georgian (ka) | | | | German (de) | Alexander Behrens - GUI l10n volunteer, Raphael Bircher, Mechtilde Stehmann and others | | 
...
| 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, Ditra Masyitah, Joshua Kenny (indojo24), [Denni (indojo24), [Denni Agung Pambudi|https://cwiki.apache.org/confluence/display/~denniagungpambudi] | | 
| Italian (it) | Several volunteers, coordinated by Paolo Pozzan (paolopoz) | Andrea Pescetti (pescetti), with contributions from Pedro Giffuni (pfg) | | Japanese (ja) | Kazunari Hirano, Nobuho Matayoshi | Kazunari Hirano, Nobuho Matayoshi | 
...
| Lithuanian (lt) | Aivaras Stepukonis | | Macedonian (mk) | | | 
| Malayalam (ml) | Ravi Panamana (ravipanamana) | Ravi Panamana (ravipanamana) | | Marathi (mr) | | | 
| Malagasy (mg) | | | 
| Malayalam (ml) | Ravi Panamana (ravipanamana) | Ravi Panamana (ravipanamana) | 
| Malaysian (ms) | | | 
| Marathi (mr) | | | 
| Miskito (miq) | | | | Mongolian (mn) | | | 
...
| 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, Paulo Alexandre Romualdo, Rui C Correia, Ademar José Aguiar, João Frade, Rafael G Machado | Joana Tornada, Rui C Correia, Ademar José Aguiar, João Frade, Rafael G Machado | 
| Portuguese (Brazil) (pt-br) | Antonio C C Marques, Rui Ogawa, Claudio Filho, Albino B Neto, Kleberth Santos , Jimie Almeida, Lindalva Santos (lisantoss) | Claudio Filho, Albino B Neto, Kleberth Santos, Lindalva Santos (lisantoss) | 
| Punjabi (pa) | | | | Romanian (ro) | | | 
...
| Sidama (dm) | | | | Sinhala (si) | | | 
| Slovenian (sl) | | | 
| Slovakian (sk) | Michal Hriň (hrin) | Michal Hriň (hrin) | 
| Slovenian (sl) | | | 
| Somali (so) | | | | Spanish (es) | Ricardo Berlasso (rgb-es): UI and Help files on Pootle, JZA, Mauricio Baeza, Salva (slv-es) | Ricardo Berlasso (rgb-es) | 
...
| Tibetan (bo) | | | | Tigrinya (ti) | | | 
| Turkish (tr) | Mehmet Demir, Gökşin Akdeniz, Bahtiyar Samet Çovban, Ozan Ayten, Sehzade Karababa | 
| Uyghur (ug) | Gheyret T kenji (coordinator), Sahran (translator) | Gheyret T kenji (coordinator), Sahran (translator) | | Ukrainian (uk) | | | | Urdu (urd) | | | | Uzbek (uz) | | | 
| Vietnamese (vi) |Trần Đình Thục Anh, Anh Phan |Trần Đình Thục Anh, Anh Phan | 
| Welsh (cy) | | | 


Full Content

Volunteers

Please follow first these steps: https://cwiki.apache.org/confluence/x/XBT8AQ and then add your name here.




 Language 
 Help with Product Translation 
 Help with Website Translation 


 Afar (aa) 
 
 


 Afrikaans (af) 
 
 


 Albanian (sq) 
 
 


 Amharic (am) 
 
 


 Arabic (ar) 
 Karwan Fendi 
 


 Armenian (hy) 
 
 


 Asturian (ast) 
 Xuacu Saturio 
 


 Azeri (az) 
 
 


 Balochi (b