[CONF] Apache OpenOffice Community AOO Defect Verification Guidance

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO Defect Verification Guidance
Page moved by Yu Zhen Fan






From: 

Apache OpenOffice Community



To: 

Apache OpenOffice Community
 Wiki Home





Children moved






   
Stop watching space
|
Change email notification preferences

   View Online
  |
   Add Comment
   









[CONF] Apache OpenOffice Community AOO Full Regression Test Guidance

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO Full Regression Test Guidance
Page moved by Yu Zhen Fan






From: 

Apache OpenOffice Community
 Wiki Home


To: 

Apache OpenOffice Community
 QA Planning





Children moved






   
Stop watching space
|
Change email notification preferences

   View Online
  |
   Add Comment
   









[CONF] Apache OpenOffice Community AOO RC Acceptance Test Guidance

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO RC Acceptance Test Guidance
Page moved by Yu Zhen Fan






From: 

Apache OpenOffice Community
 Wiki Home


To: 

Apache OpenOffice Community
 QA Planning





Children moved






   
Stop watching space
|
Change email notification preferences

   View Online
  |
   Add Comment
   









[CONF] Apache OpenOffice Community AOO RC Acceptance Test Guidance

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO RC Acceptance Test Guidance
Page moved by Yu Zhen Fan






From: 

Apache OpenOffice Community



To: 

Apache OpenOffice Community
 Wiki Home





Children moved






   
Stop watching space
|
Change email notification preferences

   View Online
  |
   Add Comment
   









[CONF] Apache OpenOffice Community AOO 4.0 Full Regression Test

2013-08-20 Thread liuping (Confluence)







AOO 4.0 Full Regression Test
Page moved by Yu Zhen Fan






From: 

Apache OpenOffice Community
 Wiki Home


To: 

Apache OpenOffice Community
 QA Planning





Children moved






   
Stop watching space
|
Change email notification preferences

   View Online
  |
   Add Comment
   









svn commit: r1515732 - /openoffice/trunk/main/sw/source/filter/ww8/ww8par.cxx

2013-08-20 Thread orw
Author: orw
Date: Tue Aug 20 08:00:27 2013
New Revision: 1515732

URL: http://svn.apache.org/r1515732
Log:
123021: import of graphic bullets - consider empty graphic frames in graphic 
bullet area

Modified:
openoffice/trunk/main/sw/source/filter/ww8/ww8par.cxx

Modified: openoffice/trunk/main/sw/source/filter/ww8/ww8par.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/filter/ww8/ww8par.cxx?rev=1515732r1=1515731r2=1515732view=diff
==
--- openoffice/trunk/main/sw/source/filter/ww8/ww8par.cxx (original)
+++ openoffice/trunk/main/sw/source/filter/ww8/ww8par.cxx Tue Aug 20 08:00:27 
2013
@@ -4680,87 +4680,90 @@ sal_uLong SwWW8ImplReader::CoreLoad(WW8G
 delete mpRedlineStack;
 DeleteAnchorStk();
 DeleteRefStks();
-   //For i120928,achieve the graphics from the special bookmark with is 
for graphic bullet
-   {
-   std::vectorconst SwGrfNode* vecBulletGrf;
-   std::vectorSwFrmFmt* vecFrmFmt;
-   
-   IDocumentMarkAccess* const pMarkAccess =
-rDoc.getIDocumentMarkAccess();
-   if ( pMarkAccess )
-   {
- IDocumentMarkAccess::const_iterator_t ppBkmk =
-   pMarkAccess-findBookmark( 
C2U(_PictureBullets) );
-   //for(IDocumentMarkAccess::const_iterator_t ppBookmark 
= ppBkmk-begin();
- //ppBookmark != ppBkmk-end(); ppBookmark++)
- if ( ppBkmk != pMarkAccess-getBookmarksEnd() 
-IDocumentMarkAccess::GetType( *(ppBkmk-get()) 
)
-   == IDocumentMarkAccess::BOOKMARK )  
 
-   {   
-   SwTxtNode* pTxtNode = 
ppBkmk-get()-GetMarkStart().nNode.GetNode().GetTxtNode();
-if ( pTxtNode )
-   {
-   const SwpHints *pHints = 
pTxtNode-GetpSwpHints();
-   for(int nHintPos = 0; pHints  
nHintPos  pHints-Count(); ++nHintPos)
-   {
-   const SwTxtAttr *pHt = 
(*pHints)[nHintPos];
-   xub_StrLen st = 
*(pHt-GetStart());
-   if(pHt  pHt-Which() == 
RES_TXTATR_FLYCNT  (st = ppBkmk-get()-GetMarkStart().nContent.GetIndex()))
-   {
-   SwFrmFmt *pFrmFmt = 
pHt-GetFlyCnt().GetFrmFmt();
-   const SwNodeIndex 
*pNdIdx = pFrmFmt-GetCntnt().GetCntntIdx();
-   const SwNodes nos = 
pNdIdx-GetNodes();
-   const SwGrfNode *pGrf = 
dynamic_castconst SwGrfNode*(nos[pNdIdx-GetIndex() + 1]);
-   if (pGrf)
-   {
-   
vecBulletGrf.push_back(pGrf);
-   
vecFrmFmt.push_back(pFrmFmt);
-   }
-   }
-   }
-   // update graphic bullet information
-   sal_uInt16 nCount = 
pLstManager-GetWW8LSTInfoNum();
-   for (sal_uInt16 i = 0; i  nCount; ++i)
-   {
-   SwNumRule* pRule = 
pLstManager-GetNumRule(i);
-   for (sal_uInt16 j = 0; j  
MAXLEVEL; ++j)
-   {
-   SwNumFmt 
aNumFmt(pRule-Get(j));
-   sal_Int16 nType = 
aNumFmt.GetNumberingType();
-   sal_uInt16 nGrfBulletCP 
= aNumFmt.GetGrfBulletCP();
-   if (nType == 
SVX_NUM_BITMAP  vecBulletGrf.size()  nGrfBulletCP)
-   {
-   Graphic 
aGraphic = vecBulletGrf[nGrfBulletCP]-GetGrf();
-   SvxBrushItem 
aBrush(aGraphic, GPOS_AREA, SID_ATTR_BRUSH);
-   Font 

svn commit: r1515735 - in /openoffice/branches/AOO401: ./ main/sw/source/filter/ww8/ww8par.cxx

2013-08-20 Thread orw
Author: orw
Date: Tue Aug 20 08:18:28 2013
New Revision: 1515735

URL: http://svn.apache.org/r1515735
Log:
123021: import of graphic bullets - consider empty graphic frames in graphic 
bullet area

cherry-picked from trunk


Modified:
openoffice/branches/AOO401/   (props changed)
openoffice/branches/AOO401/main/sw/source/filter/ww8/ww8par.cxx

Propchange: openoffice/branches/AOO401/
--
  Merged /openoffice/trunk:r1515732

Modified: openoffice/branches/AOO401/main/sw/source/filter/ww8/ww8par.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO401/main/sw/source/filter/ww8/ww8par.cxx?rev=1515735r1=1515734r2=1515735view=diff
==
--- openoffice/branches/AOO401/main/sw/source/filter/ww8/ww8par.cxx (original)
+++ openoffice/branches/AOO401/main/sw/source/filter/ww8/ww8par.cxx Tue Aug 20 
08:18:28 2013
@@ -4680,87 +4680,90 @@ sal_uLong SwWW8ImplReader::CoreLoad(WW8G
 delete mpRedlineStack;
 DeleteAnchorStk();
 DeleteRefStks();
-   //For i120928,achieve the graphics from the special bookmark with is 
for graphic bullet
-   {
-   std::vectorconst SwGrfNode* vecBulletGrf;
-   std::vectorSwFrmFmt* vecFrmFmt;
-   
-   IDocumentMarkAccess* const pMarkAccess =
-rDoc.getIDocumentMarkAccess();
-   if ( pMarkAccess )
-   {
- IDocumentMarkAccess::const_iterator_t ppBkmk =
-   pMarkAccess-findBookmark( 
C2U(_PictureBullets) );
-   //for(IDocumentMarkAccess::const_iterator_t ppBookmark 
= ppBkmk-begin();
- //ppBookmark != ppBkmk-end(); ppBookmark++)
- if ( ppBkmk != pMarkAccess-getBookmarksEnd() 
-IDocumentMarkAccess::GetType( *(ppBkmk-get()) 
)
-   == IDocumentMarkAccess::BOOKMARK )  
 
-   {   
-   SwTxtNode* pTxtNode = 
ppBkmk-get()-GetMarkStart().nNode.GetNode().GetTxtNode();
-if ( pTxtNode )
-   {
-   const SwpHints *pHints = 
pTxtNode-GetpSwpHints();
-   for(int nHintPos = 0; pHints  
nHintPos  pHints-Count(); ++nHintPos)
-   {
-   const SwTxtAttr *pHt = 
(*pHints)[nHintPos];
-   xub_StrLen st = 
*(pHt-GetStart());
-   if(pHt  pHt-Which() == 
RES_TXTATR_FLYCNT  (st = ppBkmk-get()-GetMarkStart().nContent.GetIndex()))
-   {
-   SwFrmFmt *pFrmFmt = 
pHt-GetFlyCnt().GetFrmFmt();
-   const SwNodeIndex 
*pNdIdx = pFrmFmt-GetCntnt().GetCntntIdx();
-   const SwNodes nos = 
pNdIdx-GetNodes();
-   const SwGrfNode *pGrf = 
dynamic_castconst SwGrfNode*(nos[pNdIdx-GetIndex() + 1]);
-   if (pGrf)
-   {
-   
vecBulletGrf.push_back(pGrf);
-   
vecFrmFmt.push_back(pFrmFmt);
-   }
-   }
-   }
-   // update graphic bullet information
-   sal_uInt16 nCount = 
pLstManager-GetWW8LSTInfoNum();
-   for (sal_uInt16 i = 0; i  nCount; ++i)
-   {
-   SwNumRule* pRule = 
pLstManager-GetNumRule(i);
-   for (sal_uInt16 j = 0; j  
MAXLEVEL; ++j)
-   {
-   SwNumFmt 
aNumFmt(pRule-Get(j));
-   sal_Int16 nType = 
aNumFmt.GetNumberingType();
-   sal_uInt16 nGrfBulletCP 
= aNumFmt.GetGrfBulletCP();
-   if (nType == 
SVX_NUM_BITMAP  vecBulletGrf.size()  nGrfBulletCP)
-   {
-   

[CONF] Apache OpenOffice Community AOO 4.0.1

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1
Page edited by Yu Zhen Fan


 Changes (1)
 




...
h2. Test and QA Plan  
The related test and QaA plan can be found under [AOO 4.0.1 Testing Plan|OOOUSERS:AOO 4.0.1 Testing Plan] 
 h2. Developer Snapshots 
...


Full Content

The AOO 4.0.1 release is a micro release which is a maintenance release to fix critical issues and/or security fixes and potentially support further languages.

Detailed Release Planning

A more detailed release planning can be found under AOO 4.0.1 Feature Planning

Release Notes

The related release notes can be found under AOO 4.0.1 Release Notes

Test and QA Plan

The related test and QA plan can be found under AOO 4.0.1 Testing Plan

Developer Snapshots

Regular built developer snapshots for early testing that can be found under Unofficial Developer Builds for Apache OpenOffice 4.0.1

Respin for additional Languages

We plan a respin to support some further languages, detailed information can be found under AOO 4.0.1 Respin for additional languages





Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









[CONF] Apache OpenOffice Community Directory of Volunteers

2013-08-20 Thread Benedict Ryan (Confluence)







Directory of Volunteers
Page edited by Benedict Ryan


 Changes (1)
 




...
| Avanish Mohan Ojha | Mumbai, India | QA | | Ben Artus | Pueblo, CO, USA | User Support, Java, _javascript_, CSS/HTML, User | 
| Benedict Ryan | Sheffield, UK | Java, C/C++ | 
| Bonnie Smith Ries | Cedar City, Utah, USA | Word Processing, Documentation creation and editing, Beta testing, Castillian localization | | Brandon Youngdale | San Diego, CA | documentation creation and editing, tutorials | 
...


Full Content

Please keep in alphabetical order by given name.




 Name 
 Home 
 Skills/Interests 


 Alan Wilson 
 Crossett, AR, USA 
 QA 


 Albino B Neto 
 Vila Velha, ES - Brazil 
 l10n, Documentation, Marketing, Support Users, Community Apache OpenOffice Brazil, ODF and Codes 


 Alejandro Bg 
 Stuttgart, Germany 
 QA, Localization 


 Alena Cherkashina 
 Sacramento, CA, USA 
 QA, Localization 


 Alexander Krasowski 
 Windsor, ON, Canada 
 QA, C+ 


 Alexandra Stillwell 
 West Sussex, UK 
 Documentation 


 Alexandro Colorado 
 Cancun, Mexico 
 l10n,ODF,Documentation,Marketing,Community Mgmnt,Python,XML,User 


 Alfonso Émbriz 
 León, México 
 User, Documentation, Tutorial, Localization 


 Alphonso Whitfield III 
 Waycross, GA USA 
 User, Marketing 


 Anders Kvibäck 
 Växjö, Sweden 
 QA , Java 


 Andrew Pitonyak 
 Columbus, Ohio, USA 
 Documentation, Macros, Community, General Use, C++, Java, Perl 


 Andrew Rist 
 Menlo Park, CA, USA 
 ODF, OpenOffice.org, C/C++, Java, UX  user activity flows 


 Andre Fischer 
 Hamburg, Germany 
 C++, Java, Perl, Impress, build system 


 Andrea Pescetti 
 Parma, Italy 
 Localization, QA, Web technologies, C+ 


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


 Athanasios E.Samaras 
 Thessaloniki, Greece 
 Localization 


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


 Annapoornima Koppad 
 Bangalore, India 
 C/C++, Python, PHP, Quality Assurance, Marketing, Tutorials, Documentation 


 Antón Méixome 
 Pontevedra (Galicia), Spain 
 Galician localization, documentation, education, marketing, user support 


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


 Armin Le Grand 
 Hamburg, Germany 
 C++, Draw, Impress, Drawinglayer, UI, Interactions, SVG 


 Avanish Mohan Ojha 
 Mumbai, India 
 QA 


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


 Benedict Ryan 
 Sheffield, UK 
 Java, C/C++ 


 Bonnie Smith Ries 
 Cedar City, Utah, USA 
 Word Processing, Documentation creation and editing, Beta testing, Castillian localization 


 Brandon Youngdale 
 San Diego, CA 
 documentation creation and editing, tutorials 


 Bruno Santa 
 Torino, Italy 
 Localization 


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


 Carl Marcum 
 Dayton, OH, USA 
 Java, Groovy, SDK API's, XML 


 Carlo Pucillo 
 Udine, Italy 
 Localization 


 Caroline O'Brien 
 Washington, D.C., USA 
 Documentation creation and editing 


 Cheng Jian Hong 
 Beijing,China 
 C/C++, Java, UNO, WordProcessor 


 Cheng Chia Tseng 
 Taichung, Taiwan 
 Localization 


 Chia-Yu Lee 
 Taipei, Taiwan 
 Localization 


 Chris Rottensteiner 
 South Tyrol, Italy 
 v4 logo re-design, SVG testing/files 


 Christos Stefanidis 
 Florina, Greece 
 Lacalization 


 Cinzia Cernitore 
 Bari, Italy 
 Localization 


 Clarence Weaver 
 Virginia, USA 
 C++, Java 


 Claudio F Filho 
 Brasilia, Brazil 
 l10n, AOOBr 


 Colin McDermott 
 Sydney, Australia 
 Linux, C++, Python, Word Processing, visual accessibility 


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


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


 Dave McKay 
 North East Wales, UK 
 C/C++, Technical Writer, User Forum 


 David Fisher 
 San Francisco, CA, USA 
 Website, Java, Postscript, PDF, Apache POI, Apache Incubator, Apache Member 


 Dennis E. Hamilton 
 Seattle, WA, USA 
 C/C++, Java, Interoperability, ODF, security, architecture, web 


 Don Harbison 
 Chelmsford, MA USA 
 Press Liaison, Community Development 


 Dongbin Peng 
 Vancouver, Canada 
 C/C++, java 


 Edward Kuang 
 Oakland, California 
 Linux, C/C++, Python, SQL, API, Java, debugging 


 Edwin Sharp 
 Cardiff, Wales 
 QA 


 Elena Lombardo 
 Milano, Italy 
 Localization 


 Eike Rathke 
 Hamburg, Germany 
 lurker 


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


 Erica Gregory 
 Toronto, ON, CA 
 Documentation, HTML, Vector art 


 Erik Schwab 
 Seattle, WA, USA 
 

buildbot success in ASF Buildbot on openoffice-linux64-nightly

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

STATUS: Success

 Build revision 1515704 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/704

 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






svn commit: r1515749 - in /openoffice/trunk/main/sw: inc/unotxdoc.hxx source/ui/app/docsh.cxx source/ui/uno/unotxdoc.cxx

2013-08-20 Thread orw
Author: orw
Date: Tue Aug 20 09:02:15 2013
New Revision: 1515749

URL: http://svn.apache.org/r1515749
Log:
122868: PDF export - assure that rendering data are cleaned up by calling 
corresponding method in SwDocShell::SaveCompleted(..)
This changes the fix for issue 121125 which triggers 122868


Modified:
openoffice/trunk/main/sw/inc/unotxdoc.hxx
openoffice/trunk/main/sw/source/ui/app/docsh.cxx
openoffice/trunk/main/sw/source/ui/uno/unotxdoc.cxx

Modified: openoffice/trunk/main/sw/inc/unotxdoc.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/inc/unotxdoc.hxx?rev=1515749r1=1515748r2=1515749view=diff
==
--- openoffice/trunk/main/sw/inc/unotxdoc.hxx (original)
+++ openoffice/trunk/main/sw/inc/unotxdoc.hxx Tue Aug 20 09:02:15 2013
@@ -440,8 +440,8 @@ public:
SwXDrawPage*GetDrawPage();
SwDocShell* GetDocShell() {return 
pDocShell;}
 
-// #121125# react on ViewShell change
-void ReactOnViewShellChange();
+// #121125#, #122868# - clean up rendering data
+void CleanUpRenderingData();
 
 void * SAL_CALL operator new( size_t ) throw();
void SAL_CALL operator delete( void * ) throw();

Modified: openoffice/trunk/main/sw/source/ui/app/docsh.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/ui/app/docsh.cxx?rev=1515749r1=1515748r2=1515749view=diff
==
--- openoffice/trunk/main/sw/source/ui/app/docsh.cxx (original)
+++ openoffice/trunk/main/sw/source/ui/app/docsh.cxx Tue Aug 20 09:02:15 2013
@@ -77,6 +77,7 @@
 #include shellio.hxx // I/O
 #include docstyle.hxx
 #include doc.hxx
+#include unotxdoc.hxx
 #include IDocumentUndoRedo.hxx
 #include docstat.hxx
 #include pagedesc.hxx
@@ -786,26 +787,26 @@ sal_Bool SwDocShell::ConvertTo( SfxMediu
 
 sal_Bool SwDocShell::SaveCompleted( const uno::Reference  embed::XStorage  
xStor  )
 {
-   RTL_LOGFILE_CONTEXT_AUTHOR( aLog, SW, JP93722,  
SwDocShell::SaveCompleted );
+RTL_LOGFILE_CONTEXT_AUTHOR( aLog, SW, JP93722,  
SwDocShell::SaveCompleted );
 sal_Bool bRet = SfxObjectShell::SaveCompleted( xStor );
-   if( bRet )
-   {
-   // erst hier entscheiden, ob das Speichern geklappt hat oder 
nicht
-   if( IsModified() )
-   pDoc-SetModified();
-   else
-   pDoc-ResetModified();
-   }
+if( bRet )
+{
+// erst hier entscheiden, ob das Speichern geklappt hat oder nicht
+if( IsModified() )
+pDoc-SetModified();
+else
+pDoc-ResetModified();
+}
 
 if( pOLEChildList )
-   {
-   sal_Bool bResetModified = IsEnableSetModified();
-   if( bResetModified )
-   EnableSetModified( sal_False );
+{
+sal_Bool bResetModified = IsEnableSetModified();
+if( bResetModified )
+EnableSetModified( sal_False );
 
 uno::Sequence  rtl::OUString  aNames = 
pOLEChildList-GetObjectNames();
 for( sal_Int32 n = aNames.getLength(); n; n-- )
-   {
+{
 if ( !pOLEChildList-MoveEmbeddedObject( aNames[n-1], 
GetEmbeddedObjectContainer() ) )
 {
 DBG_ERROR( Copying of objects didn't work! );
@@ -814,13 +815,25 @@ sal_Bool SwDocShell::SaveCompleted( cons
 //SvPersist* pPersist = this;
 //SvInfoObjectRef aRef( pInfList-GetObject( --n ));
 //pPersist-Move( aRef, aRef-GetStorageName() );
-   }
+}
 
 DELETEZ( pOLEChildList );
-   if( bResetModified )
-   EnableSetModified( sal_True );
+if( bResetModified )
+EnableSetModified( sal_True );
 }
-   return bRet;
+
+// #121125#, #122868#
+// Clean up rendering data created by the usage of XRenderable interface
+// of SwXDocument (e.g. export to PDF) and which is not cleaned up by
+// rendering the last page.
+// This is needed to restore former ViewOptions. This is performed via
+// a ViewShell reference hold by the rendering data. The rendering data
+// also needs to loose the hold ViewShell reference. Otherwise, the 
application
+// will crash on closing the document.
+uno::Reference text::XTextDocument   xDoc(GetBaseModel(), 
uno::UNO_QUERY);
+((SwXTextDocument*)xDoc.get())-CleanUpRenderingData();
+
+return bRet;
 }
 
 /*
@@ -1125,31 +1138,15 @@ SfxStyleSheetBasePool*  SwDocShell::GetSt
 }
 
 
-#include unotxdoc.hxx
-
 void SwDocShell::SetView(SwView* pVw)
 {
-bool bChanged(false);
-
 if(0 != (pView = pVw))
 {
 pWrtShell = pView-GetWrtShell();
-bChanged = true;
 }
 else
 {
   

[CONF] Apache OpenOffice Community AOO 4.0.1 Testing Plan

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Testing Plan
Page  added by Yu Zhen Fan

 

 AOO 4.0.1 code change includes:


	Critical(showstopper) defect fix
	New languages and/or translation improvement



Base on AOO 4.0.1 code changes above, we will perform following test:

	Defect verification
	Regression test to impacted area by defect fix
	General usage on basic functions
	RC build regression test



Test platforms:

For both 32-bit/64-bit OS:
Windows XP/Vista/7
RedHat Enterprise Linux 6
SuSE Linux Enterprise Desktop 11
Ubuntu Linux 12.04
Mac OS X 10.5/10.6/10.7


   
Stop watching space
|
Change email notification preferences

   View Online
  |
   Add Comment
   








[CONF] Apache OpenOffice Community AOO 4.0.1 Testing Plan

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Testing Plan
Page edited by Yu Zhen Fan


 Changes (6)
 




h1. AOO 4.0.1 code change includes:  
# Critical(showstopper) defect fix (see defect queries in release planning) 
# New languages and/or translation improvement  
...
 For both 32-bit/64-bit OS: 
# Windows XP/Vista/7 
# RedHat Enterprise Linux 6 
# SuSE Linux Enterprise Desktop 11 
# Ubuntu Linux 12.04 
# Mac OS X 10.5/10.6/10.7 


Full Content

AOO 4.0.1 code change includes:


	Critical(showstopper) defect fix (see defect queries in release planning)
	New languages and/or translation improvement



Base on AOO 4.0.1 code changes above, we will perform following test:

	Defect verification
	Regression test to impacted area by defect fix
	General usage on basic functions
	RC build regression test



Test platforms:

For both 32-bit/64-bit OS:

	Windows XP/Vista/7
	RedHat Enterprise Linux 6
	SuSE Linux Enterprise Desktop 11
	Ubuntu Linux 12.04
	Mac OS X 10.5/10.6/10.7





Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









[CONF] Apache OpenOffice Community AOO 4.0.1 Testing Plan

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Testing Plan
Page edited by Yu Zhen Fan


 Changes (1)
 




h1. AOO 4.0.1 code change includes:  
# Critical(showstopper) defect fix (see defect queries in detailed release planning) 
# New languages and/or translation improvement  
...


Full Content

AOO 4.0.1 code change includes:


	Critical(showstopper) defect fix (see defect queries in detailed release planning)
	New languages and/or translation improvement



Base on AOO 4.0.1 code changes above, we will perform following test:

	Defect verification
	Regression test to impacted area by defect fix
	General usage on basic functions
	RC build regression test



Test platforms:

For both 32-bit/64-bit OS:

	Windows XP/Vista/7
	RedHat Enterprise Linux 6
	SuSE Linux Enterprise Desktop 11
	Ubuntu Linux 12.04
	Mac OS X 10.5/10.6/10.7





Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









[CONF] Apache OpenOffice Community AOO 4.0.1 Testing Plan

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Testing Plan
Page edited by Yu Zhen Fan


 Changes (3)
 




h1. AOO 4.0.1 code change includes: 
h1. Test coverage: 
 
AOO 4.0.1 code change includes: 
# Critical(showstopper) defect fix (see defect queries in detailed release planning) # New languages and/or translation improvement 
...


Full Content

Test coverage:

AOO 4.0.1 code change includes:

	Critical(showstopper) defect fix (see defect queries in detailed release planning)
	New languages and/or translation improvement



Base on AOO 4.0.1 code changes above, we will perform following test:

	Defect verification
	Regression test to impacted area by defect fix
	General usage on basic functions
	RC build regression test



Test platforms:

For both 32-bit/64-bit OS:

	Windows XP/Vista/7
	RedHat Enterprise Linux 6
	SuSE Linux Enterprise Desktop 11
	Ubuntu Linux 12.04
	Mac OS X 10.5/10.6/10.7





Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









[CONF] Apache OpenOffice Community AOO 4.0.1 Testing Plan

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Testing Plan
Page edited by Yu Zhen Fan


 Changes (2)
 




...
 AOO 4.0.1 code change includes: 
# Critical(showstopper) defect fix (see defect queries in detailed release planning) 
# Critical(showstopper) defect fix (see defect queries in [AOO 4.0.1 Feature Planning|OOOUSERS:AOO 4.0.1 Feature Planning]) 
# New languages and/or translation improvement  
...


Full Content

Test coverage:

AOO 4.0.1 code change includes:

	Critical(showstopper) defect fix (see defect queries in AOO 4.0.1 Feature Planning)
	New languages and/or translation improvement



Base on AOO 4.0.1 code changes above, we will perform following test:

	Defect verification
	Regression test to impacted area by defect fix
	General usage on basic functions
	RC build regression test



Test platforms:

For both 32-bit/64-bit OS:

	Windows XP/Vista/7
	RedHat Enterprise Linux 6
	SuSE Linux Enterprise Desktop 11
	Ubuntu Linux 12.04
	Mac OS X 10.5/10.6/10.7





Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









[CONF] Apache OpenOffice Community AOO 4.0.1 Feature Planning

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Feature Planning
Page  added by Yu Zhen Fan

 

 The following table is intended to collect tasks for the AOO 4.0.1 maintenance release.

The status can be tracked highlevel for example by using the colors ok/done,
in progress
and open/missing
.

More detailed description (as base for documentation, QA, development) should be provided on demand on linked sub-pages. And a corresponding Bugzilla ID should be provided for detailed tracking.


Defect query in Bugzilla (created by Juergen):

	3.4.1 release blocker defect ("All341ReleaseBlocker"): https://issues.apache.org/ooo/buglist.cgi?cmdtype=doremremaction=runnamedcmd=All341ReleaseBlockersharer_id=248824list_id=11594
	all defectsin 3.4.1("AllAOO341 Defects"): https://issues.apache.org/ooo/buglist.cgi?cmdtype=doremremaction=runnamedcmd=AllAOO341%20Defectssharer_id=248824list_id=11602



 You can go to "Preference" on your BugZilla home page and navigate to "Saved Search" tab and checkon the queries.

Please set the flag3.4.1_release_blocker to "?" if you want to propose a defect to be fixed in 3.4.1. The flag 3.4.1_release_blocker will be set to "+" for those defects agreed to be fixed in 3.4.1.


Rough target for AOO 3.4.1 release == July 2012

1. an overview about issue based on aOO 4.0.0, containing the keword "regression"and are already confirmed or accepted (currently 33 issues)
https://issues.apache.org/ooo/buglist.cgi?cmdtype=runnamednamedcmd=4.0.0_regression_confirmed

2. all proposed showstopper issues for AOO 4.0.1(proposed and already approved)
https://issues.apache.org/ooo/buglist.cgi?cmdtype=runnamednamedcmd=4.0.1_release_blocker%2B%3F



   
Stop watching space
|
Change email notification preferences

   View Online
  |
   Add Comment
   








[CONF] Apache OpenOffice Community AOO 4.0.1 Feature Planning

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Feature Planning
Page edited by Yu Zhen Fan


 Changes (4)
 




...
 *Defect query in Bugzilla (created by Juergen):* 
1. an overview about issue based on aAOO 4.0.0, containing the keword regressionand are already confirmed or accepted (currently 33 issues) 
https://issues.apache.org/ooo/buglist.cgi?cmdtype=runnamednamedcmd=4.0.0_regression_confirmed 
2. all proposed showstopper issues for AOO 4.0.1(proposed and already approved) https://issues.apache.org/ooo/buglist.cgi?cmdtype=runnamednamedcmd=4.0.1_release_blocker%2B%3F 
...
\* You can go to Preference on your BugZilla home page and navigate to Saved Search tab and checknbsp;on the queries.nbsp;  
Please set the flagnbsp;3.4.1_release_blocker flagnbsp;4.0.1_release_blocker to ? if you want to propose a defect to be fixed in 3.4.1. 4.0.1. The flag 3.4.1_release_blocker 4.0.1_release_blocker will be set to + for those defects agreed to be fixed in 3.4.1. 4.0.1. 
  
*Rough target for AOO 3.4.1 release == July 2012* 
*Rough target for AOO 4.0.1 release == Sep 2013* 


Full Content

The following table is intended to collect tasks for the AOO 4.0.1 maintenance release.

The status can be tracked highlevel for example by using the colors ok/done,
in progress
and open/missing
.

More detailed description (as base for documentation, QA, development) should be provided on demand on linked sub-pages. And a corresponding Bugzilla ID should be provided for detailed tracking.


Defect query in Bugzilla (created by Juergen):
1. an overview about issue based on AOO 4.0.0, containing the keword "regression"and are already confirmed or accepted (currently 33 issues)
https://issues.apache.org/ooo/buglist.cgi?cmdtype=runnamednamedcmd=4.0.0_regression_confirmed
2. all proposed showstopper issues for AOO 4.0.1(proposed and already approved)
https://issues.apache.org/ooo/buglist.cgi?cmdtype=runnamednamedcmd=4.0.1_release_blocker%2B%3F

 You can go to "Preference" on your BugZilla home page and navigate to "Saved Search" tab and checkon the queries.

Please set the flag4.0.1_release_blocker to "?" if you want to propose a defect to be fixed in 4.0.1. The flag 4.0.1_release_blocker will be set to "+" for those defects agreed to be fixed in 4.0.1.


Rough target for AOO 4.0.1 release == Sep 2013





Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









svn commit: r1515756 [2/2] - in /openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report: ./ inspection/ meta/

2013-08-20 Thread jsc
Modified: 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/ReportComponentHandler-xref.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/ReportComponentHandler-xref.html?rev=1515756r1=1515755r2=1515756view=diff
==
--- 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/ReportComponentHandler-xref.html
 (original)
+++ 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/ReportComponentHandler-xref.html
 Tue Aug 20 10:03:34 2013
@@ -36,7 +36,7 @@ References in Developers Guidebr
 /tr
 /table
 hr
-a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2012, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
+a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2013, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
 
 /div !-- id=adc-idlref --
 /body

Modified: 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/ReportComponentHandler.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/ReportComponentHandler.html?rev=1515756r1=1515755r2=1515756view=diff
==
--- 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/ReportComponentHandler.html
 (original)
+++ 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/ReportComponentHandler.html
 Tue Aug 20 10:03:34 2013
@@ -83,7 +83,7 @@
 /td
 /tr
 /table
-brnbsp;a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2012, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
+brnbsp;a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2013, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
 
 /div !-- id=adc-idlref --
 /body

Modified: 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/module-ix.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/module-ix.html?rev=1515756r1=1515755r2=1515756view=diff
==
--- 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/module-ix.html
 (original)
+++ 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/inspection/module-ix.html
 Tue Aug 20 10:03:34 2013
@@ -75,7 +75,7 @@
  /td
 /tr
 /table
-a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2012, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
+a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2013, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
 
 /div !-- id=adc-idlref --
 /body

Modified: 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/meta/XFormulaParser-xref.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/meta/XFormulaParser-xref.html?rev=1515756r1=1515755r2=1515756view=diff
==
--- 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/meta/XFormulaParser-xref.html
 (original)
+++ 
openoffice/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/report/meta/XFormulaParser-xref.html
 Tue Aug 20 10:03:34 2013
@@ -46,7 +46,7 @@ 

[CONF] Apache OpenOffice Community AOO 4.0.1 Testing Plan

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Testing Plan
Page edited by Yu Zhen Fan


 Changes (1)
 




...
# SuSE Linux Enterprise Desktop 11 # Ubuntu Linux 12.04 
# Mac OS X 10.5/10.6/10.7/10.8/10.9 


Full Content

Test coverage:

AOO 4.0.1 code change includes:

	Critical(showstopper) defect fix (see defect queries in AOO 4.0.1 Feature Planning)
	New languages and/or translation improvement



Base on AOO 4.0.1 code changes above, we will perform following test:

	Defect verification
	Regression test to impacted area by defect fix
	General usage on basic functions
	RC build regression test



Test platforms:

For both 32-bit/64-bit OS:

	Windows XP/Vista/7
	RedHat Enterprise Linux 6
	SuSE Linux Enterprise Desktop 11
	Ubuntu Linux 12.04
	Mac OS X 10.5/10.6/10.7/10.8/10.9





Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









svn commit: r1515762 - /openoffice/trunk/main/sw/source/ui/uno/unotxdoc.cxx

2013-08-20 Thread orw
Author: orw
Date: Tue Aug 20 10:30:23 2013
New Revision: 1515762

URL: http://svn.apache.org/r1515762
Log:
122868: PDF export - assure clean up of further data needed for PDF export in 
Page Preview

Modified:
openoffice/trunk/main/sw/source/ui/uno/unotxdoc.cxx

Modified: openoffice/trunk/main/sw/source/ui/uno/unotxdoc.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/ui/uno/unotxdoc.cxx?rev=1515762r1=1515761r2=1515762view=diff
==
--- openoffice/trunk/main/sw/source/ui/uno/unotxdoc.cxx (original)
+++ openoffice/trunk/main/sw/source/ui/uno/unotxdoc.cxx Tue Aug 20 10:30:23 2013
@@ -618,8 +618,16 @@ void SwXTextDocument::dispose(void) thro
   ---*/
 void SwXTextDocument::close( sal_Bool bDeliverOwnership ) throw( 
util::CloseVetoException, RuntimeException )
 {
-if(IsValid()  m_pHiddenViewFrame)
+if ( IsValid()  m_pHiddenViewFrame )
+{
+ASSERT( false, SwXTextDocument::close(..) - rendering data not 
cleaned up??? );
 lcl_DisposeView( m_pHiddenViewFrame, pDocShell);
+m_pHiddenViewFrame = 0;
+// prevent crash described in #i108805
+SfxItemSet *pSet = pDocShell-GetMedium()-GetItemSet();
+pSet-Put( SfxBoolItem( SID_HIDDEN, sal_False ) );
+}
+
 SfxBaseModel::close(bDeliverOwnership);
 }
 /*-- 18.12.98 13:12:25---
@@ -3201,8 +3209,6 @@ void SAL_CALL SwXTextDocument::render(
 else// normal printing and PDF export
 pVwSh-PrintOrPDFExport( pOut, rSwPrtOptions, 
nRenderer );
 
-// -- FME 2004-10-08 #i35176#
-//
 // After printing the last page, we take care for the 
links coming
 // from the EditEngine. The links are generated during the 
painting
 // process, but the destinations are still missing.
@@ -3211,40 +3217,17 @@ void SAL_CALL SwXTextDocument::render(
 {
 SwEnhancedPDFExportHelper aHelper( *pWrtShell, *pOut, 
aPageRange, bIsSkipEmptyPages,  sal_True );
 }
-// --
-
+
 pVwSh-SetPDFExportOption( sal_False );
-
-// last page to be rendered? (not necessarily the last 
page of the document)
-// - do clean-up of data
-if (bLastPage)  
-{
-// #i96167# haggai: delete ViewOptionsAdjust here 
because it makes use
-// of the shell, which might get destroyed in 
lcl_DisposeView!
-if (m_pRenderData  
m_pRenderData-IsViewOptionAdjust())
-m_pRenderData-ViewOptionAdjustStop();
-
-if (m_pRenderData  m_pRenderData-HasPostItData())
-m_pRenderData-DeletePostItData();
-if (m_pHiddenViewFrame)
-{
-lcl_DisposeView( m_pHiddenViewFrame, pDocShell );
-m_pHiddenViewFrame = 0;
-
-// prevent crash described in #i108805
-SwDocShell *pRenderDocShell = pDoc-GetDocShell();
-SfxItemSet *pSet = 
pRenderDocShell-GetMedium()-GetItemSet();
-pSet-Put( SfxBoolItem( SID_HIDDEN, sal_False ) );
-}
-}
 }
 }
 }
 }
-if( bLastPage )
+// last page to be rendered? (not necessarily the last page of the 
document)
+// - do clean-up of data
+if ( bLastPage )
 {
-delete m_pRenderData;   m_pRenderData = NULL;
-delete m_pPrintUIOptions;   m_pPrintUIOptions = NULL;
+CleanUpRenderingData();
 }
 }
 /* -03.10.04 -
@@ -3505,6 +3488,7 @@ uno::Sequence lang::Locale  SAL_CALL S
 // #121125#, #122868#
 // method to assure clean up of the rendering data to restore view options
 // and to loose hold reference to the ViewShell in SwViewOptionAdjust_Impl.
+// also perform clean up for the still existing hidden frame for PDF export 
from Page Preview
 void SwXTextDocument::CleanUpRenderingData()
 {
 if( m_pRenderData != NULL )
@@ -3522,6 +3506,14 @@ void SwXTextDocument::CleanUpRenderingDa
 delete m_pPrintUIOptions;
 m_pPrintUIOptions = NULL;
 }
+
+if ( IsValid()  m_pHiddenViewFrame )
+{
+lcl_DisposeView( m_pHiddenViewFrame, pDocShell);
+m_pHiddenViewFrame = 0;
+SfxItemSet *pSet = pDocShell-GetMedium()-GetItemSet();
+pSet-Put( SfxBoolItem( SID_HIDDEN, sal_False ) );
+}
 }
 
 /* -25.10.99 

svn commit: r1515766 - /openoffice/branches/rejuvenate01/main/basegfx/test/makefile.mk

2013-08-20 Thread hdu
Author: hdu
Date: Tue Aug 20 10:42:19 2013
New Revision: 1515766

URL: http://svn.apache.org/r1515766
Log:
fix a build breaker in basegfx/test

Modified:
openoffice/branches/rejuvenate01/main/basegfx/test/makefile.mk

Modified: openoffice/branches/rejuvenate01/main/basegfx/test/makefile.mk
URL: 
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/basegfx/test/makefile.mk?rev=1515766r1=1515765r2=1515766view=diff
==
--- openoffice/branches/rejuvenate01/main/basegfx/test/makefile.mk (original)
+++ openoffice/branches/rejuvenate01/main/basegfx/test/makefile.mk Tue Aug 20 
10:42:19 2013
@@ -37,7 +37,7 @@ ENABLE_EXCEPTIONS=TRUE
 @all:
@echo cppunit disabled. nothing do do.
 
-.ENDIF
+.ELSE
 
 CFLAGSCXX += $(CPPUNIT_CFLAGS)
 




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

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Respin for additional languages
Page  added by Yu Zhen Fan

 

 TBD


   
Stop watching space
|
Change email notification preferences

   View Online
  |
   Add Comment
   








[CONF] Apache OpenOffice Community AOO 4.0.1

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1
Page edited by Yu Zhen Fan


 Changes (1)
 




The AOO 4.0.1 release is a micro release which is a maintenance release to fix critical issues and/or security fixes and potentially support further languages.  
h2. Proposed Release Schedule  08/05 - 08/30 bugfix and stabilization, no feature development 08/05 - 09/06 translation 08/26 - 09/06 bugfix verification and regression testing on related areas 09/09 RC1 09/16 RC2 09/20 GA  
h2. Detailed Release Planning  
...


Full Content

The AOO 4.0.1 release is a micro release which is a maintenance release to fix critical issues and/or security fixes and potentially support further languages.

Proposed Release Schedule

08/05 - 08/30 bugfix and stabilization, no feature development
08/05 - 09/06 translation
08/26 - 09/06 bugfix verification and regression testing on related areas
09/09 RC1
09/16 RC2
09/20 GA

Detailed Release Planning

A more detailed release planning can be found under AOO 4.0.1 Feature Planning

Release Notes

The related release notes can be found under AOO 4.0.1 Release Notes

Test and QA Plan

The related test and QA plan can be found under AOO 4.0.1 Testing Plan

Developer Snapshots

Regular built developer snapshots for early testing that can be found under Unofficial Developer Builds for Apache OpenOffice 4.0.1

Respin for additional Languages

We plan a respin to support some further languages, detailed information can be found under AOO 4.0.1 Respin for additional languages





Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









svn commit: r1515767 [2/2] - in /openoffice/branches/rejuvenate01/main: basegfx/source/tools/ comphelper/source/misc/ connectivity/inc/connectivity/ connectivity/source/commontools/ connectivity/sourc

2013-08-20 Thread hdu
Modified: openoffice/branches/rejuvenate01/main/sal/inc/rtl/string.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/sal/inc/rtl/string.hxx?rev=1515767r1=1515766r2=1515767view=diff
==
--- openoffice/branches/rejuvenate01/main/sal/inc/rtl/string.hxx (original)
+++ openoffice/branches/rejuvenate01/main/sal/inc/rtl/string.hxx Tue Aug 20 
10:48:46 2013
@@ -219,9 +219,13 @@ public:
 */
 sal_Int32 getLength() const SAL_THROW(()) { return pData-length; }
 
+private:
 /**
   Returns a pointer to the characters of this string.
 
+  NOTE: the implicit cast to a char pointer is obsolete
+because it is too dangerous #i123068#
+
   pThe returned pointer is not guaranteed to point to a null-terminated
   byte string.  Note that this string object may contain embedded null
   characters, which will thus also be embedded in the returned byte
@@ -231,6 +235,13 @@ public:
   representing the characters of this string object.
 */
 operator const sal_Char *() const SAL_THROW(()) { return pData-buffer; }
+public:
+/** Returns a reference to a character of this string. */
+sal_Char operator[]( int n ) { return pData-buffer[n]; }
+/** Returns a const reference to a character of this string. */
+const sal_Char operator[]( int n ) const { return pData-buffer[n]; }
+/** Returns a bool indicating whether this string is empty. */
+bool isEmpty() const { return (pData-length == 0); }
 
 /**
   Returns a pointer to the characters of this string.

Modified: openoffice/branches/rejuvenate01/main/sal/inc/rtl/ustring.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/sal/inc/rtl/ustring.hxx?rev=1515767r1=1515766r2=1515767view=diff
==
--- openoffice/branches/rejuvenate01/main/sal/inc/rtl/ustring.hxx (original)
+++ openoffice/branches/rejuvenate01/main/sal/inc/rtl/ustring.hxx Tue Aug 20 
10:48:46 2013
@@ -274,14 +274,26 @@ public:
 */
 sal_Int32 getLength() const SAL_THROW(()) { return pData-length; }
 
+private:
 /**
   Returns a pointer to the Unicode character buffer from this string.
 
+  NOTE: the implicit cast to a UTF-16 pointer is obsolete
+because it is too dangerous #i123068#
+
   It isn't necessarily NULL terminated.
 
   @return   a pointer to the Unicode characters buffer from this object.
 */
 operator const sal_Unicode *() const SAL_THROW(()) { return pData-buffer; 
}
+public:
+/** Returns a reference to a UTF-16 element of this string. */
+sal_Unicode operator[]( int n ) { return pData-buffer[n]; }
+/** Returns a const reference to a UTF-16 element of this string. */
+const sal_Unicode operator[]( int n ) const { return pData-buffer[n]; }
+/** Returns a bool indicating whether this string is empty. */
+bool isEmpty() const { return (pData-length == 0); }
+
 
 /**
   Returns a pointer to the Unicode character buffer from this string.

Modified: 
openoffice/branches/rejuvenate01/main/sax/source/tools/fastserializer.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/sax/source/tools/fastserializer.cxx?rev=1515767r1=1515766r2=1515767view=diff
==
--- openoffice/branches/rejuvenate01/main/sax/source/tools/fastserializer.cxx 
(original)
+++ openoffice/branches/rejuvenate01/main/sax/source/tools/fastserializer.cxx 
Tue Aug 20 10:48:46 2013
@@ -78,7 +78,7 @@ namespace sax_fastparser {
OUString FastSaxSerializer::escapeXml( const OUString s )
{
::rtl::OUStringBuffer sBuf( s.getLength() );
-   const sal_Unicode* pStr = s;
+   const sal_Unicode* pStr = s.getStr();
sal_Int32 nLen = s.getLength();
for( sal_Int32 i = 0; i  nLen; ++i)
{

Modified: 
openoffice/branches/rejuvenate01/main/sc/source/filter/excel/xecontent.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/sc/source/filter/excel/xecontent.cxx?rev=1515767r1=1515766r2=1515767view=diff
==
--- openoffice/branches/rejuvenate01/main/sc/source/filter/excel/xecontent.cxx 
(original)
+++ openoffice/branches/rejuvenate01/main/sc/source/filter/excel/xecontent.cxx 
Tue Aug 20 10:48:46 2013
@@ -526,7 +526,7 @@ void XclExpHyperlink::SaveXml( XclExpXml
 OUString sId = rStrm.addRelation( 
rStrm.GetCurrentStream()-getOutputStream(),
 XclXmlUtils::ToOUString( 
http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink; 
),
 msTarget,
-XclXmlUtils::ToOUString( External ) );
+true );
 rStrm.GetCurrentStream()-singleElement( XML_hyperlink,
 

[CONF] Apache OpenOffice Community AOO 4.0.1 Feature Planning

2013-08-20 Thread Yu Zhen Fan (Confluence)







AOO 4.0.1 Feature Planning
Page edited by Yu Zhen Fan


 Changes (1)
 




...
 *Rough target for AOO 4.0.1 release == Sep 2013* 
 (table is TBD, cannot open the queries, sending mail to Juergen ..) 


Full Content

The following table is intended to collect tasks for the AOO 4.0.1 maintenance release.

The status can be tracked highlevel for example by using the colors ok/done,
in progress
and open/missing
.

More detailed description (as base for documentation, QA, development) should be provided on demand on linked sub-pages. And a corresponding Bugzilla ID should be provided for detailed tracking.


Defect query in Bugzilla (created by Juergen):
1. an overview about issue based on AOO 4.0.0, containing the keword "regression"and are already confirmed or accepted (currently 33 issues)
https://issues.apache.org/ooo/buglist.cgi?cmdtype=runnamednamedcmd=4.0.0_regression_confirmed
2. all proposed showstopper issues for AOO 4.0.1(proposed and already approved)
https://issues.apache.org/ooo/buglist.cgi?cmdtype=runnamednamedcmd=4.0.1_release_blocker%2B%3F

 You can go to "Preference" on your BugZilla home page and navigate to "Saved Search" tab and checkon the queries.

Please set the flag4.0.1_release_blocker to "?" if you want to propose a defect to be fixed in 4.0.1. The flag 4.0.1_release_blocker will be set to "+" for those defects agreed to be fixed in 4.0.1.


Rough target for AOO 4.0.1 release == Sep 2013

(table is TBD, cannot open the queries, sending mail to Juergen ..)



Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









svn commit: r1515772 - in /openoffice/branches/AOO401: ./ main/sw/inc/unotxdoc.hxx main/sw/source/ui/app/docsh.cxx main/sw/source/ui/uno/unotxdoc.cxx

2013-08-20 Thread orw
Author: orw
Date: Tue Aug 20 10:57:22 2013
New Revision: 1515772

URL: http://svn.apache.org/r1515772
Log:
122868: PDF export - assure that rendering data are cleaned up by calling 
corresponding method in SwDocShell::SaveCompleted(..)
This changes the fix for issue 121125 which triggers 122868

cherry-picked from trunk


Modified:
openoffice/branches/AOO401/   (props changed)
openoffice/branches/AOO401/main/sw/inc/unotxdoc.hxx
openoffice/branches/AOO401/main/sw/source/ui/app/docsh.cxx
openoffice/branches/AOO401/main/sw/source/ui/uno/unotxdoc.cxx

Propchange: openoffice/branches/AOO401/
--
  Merged /openoffice/trunk:r1515749,1515762

Modified: openoffice/branches/AOO401/main/sw/inc/unotxdoc.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO401/main/sw/inc/unotxdoc.hxx?rev=1515772r1=1515771r2=1515772view=diff
==
--- openoffice/branches/AOO401/main/sw/inc/unotxdoc.hxx (original)
+++ openoffice/branches/AOO401/main/sw/inc/unotxdoc.hxx Tue Aug 20 10:57:22 2013
@@ -440,8 +440,8 @@ public:
SwXDrawPage*GetDrawPage();
SwDocShell* GetDocShell() {return 
pDocShell;}
 
-// #121125# react on ViewShell change
-void ReactOnViewShellChange();
+// #121125#, #122868# - clean up rendering data
+void CleanUpRenderingData();
 
 void * SAL_CALL operator new( size_t ) throw();
void SAL_CALL operator delete( void * ) throw();

Modified: openoffice/branches/AOO401/main/sw/source/ui/app/docsh.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO401/main/sw/source/ui/app/docsh.cxx?rev=1515772r1=1515771r2=1515772view=diff
==
--- openoffice/branches/AOO401/main/sw/source/ui/app/docsh.cxx (original)
+++ openoffice/branches/AOO401/main/sw/source/ui/app/docsh.cxx Tue Aug 20 
10:57:22 2013
@@ -77,6 +77,7 @@
 #include shellio.hxx // I/O
 #include docstyle.hxx
 #include doc.hxx
+#include unotxdoc.hxx
 #include IDocumentUndoRedo.hxx
 #include docstat.hxx
 #include pagedesc.hxx
@@ -786,26 +787,26 @@ sal_Bool SwDocShell::ConvertTo( SfxMediu
 
 sal_Bool SwDocShell::SaveCompleted( const uno::Reference  embed::XStorage  
xStor  )
 {
-   RTL_LOGFILE_CONTEXT_AUTHOR( aLog, SW, JP93722,  
SwDocShell::SaveCompleted );
+RTL_LOGFILE_CONTEXT_AUTHOR( aLog, SW, JP93722,  
SwDocShell::SaveCompleted );
 sal_Bool bRet = SfxObjectShell::SaveCompleted( xStor );
-   if( bRet )
-   {
-   // erst hier entscheiden, ob das Speichern geklappt hat oder 
nicht
-   if( IsModified() )
-   pDoc-SetModified();
-   else
-   pDoc-ResetModified();
-   }
+if( bRet )
+{
+// erst hier entscheiden, ob das Speichern geklappt hat oder nicht
+if( IsModified() )
+pDoc-SetModified();
+else
+pDoc-ResetModified();
+}
 
 if( pOLEChildList )
-   {
-   sal_Bool bResetModified = IsEnableSetModified();
-   if( bResetModified )
-   EnableSetModified( sal_False );
+{
+sal_Bool bResetModified = IsEnableSetModified();
+if( bResetModified )
+EnableSetModified( sal_False );
 
 uno::Sequence  rtl::OUString  aNames = 
pOLEChildList-GetObjectNames();
 for( sal_Int32 n = aNames.getLength(); n; n-- )
-   {
+{
 if ( !pOLEChildList-MoveEmbeddedObject( aNames[n-1], 
GetEmbeddedObjectContainer() ) )
 {
 DBG_ERROR( Copying of objects didn't work! );
@@ -814,13 +815,25 @@ sal_Bool SwDocShell::SaveCompleted( cons
 //SvPersist* pPersist = this;
 //SvInfoObjectRef aRef( pInfList-GetObject( --n ));
 //pPersist-Move( aRef, aRef-GetStorageName() );
-   }
+}
 
 DELETEZ( pOLEChildList );
-   if( bResetModified )
-   EnableSetModified( sal_True );
+if( bResetModified )
+EnableSetModified( sal_True );
 }
-   return bRet;
+
+// #121125#, #122868#
+// Clean up rendering data created by the usage of XRenderable interface
+// of SwXDocument (e.g. export to PDF) and which is not cleaned up by
+// rendering the last page.
+// This is needed to restore former ViewOptions. This is performed via
+// a ViewShell reference hold by the rendering data. The rendering data
+// also needs to loose the hold ViewShell reference. Otherwise, the 
application
+// will crash on closing the document.
+uno::Reference text::XTextDocument   xDoc(GetBaseModel(), 
uno::UNO_QUERY);
+((SwXTextDocument*)xDoc.get())-CleanUpRenderingData();
+
+return bRet;
 }
 
 

buildbot failure in ASF Buildbot on openoffice-linux32-nightly

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

STATUS: Failure

 Build revision 1515706 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/464

 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: r875461 [17/20] - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/api/docs/common/ref/com/sun/star/installation/ content/api/docs/common/ref/com/sun/star/linguistic2/ conten

2013-08-20 Thread buildbot
Modified: 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/Exception.html
==
--- 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/Exception.html
 (original)
+++ 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/Exception.html
 Tue Aug 20 12:12:25 2013
@@ -125,7 +125,7 @@
 /td
 /tr
 /table
-a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2012, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
+a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2013, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
 
 /div !-- id=adc-idlref --
 

Modified: 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/NamingService-xref.html
==
--- 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/NamingService-xref.html
 (original)
+++ 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/NamingService-xref.html
 Tue Aug 20 12:12:25 2013
@@ -53,7 +53,7 @@ References in Developers Guidebr
 /tr
 /table
 hr
-a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2012, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
+a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2013, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
 
 /div !-- id=adc-idlref --
 

Modified: 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/NamingService.html
==
--- 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/NamingService.html
 (original)
+++ 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/NamingService.html
 Tue Aug 20 12:12:25 2013
@@ -93,7 +93,7 @@
 /td
 /tr
 /table
-brnbsp;a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2012, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
+brnbsp;a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2013, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
 
 /div !-- id=adc-idlref --
 

Modified: 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/RuntimeException-xref.html
==
--- 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/RuntimeException-xref.html
 (original)
+++ 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/RuntimeException-xref.html
 Tue Aug 20 12:12:25 2013
@@ -120,7 +120,7 @@
 /td
 /tr
 /table
-a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2012, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
+a href=#_top_Top of Page/ahr size=3p class=copyright 
align=centerCopyright copy; 2013, The Apache Software Foundation, Licensed 
under the Apache License, Version 2.0. Apache, the Apache feather logo, Apache 
OpenOffice and OpenOffice.org are trademarks of The Apache Software Foundation. 
Other names may be trademarks of their respective owners./p
 
 /div !-- id=adc-idlref --
 

Modified: 
websites/staging/ooo-site/trunk/content/api/docs/common/ref/com/sun/star/uno/RuntimeException.html

svn commit: r1515802 - in /openoffice/branches/rejuvenate01/main/solenv/inc: unxlng.mk unxmacc.mk

2013-08-20 Thread hdu
Author: hdu
Date: Tue Aug 20 12:48:56 2013
New Revision: 1515802

URL: http://svn.apache.org/r1515802
Log:
allow build of rejuvenate01 with older compilers

forcing C++11 mode is possible with setting the environment
variable CXX to the C++ compiler and setting its C++11 option

Modified:
openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk
openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk

Modified: openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk
URL: 
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk?rev=1515802r1=1515801r2=1515802view=diff
==
--- openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk (original)
+++ openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk Tue Aug 20 
12:48:56 2013
@@ -84,7 +84,7 @@ CFLAGSEXCEPTIONS=-fexceptions -fno-enfor
 CFLAGS_NO_EXCEPTIONS=-fno-exceptions
 
 # -fpermissive should be removed as soon as possible
-CFLAGSCXX= -std=c++11 -pipe $(ARCH_FLAGS)
+CFLAGSCXX= -pipe $(ARCH_FLAGS)
 .IF $(HAVE_GCC_VISIBILITY_FEATURE) == TRUE
 CFLAGSCXX += -fvisibility-inlines-hidden
 .ENDIF # $(HAVE_GCC_VISIBILITY_FEATURE) == TRUE

Modified: openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk
URL: 
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk?rev=1515802r1=1515801r2=1515802view=diff
==
--- openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk (original)
+++ openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk Tue Aug 20 
12:48:56 2013
@@ -106,7 +106,7 @@ CFLAGSEXCEPTIONS=-fexceptions
 CFLAGS_NO_EXCEPTIONS=-fno-exceptions
 
 # Normal C++ compilation flags
-CFLAGSCXX=-pipe -std=c++11 -fsigned-char
+CFLAGSCXX=-pipe -fsigned-char
 
 CFLAGSCXX+= -Wno-ctor-dtor-privacy
 




[CONF] Apache OpenOffice Community AOO 4.0.1 Testing Plan

2013-08-20 Thread Keith N. McKenna (Confluence)







AOO 4.0.1 Testing Plan
Page
comment added by  Keith N. McKenna



   Just a question as to why the testing will not be performed on Windows 8 as that is the current release of Windows available.




  
Stop watching space
|
Change email notification preferences

   View Online
  |
   Reply To This
   









[CONF] Apache OpenOffice Community AOO 4.0.1 Release Notes

2013-08-20 Thread Keith N. McKenna (Confluence)







AOO 4.0.1 Release Notes
Page edited by Keith N. McKenna


Comment:
Added Khmer, Chinese (traditional) and Polish as New languages and Geran, Portuguese, and Spanis as updates.


 Changes (4)
 




...
h3. New translations available in Apache OpenOffice 4.0.1 include:  
* None at this time 
* Chinese (traditional) * Khmer (km) * Polish (pl) 
 h3. Updated translations available in Apache OpenOffice 4.x.x include:  
* None at this time. 
* German (de) * Portuguese (pt) * Spanish (es) 
 h4. For a complete list of available languages and language packs see: http://www.openoffice.org/download/other.html 
...


Full Content



General Remarks
Improvements/Enhancements

Performance Improvements/Enhancements
Other Improvements/Enhancements

Additional Language Support

New translations available in Apache OpenOffice 4.0.1 include:
Updated translations available in Apache OpenOffice 4.x.x include:

For a complete list of available languages and language packs see: http://www.openoffice.org/download/other.html


Additional Platform Support
Bug Fixes


Important bug fixes have been made in these areas:
The QE team has been tracking additional fixes as well. See their complete reports at:


Known Issues
Stay informed about Apache OpenOffice


General Remarks

The Apache OpenOffice 4.0.1 is a maintenance release, intended to fix critical issues and improve the overall quality of the application.

General areas of improvement include: additional language support, bug fixes, performance improvements and Windows 8 compatibility enhancements. Further details on each of these areas are below.

For a more comprehensive overview of the changes from version 3.4.x see AOO 4.0 Release Notes

Improvements/Enhancements

Performance Improvements/Enhancements

None at this time

Other Improvements/Enhancements

None at this time

Additional Language Support

New translations available in Apache OpenOffice 4.0.1 include:


	Chinese (traditional)
	Khmer (km)
	Polish (pl)



Updated translations available in Apache OpenOffice 4.x.x include:


	German (de)
	Portuguese (pt)
	Spanish (es)



For a complete list of available languages and language packs see: http://www.openoffice.org/download/other.html

Additional Platform Support


	None at this time.



Bug Fixes

As of /mm/dd, there were Number verified issues that have been resolved.

This list can be found at: http://s.apache.org/Huv

You will need an OpenOffice Bugzilla login to view it.

(An OpenOffice Bugzilla login will enable you to search for any bugs that may interest you.)

Important bug fixes have been made in these areas:


	None at this time.



The QE team has been tracking additional fixes as well. See their complete reports at:

http://wiki.services.openoffice.org/wiki/QA/Report/WeeklyReport

Known Issues

Stay informed about Apache OpenOffice

You are encouraged to subscribe to the Apache OpenOffice announcement mailing list, to be receive important notifications such as product updates and security patches. To subscribe you can send an email to: ooo-announce-subscr...@incubator.apache.org.

You can also follow the project on Twitter, Facebook and Google. 



Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









svn commit: r1515861 - /openoffice/branding/AOO4/Apache_OpenOffice_Logo_ChrisR_selected_2013-06_optim.svg

2013-08-20 Thread kschenk
Author: kschenk
Date: Tue Aug 20 16:32:13 2013
New Revision: 1515861

URL: http://svn.apache.org/r1515861
Log:
Inserted XML top line to see if this now renders directly.

Modified:

openoffice/branding/AOO4/Apache_OpenOffice_Logo_ChrisR_selected_2013-06_optim.svg

Modified: 
openoffice/branding/AOO4/Apache_OpenOffice_Logo_ChrisR_selected_2013-06_optim.svg
URL: 
http://svn.apache.org/viewvc/openoffice/branding/AOO4/Apache_OpenOffice_Logo_ChrisR_selected_2013-06_optim.svg?rev=1515861r1=1515860r2=1515861view=diff
==
--- 
openoffice/branding/AOO4/Apache_OpenOffice_Logo_ChrisR_selected_2013-06_optim.svg
 (original)
+++ 
openoffice/branding/AOO4/Apache_OpenOffice_Logo_ChrisR_selected_2013-06_optim.svg
 Tue Aug 20 16:32:13 2013
@@ -1,64 +1,129 @@
-!-- Created with Inkscape (http://www.inkscape.org/) --

-svg xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#; 
xmlns=http://www.w3.org/2000/svg; fill-rule=evenodd height=100% 
width=100% version=1.1 xmlns:cc=http://creativecommons.org/ns#; 
xmlns:dc=http://purl.org/dc/elements/1.1/; viewBox=0 0 440 200

- titleApache OpenOffice Logo 2013/title

- metadata

-  rdf:RDF

-   cc:Work rdf:about=

-dc:formatimage/svg+xml/dc:format

-dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage/

-dc:titleApache OpenOffice Logo 2013/dc:title

-dc:date2013-06-07/dc:date

-dc:creator

- cc:Agent

-  dc:titleChris Rottensteiner/dc:title

- /cc:Agent

-/dc:creator

-dc:rights

- cc:Agent

-  dc:title2013 Apache OpenOffice project / various/dc:title

- /cc:Agent

-/dc:rights

-dc:sourceprevious logo/dc:source

-dc:subject

- rdf:Bag

-  rdf:lilogo/rdf:li

- /rdf:Bag

-/dc:subject

-dc:contributor

- cc:Agent

-  dc:titleKevin Grignon, Rob Weir, AOO community/dc:title

- /cc:Agent

-/dc:contributor

-cc:license rdf:resource=Apache project / various/

-   /cc:Work

-  /rdf:RDF

- /metadata

- defs/defs

- rect style=color:#00;enable-background:accumulate; height=200 
width=440 stroke-miterlimit=4 y=2.1853E-14 x=0 fill=#FFF/

- g transform=translate(2.5955817,-1.7917589)

-  path style=text-align:center; fill-rule=evenodd fill=#0e85cd 
d=m150.32,123.7c4.859-0.0618,8.766-1.8474,11.721-5.3507,2.955-3.5025,4.4729-8.3414,4.5538-14.516-0.081-6.1088-1.5988-10.875-4.5538-14.298s-6.862-5.1631-11.721-5.2194c-4.8566,0.054-8.7536,1.7856-11.692,5.1978-2.9381,3.4122-4.4464,8.1855-4.5248,14.32,0.0785,6.1744,1.5867,11.012,4.5248,14.516,2.938,3.5033,6.8355,5.2866,11.692,5.3499zm0-4.2282c-3.4328-0.0618-6.1525-1.4768-8.1592-4.2568-2.0066-2.78-3.0322-6.5735-3.0769-11.381,0.0446-4.7679,1.0703-8.4958,3.0769-11.185,2.0066-2.6896,4.7263-4.0584,8.1592-4.1055,3.4327,0.0463,6.1525,1.4158,8.1592,4.1055,2.0066,2.6896,3.0321,6.4176,3.0768,11.185-0.0447,4.8072-1.0703,8.6008-3.0768,11.381-2.0066,2.7799-4.7263,4.1989-8.1592,4.2568z/

-  path style=text-align:center; fill-rule=evenodd fill=#0e85cd 
d=m175.07,120.45c1.3031,1.0213,2.6062,1.8157,3.9094,2.3816,1.3031,0.56586,2.6062,0.85303,3.9094,0.86153,3.3193-0.0387,6.1501-1.3695,8.4919-4.0035,2.342-2.634,3.5655-6.3574,3.6705-11.171-0.0103-4.4251-0.95928-7.9114-2.8452-10.461-1.886-2.5499-4.6442-3.8507-8.275-3.9024-1.6591,0.0308-3.2494,0.4192-4.7709,1.1657-1.5215,0.74652-2.9236,1.6714-4.2062,2.773h-0.17375l-0.40542-3.2439h-3.9384v40.021h4.7492v-9.4986zm0.11586-3.7071,0-14.769c1.3816-1.2491,2.6871-2.1971,3.9166-2.8448,1.2295-0.64847,2.4337-0.97425,3.6126-0.97734,2.6401,0.0464,4.5416,0.99743,5.7049,2.8595,1.1632,1.862,1.7327,4.3641,1.7086,7.5076-0.0458,3.5064-0.80843,6.2377-2.2877,8.1955-1.4793,1.957-3.4002,2.9513-5.7628,2.9822-0.93874,0.008-2.0005-0.21307-3.1855-0.67317-1.1849-0.45934-2.4205-1.2198-3.7067-2.2805z/

-  path style=text-align:center; fill-rule=evenodd fill=#0e85cd 
d=m196.61,108.98c0.0917,4.6412,1.3996,8.2449,3.9239,10.809,2.5242,2.5638,5.7144,3.8646,9.5712,3.9017,1.9064-0.0232,3.6246-0.30957,5.1546-0.86155,1.53-0.55119,2.9007-1.229,4.1121-2.0342l-1.6796-3.1273c-1.0377,0.67472-2.1333,1.2074-3.2868,1.5996-1.1535,0.39217-2.3939,0.59289-3.7212,0.60138-2.7258-0.0308-4.9194-0.9233-6.5809-2.6719-1.6615-1.7478-2.5954-4.1587-2.8017-7.232h18.997c0.0579-0.35127,0.10133-0.74961,0.1303-1.1951,0.0289-0.44465,0.0434-0.91557,0.0434-1.4112-0.0193-4.0723-0.99426-7.2799-2.9248-9.6214-1.9306-2.3422-4.701-3.5365-8.3113-3.5836-3.3387,0.0385-6.2467,1.3618-8.7235,3.9596-2.4772,2.5985-3.7779,6.2207-3.9022,10.867zm4.6334-2.143c0.34508-2.8548,1.2766-5.0512,2.7945-6.5882s3.2892-2.3144,5.3139-2.3314c2.2153,0.0154,3.9239,0.78357,5.1257,2.3098s1.8098,3.7295,1.8244,6.6098z/

-  path style=text-align:center; fill-rule=evenodd fill=#0e85cd 

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

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 18:20:50 2013
New Revision: 1515910

URL: http://svn.apache.org/r1515910
Log:
Fixed wrong link

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

Modified: openoffice/ooo-site/trunk/content/download/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/index.html?rev=1515910r1=1515909r2=1515910view=diff
==
--- openoffice/ooo-site/trunk/content/download/index.html (original)
+++ openoffice/ooo-site/trunk/content/download/index.html Tue Aug 20 18:20:50 
2013
@@ -76,7 +76,7 @@
   } else {
 // Download from an alternative webpage if hasMirrorLink() == false.
 document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-+ LANG_ARRAY[ 3 ] + '); + return false;\ );
++ LANG_ARRAY[ 4 ] + '); + return false;\ );
 document.write( h2a href=' + LANG_ARRAY[ 4 ] + ' title=' + 
LANG_ARRAY[ 4 ] + '
 + Download Apache OpenOffice/a/h2
 + pa href=' + LANG_ARRAY[ 4 ] + ' title=' + LANG_ARRAY[ 4 ] + 
'Apache OpenOffice  + VERSION +  for 
@@ -122,15 +122,6 @@
 p style=cursor: default;
 a style=cursor: default;JavaScript needs to be enabled to download 
Apache OpenOffice./a/p
   /div
-  !-- Old text
-  div class=button green id=optionitem1 
onclick=openItem('optionitem1','other.html'); return false;
-h2a href=other.html title=Select from other platforms and languages 
to download
-Download Apache OpenOffice/a/h2
-pa href=other.html title=Select from other platforms and languages 
to download
-JavaScript needs to be enabled to take full advantage of this download 
section. Currently it does not seem to be
-enabled. Please click on this text to use the alternative webpage to 
select the favorite platform and language./a/p
-  /div
-  --
   div class=sub-green
 pa href=../porting/index.html
 title=Get Apache OpenOffice software packaged as portable USB versions 
and third-party ports




svn commit: r875490 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/index.html

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 18:22:05 2013
New Revision: 875490

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/download/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 18:22:05 2013
@@ -1 +1 @@
-1515792
+1515910

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 18:22:05 2013
@@ -1 +1 @@
-1515792
+1515910

Modified: websites/staging/ooo-site/trunk/content/download/index.html
==
--- websites/staging/ooo-site/trunk/content/download/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/index.html Tue Aug 20 
18:22:05 2013
@@ -91,7 +91,7 @@
   } else {
 // Download from an alternative webpage if hasMirrorLink() == false.
 document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-+ LANG_ARRAY[ 3 ] + '); + return false;\ );
++ LANG_ARRAY[ 4 ] + '); + return false;\ );
 document.write( h2a href=' + LANG_ARRAY[ 4 ] + ' title=' + 
LANG_ARRAY[ 4 ] + '
 + Download Apache OpenOffice/a/h2
 + pa href=' + LANG_ARRAY[ 4 ] + ' title=' + LANG_ARRAY[ 4 ] + 
'Apache OpenOffice  + VERSION +  for 
@@ -137,15 +137,6 @@
 p style=cursor: default;
 a style=cursor: default;JavaScript needs to be enabled to download 
Apache OpenOffice./a/p
   /div
-  !-- Old text
-  div class=button green id=optionitem1 
onclick=openItem('optionitem1','other.html'); return false;
-h2a href=other.html title=Select from other platforms and languages 
to download
-Download Apache OpenOffice/a/h2
-pa href=other.html title=Select from other platforms and languages 
to download
-JavaScript needs to be enabled to take full advantage of this download 
section. Currently it does not seem to be
-enabled. Please click on this text to use the alternative webpage to 
select the favorite platform and language./a/p
-  /div
-  --
   div class=sub-green
 pa href=../porting/index.html
 title=Get Apache OpenOffice software packaged as portable USB versions 
and third-party ports




svn commit: r1515927 - /openoffice/ooo-site/trunk/content/download/test/index.html

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 19:08:27 2013
New Revision: 1515927

URL: http://svn.apache.org/r1515927
Log:
Updated text and links

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

Modified: openoffice/ooo-site/trunk/content/download/test/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/index.html?rev=1515927r1=1515926r2=1515927view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/index.html (original)
+++ openoffice/ooo-site/trunk/content/download/test/index.html Tue Aug 20 
19:08:27 2013
@@ -76,7 +76,7 @@
   } else {
 // Download from an alternative webpage if hasMirrorLink() == false.
 document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-+ LANG_ARRAY[ 3 ] + '); + return false;\ );
++ LANG_ARRAY[ 4 ] + '); + return false;\ );
 document.write( h2a href=' + LANG_ARRAY[ 4 ] + ' title=' + 
LANG_ARRAY[ 4 ] + '
 + Download Apache OpenOffice/a/h2
 + pa href=' + LANG_ARRAY[ 4 ] + ' title=' + LANG_ARRAY[ 4 ] + 
'Apache OpenOffice  + VERSION +  for 
@@ -117,19 +117,21 @@
 
   !-- Green: Stable release: No JavaScript enabled --
   noscript
+  div class=button green id=optionitem1
+
onclick=openItem('optionitem1','http://www.apache.org/dyn/aoo-closer.cgi/openoffice/');
 return false;
+h2a href=http://www.apache.org/dyn/aoo-closer.cgi/openoffice/;
+title=Click this text to choose from an Apache mirror server near to 
youDownload Apache OpenOffice/a/h2
+pa href=http://www.apache.org/dyn/aoo-closer.cgi/openoffice/;
+title=Select from other platforms and languages to downloadJavaScript 
needs to be enabled to take full advantage of
+this download section. If this is not possible, please click this text to 
choose from an Apache mirror server near to
+you./a/p
+  /div
+  !-- Old text
   div class=first button green id=optionitem1
 h2a style=cursor: default;Download Apache OpenOffice/a/h2
 p style=cursor: default;
 a style=cursor: default;JavaScript needs to be enabled to download 
Apache OpenOffice./a/p
   /div
-  !-- Old text
-  div class=button green id=optionitem1 
onclick=openItem('optionitem1','other.html'); return false;
-h2a href=other.html title=Select from other platforms and languages 
to download
-Download Apache OpenOffice/a/h2
-pa href=other.html title=Select from other platforms and languages 
to download
-JavaScript needs to be enabled to take full advantage of this download 
section. Currently it does not seem to be
-enabled. Please click on this text to use the alternative webpage to 
select the favorite platform and language./a/p
-  /div
   --
   div class=sub-green
 pa href=../../porting/index.html




svn commit: r875492 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/test/index.html

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 19:09:18 2013
New Revision: 875492

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/download/test/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 19:09:18 2013
@@ -1 +1 @@
-1515910
+1515927

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 19:09:18 2013
@@ -1 +1 @@
-1515910
+1515927

Modified: websites/staging/ooo-site/trunk/content/download/test/index.html
==
--- websites/staging/ooo-site/trunk/content/download/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/test/index.html Tue Aug 20 
19:09:18 2013
@@ -91,7 +91,7 @@
   } else {
 // Download from an alternative webpage if hasMirrorLink() == false.
 document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
-+ LANG_ARRAY[ 3 ] + '); + return false;\ );
++ LANG_ARRAY[ 4 ] + '); + return false;\ );
 document.write( h2a href=' + LANG_ARRAY[ 4 ] + ' title=' + 
LANG_ARRAY[ 4 ] + '
 + Download Apache OpenOffice/a/h2
 + pa href=' + LANG_ARRAY[ 4 ] + ' title=' + LANG_ARRAY[ 4 ] + 
'Apache OpenOffice  + VERSION +  for 
@@ -132,19 +132,21 @@
 
   !-- Green: Stable release: No JavaScript enabled --
   noscript
+  div class=button green id=optionitem1
+
onclick=openItem('optionitem1','http://www.apache.org/dyn/aoo-closer.cgi/openoffice/');
 return false;
+h2a href=http://www.apache.org/dyn/aoo-closer.cgi/openoffice/;
+title=Click this text to choose from an Apache mirror server near to 
youDownload Apache OpenOffice/a/h2
+pa href=http://www.apache.org/dyn/aoo-closer.cgi/openoffice/;
+title=Select from other platforms and languages to downloadJavaScript 
needs to be enabled to take full advantage of
+this download section. If this is not possible, please click this text to 
choose from an Apache mirror server near to
+you./a/p
+  /div
+  !-- Old text
   div class=first button green id=optionitem1
 h2a style=cursor: default;Download Apache OpenOffice/a/h2
 p style=cursor: default;
 a style=cursor: default;JavaScript needs to be enabled to download 
Apache OpenOffice./a/p
   /div
-  !-- Old text
-  div class=button green id=optionitem1 
onclick=openItem('optionitem1','other.html'); return false;
-h2a href=other.html title=Select from other platforms and languages 
to download
-Download Apache OpenOffice/a/h2
-pa href=other.html title=Select from other platforms and languages 
to download
-JavaScript needs to be enabled to take full advantage of this download 
section. Currently it does not seem to be
-enabled. Please click on this text to use the alternative webpage to 
select the favorite platform and language./a/p
-  /div
   --
   div class=sub-green
 pa href=../../porting/index.html




svn commit: r875494 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/test/index.html

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 19:11:30 2013
New Revision: 875494

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/download/test/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 19:11:30 2013
@@ -1 +1 @@
-1515927
+1515928

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 19:11:30 2013
@@ -1 +1 @@
-1515927
+1515928

Modified: websites/staging/ooo-site/trunk/content/download/test/index.html
==
--- websites/staging/ooo-site/trunk/content/download/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/test/index.html Tue Aug 20 
19:11:30 2013
@@ -133,10 +133,10 @@
   !-- Green: Stable release: No JavaScript enabled --
   noscript
   div class=button green id=optionitem1
-
onclick=openItem('optionitem1','http://www.apache.org/dyn/aoo-closer.cgi/openoffice/');
 return false;
-h2a href=http://www.apache.org/dyn/aoo-closer.cgi/openoffice/;
+
onclick=openItem('optionitem1','http://www.apache.org/dyn/aoo-closer.cgi/openoffice/4.0.0/binaries/');
 return false;
+h2a 
href=http://www.apache.org/dyn/aoo-closer.cgi/openoffice/4.0.0/binaries/;
 title=Click this text to choose from an Apache mirror server near to 
youDownload Apache OpenOffice/a/h2
-pa href=http://www.apache.org/dyn/aoo-closer.cgi/openoffice/;
+pa 
href=http://www.apache.org/dyn/aoo-closer.cgi/openoffice/4.0.0/binaries/;
 title=Select from other platforms and languages to downloadJavaScript 
needs to be enabled to take full advantage of
 this download section. If this is not possible, please click this text to 
choose from an Apache mirror server near to
 you./a/p




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

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 19:15:33 2013
New Revision: 875495

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

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



svn commit: r1515942 - /openoffice/ooo-site/trunk/content/download/test/index.html

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 19:35:25 2013
New Revision: 1515942

URL: http://svn.apache.org/r1515942
Log:
Added code for browser detection

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

Modified: openoffice/ooo-site/trunk/content/download/test/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/index.html?rev=1515942r1=1515941r2=1515942view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/index.html (original)
+++ openoffice/ooo-site/trunk/content/download/test/index.html Tue Aug 20 
19:35:25 2013
@@ -45,6 +45,16 @@
 
 div class=optionset
 
+  !--[if IE 5]
+pUsed browser is: Internet Explorer 5/p
+  ![endif]--
+  !--[if IE 6]
+pUsed browser is: Internet Explorer 6/p
+  ![endif]--
+  !--[if IE 7]
+pUsed browser is: Internet Explorer 7/p
+  ![endif]--
+
   !-- Green: Stable release --
   script type=text/javascript
   !--




svn commit: r875498 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/test/index.html

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 19:36:24 2013
New Revision: 875498

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/download/test/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 19:36:24 2013
@@ -1 +1 @@
-1515928
+1515942

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 19:36:24 2013
@@ -1 +1 @@
-1515928
+1515942

Modified: websites/staging/ooo-site/trunk/content/download/test/index.html
==
--- websites/staging/ooo-site/trunk/content/download/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/test/index.html Tue Aug 20 
19:36:24 2013
@@ -60,6 +60,16 @@
 
 div class=optionset
 
+  !--[if IE 5]
+pUsed browser is: Internet Explorer 5/p
+  ![endif]--
+  !--[if IE 6]
+pUsed browser is: Internet Explorer 6/p
+  ![endif]--
+  !--[if IE 7]
+pUsed browser is: Internet Explorer 7/p
+  ![endif]--
+
   !-- Green: Stable release --
   script type=text/javascript
   !--




svn commit: r1515960 - /openoffice/ooo-site/trunk/content/download/phptest.php

2013-08-20 Thread dwhytock
Author: dwhytock
Date: Tue Aug 20 20:40:40 2013
New Revision: 1515960

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

Added:
openoffice/ooo-site/trunk/content/download/phptest.php

Added: openoffice/ooo-site/trunk/content/download/phptest.php
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/phptest.php?rev=1515960view=auto
==
--- openoffice/ooo-site/trunk/content/download/phptest.php (added)
+++ openoffice/ooo-site/trunk/content/download/phptest.php Tue Aug 20 20:40:40 
2013
@@ -0,0 +1,5 @@
+?php
+
+echo PHP is available.
+
+?
\ No newline at end of file




svn commit: r875505 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/phptest.php

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 20:41:41 2013
New Revision: 875505

Log:
Staging update by buildbot for ooo-site

Added:
websites/staging/ooo-site/trunk/content/download/phptest.php
Modified:
websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
websites/staging/ooo-site/trunk/content/   (props changed)

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 20:41:41 2013
@@ -1 +1 @@
-1515942
+1515960

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 20:41:41 2013
@@ -1 +1 @@
-1515942
+1515960

Added: websites/staging/ooo-site/trunk/content/download/phptest.php
==
--- websites/staging/ooo-site/trunk/content/download/phptest.php (added)
+++ websites/staging/ooo-site/trunk/content/download/phptest.php Tue Aug 20 
20:41:41 2013
@@ -0,0 +1,5 @@
+?php
+
+echo PHP is available.
+
+?
\ No newline at end of file




svn commit: r1515962 - /openoffice/ooo-site/trunk/content/download/phptest.php

2013-08-20 Thread dwhytock
Author: dwhytock
Date: Tue Aug 20 20:44:28 2013
New Revision: 1515962

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

Modified:
openoffice/ooo-site/trunk/content/download/phptest.php

Modified: openoffice/ooo-site/trunk/content/download/phptest.php
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/phptest.php?rev=1515962r1=1515961r2=1515962view=diff
==
--- openoffice/ooo-site/trunk/content/download/phptest.php (original)
+++ openoffice/ooo-site/trunk/content/download/phptest.php Tue Aug 20 20:44:28 
2013
@@ -1,5 +1,5 @@
 ?php
 
-echo PHP is available.
+echo PHP is available.;
 
 ?
\ No newline at end of file




svn commit: r1515963 - /openoffice/ooo-site/trunk/content/download/phptest.php

2013-08-20 Thread dwhytock
Author: dwhytock
Date: Tue Aug 20 20:47:40 2013
New Revision: 1515963

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

Modified:
openoffice/ooo-site/trunk/content/download/phptest.php

Modified: openoffice/ooo-site/trunk/content/download/phptest.php
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/phptest.php?rev=1515963r1=1515962r2=1515963view=diff
==
--- openoffice/ooo-site/trunk/content/download/phptest.php (original)
+++ openoffice/ooo-site/trunk/content/download/phptest.php Tue Aug 20 20:47:40 
2013
@@ -1,5 +1,5 @@
 ?php
 
-echo PHP is available.;
+phpinfo();
 
 ?
\ No newline at end of file




svn commit: r875507 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/phptest.php

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 20:48:22 2013
New Revision: 875507

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/download/phptest.php

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 20:48:22 2013
@@ -1 +1 @@
-1515962
+1515963

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 20:48:22 2013
@@ -1 +1 @@
-1515962
+1515963

Modified: websites/staging/ooo-site/trunk/content/download/phptest.php
==
--- websites/staging/ooo-site/trunk/content/download/phptest.php (original)
+++ websites/staging/ooo-site/trunk/content/download/phptest.php Tue Aug 20 
20:48:22 2013
@@ -1,5 +1,5 @@
 ?php
 
-echo PHP is available.;
+phpinfo();
 
 ?
\ No newline at end of file




svn commit: r1515968 - /openoffice/ooo-site/trunk/content/download/phptest.php

2013-08-20 Thread dwhytock
Author: dwhytock
Date: Tue Aug 20 20:54:33 2013
New Revision: 1515968

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

Modified:
openoffice/ooo-site/trunk/content/download/phptest.php

Modified: openoffice/ooo-site/trunk/content/download/phptest.php
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/phptest.php?rev=1515968r1=1515967r2=1515968view=diff
==
--- openoffice/ooo-site/trunk/content/download/phptest.php (original)
+++ openoffice/ooo-site/trunk/content/download/phptest.php Tue Aug 20 20:54:33 
2013
@@ -1,5 +1,11 @@
+html
+body
+Testing PHP...br/
+
 ?php
 
 phpinfo();
 
-?
\ No newline at end of file
+?
+/body
+/html
\ No newline at end of file




svn commit: r875508 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/phptest.php

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 20:55:04 2013
New Revision: 875508

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/download/phptest.php

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 20:55:04 2013
@@ -1 +1 @@
-1515963
+1515968

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 20:55:04 2013
@@ -1 +1 @@
-1515963
+1515968

Modified: websites/staging/ooo-site/trunk/content/download/phptest.php
==
--- websites/staging/ooo-site/trunk/content/download/phptest.php (original)
+++ websites/staging/ooo-site/trunk/content/download/phptest.php Tue Aug 20 
20:55:04 2013
@@ -1,5 +1,11 @@
+html
+body
+Testing PHP...br/
+
 ?php
 
 phpinfo();
 
-?
\ No newline at end of file
+?
+/body
+/html
\ No newline at end of file




svn commit: r1515972 - /openoffice/ooo-site/trunk/content/robots.txt

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 21:15:33 2013
New Revision: 1515972

URL: http://svn.apache.org/r1515972
Log:
Added entry to allow access for 'Browsershots.org'

Modified:
openoffice/ooo-site/trunk/content/robots.txt

Modified: openoffice/ooo-site/trunk/content/robots.txt
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/robots.txt?rev=1515972r1=1515971r2=1515972view=diff
==
--- openoffice/ooo-site/trunk/content/robots.txt (original)
+++ openoffice/ooo-site/trunk/content/robots.txt Tue Aug 20 21:15:33 2013
@@ -7,6 +7,9 @@ Disallow: /
 User-agent: Snoopy
 Disallow: /
 
+User-agent: Browsershots
+Disallow:
+
 User-agent: *
 Crawl-delay: 5
 Disallow: /download/cachedimages/




svn commit: r875510 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/robots.txt

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 21:16:04 2013
New Revision: 875510

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/robots.txt

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 21:16:04 2013
@@ -1 +1 @@
-1515968
+1515972

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 21:16:04 2013
@@ -1 +1 @@
-1515968
+1515972

Modified: websites/staging/ooo-site/trunk/content/robots.txt
==
--- websites/staging/ooo-site/trunk/content/robots.txt (original)
+++ websites/staging/ooo-site/trunk/content/robots.txt Tue Aug 20 21:16:04 2013
@@ -7,6 +7,9 @@ Disallow: /
 User-agent: Snoopy
 Disallow: /
 
+User-agent: Browsershots
+Disallow:
+
 User-agent: *
 Crawl-delay: 5
 Disallow: /download/cachedimages/




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

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 21:18:55 2013
New Revision: 875511

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

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



svn commit: r1515975 - /openoffice/ooo-site/trunk/content/download/phptest.php

2013-08-20 Thread dwhytock
Author: dwhytock
Date: Tue Aug 20 21:23:18 2013
New Revision: 1515975

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

Removed:
openoffice/ooo-site/trunk/content/download/phptest.php



svn commit: r875514 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/phptest.php

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 21:28:55 2013
New Revision: 875514

Log:
Staging update by buildbot for ooo-site

Removed:
websites/staging/ooo-site/trunk/content/download/phptest.php
Modified:
websites/staging/ooo-site/trunk/cgi-bin/   (props changed)
websites/staging/ooo-site/trunk/content/   (props changed)

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 21:28:55 2013
@@ -1 +1 @@
-1515972
+1515975

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 21:28:55 2013
@@ -1 +1 @@
-1515972
+1515975




svn commit: r1515980 - /openoffice/ooo-site/trunk/content/download/index_ie_test.html

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 21:45:07 2013
New Revision: 1515980

URL: http://svn.apache.org/r1515980
Log:
Test webpage for old MSIE versions

Added:
openoffice/ooo-site/trunk/content/download/index_ie_test.html   (with props)

Added: openoffice/ooo-site/trunk/content/download/index_ie_test.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/index_ie_test.html?rev=1515980view=auto
==
--- openoffice/ooo-site/trunk/content/download/index_ie_test.html (added)
+++ openoffice/ooo-site/trunk/content/download/index_ie_test.html Tue Aug 20 
21:45:07 2013
@@ -0,0 +1,438 @@
+!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;
+html xmlns=http://www.w3.org/1999/xhtml; /
+head itemscope itemtype=http://schema.org/Article;
+  meta http-equiv=Content-Type content=text/html; charset=utf-8 /
+  meta itemprop=name content=Download Apache OpenOffice /
+  meta itemprop=description content=Join the OpenOffice revolution, the 
free office productivity suite with over 60 million trusted downloads. /
+  meta itemprop=image 
content=http://www.openoffice.org/images/aoo-logo-100x100.png; /
+  meta property=og:title content=Download Apache OpenOffice /
+  meta property=og:description content=Join the OpenOffice revolution, the 
free office productivity suite with over 60 million trusted downloads. /
+  meta property=og:image 
content=http://www.openoffice.org/images/aoo-logo-100x100.png; /
+  meta name=description content=Official Apache OpenOffice download page. 
Join the OpenOffice revolution, the free office productivity suite with over 60 
million trusted downloads. /
+  titleApache OpenOffice Downloads - Official Site/title
+  script type=text/javascript src=globalvars.js/script
+  script type=text/javascript src=languages.js/script
+  script type=text/javascript src=release_matrix.js/script
+  script type=text/javascript src=download.js/script
+  script type=text/javascript src=../../scripts/entourage.js/script
+  style type=text/css
+  /* ![CDATA[ */
+  /* Exceptions on standard css ---*/
+  @import styles.css;
+  @import exceptions.css;
+  /* ]] */
+  /style
+  script
+if (window.document.referrer.indexOf(shell.windows.com) != -1)
+   location.href = /why/why_odf.html;
+
+function shareFacebook() {
+  _gaq.push(['_trackEvent','social', 'shareDownload', 'facebook']); 
+  
window.open('https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2F','_blank','toolbar=0,status=0,width=580,height=325');

+}
+function shareTwitter(){
+  _gaq.push(['_trackEvent','social', 'shareDownload', 'twitter']); 
+  
window.open('https://twitter.com/intent/tweet?url=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2Ftext=Join+the+OpenOffice+revolution%2C+the+free+office+productivity+suite+with+over+60+million+trusted+downloads.hashtags=openoffice','_blank','toolbar=0,status=0,width=580,height=325');
+}
+function shareGooglePlus(){
+  _gaq.push(['_trackEvent','social', 'shareDownload', 'google+']); 
+  
window.open('https://plus.google.com/share?url=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2F','_blank','toolbar=0,status=0,width=580,height=325');
+}
+  /script
+/head
+
+body
+
+div class=optionset
+
+  !--[if IE 5]
+pUsed browser is: Internet Explorer 5/p
+  ![endif]--
+  !--[if IE 6]
+pUsed browser is: Internet Explorer 6/p
+  ![endif]--
+  !--[if IE 7]
+pUsed browser is: Internet Explorer 7/p
+  ![endif]--
+
+  !-- Green: Stable release --
+  script type=text/javascript
+  !--
+  // Set a specific language ISO code to force to assemble a certain localized 
build as download URL
+  var NL_LANGUAGE = ;
+  // Get the download URL
+  var LINK= getLink();
+
+  if ( hasMirrorLink() ) {
+if ( LINK.toLowerCase().indexOf( sourceforge ) != -1 ) {
+  // Download directly from a mirror with displayed platform and language.
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
+  + LINK + '); + return false;\ );
+  document.write( h2a href=' + LINK + ' title='Version  + VERSION + 
 - Milestone  + MILESTONE
+  +  - Build ID  + BUILD +  - SVN  + SVN_REV + 'Download Apache 
OpenOffice  + VERSION + /a/h2
+  + pa href=' + LINK + ' title='Version  + VERSION +  - Milestone 
 + MILESTONE +  - Build ID  + BUILD
+  +  - SVN  + SVN_REV + 'Click here for the most recent version 
for:br /
+  + b + UI_PLATFORM + /b and b + LANG_ARRAY[ 2 ] + /b (~ + 
FILESIZE +  MByte)/a/p );
+} else {
+  // OS and/or package manager was not recognized, therefore use 
other.html as download link.
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
+  + LINK + '); + return false;\ );
+  document.write( h2a href=' + LINK + ' 

svn commit: r875515 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/index_ie_test.html

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 21:45:59 2013
New Revision: 875515

Log:
Staging update by buildbot for ooo-site

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

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 21:45:59 2013
@@ -1 +1 @@
-1515975
+1515980

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 21:45:59 2013
@@ -1 +1 @@
-1515975
+1515980

Added: websites/staging/ooo-site/trunk/content/download/index_ie_test.html
==
--- websites/staging/ooo-site/trunk/content/download/index_ie_test.html (added)
+++ websites/staging/ooo-site/trunk/content/download/index_ie_test.html Tue Aug 
20 21:45:59 2013
@@ -0,0 +1,455 @@
+!--#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 /
+  meta itemprop=name content=Download Apache OpenOffice /
+  meta itemprop=description content=Join the OpenOffice revolution, the 
free office productivity suite with over 60 million trusted downloads. /
+  meta itemprop=image 
content=http://www.openoffice.org/images/aoo-logo-100x100.png; /
+  meta property=og:title content=Download Apache OpenOffice /
+  meta property=og:description content=Join the OpenOffice revolution, the 
free office productivity suite with over 60 million trusted downloads. /
+  meta property=og:image 
content=http://www.openoffice.org/images/aoo-logo-100x100.png; /
+  meta name=description content=Official Apache OpenOffice download page. 
Join the OpenOffice revolution, the free office productivity suite with over 60 
million trusted downloads. /
+  titleApache OpenOffice Downloads - Official Site/title
+  script type=text/javascript src=globalvars.js/script
+  script type=text/javascript src=languages.js/script
+  script type=text/javascript src=release_matrix.js/script
+  script type=text/javascript src=download.js/script
+  script type=text/javascript src=../../scripts/entourage.js/script
+  style type=text/css
+  /* ![CDATA[ */
+  /* Exceptions on standard css ---*/
+  @import styles.css;
+  @import exceptions.css;
+  /* ]] */
+  /style
+  script
+if (window.document.referrer.indexOf(shell.windows.com) != -1)
+   location.href = /why/why_odf.html;
+
+function shareFacebook() {
+  _gaq.push(['_trackEvent','social', 'shareDownload', 'facebook']); 
+  
window.open('https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2F','_blank','toolbar=0,status=0,width=580,height=325');

+}
+function shareTwitter(){
+  _gaq.push(['_trackEvent','social', 'shareDownload', 'twitter']); 
+  
window.open('https://twitter.com/intent/tweet?url=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2Ftext=Join+the+OpenOffice+revolution%2C+the+free+office+productivity+suite+with+over+60+million+trusted+downloads.hashtags=openoffice','_blank','toolbar=0,status=0,width=580,height=325');
+}
+function shareGooglePlus(){
+  _gaq.push(['_trackEvent','social', 'shareDownload', 'google+']); 
+  
window.open('https://plus.google.com/share?url=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2F','_blank','toolbar=0,status=0,width=580,height=325');
+}
+  /script
+
+!--#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=/download/download/a/div
+  /div
+  div id=clear/div
+  
+  
+  div id=content
+
+
+
+
+div class=optionset
+
+  !--[if IE 5]
+pUsed browser is: Internet Explorer 5/p
+  ![endif]--
+  !--[if IE 6]
+pUsed browser is: Internet Explorer 6/p
+  ![endif]--
+  !--[if IE 7]
+pUsed browser is: Internet Explorer 7/p
+  ![endif]--
+
+  !-- Green: Stable release --
+  script type=text/javascript
+  !--
+  // Set a specific language ISO code to force to assemble a certain localized 
build as download URL
+  var NL_LANGUAGE = ;
+  // Get the download URL
+  var LINK= getLink();
+
+  if ( hasMirrorLink() ) {
+if ( LINK.toLowerCase().indexOf( sourceforge ) != -1 ) {
+  // Download directly from a mirror with displayed platform and language.
+  document.write( div class=\first button green\ id=\optionitem1\ 
onclick=\openItem('optionitem1','
+  + LINK + '); + return false;\ );
+  document.write( h2a href=' + LINK + ' title='Version  + VERSION + 
 - Milestone  + 

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

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 21:48:39 2013
New Revision: 875516

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

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



svn commit: r1515985 - /openoffice/ooo-site/trunk/content/download/test/index.html

2013-08-20 Thread marcus
Author: marcus
Date: Tue Aug 20 21:58:27 2013
New Revision: 1515985

URL: http://svn.apache.org/r1515985
Log:
Deleted code for browser detection

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

Modified: openoffice/ooo-site/trunk/content/download/test/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/index.html?rev=1515985r1=1515984r2=1515985view=diff
==
--- openoffice/ooo-site/trunk/content/download/test/index.html (original)
+++ openoffice/ooo-site/trunk/content/download/test/index.html Tue Aug 20 
21:58:27 2013
@@ -45,16 +45,6 @@
 
 div class=optionset
 
-  !--[if IE 5]
-pUsed browser is: Internet Explorer 5/p
-  ![endif]--
-  !--[if IE 6]
-pUsed browser is: Internet Explorer 6/p
-  ![endif]--
-  !--[if IE 7]
-pUsed browser is: Internet Explorer 7/p
-  ![endif]--
-
   !-- Green: Stable release --
   script type=text/javascript
   !--




svn commit: r875517 - in /websites/staging/ooo-site/trunk: cgi-bin/ content/ content/download/test/index.html

2013-08-20 Thread buildbot
Author: buildbot
Date: Tue Aug 20 21:59:29 2013
New Revision: 875517

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/download/test/index.html

Propchange: websites/staging/ooo-site/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 21:59:29 2013
@@ -1 +1 @@
-1515980
+1515985

Propchange: websites/staging/ooo-site/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 20 21:59:29 2013
@@ -1 +1 @@
-1515980
+1515985

Modified: websites/staging/ooo-site/trunk/content/download/test/index.html
==
--- websites/staging/ooo-site/trunk/content/download/test/index.html (original)
+++ websites/staging/ooo-site/trunk/content/download/test/index.html Tue Aug 20 
21:59:29 2013
@@ -60,16 +60,6 @@
 
 div class=optionset
 
-  !--[if IE 5]
-pUsed browser is: Internet Explorer 5/p
-  ![endif]--
-  !--[if IE 6]
-pUsed browser is: Internet Explorer 6/p
-  ![endif]--
-  !--[if IE 7]
-pUsed browser is: Internet Explorer 7/p
-  ![endif]--
-
   !-- Green: Stable release --
   script type=text/javascript
   !--




buildbot failure in ASF Buildbot on aoo-w7ia2

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

STATUS: Failure

 Build revision 1484083 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/206

 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