From 8e1c1908aa1485e16e53ebb4ba31e6a66600840e Mon Sep 17 00:00:00 2001 From: sb Date: Wed, 27 May 2009 14:33:09 +0200 Subject: [PATCH 04/45] #i101955# removed unnecessary dependencies on configmgr --- forms/prj/build.lst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/prj/build.lst b/forms/prj/build.lst index 4393408051d7..582762da8a6c 100644 --- a/forms/prj/build.lst +++ b/forms/prj/build.lst @@ -1,4 +1,4 @@ -fm forms : svx sfx2 ucb configmgr fileaccess QADEVOOO:qadevOOo NULL +fm forms : svx sfx2 ucb fileaccess QADEVOOO:qadevOOo NULL fm forms usr1 - all fm_mkofrm NULL fm forms\inc nmake - all fm_inc NULL fm forms\source\inc get - all fm_sinc NULL From 51a09373ea2bccf70994cc48449d18fb5a9b7820 Mon Sep 17 00:00:00 2001 From: Andreas Bregas Date: Wed, 17 Jun 2009 13:32:41 +0000 Subject: [PATCH 05/45] #i102261# OLE control event handler support --- extensions/source/propctrlr/eventhandler.cxx | 33 +---- forms/source/inc/InterfaceContainer.hxx | 3 + forms/source/misc/InterfaceContainer.cxx | 124 +++++++++++++++++++ forms/source/misc/makefile.mk | 10 ++ 4 files changed, 139 insertions(+), 31 deletions(-) diff --git a/extensions/source/propctrlr/eventhandler.cxx b/extensions/source/propctrlr/eventhandler.cxx index ad607469937d..203a7c133fe7 100644 --- a/extensions/source/propctrlr/eventhandler.cxx +++ b/extensions/source/propctrlr/eventhandler.cxx @@ -62,6 +62,7 @@ /** === end UNO includes === **/ #include +#include #include #include #include @@ -164,36 +165,6 @@ namespace pcr //======================================================================== namespace { - //.................................................................... - Sequence< ::rtl::OUString > lcl_getListenerMethodsForType( const Type& type ) - { - typelib_InterfaceTypeDescription *pType=0; - type.getDescription( (typelib_TypeDescription**)&pType); - - if ( !pType ) - return Sequence< ::rtl::OUString>(); - - Sequence< ::rtl::OUString > aNames( pType->nMembers ); - ::rtl::OUString* pNames = aNames.getArray(); - for ( sal_Int32 i = 0; i < pType->nMembers; ++i, ++pNames) - { - // the decription reference - typelib_TypeDescriptionReference* pMemberDescriptionReference = pType->ppMembers[i]; - // the description for the reference - typelib_TypeDescription* pMemberDescription = NULL; - typelib_typedescriptionreference_getDescription( &pMemberDescription, pMemberDescriptionReference ); - if ( pMemberDescription ) - { - typelib_InterfaceMemberTypeDescription* pRealMemberDescription = - reinterpret_cast(pMemberDescription); - *pNames = pRealMemberDescription->pMemberName; - } - } - - typelib_typedescription_release( (typelib_TypeDescription*)pType ); - return aNames; - } - //.................................................................... #define DESCRIBE_EVENT( asciinamespace, asciilistener, asciimethod, id_postfix ) \ s_aKnownEvents.insert( EventMap::value_type( \ @@ -762,7 +733,7 @@ namespace pcr continue; // loop through all methods - Sequence< ::rtl::OUString > aMethods( lcl_getListenerMethodsForType( *pListeners ) ); + Sequence< ::rtl::OUString > aMethods( comphelper::getEventMethodsForType( *pListeners ) ); const ::rtl::OUString* pMethods = aMethods.getConstArray(); sal_uInt32 methodCount = aMethods.getLength(); diff --git a/forms/source/inc/InterfaceContainer.hxx b/forms/source/inc/InterfaceContainer.hxx index 9bdbf3bdc402..6d7c6d422efe 100644 --- a/forms/source/inc/InterfaceContainer.hxx +++ b/forms/source/inc/InterfaceContainer.hxx @@ -260,6 +260,9 @@ protected: void implCheckIndex( const sal_Int32 _nIndex ) SAL_THROW( ( ::com::sun::star::lang::IndexOutOfBoundsException ) ); private: + // hack for Vba Events + void fakeVbaEventsHack( sal_Int32 _nIndex ); + // the runtime event format has changed from version SO5.2 to OOo enum EventFormat { diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx index 55fec77ffb11..7cb608334d30 100644 --- a/forms/source/misc/InterfaceContainer.cxx +++ b/forms/source/misc/InterfaceContainer.cxx @@ -60,13 +60,20 @@ #include //......................................................................... +#include +#include +#include +#include + namespace frm { //......................................................................... +using namespace ::com::sun::star::frame; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; +using namespace ::com::sun::star::document; using namespace ::com::sun::star::container; using namespace ::com::sun::star::script; using namespace ::com::sun::star::io; @@ -81,6 +88,90 @@ namespace } } +bool +lcl_hasVbaEvents( const Sequence< ScriptEventDescriptor >& sEvents ) +{ + const ScriptEventDescriptor* pDesc = sEvents.getConstArray(); + const ScriptEventDescriptor* pEnd = ( pDesc + sEvents.getLength() ); + for ( ; pDesc != pEnd; ++pDesc ) + { + if ( pDesc->ScriptType.equals( rtl::OUString::createFromAscii( "VBAInterop" ) ) ) + return true; + } + return false; +} + +Sequence< ScriptEventDescriptor > +lcl_stripVbaEvents( const Sequence< ScriptEventDescriptor >& sEvents ) +{ + Sequence< ScriptEventDescriptor > sStripped( sEvents.getLength() ); + + const ScriptEventDescriptor* pDesc = sEvents.getConstArray(); + const ScriptEventDescriptor* pEnd = ( pDesc + sEvents.getLength() ); + sal_Int32 nCopied = 0; + for ( ; pDesc != pEnd; ++pDesc ) + { + if ( !pDesc->ScriptType.equals( rtl::OUString::createFromAscii( "VBAInterop" ) ) ) + { + sStripped[ nCopied++ ] = *pDesc; + } + } + if ( nCopied ) + sStripped.realloc( nCopied ); + return sStripped; +} + +void +OInterfaceContainer::fakeVbaEventsHack( sal_Int32 _nIndex ) +{ + // we are dealing with form controls + try + { + Reference< XFormComponent > xForm( static_cast< XContainer* >(this), UNO_QUERY_THROW ); + // grand-parent should be the model, no parent ? if not + // we'll ignore, we'll get called back here anyway ) + Reference< XChild > xChild( xForm->getParent(), UNO_QUERY_THROW ); + Reference< XModel > xDocOwner( xChild->getParent(), UNO_QUERY ); + OSL_TRACE(" Is DOC ????? %s", xDocOwner.is() ? "true" : "false" ); + if ( xDocOwner.is() ) + { + bool hasVBABindings = lcl_hasVbaEvents( m_xEventAttacher->getScriptEvents( _nIndex ) ); + if ( hasVBABindings ) + { + OSL_TRACE("Has VBA bindings already, returning "); + return; + } + Reference< XMultiServiceFactory > xFac( comphelper::getProcessServiceFactory(), UNO_QUERY ); + Reference< XMultiServiceFactory > xDocFac( xDocOwner, UNO_QUERY ); + if ( xFac.is() && xDocFac.is() ) + { + try + { + Reference< ooo::vba::XVBAToOOEventDescGen > xDescSupplier( xFac->createInstance( rtl::OUString::createFromAscii( "ooo.vba.VBAToOOEventDesc" ) ), UNO_QUERY_THROW ); + Reference< XInterface > xIf( getByIndex( _nIndex ) , UNO_QUERY_THROW ); + Reference< XCodeNameQuery > xNameQuery( xDocFac->createInstance( rtl::OUString::createFromAscii( "ooo.vba.VBACodeNameProvider" ) ), UNO_QUERY_THROW ); + + rtl::OUString sCodeName; + sCodeName = xNameQuery->getCodeNameForObject( xIf ); + Reference< XPropertySet > xProps( xIf, UNO_QUERY ); + rtl::OUString sServiceName; + xProps->getPropertyValue( rtl::OUString::createFromAscii("DefaultControl" ) ) >>= sServiceName; + + Sequence< ScriptEventDescriptor > vbaEvents = xDescSupplier->getEventDescriptions( xFac->createInstance( sServiceName ), sCodeName ); + // register the vba script events + if ( m_xEventAttacher.is() ) + m_xEventAttacher->registerScriptEvents( _nIndex, vbaEvents ); + } + catch( Exception& e ){ OSL_TRACE("lcl_fakevbaevents - Caught Exception trying to create control eventstuff "); } + } + + } + } + catch( Exception& e ) + { + } + +} //================================================================== //= ElementDescription //================================================================== @@ -743,6 +834,23 @@ void OInterfaceContainer::implInsert(sal_Int32 _nIndex, const Reference< XProper { m_xEventAttacher->insertEntry(_nIndex); m_xEventAttacher->attach( _nIndex, pElementMetaData->xInterface, makeAny( _rxElement ) ); + // insert fake events? + Reference< XEventAttacherManager > xMgr ( pElementMetaData->xInterface, UNO_QUERY ); + if ( xMgr.is() ) + { + OInterfaceContainer* pIfcMgr = dynamic_cast< OInterfaceContainer* >( xMgr.get() ); + sal_Int32 nLen = pIfcMgr->getCount(); + for ( sal_Int32 i = 0; (i < nLen) && pIfcMgr ; ++i ) + { + // add fake events to the control at index i + pIfcMgr->fakeVbaEventsHack( i ); + } + } + else + { + // add fake events to the control at index i + fakeVbaEventsHack( _nIndex ); + } } // notify derived classes @@ -1022,20 +1130,29 @@ void SAL_CALL OInterfaceContainer::removeByName(const ::rtl::OUString& Name) thr //------------------------------------------------------------------------ void SAL_CALL OInterfaceContainer::registerScriptEvent( sal_Int32 nIndex, const ScriptEventDescriptor& aScriptEvent ) throw(IllegalArgumentException, RuntimeException) { + OSL_TRACE("*** registerScriptEvent %d", nIndex); if ( m_xEventAttacher.is() ) + { m_xEventAttacher->registerScriptEvent( nIndex, aScriptEvent ); + fakeVbaEventsHack( nIndex ); // add fake vba events + } } //------------------------------------------------------------------------ void SAL_CALL OInterfaceContainer::registerScriptEvents( sal_Int32 nIndex, const Sequence< ScriptEventDescriptor >& aScriptEvents ) throw(IllegalArgumentException, RuntimeException) { + OSL_TRACE("*** registerScriptEvent(s) %d", nIndex); if ( m_xEventAttacher.is() ) + { m_xEventAttacher->registerScriptEvents( nIndex, aScriptEvents ); + fakeVbaEventsHack( nIndex ); // add fake vba events + } } //------------------------------------------------------------------------ void SAL_CALL OInterfaceContainer::revokeScriptEvent( sal_Int32 nIndex, const ::rtl::OUString& aListenerType, const ::rtl::OUString& aEventMethod, const ::rtl::OUString& aRemoveListenerParam ) throw(IllegalArgumentException, RuntimeException) { + OSL_TRACE("*** revokeScriptEvent %d listenertype %s, eventMethod %s", nIndex, rtl::OUStringToOString( aListenerType, RTL_TEXTENCODING_UTF8 ).getStr(), rtl::OUStringToOString( aEventMethod, RTL_TEXTENCODING_UTF8 ).getStr()); if ( m_xEventAttacher.is() ) m_xEventAttacher->revokeScriptEvent( nIndex, aListenerType, aEventMethod, aRemoveListenerParam ); } @@ -1064,9 +1181,16 @@ void SAL_CALL OInterfaceContainer::removeEntry( sal_Int32 nIndex ) throw(Illegal //------------------------------------------------------------------------ Sequence< ScriptEventDescriptor > SAL_CALL OInterfaceContainer::getScriptEvents( sal_Int32 nIndex ) throw(IllegalArgumentException, RuntimeException) { + OSL_TRACE("getScriptEvents"); Sequence< ScriptEventDescriptor > aReturn; if ( m_xEventAttacher.is() ) + { aReturn = m_xEventAttacher->getScriptEvents( nIndex ); + if ( lcl_hasVbaEvents( aReturn ) ) + { + aReturn = lcl_stripVbaEvents( aReturn ); + } + } return aReturn; } diff --git a/forms/source/misc/makefile.mk b/forms/source/misc/makefile.mk index b03109ba64d5..9422ba70de8a 100644 --- a/forms/source/misc/makefile.mk +++ b/forms/source/misc/makefile.mk @@ -45,6 +45,7 @@ ENABLE_EXCEPTIONS=TRUE # --- Types ------------------------------------- INCPRE+=$(SOLARINCDIR)$/offuh +INCPRE*=$(INCCOM)$/$(TARGET) # --- Files ------------------------------------- @@ -62,3 +63,12 @@ SLOFILES= $(SLO)$/limitedformats.obj \ .INCLUDE : target.mk +ALLTAR : \ + $(MISC)$/$(TARGET).don \ + +$(SLOFILES) : $(MISC)$/$(TARGET).don + +$(MISC)$/$(TARGET).don : $(SOLARBINDIR)$/oovbaapi.rdb + +$(CPPUMAKER) -O$(INCCOM)$/$(TARGET) -BUCR $(SOLARBINDIR)$/oovbaapi.rdb -X$(SOLARBINDIR)$/types.rdb && echo > $@ + echo $@ + From ce8633f273a9963f6585261b6c522b854fd34589 Mon Sep 17 00:00:00 2001 From: sb Date: Tue, 4 Aug 2009 10:36:31 +0200 Subject: [PATCH 06/45] #i101955# consolidating xcs/xcu files in xcd files (for now in new postprocess/packregistry); extended configmgr2 to search for multiple xcd files per layer; removed some (relative, wrong) DOCTYPE SYSTEM paths from xcu files to avoid xsltproc warnings; extended scp2 EXTRA_ALL_LANG to work with extensions other than zip (i.e., xcd) --- extensions/source/oooimprovement/Jobs.xcu | 1 - 1 file changed, 1 deletion(-) diff --git a/extensions/source/oooimprovement/Jobs.xcu b/extensions/source/oooimprovement/Jobs.xcu index 438ab2d23e8e..206d83dd7eb2 100644 --- a/extensions/source/oooimprovement/Jobs.xcu +++ b/extensions/source/oooimprovement/Jobs.xcu @@ -1,5 +1,4 @@ - From a6f7d824766bc20c3e7ade1ac57c261a713e675f Mon Sep 17 00:00:00 2001 From: sb Date: Fri, 4 Sep 2009 12:24:40 +0200 Subject: [PATCH 08/45] merged in DEV300_m57 --- accessibility/prj/build.lst | 6 + .../source/extended/accessiblelistbox.cxx | 26 + .../source/standard/vclxaccessiblebox.cxx | 2 +- .../standard/vclxaccessibletoolboxitem.cxx | 8 +- accessibility/workben/TODO | 13 + accessibility/workben/makefile | 9 + accessibility/workben/makefile.in | 32 + accessibility/workben/makefile.mk | 40 + .../org/openoffice/accessibility/Makefile | 6 + .../awb/AccessibilityWorkBench.java | 724 ++++++++++++++++++ .../accessibility/awb/HelpWindow.java | 187 +++++ .../org/openoffice/accessibility/awb/Makefile | 13 + .../accessibility/awb/canvas/Canvas.java | 356 +++++++++ .../accessibility/awb/canvas/CanvasShape.java | 446 +++++++++++ .../accessibility/awb/canvas/Makefile | 15 + .../awb/canvas/MouseObserver.java | 104 +++ .../awb/canvas/ShapeContainer.java | 271 +++++++ .../accessibility/awb/canvas/makefile.common | 65 ++ .../accessibility/awb/canvas/makefile.mk | 86 +++ .../accessibility/awb/makefile.common | 3 + .../openoffice/accessibility/awb/makefile.mk | 88 +++ .../org/openoffice/accessibility/awb/manifest | 3 + .../awb/tree/AccessibilityModel.java | 188 +++++ .../awb/tree/AccessibilityNode.java | 200 +++++ .../awb/tree/AccessibilityTree.java | 123 +++ .../awb/tree/AccessibilityTreeModel.java | 251 ++++++ .../awb/tree/DynamicAccessibilityModel.java | 157 ++++ .../awb/tree/DynamicAccessibilityNode.java | 126 +++ .../accessibility/awb/tree/Makefile | 71 ++ .../accessibility/awb/tree/ToolkitNode.java | 249 ++++++ .../accessibility/awb/tree/makefile.common | 66 ++ .../accessibility/awb/tree/makefile.mk | 82 ++ .../accessibility/awb/view/ComponentView.java | 229 ++++++ .../accessibility/awb/view/ContextView.java | 149 ++++ .../awb/view/EditableTextView.java | 153 ++++ .../awb/view/EventMonitorView.java | 158 ++++ .../accessibility/awb/view/FocusView.java | 182 +++++ .../accessibility/awb/view/LayoutManager.java | 194 +++++ .../accessibility/awb/view/Makefile | 13 + .../accessibility/awb/view/ObjectView.java | 90 +++ .../awb/view/ObjectViewContainer.java | 344 +++++++++ .../awb/view/ObjectViewContainerWindow.java | 35 + .../accessibility/awb/view/ParentView.java | 181 +++++ .../accessibility/awb/view/SelectionView.java | 301 ++++++++ .../awb/view/ServiceInterfaceView.java | 150 ++++ .../accessibility/awb/view/StateSetView.java | 233 ++++++ .../accessibility/awb/view/TableView.java | 195 +++++ .../accessibility/awb/view/TextView.java | 501 ++++++++++++ .../awb/view/ViewGridLayout.java | 151 ++++ .../accessibility/awb/view/makefile.common | 76 ++ .../accessibility/awb/view/makefile.mk | 82 ++ .../awb/view/text/CaretSpinnerModel.java | 156 ++++ .../accessibility/awb/view/text/Makefile | 13 + .../awb/view/text/TextActionDialog.java | 242 ++++++ .../awb/view/text/TextAttributeDialog.java | 213 ++++++ .../awb/view/text/TextDialogFactory.java | 170 ++++ .../awb/view/text/TextEditDialog.java | 156 ++++ .../awb/view/text/makefile.common | 65 ++ .../accessibility/awb/view/text/makefile.mk | 82 ++ .../misc/AccessibleEventMulticaster.java | 122 +++ .../accessibility/misc/Connector.java | 50 ++ .../accessibility/misc/InformationWriter.java | 421 ++++++++++ .../openoffice/accessibility/misc/Makefile | 69 ++ .../accessibility/misc/MessageArea.java | 125 +++ .../accessibility/misc/NameProvider.java | 263 +++++++ .../accessibility/misc/OfficeConnection.java | 169 ++++ .../accessibility/misc/Options.java | 106 +++ .../accessibility/misc/SimpleOffice.java | 413 ++++++++++ .../accessibility/misc/makefile.common | 67 ++ .../openoffice/accessibility/misc/makefile.mk | 86 +++ automation/source/communi/communi.cxx | 2 +- automation/source/server/server.cxx | 2 +- automation/source/testtool/makefile.mk | 5 +- automation/source/testtool/tcommuni.cxx | 1 - automation/source/testtool/testtool.ini | 2 +- automation/util/manually_added_ids.hid | 5 - basctl/source/basicide/basidesh.src | 2 +- basctl/source/basicide/basobj2.cxx | 25 - basctl/source/basicide/bastype3.hxx | 18 - basctl/source/basicide/bastypes.cxx | 57 -- basctl/source/basicide/moduldl2.cxx | 31 - basctl/source/basicide/moduldlg.hxx | 4 - basctl/source/dlged/dlgedobj.cxx | 27 - basctl/source/inc/basobj.hxx | 1 - basctl/source/inc/bastypes.hxx | 12 - basctl/source/inc/dlgedobj.hxx | 4 - basctl/util/makefile.mk | 1 + crashrep/source/unx/makefile.mk | 2 +- embedserv/source/inprocserv/makefile.mk | 12 +- extensions/source/abpilot/makefile.mk | 1 + extensions/source/activex/main/SOActiveX.h | 2 +- .../source/dbpilots/listcombowizard.cxx | 3 - extensions/source/ole/oleobjw.hxx | 6 +- extensions/source/oooimprovecore/makefile.mk | 1 + extensions/source/oooimprovement/config.cxx | 2 + extensions/source/oooimprovement/config.hxx | 2 + .../source/oooimprovement/corecontroller.cxx | 12 - .../source/oooimprovement/corecontroller.hxx | 4 +- .../source/oooimprovement/invite_job.cxx | 16 +- .../source/oooimprovement/invite_job.hxx | 4 +- .../oooimprovement/myconfigurationhelper.cxx | 27 - .../oooimprovement/myconfigurationhelper.hxx | 34 - .../source/oooimprovement/soaprequest.cxx | 21 +- .../propctrlr/eformspropertyhandler.cxx | 12 + .../propctrlr/eformspropertyhandler.hxx | 2 + extensions/source/propctrlr/makefile.mk | 1 + extensions/source/scanner/sanedlg.cxx | 13 + extensions/source/scanner/scanunx.cxx | 9 +- .../source/update/check/updatecheckjob.cxx | 62 +- extensions/util/hidother.src | 606 +++++++++------ forms/qa/integration/forms/TestSkeleton.java | 50 +- forms/source/component/FormComponent.cxx | 4 +- forms/util/makefile.mk | 2 +- setup_native/prj/build.lst | 1 + setup_native/prj/d.lst | 6 + setup_native/scripts/mac_install.script | 10 + .../osx_install_languagepack.applescript | 115 +++ .../scripts/osx_install_patch.applescript | 113 +++ setup_native/scripts/source/getuid.c | 27 +- setup_native/source/java/javaversion2.dat | 26 +- setup_native/source/mac/Info.plist.langpack | 36 + setup_native/source/mac/macinstall.ulf | 68 ++ setup_native/source/mac/makefile.mk | 65 ++ setup_native/source/mac/ooo3_installer.icns | Bin 0 -> 49809 bytes .../customactions/indexingfilter/makefile.mk | 1 - .../customactions/javafilter/makefile.mk | 1 - .../customactions/languagepacks/makefile.mk | 1 - .../win32/customactions/patch/makefile.mk | 1 - .../customactions/quickstarter/makefile.mk | 1 - .../customactions/regactivex/makefile.mk | 1 - .../customactions/regpatchactivex/makefile.mk | 6 +- .../win32/customactions/relnotes/makefile.mk | 1 - .../customactions/shellextensions/makefile.mk | 1 - .../win32/customactions/tools/makefile.mk | 1 - xmlsecurity/prj/build.lst | 2 +- .../component/documentdigitalsignatures.cxx | 3 +- .../source/dialogs/certificateviewer.cxx | 6 +- .../dialogs/digitalsignaturesdialog.cxx | 3 +- .../securityenvironment_mscryptimpl.cxx | 102 ++- .../securityenvironment_mscryptimpl.hxx | 6 +- .../nss/securityenvironment_nssimpl.cxx | 91 ++- .../nss/securityenvironment_nssimpl.hxx | 8 +- .../xmlsec/nss/seinitializer_nssimpl.cxx | 258 ++++++- .../xmlsec/nss/x509certificate_nssimpl.cxx | 19 +- .../xmlsec/nss/x509certificate_nssimpl.hxx | 3 - xmlsecurity/util/makefile.mk | 2 +- 146 files changed, 11802 insertions(+), 713 deletions(-) create mode 100644 accessibility/workben/TODO create mode 100644 accessibility/workben/makefile create mode 100644 accessibility/workben/makefile.in create mode 100644 accessibility/workben/makefile.mk create mode 100644 accessibility/workben/org/openoffice/accessibility/Makefile create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/HelpWindow.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/Makefile create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/canvas/Makefile create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/canvas/MouseObserver.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/canvas/ShapeContainer.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.common create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.mk create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/makefile.common create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/makefile.mk create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/manifest create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/Makefile create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/ToolkitNode.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.common create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.mk create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/Makefile create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/ObjectView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainerWindow.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/ParentView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/ServiceInterfaceView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/StateSetView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/TextView.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/ViewGridLayout.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/makefile.common create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/makefile.mk create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/text/Makefile create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/text/TextActionDialog.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common create mode 100644 accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/Connector.java create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/InformationWriter.java create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/Makefile create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/MessageArea.java create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/NameProvider.java create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/OfficeConnection.java create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/Options.java create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/SimpleOffice.java create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/makefile.common create mode 100644 accessibility/workben/org/openoffice/accessibility/misc/makefile.mk create mode 100644 setup_native/scripts/mac_install.script create mode 100644 setup_native/scripts/osx_install_languagepack.applescript create mode 100644 setup_native/scripts/osx_install_patch.applescript create mode 100644 setup_native/source/mac/Info.plist.langpack create mode 100644 setup_native/source/mac/macinstall.ulf create mode 100644 setup_native/source/mac/makefile.mk create mode 100644 setup_native/source/mac/ooo3_installer.icns diff --git a/accessibility/prj/build.lst b/accessibility/prj/build.lst index 2288410ffba8..351473e38450 100755 --- a/accessibility/prj/build.lst +++ b/accessibility/prj/build.lst @@ -9,3 +9,9 @@ ac accessibility\source\helper nmake - all ac_h ac accessibility\source\standard nmake - all ac_standard ac_helper ac_inc NULL ac accessibility\source\extended nmake - all ac_extended ac_inc NULL ac accessibility\util nmake - all ac_util ac_helper ac_standard ac_extended NULL +ac accessibility\workben\org\openoffice\accessibility\awb nmake - all ac_awb_main ac_awb_misc ac_awb_canvas ac_awb_view ac_awb_tree NULL +ac accessibility\workben\org\openoffice\accessibility\misc nmake - all ac_awb_misc NULL +ac accessibility\workben\org\openoffice\accessibility\awb\canvas nmake - all ac_awb_canvas ac_awb_tree NULL +ac accessibility\workben\org\openoffice\accessibility\awb\tree nmake - all ac_awb_tree ac_awb_misc NULL +ac accessibility\workben\org\openoffice\accessibility\awb\view nmake - all ac_awb_view ac_awb_view_text NULL +ac accessibility\workben\org\openoffice\accessibility\awb\view\text nmake - all ac_awb_view_text NULL diff --git a/accessibility/source/extended/accessiblelistbox.cxx b/accessibility/source/extended/accessiblelistbox.cxx index f75f9a1b265f..2db3debe33a4 100644 --- a/accessibility/source/extended/accessiblelistbox.cxx +++ b/accessibility/source/extended/accessiblelistbox.cxx @@ -132,6 +132,32 @@ namespace accessibility } } break; + + // --> OD 2009-04-01 #i92103# + case VCLEVENT_LISTBOX_ENTRY_EXPANDED : + case VCLEVENT_LISTBOX_ENTRY_COLLAPSED : + { + SvLBoxEntry* pEntry = static_cast< SvLBoxEntry* >( rVclWindowEvent.GetData() ); + if ( pEntry ) + { + AccessibleListBoxEntry* pAccListBoxEntry = + new AccessibleListBoxEntry( *getListBox(), pEntry, this ); + Reference< XAccessible > xChild = pAccListBoxEntry; + const short nAccEvent = + ( rVclWindowEvent.GetId() == VCLEVENT_LISTBOX_ENTRY_EXPANDED ) + ? AccessibleEventId::LISTBOX_ENTRY_EXPANDED + : AccessibleEventId::LISTBOX_ENTRY_COLLAPSED; + uno::Any aListBoxEntry; + aListBoxEntry <<= xChild; + NotifyAccessibleEvent( nAccEvent, Any(), aListBoxEntry ); + if ( getListBox() && getListBox()->HasFocus() ) + { + NotifyAccessibleEvent( AccessibleEventId::ACTIVE_DESCENDANT_CHANGED, Any(), aListBoxEntry ); + } + } + break; + } + // <-- } default: VCLXAccessibleComponent::ProcessWindowEvent (rVclWindowEvent); diff --git a/accessibility/source/standard/vclxaccessiblebox.cxx b/accessibility/source/standard/vclxaccessiblebox.cxx index bc6e77ab6191..ad1f4ab2e01b 100644 --- a/accessibility/source/standard/vclxaccessiblebox.cxx +++ b/accessibility/source/standard/vclxaccessiblebox.cxx @@ -155,7 +155,7 @@ void VCLXAccessibleBox::ProcessWindowEvent (const VclWindowEvent& rVclWindowEven // combobox, however, we have to help the list with providing // the text of the currently selected item. VCLXAccessibleList* pList = static_cast(m_xList.get()); - if (pList != NULL) + if (pList != NULL && m_xText.is()) { Reference xText (m_xText->getAccessibleContext(), UNO_QUERY); if ( xText.is() ) diff --git a/accessibility/source/standard/vclxaccessibletoolboxitem.cxx b/accessibility/source/standard/vclxaccessibletoolboxitem.cxx index f89dbe1767c3..76507d22e3cf 100644 --- a/accessibility/source/standard/vclxaccessibletoolboxitem.cxx +++ b/accessibility/source/standard/vclxaccessibletoolboxitem.cxx @@ -47,6 +47,7 @@ #include #include #include +#include #include #include #include @@ -618,9 +619,12 @@ awt::FontDescriptor SAL_CALL VCLXAccessibleToolBoxItem::getFontMetrics( const Re ::rtl::OUString sRet; if ( m_pToolBox ) { - sRet = m_pToolBox->GetQuickHelpText( m_nItemId ); + if ( Help::IsExtHelpEnabled() ) + sRet = m_pToolBox->GetHelpText( m_nItemId ); + else + sRet = m_pToolBox->GetQuickHelpText( m_nItemId ); if ( !sRet.getLength() ) - // no quick help text set, so use item text + // no help text set, so use item text sRet = m_pToolBox->GetItemText( m_nItemId ); } return sRet; diff --git a/accessibility/workben/TODO b/accessibility/workben/TODO new file mode 100644 index 000000000000..6fdfd5cb81aa --- /dev/null +++ b/accessibility/workben/TODO @@ -0,0 +1,13 @@ +This is a unsorted list of TODO's and idea regarding the Accessibility Workbench + +* increase repaint performance +* fix paint problems in ObjectViewContainer for e.g. File menu +* change package structure to be flat (apps don't need deep package names) +* add ant build script(s) +* evaluate TreeTable as enhanced overview +* add error panel and a bunch of consistency checks +* add focus tracking mode +* evaluate drawing transparent frames at screen coordinates of an object +* enhance text view (colors) +* add table view +* more generic view loading (Class.forName()) diff --git a/accessibility/workben/makefile b/accessibility/workben/makefile new file mode 100644 index 000000000000..4bd7c05e44dd --- /dev/null +++ b/accessibility/workben/makefile @@ -0,0 +1,9 @@ +all: + cd source/org/openoffice/accessibility ; $(MAKE) all + +ROOT=source +SUBDIRS=source/org/openoffice/accessibility +include source/makefile.in + +run: all + $(JAVA) -classpath $(CLASSPATH) org.openoffice.accessibility.awb.AccessibilityWorkBench diff --git a/accessibility/workben/makefile.in b/accessibility/workben/makefile.in new file mode 100644 index 000000000000..ad97448e7780 --- /dev/null +++ b/accessibility/workben/makefile.in @@ -0,0 +1,32 @@ +PRJ=$(ROOT)/.. +SETTINGS=$(OO_SDK_HOME)/settings +include $(SETTINGS)/settings.mk +include $(SETTINGS)/std.mk +include $(SETTINGS)/dk.mk + +OUT_COMP_JAVA = $(OUT_CLASS)/$(patsubst .,/,$(PACKAGE)) +JAVAC=$(JAVA_HOME)/bin/javac +JAVA=$(JAVA_HOME)/bin/java +CLASS_FILES = $(patsubst %.java, %.class, $(JAVAFILES)) +CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(OFFICE_CLASSES_DIR)/jurt.jar\ + $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/unoil.jar\ + $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/ridl.jar\ + $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/sandbox.jar\ + $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/juh.jar\ + $(PATH_SEPARATOR)$(OUT_COMP_JAVA)\ + $(PATH_SEPARATOR).\ + $(PATH_SEPARATOR)$(ROOT)\ + ) + +subdirs: + $(foreach dir,$(SUBDIRS), cd $(dir);$(MAKE);cd ..;) + +clean: + -rm *.class *.jar + $(foreach dir,$(SUBDIRS), cd $(dir);$(MAKE) clean ; cd ..;) + + +%.class : %.java + $(JAVAC) -classpath $(CLASSPATH) $< + +.PHONY: all package clean subdirs diff --git a/accessibility/workben/makefile.mk b/accessibility/workben/makefile.mk new file mode 100644 index 000000000000..33c1e2a0ef5e --- /dev/null +++ b/accessibility/workben/makefile.mk @@ -0,0 +1,40 @@ +# copied from settings.mk +SOLARBINDIR=$(SOLARVERSION)$/$(INPATH)$/bin$(UPDMINOREXT) + +# Please modify the following lines to match your environment: +# If you use the run: target at the end of the file, then adapt pipe name +PIPE_NAME = $(USER) + +# The following variables probably don't need to be changed. +JAVA = java +# The JAR_PATH points to the jar files of your local office installation. +JAR_PATH = $(SOLARBINDIR)$/ + + +# The rest of this makefile should not need to be touched. + +JAR_FILES = \ + unoil.jar \ + sandbox.jar \ + ridl.jar \ + jurt.jar \ + juh.jar \ + java_uno.jar + + +JAVA_CLASSPATHS := \ + ..$/$(INPATH)$/class \ + $(foreach,i,$(JAR_FILES) $(JAR_PATH)$i) \ + $(CLASSPATH) + +CLASSPATH !:=$(JAVA_CLASSPATHS:t$(PATH_SEPERATOR)) + +all: + build + +# Example of how to run the work bench. +run: + +$(JAVA) -classpath "$(CLASSPATH)" org/openoffice/accessibility/awb/AccessibilityWorkBench -p $(PIPE_NAME) + +runjar: + +$(JAVA) -classpath "$(CLASSPATH)" -jar AccessibilityWorkBench.jar -p $(PIPE_NAME) diff --git a/accessibility/workben/org/openoffice/accessibility/Makefile b/accessibility/workben/org/openoffice/accessibility/Makefile new file mode 100644 index 000000000000..a6db6a05ab4b --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/Makefile @@ -0,0 +1,6 @@ +all : subdirs + +ROOT=../../../ +SUBDIRS=misc awb +include $(ROOT)/makefile.in + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java b/accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java new file mode 100644 index 000000000000..fd1d0e1fa13d --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java @@ -0,0 +1,724 @@ +/************************************************************************* + * + * $RCSfile: AccessibilityWorkBench.java,v $ + * + * $Revision: 1.3 $ + * + * last change: $Author: obr $ $Date: 2008/05/14 13:21:34 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb; + +import java.awt.Cursor; +import java.awt.GridBagConstraints; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.awt.event.WindowAdapter; +import java.awt.event.WindowEvent; +import javax.swing.ButtonGroup; +import javax.swing.JButton; +import javax.swing.JCheckBoxMenuItem; +import javax.swing.JComponent; +import javax.swing.JFrame; +import javax.swing.JMenu; +import javax.swing.JMenuBar; +import javax.swing.JMenuItem; +import javax.swing.JPanel; +import javax.swing.JRadioButtonMenuItem; +import javax.swing.JScrollPane; +import javax.swing.JSplitPane; +import javax.swing.event.TreeSelectionListener; +import javax.swing.event.TreeSelectionEvent; +import javax.swing.event.TreeExpansionListener; +import javax.swing.event.TreeWillExpandListener; +import javax.swing.tree.TreeNode; +import javax.swing.tree.TreePath; + +import com.sun.star.accessibility.XAccessible; +import com.sun.star.awt.XExtendedToolkit; +import com.sun.star.frame.XFrame; +import com.sun.star.frame.XTerminateListener; +import com.sun.star.lang.EventObject; +import com.sun.star.uno.UnoRuntime; + +import org.openoffice.accessibility.misc.MessageArea; +import org.openoffice.accessibility.misc.Options; +import org.openoffice.accessibility.misc.OfficeConnection; +import org.openoffice.accessibility.misc.SimpleOffice; +import org.openoffice.accessibility.awb.canvas.Canvas; +import org.openoffice.accessibility.awb.tree.AccessibilityTree; +import org.openoffice.accessibility.awb.tree.AccessibilityModel; +import org.openoffice.accessibility.awb.tree.DynamicAccessibilityModel; +import org.openoffice.accessibility.awb.view.ObjectViewContainer; +import org.openoffice.accessibility.awb.view.ObjectViewContainerWindow; + + + +/** This class manages the GUI of the work bench. + @see AccessibilityTreeModel + for the implementation of the tree view on the left side which also + manages the registration of accessibility listeners. + @see Canvas + for the graphical view of the accessible objects. +*/ +public class AccessibilityWorkBench + extends JFrame + implements XTerminateListener, + ActionListener, + TreeSelectionListener +{ + public static final String msVersion = "v1.9"; + public String msOptionsFileName = ".AWBrc"; + + public static void main (String args[]) + { + String sPipeName = System.getenv( "USER" ); + + for (int i=0; i*"); + System.out.println ("options:"); + System.out.println (" -p name of the pipe to use to connect to OpenOffice.org."); + System.out.println (" Defaults to $USER."); + System.exit (0); + } + else if (args[i].equals ("-p")) + { + sPipeName = args[++i]; + } + } + + saWorkBench = new AccessibilityWorkBench (sPipeName); + } + + + + + /** Return the one instance of the AccessibilityWorkBench + @return + Returns null when the AccessibilityWorkBench could not be + created successfully. + */ + public static AccessibilityWorkBench Instance () + { + return saWorkBench; + } + + + + /** Create an accessibility work bench that listens at the specified + port to Office applications. + */ + private AccessibilityWorkBench (String sPipeName) + { + mbInitialized = false; + + OfficeConnection.SetPipeName (sPipeName); + Options.Instance().Load (msOptionsFileName); + Layout (); + + MessageArea.println (System.getProperty ("os.name") + " / " + + System.getProperty ("os.arch") + " / " + + System.getProperty ("os.version")); + MessageArea.println ("Using pipe name " + sPipeName); + + maTree.addTreeSelectionListener (this); + + addWindowListener (new WindowAdapter () + { public void windowClosing (WindowEvent e) {Quit();} } + ); + + OfficeConnection.Instance().AddConnectionListener (this); + Initialize (); + } + + + + + /** Create and arrange the widgets of the GUI. + */ + public void Layout () + { + setSize (new java.awt.Dimension (800,600)); + + JScrollPane aScrollPane; + GridBagConstraints constraints; + + // Create new layout. + java.awt.GridBagLayout aLayout = new java.awt.GridBagLayout (); + getContentPane().setLayout (aLayout); + + // Accessible Tree. + javax.swing.tree.TreeModel treeModel = new DynamicAccessibilityModel(); + maTree = new AccessibilityTree(treeModel); + // Add the model as tree listeners to be able to populate/clear the + // child lists on demand. + maTree.addTreeExpansionListener((TreeExpansionListener) treeModel); + maTree.addTreeWillExpandListener((TreeWillExpandListener) treeModel); + + JScrollPane aTreeScrollPane = new JScrollPane( + maTree, + JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, + JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS); + aTreeScrollPane.setPreferredSize (new java.awt.Dimension (400,300)); + + // Object view shows details about the currently selected accessible + // object. + maObjectViewContainer = new ObjectViewContainer (); + JScrollPane aObjectViewContainerScrollPane = new JScrollPane( + maObjectViewContainer, + JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, + JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); + aObjectViewContainerScrollPane.setPreferredSize ( + new java.awt.Dimension (400,300)); + JButton aCornerButton = new JButton ("CreateNewViewWindow"); + aCornerButton.addActionListener (this); + aObjectViewContainerScrollPane.setCorner ( + JScrollPane.LOWER_RIGHT_CORNER, + aCornerButton); + + // Split pane for tree view and object view. + JSplitPane aLeftViewSplitPane = new JSplitPane ( + JSplitPane.VERTICAL_SPLIT, + aTreeScrollPane, + aObjectViewContainerScrollPane + ); + aLeftViewSplitPane.setDividerLocation (300); + aLeftViewSplitPane.setContinuousLayout (true); + + // Canvas. + maCanvas = new Canvas (); + maCanvas.SetTree (maTree); + JScrollPane aScrolledCanvas = new JScrollPane(maCanvas, + JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, + JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); + aScrolledCanvas.getViewport().setBackground (java.awt.Color.RED); + aScrolledCanvas.setPreferredSize (new java.awt.Dimension(600,400)); + + // Split pane for tree view and canvas. + JSplitPane aViewSplitPane = new JSplitPane ( + JSplitPane.HORIZONTAL_SPLIT, + aLeftViewSplitPane, + aScrolledCanvas + ); + aViewSplitPane.setOneTouchExpandable(true); + aViewSplitPane.setDividerLocation (400); + aViewSplitPane.setContinuousLayout (true); + + // Split pane for the three views at the top and the message area. + MessageArea.Instance().setPreferredSize (new java.awt.Dimension(600,50)); + JSplitPane aSplitPane = new JSplitPane ( + JSplitPane.VERTICAL_SPLIT, + aViewSplitPane, + MessageArea.Instance()); + aSplitPane.setOneTouchExpandable(true); + aSplitPane.setContinuousLayout (true); + addGridElement (aSplitPane, 0,0, 2,1, 3,3, + GridBagConstraints.CENTER, GridBagConstraints.BOTH); + + // Button bar. + maButtonBar = new javax.swing.JPanel(); + java.awt.GridBagLayout aButtonLayout = new java.awt.GridBagLayout (); + maButtonBar.setLayout (new java.awt.FlowLayout()); + addGridElement (maButtonBar, 0,3, 2,1, 1,0, + GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL); + + // Buttons. + // maConnectButton = createButton ("Connect", "connect"); + // maUpdateButton = createButton ("Update", "update"); + // maShapesButton = createButton ("Expand Shapes", "shapes"); + maExpandButton = createButton ("Expand All", "expand"); + maQuitButton = createButton ("Quit", "quit"); + UpdateButtonStates (); + + setJMenuBar (CreateMenuBar ()); + + setTitle("Accessibility Workbench " + msVersion); + + setVisible (true); + pack (); + aSplitPane.setDividerLocation (1.0); + validate (); + repaint(); + } + + + + + /** Shortcut method for adding an object to a GridBagLayout. + */ + void addGridElement (JComponent object, + int x, int y, + int width, int height, + int weightx, int weighty, + int anchor, int fill) + { + GridBagConstraints constraints = new GridBagConstraints (); + constraints.gridx = x; + constraints.gridy = y; + constraints.gridwidth = width; + constraints.gridheight = height; + constraints.weightx = weightx; + constraints.weighty = weighty; + constraints.anchor = anchor; + constraints.fill = fill; + getContentPane().add (object, constraints); + } + + + + + /** Create a new button and place at the right most position into the + button bar. + */ + public JButton createButton (String title, String command) + { + JButton aButton = new JButton (title); + aButton.setEnabled (false); + aButton.setActionCommand (command); + aButton.addActionListener (this); + + maButtonBar.add (aButton); + return aButton; + } + + + + + /** Create a menu bar for the application. + @return + Returns the new menu bar. The returned reference is also + remembered in the data member maMenuBar. + */ + javax.swing.JMenuBar CreateMenuBar() + { + // Menu bar. + maMenuBar = new JMenuBar (); + + // File menu. + JMenu aFileMenu = new JMenu ("File"); + maMenuBar.add (aFileMenu); + JMenuItem aItem; + aItem = new JMenuItem ("Quit"); + aFileMenu.add (aItem); + aItem.addActionListener (this); + + // View menu. + JMenu aViewMenu = new JMenu ("View"); + maMenuBar.add (aViewMenu); + ButtonGroup aGroup = new ButtonGroup (); + int nZoomMode = Options.GetInteger ("ZoomMode", Canvas.WHOLE_SCREEN); + JRadioButtonMenuItem aRadioButton = new JRadioButtonMenuItem ( + "Whole Screen", nZoomMode==Canvas.WHOLE_SCREEN); + aGroup.add (aRadioButton); + aViewMenu.add (aRadioButton); + aRadioButton.addActionListener (this); + aRadioButton = new JRadioButtonMenuItem ("200%", nZoomMode==200); + aGroup.add (aRadioButton); + aViewMenu.add (aRadioButton); + aRadioButton.addActionListener (this); + aRadioButton = new JRadioButtonMenuItem ("100%", nZoomMode==100); + aGroup.add (aRadioButton); + aViewMenu.add (aRadioButton); + aRadioButton.addActionListener (this); + aRadioButton = new JRadioButtonMenuItem ("50%", nZoomMode==50); + aGroup.add (aRadioButton); + aViewMenu.add (aRadioButton); + aRadioButton.addActionListener (this); + aRadioButton = new JRadioButtonMenuItem ("25%", nZoomMode==25); + aGroup.add (aRadioButton); + aViewMenu.add (aRadioButton); + aRadioButton.addActionListener (this); + aRadioButton = new JRadioButtonMenuItem ("10%", nZoomMode==10); + aGroup.add (aRadioButton); + aViewMenu.add (aRadioButton); + aRadioButton.addActionListener (this); + + // Options menu. + JMenu aOptionsMenu = new JMenu ("Options"); + maMenuBar.add (aOptionsMenu); + JCheckBoxMenuItem aCBItem; + aCBItem = new JCheckBoxMenuItem ("Show Descriptions", + Options.GetBoolean("ShowDescriptions")); + aOptionsMenu.add (aCBItem); + aCBItem.addActionListener (this); + + aCBItem = new JCheckBoxMenuItem ("Show Names", + Options.GetBoolean ("ShowNames")); + aOptionsMenu.add (aCBItem); + aCBItem.addActionListener (this); + + aCBItem = new JCheckBoxMenuItem ("Show Text", + Options.GetBoolean ("ShowText")); + aOptionsMenu.add (aCBItem); + aCBItem.addActionListener (this); + + aCBItem = new JCheckBoxMenuItem ("Antialiased Rendering", + Options.GetBoolean ("Antialiasing")); + aOptionsMenu.add (aCBItem); + aCBItem.addActionListener (this); + + // Help menu. + JMenu aHelpMenu = new JMenu ("Help"); + maMenuBar.add (aHelpMenu); + + aItem = new JMenuItem ("Help"); + aHelpMenu.add (aItem); + aItem.addActionListener (this); + + aItem = new JMenuItem ("News"); + aHelpMenu.add (aItem); + aItem.addActionListener (this); + + aItem = new JMenuItem ("About"); + aHelpMenu.add (aItem); + aItem.addActionListener (this); + + return maMenuBar; + } + + + + + /** Initialize the AWB. This includes clearing the canvas, add + listeners, creation of a new tree model for the tree list box and + the update of the button states. + + This method may be called any number of times. Note that all + actions will be carried out every time. The main purpose of a + second call is that of a re-initialization after a reconnect. + */ + protected void Initialize () + { + maCanvas.SetTree (maTree); + + SimpleOffice aOffice = SimpleOffice.Instance (); + if (aOffice != null) + { + // Add terminate listener. + if (aOffice.GetDesktop() != null) + aOffice.GetDesktop().addTerminateListener (this); + + } + + mbInitialized = true; + UpdateButtonStates (); + } + + + + + /** Update the states of the buttons according to the internal state of + the AWB. + */ + protected void UpdateButtonStates () + { + // maConnectButton.setEnabled (mbInitialized); + maQuitButton.setEnabled (true); + // maUpdateButton.setEnabled (mbInitialized); + maExpandButton.setEnabled (mbInitialized); + // maShapesButton.setEnabled (mbInitialized); + } + + + + /** Callback for GUI actions from the buttons. + */ + public void actionPerformed (ActionEvent aEvent) + { + String sCommand = aEvent.getActionCommand(); + if (sCommand.equals("connect")) + { + SimpleOffice.Clear(); + Initialize (); + } + else if (sCommand.equals("quit")) + { + Quit (); + } + else if (sCommand.equals("update")) + { +// maTree.Dispose(); + Initialize (); + } + else if (sCommand.equals("shapes")) + { + Cursor aCursor = getCursor(); + setCursor (new Cursor (Cursor.WAIT_CURSOR)); + // maTree.expandShapes(); + setCursor (aCursor); + } + else if (sCommand.equals("expand")) + { + Cursor aCursor = getCursor(); + setCursor (new Cursor (Cursor.WAIT_CURSOR)); + + for (int i=0; i")) + { + Connected (); + } + else if (sCommand.equals ("CreateNewViewWindow")) + { + TreePath aSelectionPath = maTree.getSelectionPath(); + if (aSelectionPath != null) + { + javax.swing.tree.TreeNode aSelectedNode = + (javax.swing.tree.TreeNode)aSelectionPath.getLastPathComponent(); + if (aSelectedNode instanceof XAccessible) { + new ObjectViewContainerWindow (((XAccessible) aSelectedNode).getAccessibleContext()); + } + } + } + else + { + System.err.println("unknown command " + sCommand); + } + } + + + + + /** TreeSelectionListener + Tell the object view and the canvas about the selected object. + */ + public void valueChanged (TreeSelectionEvent aEvent) { + + if (aEvent.isAddedPath()) { + Cursor aCursor = getCursor(); + setCursor (new Cursor (Cursor.WAIT_CURSOR)); + + javax.swing.tree.TreePath aPath = aEvent.getPath(); + maTree.scrollPathToVisible (aPath); + Object aObject = aPath.getLastPathComponent(); + if (aObject instanceof XAccessible) { + XAccessible xAccessible = (XAccessible) aObject; + if (maObjectViewContainer != null) { + ((AccessibilityModel) maTree.getModel()).addEventListener((TreeNode) aObject, maObjectViewContainer); + maObjectViewContainer.SetObject (xAccessible.getAccessibleContext()); + } + } + if (maCanvas != null) + maCanvas.SelectObject ((TreeNode) aObject); + setCursor (aCursor); + } else { + if (maObjectViewContainer != null) { + ((AccessibilityModel) maTree.getModel()).removeEventListener((TreeNode) aEvent.getPath().getLastPathComponent(), maObjectViewContainer); + maObjectViewContainer.SetObject (null); + } + if (maCanvas != null) + maCanvas.SelectObject (null); + } + } + + + + + // XEventListener + public void disposing (EventObject aSourceObj) + { + XFrame xFrame = (XFrame)UnoRuntime.queryInterface( + XFrame.class, aSourceObj.Source); + + if( xFrame != null ) + System.out.println("frame disposed"); + else + System.out.println("controller disposed"); + } + + + + + // XTerminateListener + public void queryTermination(final EventObject aEvent) throws com.sun.star.frame.TerminationVetoException + { + System.out.println ("Terminate Event : " + aEvent); + } + + + + + // XTerminateListener + public void notifyTermination(final EventObject aEvent) + { + System.out.println ("Notifiy Termination Event : " + aEvent); + } + + + /** Called after the AWB is connected to an Office application. + */ + private void Connected () + { + // Clear the tree and by expanding the root node initiate the + // scanning and insertion of nodes for the top-level windows. +// maTree.Clear(); +// maTree.collapseRow (0); +// maTree.expandRow (0); + + // Register the top window listener. + XExtendedToolkit xToolkit = + SimpleOffice.Instance().GetExtendedToolkit(); + if (xToolkit != null) + { + maTree.setToolkit(xToolkit); + } + } + + + /** Called when shutting down the AWB tool. + */ + private void Quit () + { +// maTree.Dispose(); + System.exit (0); + } + + /// The Singleton Workbench object. + private static AccessibilityWorkBench + saWorkBench = null; + + private JPanel maMainPanel; + private JPanel maButtonBar; + private Canvas maCanvas; + private AccessibilityTree maTree; + private ObjectViewContainer maObjectViewContainer; + private JButton + maConnectButton, + maQuitButton, + maUpdateButton, + maExpandButton, + maShapesButton; + private JMenuBar maMenuBar; + private boolean mbInitialized; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/HelpWindow.java b/accessibility/workben/org/openoffice/accessibility/awb/HelpWindow.java new file mode 100644 index 000000000000..2f9671d191e5 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/HelpWindow.java @@ -0,0 +1,187 @@ +package org.openoffice.accessibility.awb; + +import javax.swing.JFrame; +import javax.swing.JScrollPane; +import javax.swing.JEditorPane; +import javax.swing.JButton; +import java.net.URL; +import javax.swing.event.HyperlinkListener; +import javax.swing.event.HyperlinkEvent; +import java.net.MalformedURLException; +import java.io.IOException; +import java.io.File; +import java.awt.event.WindowAdapter; +import java.awt.event.WindowEvent; +import java.awt.GridBagLayout; +import java.awt.GridBagConstraints; +import java.awt.event.ActionListener; +import java.util.LinkedList; + +public class HelpWindow + implements ActionListener +{ + public static synchronized HelpWindow Instance () + { + if (maInstance == null) + maInstance = new HelpWindow(); + return maInstance; + } + + public void loadFile (String sFilename) + { + File aFile = new File (sFilename); + try + { + loadURL (aFile.toURL()); + } + catch (MalformedURLException e) + { + e.printStackTrace (System.err); + } + } + public void loadURL (String sURL) + { + try + { + loadURL (new URL (sURL)); + } + catch (MalformedURLException e) + { + e.printStackTrace (System.err); + } + } + + + + + public void loadURL (URL aURL) + { + maHistory.addLast (aURL); + selectHistoryPage (maHistory.size()-1); + maFrame.toFront (); + } + + + + + private HelpWindow () + { + try + { + maCurrentHistoryEntry = -1; + maHistory = new LinkedList(); + + maFrame = new JFrame (); + maFrame.addWindowListener (new WindowAdapter () + { + public void windowClosing (WindowEvent e) + { + maInstance = null; + } + }); + maContent = createContentWidget(); + + maFrame.getContentPane().setLayout (new GridBagLayout()); + GridBagConstraints aConstraints = new GridBagConstraints (); + aConstraints.gridx = 0; + aConstraints.gridy = 0; + aConstraints.gridwidth = 3; + aConstraints.weightx = 1; + aConstraints.weighty = 1; + aConstraints.fill = GridBagConstraints.BOTH; + maFrame.getContentPane().add (new JScrollPane (maContent), aConstraints); + + aConstraints = new GridBagConstraints(); + aConstraints.gridx = 0; + aConstraints.gridy = 1; + maPrevButton = new JButton ("Prev"); + maFrame.getContentPane().add (maPrevButton, aConstraints); + maPrevButton.addActionListener (this); + + aConstraints = new GridBagConstraints(); + aConstraints.gridx = 1; + aConstraints.gridy = 1; + maNextButton = new JButton ("Next"); + maFrame.getContentPane().add (maNextButton, aConstraints); + maNextButton.addActionListener (this); + + aConstraints = new GridBagConstraints(); + aConstraints.gridx = 2; + aConstraints.gridy = 1; + aConstraints.anchor = GridBagConstraints.EAST; + JButton aButton = new JButton ("Close"); + maFrame.getContentPane().add (aButton, aConstraints); + aButton.addActionListener (this); + + maFrame.setSize (600,400); + maFrame.setVisible (true); + } + catch (Exception e) + {} + } + + public void actionPerformed (java.awt.event.ActionEvent e) + { + if (e.getActionCommand().equals("Prev")) + { + selectHistoryPage (maCurrentHistoryEntry - 1); + } + else if (e.getActionCommand().equals("Next")) + { + selectHistoryPage (maCurrentHistoryEntry + 1); + } + else if (e.getActionCommand().equals("Close")) + { + maFrame.dispose (); + maInstance = null; + } + } + + private JEditorPane createContentWidget () + { + JEditorPane aContent = new JEditorPane (); + aContent.setEditable (false); + aContent.addHyperlinkListener (new HyperlinkListener() + { + public void hyperlinkUpdate (HyperlinkEvent e) + { + if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) + HelpWindow.Instance().loadURL (e.getURL()); + } + }); + return aContent; + } + + private void selectHistoryPage (int i) + { + if (i < 0) + i = 0; + else if (i >= maHistory.size()-1) + i = maHistory.size()-1; + if (i != maCurrentHistoryEntry) + { + URL aURL = (URL)maHistory.get (i); + try + { + maContent.setPage (aURL); + } + catch (java.io.IOException ex) + { + ex.printStackTrace(System.err); + } + + maCurrentHistoryEntry = i; + } + + maPrevButton.setEnabled (maCurrentHistoryEntry > 0); + maNextButton.setEnabled (maCurrentHistoryEntry < maHistory.size()-1); + } + + private static HelpWindow maInstance = null; + private JFrame maFrame; + private JEditorPane maContent; + private LinkedList maHistory; + private int maCurrentHistoryEntry; + private JButton maPrevButton; + private JButton maNextButton; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/Makefile b/accessibility/workben/org/openoffice/accessibility/awb/Makefile new file mode 100644 index 000000000000..d38799bed109 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/Makefile @@ -0,0 +1,13 @@ +# $Id: Makefile,v 1.1 2003/06/13 16:30:18 af Exp $ + +all : package + +ROOT=../../../.. +PACKAGE = org.openoffice.accessibility.awb +SUBDIRS = canvas event tree view + +include makefile.common + +include $(ROOT)/makefile.in + +package: subdirs $(CLASS_FILES) diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java b/accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java new file mode 100644 index 000000000000..9edf5dd928ae --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java @@ -0,0 +1,356 @@ +/************************************************************************* + * + * $RCSfile: Canvas.java,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obr $ $Date: 2003/09/19 09:21:35 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.canvas; + +import java.awt.Color; +import java.awt.Dimension; +import java.awt.Graphics; +import java.awt.Graphics2D; +import java.awt.Rectangle; +import java.awt.RenderingHints; +import java.awt.Toolkit; +import java.awt.geom.Rectangle2D; +import java.util.Iterator; +import javax.swing.JPanel; +import javax.swing.JScrollPane; +import javax.swing.JViewport; +import javax.swing.event.TreeSelectionEvent; +import javax.swing.tree.TreePath; + +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleComponent; + +import org.openoffice.accessibility.misc.Options; + +/** This canvas displays accessible objects graphically. Each accessible + object with graphical representation is represented by an + CanvasShape object and has to be added by the + addAccessible member function. + +

The canvas listens to selection events of the associated JTree and + highlights the first selected node of that tree.

+*/ +public class Canvas + extends JPanel +{ + // This constant can be passed to SetZoomMode to always show the whole screen. + public static final int WHOLE_SCREEN = -1; + + public Canvas () + { + super (true); + maShapeList = new ShapeContainer (this); + maMouseObserver = new MouseObserver (this); + maTree = null; + mnHOffset = 0; + mnVOffset = 0; + mnScale = 1; + maLastWidgetSize = new Dimension (0,0); + } + + + + /** Tell the canvas which tree to use to highlight accessible + objects and to observe for changes in the tree structure. + */ + public void SetTree (javax.swing.JTree aTree) + { + if (aTree != maTree) + { + maTree = aTree; + maShapeList.SetTree (maTree); + maMouseObserver.SetTree (maTree); + } + } + + + + + private void Clear () + { + maShapeList.Clear(); + } + + + + + public Iterator GetShapeIterator () + { + return maShapeList.GetIterator(); + } + + + + + public void paintComponent (Graphics g) + { + synchronized (g) + { + super.paintComponent (g); + + Graphics2D g2 = (Graphics2D)g; + if (Options.GetBoolean("Antialiasing")) + g2.setRenderingHint (RenderingHints.KEY_ANTIALIASING, + RenderingHints.VALUE_ANTIALIAS_ON); + else + g2.setRenderingHint (RenderingHints.KEY_ANTIALIASING, + RenderingHints.VALUE_ANTIALIAS_OFF); + + setupTransformation (); + g2.translate (mnHOffset, mnVOffset); + g2.scale (mnScale, mnScale); + + // Draw the screen representation to give a hint of the location of the + // accessible object on the screen. + Dimension aScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); + Rectangle2D.Double aScreen = new Rectangle2D.Double ( + 0, + 0, + aScreenSize.getWidth(), + aScreenSize.getHeight()); + // Fill the screen rectangle and draw a frame arround it to increase its visibility. + g2.setColor (new Color (250,240,230)); + g2.fill (aScreen); + g2.setColor (Color.BLACK); + g2.draw (aScreen); + + synchronized (maShapeList) + { + Iterator aShapeIterator = maShapeList.GetIterator(); + boolean bShowDescriptions = Options.GetBoolean ("ShowDescriptions"); + boolean bShowNames = Options.GetBoolean ("ShowNames"); + boolean bShowText = Options.GetBoolean ("ShowText"); + while (aShapeIterator.hasNext()) + { + CanvasShape aCanvasShape = + (CanvasShape)aShapeIterator.next(); + try + { + aCanvasShape.paint ( + g2, + bShowDescriptions, bShowNames, bShowText); + } + catch (Exception aException) + { + System.err.println ("caught exception while painting a shape:" + + aException); + aException.printStackTrace (System.err); + } + } + } + + // Paint highlighted frame around active object as the last thing. + if (maActiveObject != null) + maActiveObject.paint_highlight (g2); + } + } + + + + + /** Set up the transformation so that the graphical display can show a + centered representation of the whole screen. + */ + private void setupTransformation () + { + // Turn off scrollbars when showing the whole screen. Otherwise show them when needed. + JViewport aViewport = (JViewport)getParent(); + JScrollPane aScrollPane = (JScrollPane)aViewport.getParent(); + int nZoomMode = Options.GetInteger ("ZoomMode", WHOLE_SCREEN); + if (nZoomMode == WHOLE_SCREEN) + { + if (aScrollPane.getHorizontalScrollBarPolicy() + != JScrollPane.HORIZONTAL_SCROLLBAR_NEVER) + aScrollPane.setHorizontalScrollBarPolicy ( + JScrollPane.HORIZONTAL_SCROLLBAR_NEVER); + if (aScrollPane.getVerticalScrollBarPolicy() + != JScrollPane.VERTICAL_SCROLLBAR_NEVER) + aScrollPane.setVerticalScrollBarPolicy ( + JScrollPane.VERTICAL_SCROLLBAR_NEVER); + } + else + { + if (aScrollPane.getHorizontalScrollBarPolicy() + != JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED) + aScrollPane.setHorizontalScrollBarPolicy ( + JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); + if (aScrollPane.getVerticalScrollBarPolicy() + != JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED) + aScrollPane.setVerticalScrollBarPolicy ( + JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED); + } + + Dimension aScreenSize = Toolkit.getDefaultToolkit().getScreenSize(); + Dimension aWidgetSize = aViewport.getSize(); + { + if ((aScreenSize.getWidth() > 0) && (aScreenSize.getHeight() > 0)) + { + if (nZoomMode == WHOLE_SCREEN) + { + // Calculate the scales that would map the screen onto the + // widget in both of the coordinate axes and select the + // smaller + // of the two: it maps the screen onto the widget in both + // axes at the same time. + double nHScale = (aWidgetSize.getWidth() - 10) + / aScreenSize.getWidth(); + double nVScale = (aWidgetSize.getHeight() - 10) + / aScreenSize.getHeight(); + if (nHScale < nVScale) + mnScale = nHScale; + else + mnScale = nVScale; + } + else + { + mnScale = nZoomMode / 100.0; + } + + // Calculate offsets that center the scaled screen inside + // the widget. + mnHOffset = (aWidgetSize.getWidth() + - mnScale*aScreenSize.getWidth()) / 2.0; + mnVOffset = (aWidgetSize.getHeight() + - mnScale*aScreenSize.getHeight()) / 2.0; + if (mnHOffset < 0) + mnHOffset = 0; + if (mnVOffset < 0) + mnVOffset = 0; + + setPreferredSize (new Dimension ( + (int)(2*mnHOffset + mnScale * aScreenSize.getWidth()), + (int)(2*mnVOffset + mnScale * aScreenSize.getHeight()))); + revalidate (); + } + else + { + // In case of a degenerate (not yet initialized?) screen size + // use some meaningless default values. + mnScale = 1; + mnHOffset = 0; + mnVOffset = 0; + } + } + maLastWidgetSize = aWidgetSize; + } + + + + protected boolean HighlightObject (CanvasShape aNewActiveObject) + { + if (aNewActiveObject != maActiveObject) + { + if (maActiveObject != null) + maActiveObject.Highlight (false); + + maActiveObject = aNewActiveObject; + if (maActiveObject != null) + { + /* if (maTree != null) + { + TreePath aPath = new TreePath ( + maActiveObject.GetNode().GetPath()); + maTree.scrollPathToVisible (aPath); + maTree.setSelectionPath (aPath); + maTree.repaint (); + } + */ + maActiveObject.Highlight (true); + } + repaint (); + return true; + } + else + return false; + } + + + + + /** Called when the selection of the tree changes. Highlight the + corresponding graphical representation of the object. + */ + public void SelectObject (javax.swing.tree.TreeNode aNode) + { + CanvasShape aCanvasShape = maShapeList.Get (aNode); + HighlightObject (aCanvasShape); + } + + + + + private int + mnXAnchor, + mnYAnchor, + maResizeFlag; + private double + mnHOffset, + mnVOffset, + mnScale; + private CanvasShape maActiveObject; + private javax.swing.JTree maTree; + // The size of the widget at the last call of setupTransformation() + private Dimension maLastWidgetSize; + private ShapeContainer maShapeList; + private MouseObserver maMouseObserver; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java b/accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java new file mode 100644 index 000000000000..5b1b2fb1f4e2 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java @@ -0,0 +1,446 @@ +/************************************************************************* + * + * $RCSfile: CanvasShape.java,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obr $ $Date: 2003/09/19 09:21:35 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.canvas; + +import java.awt.Color; +import java.awt.Dimension; +import java.awt.Graphics2D; +import java.awt.Point; +import java.awt.Rectangle; +import java.awt.geom.Point2D; +import java.awt.geom.Rectangle2D; +import java.awt.geom.AffineTransform; +import java.awt.geom.NoninvertibleTransformException; + + +import com.sun.star.accessibility.*; +import com.sun.star.lang.EventObject; +import com.sun.star.uno.UnoRuntime; + + +class CanvasShape implements XAccessibleEventListener +{ + public final Color maHighlightColor = Color.red; + public final Color maSelectionColor = Color.green; + public final Color maFocusColor = Color.blue; + + public CanvasShape (javax.swing.tree.TreeNode aNode, Canvas aCanvas) + { + maNode = aNode; + msName = ""; + msDescription = ""; + maShape = new Rectangle2D.Double (-10,-10,10,10); + maPosition = new Point (-10,-10); + maSize = new Dimension (10,10); + maFgColor = java.awt.Color.black; + maBgColor = Color.blue; + mnRole = -1; + mbHighlighted = false; + mbSelected = false; + mbFocused = false; + maCanvas = aCanvas; + + Update (); + } + + + + + public javax.swing.tree.TreePath getNodePath (javax.swing.tree.TreeNode node) + { + javax.swing.tree.TreeNode parent = node.getParent(); + return (parent != null) ? + getNodePath(parent).pathByAddingChild(node) : + new javax.swing.tree.TreePath(node); + } + + public javax.swing.tree.TreePath getNodePath () + { + return getNodePath(maNode); + } + + + + /** Update the data obtained from the AccessibilityNode + object. + */ + public void Update () + { + if (maNode instanceof XAccessible) { + mxContext = ((XAccessible) maNode).getAccessibleContext(); + mxComponent = (XAccessibleComponent)UnoRuntime.queryInterface( + XAccessibleComponent.class, mxContext); + } + + if (mxContext != null) + { + msName = mxContext.getAccessibleName(); + msDescription = mxContext.getAccessibleDescription(); + mnRole = mxContext.getAccessibleRole(); + + // Extract the selected and focused flag. + XAccessibleStateSet xStateSet = mxContext.getAccessibleStateSet (); + if (xStateSet != null) + { + mbSelected = xStateSet.contains (AccessibleStateType.SELECTED); + mbFocused = xStateSet.contains (AccessibleStateType.FOCUSED); + } + } + + UpdateGeometry (); + + if (mxComponent != null) + { + // Note: alpha values in office 0..255 have to be mapped to + // 255..0 in Java + Color aCol = new Color (mxComponent.getForeground(), true); + maFgColor = new Color (aCol.getRed (), + aCol.getGreen (), + aCol.getBlue (), + 0xff - aCol.getAlpha ()); + aCol = new Color (mxComponent.getBackground(), true); + maBgColor = new Color (aCol.getRed (), + aCol.getGreen (), + aCol.getBlue (), + 0xff - aCol.getAlpha ()); + } + } + + + + public void UpdateGeometry () + { + if (mxComponent != null) + { + com.sun.star.awt.Point aLocationOnScreen = + mxComponent.getLocationOnScreen(); + com.sun.star.awt.Size aSizeOnScreen = mxComponent.getSize(); + maPosition = new Point ( + aLocationOnScreen.X, + aLocationOnScreen.Y); + maSize = new Dimension ( + aSizeOnScreen.Width, + aSizeOnScreen.Height); + } + } + + + + /** Paint the object into the specified canvas. It is transformed + according to the specified offset and scale. + */ + public void paint ( + Graphics2D g, + boolean bShowDescription, + boolean bShowName, + boolean bShowText) + { + try{ + // Transform the object's position and size according to the + // specified offset and scale. + Point aLocation = new Point(); + maShape = new Rectangle2D.Double ( + maPosition.x, + maPosition.y, + maSize.width, + maSize.height); + maTransformation = g.getTransform(); + + // Fill the object's bounding box with its background color if it + // has no children. + if (mxContext.getAccessibleChildCount() == 0) + { + g.setColor (maBgColor); + g.fill (maShape); + } + + // Remove alpha channel from color before drawing the frame. + Color color = maFgColor; + if (maFgColor.getAlpha()<128) + color = new Color (maFgColor.getRed(), maFgColor.getGreen(), maFgColor.getBlue()); + g.setColor (color); + g.draw (maShape); + + if (mbFocused) + { + g.setColor (maFocusColor); + for (int x=0; x<=2; x++) + for (int y=0; y<=2; y++) + g.fill ( + new Rectangle2D.Double ( + maShape.x + x/2.0 * maShape.width-3, + maShape.y + y/2.0 * maShape.height-3, + 6, + 6)); + } + if (mbSelected) + { + g.setColor (maSelectionColor); + for (int x=0; x<=2; x++) + for (int y=0; y<=2; y++) + g.draw ( + new Rectangle2D.Double ( + maShape.x + x/2.0 * maShape.width-2, + maShape.y + y/2.0 * maShape.height-2, + 4, + 4)); + } + + // Write the object's text OR name and description. + g.setColor (maFgColor); + if (bShowName) + paintName (g); + if (bShowDescription) + paintDescription (g); + if (bShowText) + paintText (g); + } + catch (Exception e) + { // don't care + } + } + + + public void paint_highlight (Graphics2D g) + { + if (mbHighlighted) + g.setColor (maHighlightColor); + else + g.setColor (maFgColor); + g.draw (maShape); + } + + + + + private void paintName (Graphics2D g) + { + g.drawString ("Name: " + msName, + (float)maShape.x+5, + (float)maShape.y+15); + } + + + + private void paintDescription (Graphics2D g) + { + g.drawString ("Description: " + msDescription, + (float)maShape.x+5, + (float)maShape.y+35); + } + + + + + private void paintText (Graphics2D g) + { + XAccessibleText xText = null; + // get XAccessibleText + xText = (XAccessibleText)UnoRuntime.queryInterface( + XAccessibleText.class, mxContext); + + // Draw every character in the text string. + if (xText != null) + { + String sText = xText.getText(); + try + { + for(int i = 0; i < sText.length(); i++) + { + com.sun.star.awt.Rectangle aRect = + xText.getCharacterBounds(i); + + double x = maShape.x + aRect.X; + double y = maShape.y + aRect.Y + aRect.Height; + + g.drawString (sText.substring(i, i+1), (float)x, (float)y); + } + } + catch (com.sun.star.lang.IndexOutOfBoundsException e) + {} + } + } + + + /** Compute whether the specified point lies inside the object's + bounding box. + */ + public boolean Contains (int x, int y) + { + Point2D aPosition = new Point2D.Double (x,y); + try + { + maTransformation.inverseTransform (aPosition, aPosition); + // System.out.println ("transformed "+x+","+y+" to "+aPosition); + } + catch (NoninvertibleTransformException aException) + { + return false; + } + return (maShape.contains (aPosition)); + } + + public void Highlight (boolean bFlag) + { + mbHighlighted = bFlag; + } + + public boolean IsHighlighted () + { + return mbHighlighted; + } + + public Rectangle GetBBox () + { + return new Rectangle (maPosition, maSize); + } + + public Point getOrigin () + { + return maPosition; + } + + public Dimension GetSize () + { + return maSize; + } + + public int getRole () + { + return mnRole; + } + + public XAccessibleContext getContext () + { + return mxContext; + } + + public XAccessibleComponent getComponent () + { + return mxComponent; + } + + public String toString () + { + return ">"+msName+", "+msDescription+" +"+maPosition.x+"+"+maPosition.y + +"x"+maSize.width+"x"+maSize.height+"<"; + } + + /** */ + public void notifyEvent(com.sun.star.accessibility.AccessibleEventObject aEvent) { + try { + switch (aEvent.EventId) { + case AccessibleEventId.BOUNDRECT_CHANGED: + case AccessibleEventId.VISIBLE_DATA_CHANGED: + UpdateGeometry (); + maCanvas.repaint(); + break; + default: + break; + } + } catch (Exception aException) { + System.err.println ("caught exception while updating a shape:" + + aException); + aException.printStackTrace (System.err); + } + } + + /** Callback for disposing events. + */ + public void disposing (com.sun.star.lang.EventObject e) + { + System.out.println ("Disposing"); + } + + + + + private Canvas + maCanvas; + private javax.swing.tree.TreeNode + maNode; + private XAccessibleContext + mxContext; + private XAccessibleComponent + mxComponent; + private String + msDescription, + msName; + private Rectangle2D.Double maShape; + private AffineTransform maTransformation; + private Point maPosition; + private Dimension + maTransformedSize, + maSize; + private Color + maFgColor, + maBgColor; + private boolean + // Highlighting objects is an internal concept. Corresponds to selection in the tree view. + mbHighlighted, + // Set when the accessible object is selected. + mbSelected, + // Set when the accessible object is focused. + mbFocused; + private int + mnRole; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/Makefile b/accessibility/workben/org/openoffice/accessibility/awb/canvas/Makefile new file mode 100644 index 000000000000..8d9688433ff9 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/Makefile @@ -0,0 +1,15 @@ +# $Id: Makefile,v 1.1 2003/06/13 16:30:21 af Exp $ + +all : package + +ROOT=../../../../.. +PACKAGE = org.openoffice.accessibility.awb.canvas +SUBDIRS = +include makefile.common + +include $(ROOT)/makefile.in + + +package : $(CLASS_FILES) + + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/MouseObserver.java b/accessibility/workben/org/openoffice/accessibility/awb/canvas/MouseObserver.java new file mode 100644 index 000000000000..3e7e2807906d --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/MouseObserver.java @@ -0,0 +1,104 @@ +package org.openoffice.accessibility.awb.canvas; + +import java.awt.Dimension; +import java.awt.event.InputEvent; +import java.awt.event.MouseEvent; +import java.awt.event.MouseListener; +import java.awt.event.MouseMotionListener; +import java.util.Iterator; +import javax.swing.tree.TreePath; + + +/** Observe the mouse and highlight shapes of the canvas when clicked. +*/ +public class MouseObserver + implements MouseListener, + MouseMotionListener +{ + public MouseObserver (Canvas aCanvas) + { + maCanvas = aCanvas; + maCanvas.addMouseListener (this); + maCanvas.addMouseMotionListener (this); + } + + + public void SetTree (javax.swing.JTree aTree) + { + maTree = aTree; + } + + public void mouseClicked (MouseEvent e) + {} + + public void mousePressed (MouseEvent e) + { + CanvasShape aObjectUnderMouse = FindCanvasShapeUnderMouse (e); + maTree.clearSelection(); + if (aObjectUnderMouse != null) + { + TreePath aPath = aObjectUnderMouse.getNodePath(); + if ((e.getModifiers() & InputEvent.CTRL_MASK) != 0) + maTree.expandPath (aPath); + // Selecting the entry will eventually highlight the shape. + maTree.setSelectionPath (aPath); + maTree.makeVisible (aPath); + } + } + + public void mouseReleased (MouseEvent e) + {} + + public void mouseEntered (MouseEvent e) + {} + + public void mouseExited (MouseEvent e) + {} + + public void mouseDragged (MouseEvent e) + { + } + + public void mouseMoved (MouseEvent e) + { + if ((e.getModifiers() & InputEvent.SHIFT_MASK) != 0) + maCanvas.HighlightObject (FindCanvasShapeUnderMouse (e)); + } + + + /** Search for the smallest shape that contains the mouse position. + */ + protected CanvasShape FindCanvasShapeUnderMouse (MouseEvent e) + { + Dimension aSmallestSize = null; + Iterator maShapeIterator = maCanvas.GetShapeIterator(); + CanvasShape aShapeUnderMouse = null; + while (maShapeIterator.hasNext()) + { + CanvasShape aShape = (CanvasShape)maShapeIterator.next(); + if (aShape != null) + if (aShape.Contains (e.getX(),e.getY())) + { + if (aShapeUnderMouse == null) + { + aSmallestSize = aShape.GetSize(); + aShapeUnderMouse = aShape; + } + else + { + Dimension aSize = aShape.GetSize(); + if (aSize.getWidth()= "140" + +.INCLUDE : makefile.common + +JAVACLASSFILES= $(foreach,i,$(JAVAFILES) $(CLASSDIR)$/$(PACKAGE)$/$(i:b).class) + +#JARTARGET = $(TARGET).jar +#JARCOMPRESS = TRUE +JARCLASSDIRS = $(PACKAGE) org/openoffice/java/accessibility/awb +#CUSTOMMANIFESTFILE = manifest +.ENDIF + +# --- Targets ------------------------------------------------------ + + +.INCLUDE : target.mk + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/makefile.common b/accessibility/workben/org/openoffice/accessibility/awb/makefile.common new file mode 100644 index 000000000000..80633d7e66ea --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/makefile.common @@ -0,0 +1,3 @@ +JAVAFILES = \ + AccessibilityWorkBench.java \ + HelpWindow.java diff --git a/accessibility/workben/org/openoffice/accessibility/awb/makefile.mk b/accessibility/workben/org/openoffice/accessibility/awb/makefile.mk new file mode 100644 index 000000000000..eb744d465cfb --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/makefile.mk @@ -0,0 +1,88 @@ +#************************************************************************* +# +# $RCSfile: makefile.mk,v $ +# +# The Contents of this file are made available subject to the terms of +# either of the following licenses +# +# - GNU Lesser General Public License Version 2.1 +# - Sun Industry Standards Source License Version 1.1 +# +# Sun Microsystems Inc., October, 2000 +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2000 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1, as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +# +# Sun Industry Standards Source License Version 1.1 +# ================================================= +# The contents of this file are subject to the Sun Industry Standards +# Source License Version 1.1 (the "License"); You may not use this file +# except in compliance with the License. You may obtain a copy of the +# License at http://www.openoffice.org/license.html. +# +# Software provided under this License is provided on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, +# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, +# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. +# See the License for the specific provisions governing your rights and +# obligations concerning the Software. +# +# The Initial Developer of the Original Code is: Sun Microsystems, Inc. +# +# Copyright: 2000 by Sun Microsystems, Inc. +# +# All Rights Reserved. +# +# Contributor(s): _______________________________________ +# +# +# +#************************************************************************* + +PRJNAME = awb +PRJ = ..$/..$/..$/..$/.. +TARGET = java_awb +PACKAGE = org$/openoffice$/accessibility$/awb + +USE_JAVAVER:=TRUE + +# --- Settings ----------------------------------------------------- + +.INCLUDE : settings.mk + +.IF "$(JAVAVER:s/.//)" >= "140" +JARFILES = sandbox.jar jurt.jar unoil.jar ridl.jar + +.INCLUDE : makefile.common + +JAVACLASSFILES= $(foreach,i,$(JAVAFILES) $(CLASSDIR)$/$(PACKAGE)$/$(i:b).class) + +JARTARGET = $(TARGET).jar +JARCOMPRESS = TRUE +JARCLASSDIRS = $(PACKAGE) \ + org$/openoffice$/accessibility$/misc +CUSTOMMANIFESTFILE = manifest +.ENDIF + +# --- Targets ------------------------------------------------------ + + +.INCLUDE : target.mk + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/manifest b/accessibility/workben/org/openoffice/accessibility/awb/manifest new file mode 100644 index 000000000000..951f9ec3128f --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/manifest @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.openoffice.accessibility.awb.AccessibilityWorkBench +Class-Path: classes.jar sandbox.jar ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar xt.jar jaxp.jar diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java new file mode 100644 index 000000000000..6bdb5976f843 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java @@ -0,0 +1,188 @@ +/************************************************************************* + * + * $RCSfile: AccessibilityModel.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: obr $ $Date: 2003/09/19 09:21:39 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.tree; + +import javax.swing.SwingUtilities; +import javax.swing.tree.TreeNode; +import javax.swing.tree.MutableTreeNode; +import javax.swing.tree.DefaultMutableTreeNode; + +import com.sun.star.uno.UnoRuntime; +import com.sun.star.awt.XExtendedToolkit; +import com.sun.star.awt.XTopWindow; +import com.sun.star.awt.XTopWindowListener; +import com.sun.star.accessibility.AccessibleRole; +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleEventBroadcaster; +import com.sun.star.accessibility.XAccessibleEventListener; + +/** + * + */ +public abstract class AccessibilityModel extends javax.swing.tree.DefaultTreeModel { + + protected java.util.Hashtable nodeList; + protected static DefaultMutableTreeNode disconnectedRootNode = + new DefaultMutableTreeNode(""); + + /** Creates a new instance of AccessibilityModel */ + public AccessibilityModel() { + super(disconnectedRootNode, false); + nodeList = new java.util.Hashtable(); + } + + /* Convenience method that creates a new Toolkit node from xToolkit + * and sets as the new root object of the tree. + */ + public synchronized void setRoot(XExtendedToolkit xToolkit) { + if (xToolkit != null) { + try { + // remove old root node as topwindow listener + if (getRoot() instanceof ToolkitNode) { + ToolkitNode tn = (ToolkitNode) getRoot(); + if (tn.xToolkit != null) { + tn.xToolkit.removeTopWindowListener(tn); + } + } + nodeList.clear(); + setRoot(new ToolkitNode(xToolkit, this)); + xToolkit.addTopWindowListener((ToolkitNode) getRoot()); + } catch (com.sun.star.uno.RuntimeException e) { + // FIXME: error message ! + } + } + } + + /* Appends the new child to parent's child list */ + public void addNodeInto(MutableTreeNode newChild, MutableTreeNode parent) { + int index = parent.getChildCount(); + if (newChild != null && newChild.getParent() == parent) { + index -= 1; + } + insertNodeInto(newChild, parent, index); + } + + /** Adds listener to the listener chain of node */ + public static void addEventListener(TreeNode node, XAccessibleEventListener listener) { + if (node instanceof AccessibilityNode) { + ((AccessibilityNode) node).addEventListener(listener); + } + } + + /** Removes listener from the listener chain of node */ + public static void removeEventListener(TreeNode node, XAccessibleEventListener listener) { + if (node instanceof AccessibilityNode) { + ((AccessibilityNode) node).removeEventListener(listener); + } + } + + protected abstract AccessibilityNode createWindowNode(XAccessible xAccessible, + XAccessibleContext xAccessibleContext); + protected abstract AccessibilityNode createNode(XAccessible xAccessible); + + /** Adds xAccessible,node to the internal hashtable */ + public AccessibilityNode putNode(XAccessible xAccessible, AccessibilityNode node) { + if (xAccessible != null) { + String oid = UnoRuntime.generateOid(xAccessible); + java.lang.ref.WeakReference ref = (java.lang.ref.WeakReference) + nodeList.put(oid, new java.lang.ref.WeakReference(node)); + if (ref != null) { + return (AccessibilityNode) ref.get(); + } + } + return null; + } + + /** Returns the AccessibilityNode for xAccessible */ + public AccessibilityNode findNode(XAccessible xAccessible) { + if (xAccessible != null) { + String oid = UnoRuntime.generateOid(xAccessible); + java.lang.ref.WeakReference ref = + (java.lang.ref.WeakReference) nodeList.get(oid); + if (ref != null) { + return (AccessibilityNode) ref.get(); + } + } + return null; + } + + /** Removes the AccessibilityNode for xAccessible from the internal hashtable */ + public AccessibilityNode removeNode(XAccessible xAccessible) { + if (xAccessible != null) { + String oid = UnoRuntime.generateOid(xAccessible); + java.lang.ref.WeakReference ref = + (java.lang.ref.WeakReference) nodeList.remove(oid); + if (ref != null) { + return (AccessibilityNode) ref.get(); + } + } + return null; + } + + public AccessibilityNode removeNode(Object o) { + if (o instanceof XAccessible) { + return removeNode((XAccessible) o); + } + return null; + } +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java new file mode 100644 index 000000000000..36c5d71b240e --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java @@ -0,0 +1,200 @@ +/************************************************************************* + * + * $RCSfile: AccessibilityNode.java,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obr $ $Date: 2003/09/19 09:21:39 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.tree; + +import org.openoffice.accessibility.misc.AccessibleEventMulticaster; + +import javax.swing.tree.DefaultMutableTreeNode; +import javax.swing.SwingUtilities; + +import com.sun.star.accessibility.AccessibleEventId; +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleEventBroadcaster; +import com.sun.star.accessibility.XAccessibleEventListener; + +import com.sun.star.uno.UnoRuntime; + +class AccessibilityNode extends DefaultMutableTreeNode implements XAccessible, + XAccessibleEventListener, XAccessibleEventBroadcaster { + + protected AccessibilityModel treeModel; + protected XAccessibleContext unoAccessibleContext; + + private XAccessibleEventListener listener; + + public AccessibilityNode(AccessibilityModel treeModel) { + this.treeModel = treeModel; + } + + protected void finalize() throws java.lang.Throwable { + if (userObject != null) { + treeModel.removeNode(userObject); + } + } + + /** Sets the XAccessibleContext object of this node */ + public void setAccessibleContext(XAccessibleContext xAccessibleContext) { + unoAccessibleContext = xAccessibleContext; + } + + /** Returns the XAccessibleContext object of this node */ + public XAccessibleContext getAccessibleContext() { + return unoAccessibleContext; + } + + /** Attaches or Detaches the itself as listener to unoAccessibleContext */ + protected void setAttached(boolean attach) { + XAccessibleContext xAccessibleContext = unoAccessibleContext; + if (xAccessibleContext != null) { + try { + XAccessibleEventBroadcaster xAccessibleEventBroadcaster = + (XAccessibleEventBroadcaster) UnoRuntime.queryInterface( + XAccessibleEventBroadcaster.class, xAccessibleContext); + if (xAccessibleEventBroadcaster != null) { + if (attach) { + xAccessibleEventBroadcaster.addEventListener(this); + } else { + xAccessibleEventBroadcaster.removeEventListener(this); + } + } + } catch (com.sun.star.uno.RuntimeException e) { + // FIXME: error message ! + } + } + } + + public void disposing(com.sun.star.lang.EventObject eventObject) { + XAccessibleEventListener listener = this.listener; + if (listener != null) { + listener.disposing(eventObject); + } + + treeModel.removeNode(userObject); + userObject = null; + unoAccessibleContext = null; + // FIXME: mark the object as being disposed in the tree view ! + } + + protected void handleChildRemoved(XAccessible xAccessible) { + final AccessibilityNode node = treeModel.findNode(xAccessible); + if (node != null) { + SwingUtilities.invokeLater(new java.lang.Runnable() { + public void run() { + treeModel.removeNodeFromParent(node); + } + }); + } + } + + protected void handleChildAdded(XAccessible xAccessible) { + final AccessibilityNode parent = this; + final AccessibilityNode node = treeModel.createNode(xAccessible); + if (node != null) { + SwingUtilities.invokeLater(new java.lang.Runnable() { + public void run() { + try { + XAccessibleContext xAC = node.getAccessibleContext(); + if (xAC != null) { + treeModel.insertNodeInto(node, parent, + xAC.getAccessibleIndexInParent()); + } + } catch (com.sun.star.uno.RuntimeException e) { + // FIXME: output + } + } + }); + } + } + + public void notifyEvent(AccessibleEventObject accessibleEventObject) { + if (accessibleEventObject.EventId == AccessibleEventId.CHILD) { + XAccessible xAccessible = (XAccessible) UnoRuntime.queryInterface( + XAccessible.class, accessibleEventObject.OldValue); + if (xAccessible != null) { + handleChildRemoved(xAccessible); + } + + xAccessible = (XAccessible) UnoRuntime.queryInterface( + XAccessible.class, accessibleEventObject.NewValue); + if (xAccessible != null) { + handleChildAdded(xAccessible); + } + } + + XAccessibleEventListener listener = this.listener; + if (listener != null) { + listener.notifyEvent(accessibleEventObject); + } + } + + public synchronized void addEventListener(com.sun.star.accessibility.XAccessibleEventListener xAccessibleEventListener) { + listener = AccessibleEventMulticaster.add(listener, xAccessibleEventListener); + } + + public synchronized void removeEventListener(com.sun.star.accessibility.XAccessibleEventListener xAccessibleEventListener) { + listener = AccessibleEventMulticaster.remove(listener, xAccessibleEventListener); + } +} + + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java new file mode 100644 index 000000000000..f7e71d21574e --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java @@ -0,0 +1,123 @@ +/************************************************************************* + * + * $RCSfile: AccessibilityTree.java,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obr $ $Date: 2003/09/19 09:21:39 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.tree; + +import org.openoffice.accessibility.misc.NameProvider; + +import javax.swing.tree.DefaultTreeModel; +import javax.swing.tree.DefaultMutableTreeNode; + +import com.sun.star.awt.XExtendedToolkit; +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleContext; + +/** + * + */ +public class AccessibilityTree extends javax.swing.JTree { + + /** Creates a new instance of AccessibilityTree */ + public AccessibilityTree(javax.swing.tree.TreeModel model) { + super(model); + // always show handles to indicate expandable / collapsable + showsRootHandles = true; + } + + public void setToolkit(XExtendedToolkit xToolkit) { + AccessibilityModel model = (AccessibilityModel) getModel(); + if (model != null) { + // hide the root node when connected + setRootVisible(xToolkit == null); + // update the root node + model.setRoot(xToolkit); + model.reload(); + } + } + + public String convertValueToText(Object value, boolean selected, + boolean expanded, boolean leaf, int row, boolean hasFocus) { + + if (value instanceof DefaultMutableTreeNode) { + DefaultMutableTreeNode node = (DefaultMutableTreeNode) value; + + Object userObject = node.getUserObject(); + if (userObject != null && userObject instanceof XAccessible) { + XAccessible xAccessible = (XAccessible) userObject; + try { + XAccessibleContext xAC = xAccessible.getAccessibleContext(); + if (xAC != null) { + String name = xAC.getAccessibleName(); + if (name.length() == 0) { + name = new String (""); + } + value = name + " / " + NameProvider.getRoleName(xAC.getAccessibleRole()); + } + } catch (com.sun.star.uno.RuntimeException e) { + value = "???"; + } + } + } + + return super.convertValueToText(value, selected, expanded, leaf, row, hasFocus); + } + +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java new file mode 100644 index 000000000000..acecd0100a2e --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java @@ -0,0 +1,251 @@ +/************************************************************************* + * + * $RCSfile: AccessibilityTreeModel.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:28 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc.,y October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.tree; + +import com.sun.star.accessibility.XAccessible; +import com.sun.star.awt.XExtendedToolkit; +import com.sun.star.lang.DisposedException; +import com.sun.star.lang.IndexOutOfBoundsException; + +import org.openoffice.accessibility.misc.OfficeConnection; +import org.openoffice.accessibility.awb.event.EventQueue; + +import javax.swing.tree.DefaultTreeModel; +import javax.swing.tree.TreeNode; + + +public class AccessibilityTreeModel + extends DefaultTreeModel +{ + public AccessibilityTreeModel () + { + super (null); + setAsksAllowsChildren (false); + + SetRootNode(); + } + + + + /** Release all resources. + */ + synchronized public void Dispose () + { + Clear (); + } + + + + /** Calls to this method are dispatched to the given node but are + observed for exceptions. + */ + synchronized public boolean isLeaf (Object aObject) + { + boolean bIsLeaf = true; + + if (aObject != null) + { + AccessibilityNode aNode = (AccessibilityNode)aObject; + try + { + bIsLeaf = aNode.isLeaf(); + } + catch (DisposedException aException) + { + System.out.println ("node is disposed. removing it"); + /* TreeNode aParent = aNode.GetParent(); + int nIndexInParent = aParent.getIndex (aNode); + aNode.removeFromParent (); + System.out.println ("" + aParent + " # " + aNode + " # "+ nIndexInParent); + nodesWereRemoved ( + aParent, new int[]{nIndexInParent}, new + Object[]{aNode}); + */ + } + catch (Exception aException) + { + System.err.println ("caught exception in AccessibilityTreeModel.isLeaf():" + + aException); + aException.printStackTrace (System.err); + } + } + + return bIsLeaf; + } + + + + + synchronized public int getChildCount (Object aObject) + { + AccessibilityNode aNode = (AccessibilityNode)aObject; + return aNode.getChildCount(); + } + + + + + /** Return the requested child of aParent. If that child is not yet + known to the parent then try to create it. + */ + synchronized public Object getChild (Object aParent, final int nIndex) + { + AccessibilityNode aChild = null; + + final AccessibilityNode aParentNode = (AccessibilityNode)aParent; + + // Try to get an existing child from the super class object. + aChild = aParentNode.GetChildNoCreate (nIndex); + + // When the requested child does not yet exist and this node is not a + // special node then create a new node. + if (aChild == null) + { + aChild = aParentNode.CreateChild (nIndex); + aParentNode.SetChild ((AccessibilityNode)aChild, nIndex); + /* EventQueue.Instance().AddEvent (new Runnable() { public void run() { + AccessibilityTreeModel.this.nodeWasInserted ( + aParentNode, nIndex); + }}); + */ } + + return aChild; + } + + + synchronized public void nodeWasInserted (AccessibilityNode aParent, int nIndex) + { + nodesWereInserted (aParent, new int[]{nIndex}); + nodeStructureChanged (aParent); + + } + + + + + /** Clear the tree so that afterwards it has only the root node. + */ + public void Clear () + { + AccessibilityNode aRoot = (AccessibilityNode)getRoot(); + aRoot.RemoveAllChildren(); + SetRootNode(); + nodeStructureChanged (aRoot); + } + + + + + private void SetRootNode () + { + OfficeConnection aConnection = OfficeConnection.Instance(); + AccessibilityNode aRoot; + if (aConnection!=null && aConnection.IsValid()) + aRoot = new AccessibilityNode (""); + else + aRoot = new AccessibilityNode (""); + setRoot (aRoot); + } + + + + + /** Add a new child to the root node. + */ + public synchronized void AddTopLevelNode (AccessibilityNode aNode) + { + if (aNode != null) + { + if ( ! OfficeConnection.Instance().IsValid()) + { + setRoot (null); + } + + AccessibilityNode aRoot = (AccessibilityNode)getRoot(); + if (aRoot == null) + { + aRoot = new AccessibilityNode (""); + setRoot (aRoot); + } + + aNode.SetParent (aRoot); + aRoot.Append (aNode); + nodesWereInserted (aRoot, new int[]{aRoot.getIndex (aNode)}); + } + } + + + + + /** Remove a node that is a direct child of the root. + */ + public synchronized void RemoveTopLevelNode (AccessibilityNode aNode) + { + AccessibilityNode aRoot = (AccessibilityNode)getRoot(); + if (aRoot != null) + { + int nIndex = aRoot.getIndex (aNode); + aRoot.Remove (aNode); + nodesWereRemoved (aRoot, new int[]{nIndex}, new Object[]{aNode}); + } + } +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java new file mode 100644 index 000000000000..0f5626852238 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java @@ -0,0 +1,157 @@ +/************************************************************************* + * + * $RCSfile: DynamicAccessibilityModel.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: obr $ $Date: 2003/09/19 09:21:39 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.tree; + +import javax.swing.tree.TreeNode; +import javax.swing.tree.MutableTreeNode; +import javax.swing.tree.DefaultMutableTreeNode; +import javax.swing.event.TreeExpansionListener; +import javax.swing.event.TreeWillExpandListener; + +import com.sun.star.accessibility.AccessibleRole; +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleContext; + +/** + * + */ +public class DynamicAccessibilityModel extends AccessibilityModel implements TreeExpansionListener, TreeWillExpandListener { + + /* Creates a AccessibilityNode object for a window */ + protected AccessibilityNode createWindowNode(XAccessible xAccessible, + XAccessibleContext xAccessibleContext) { + if (xAccessible != null) { + // Some objects inherit XAccessible, but should not appear in + // the hierarchy as toplevels (like sub-menus), so they don't + // return an accessible context. + if (xAccessibleContext != null) { + AccessibilityNode node = new AccessibilityNode(this); + node.setUserObject(xAccessible); + node.setAccessibleContext(xAccessibleContext); + putNode(xAccessible, node); + return node; + } + } + return null; + } + + /* Creates a DynamicAccessibilityNode object */ + protected AccessibilityNode createNode(XAccessible xAccessible) { + if (xAccessible != null) { + try { + // Some objects inherit XAccessible, but should not appear in + // the hierarchy as toplevels (like sub-menus), so they don't + // return an accessible context. + XAccessibleContext xAccessibleContext = xAccessible.getAccessibleContext(); + if (xAccessibleContext != null) { + AccessibilityNode node = new DynamicAccessibilityNode(this); + node.setUserObject(xAccessible); + node.setAccessibleContext(xAccessibleContext); + putNode(xAccessible, node); + return node; + } + } catch (com.sun.star.uno.RuntimeException e) { + } + } + return null; + } + + public void treeCollapsed(javax.swing.event.TreeExpansionEvent treeExpansionEvent) { + TreeNode node = (TreeNode) treeExpansionEvent.getPath().getLastPathComponent(); + if (node instanceof DynamicAccessibilityNode) { + DynamicAccessibilityNode dynode = (DynamicAccessibilityNode) node; + dynode.clear(); + } + } + + public void treeExpanded(javax.swing.event.TreeExpansionEvent treeExpansionEvent) { + TreeNode node = (TreeNode) treeExpansionEvent.getPath().getLastPathComponent(); + if (node instanceof AccessibilityNode) { + // Calling oneway methods from an UNO thread may cause + // deadlocks, so adding the listeners here. + for (java.util.Enumeration e = node.children(); e.hasMoreElements(); ) { + ((AccessibilityNode) e.nextElement()).setAttached(true); + } + } + } + + public void treeWillCollapse(javax.swing.event.TreeExpansionEvent treeExpansionEvent) + throws javax.swing.tree.ExpandVetoException { + TreeNode node = (TreeNode) treeExpansionEvent.getPath().getLastPathComponent(); + if (node instanceof AccessibilityNode) { + // Calling oneway methods from an UNO thread may cause + // deadlocks, so adding the listeners here. + for (java.util.Enumeration e = node.children(); e.hasMoreElements(); ) { + ((AccessibilityNode) e.nextElement()).setAttached(false); + } + } + } + + public void treeWillExpand(javax.swing.event.TreeExpansionEvent treeExpansionEvent) + throws javax.swing.tree.ExpandVetoException { + TreeNode node = (TreeNode) treeExpansionEvent.getPath().getLastPathComponent(); + if (node instanceof DynamicAccessibilityNode) { + DynamicAccessibilityNode dynode = (DynamicAccessibilityNode) node; + dynode.populate(); + } + } +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java new file mode 100644 index 000000000000..ff6f5ddd45ea --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java @@ -0,0 +1,126 @@ +/************************************************************************* + * + * $RCSfile: DynamicAccessibilityNode.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: obr $ $Date: 2003/09/19 09:21:40 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.tree; + +import com.sun.star.uno.UnoRuntime; +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleContext; + +/* + * This class is dynamic in the way that it does not contain any children + * until the node is going to be expanded. It also releases all children + * as soon as the node is collapsed again. + */ +class DynamicAccessibilityNode extends AccessibilityNode { + + public DynamicAccessibilityNode(AccessibilityModel treeModel) { + super(treeModel); + } + + // Populates the child list. Called by AccessibilityMode.treeWillExpand(). + protected void populate() { + try { + XAccessibleContext xAC = getAccessibleContext(); + if (xAC != null) { + int n = xAC.getAccessibleChildCount(); + for (int i=0; i"); + this.xToolkit = xToolkit; + this.treeModel = treeModel; + + // Initially fill the child list + try { + for (int i=0,j=xToolkit.getTopWindowCount(); i= "140" + +.INCLUDE : makefile.common + +JAVACLASSFILES= $(foreach,i,$(JAVAFILES) $(CLASSDIR)$/$(PACKAGE)$/$(i:b).class) + +.ENDIF + +# --- Targets ------------------------------------------------------ + + +.INCLUDE : target.mk + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java new file mode 100644 index 000000000000..7d3da7c0ac16 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java @@ -0,0 +1,229 @@ +/************************************************************************* + * + * $RCSfile: ComponentView.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:32 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.awt.Color; +import java.awt.Dimension; + +import java.awt.event.ActionListener; +import java.awt.event.ActionEvent; + +import javax.swing.JLabel; + +import com.sun.star.accessibility.AccessibleEventId; +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleComponent; +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.uno.UnoRuntime; + +import org.openoffice.accessibility.misc.NameProvider; + +/** The ContextView class displays information accessible over + the XAccessibleContext interface. This includes name, + description, and role. +*/ +public class ComponentView + extends ObjectView +{ + static public ObjectView Create ( + ObjectViewContainer aContainer, + XAccessibleContext xContext) + { + if (UnoRuntime.queryInterface( + XAccessibleComponent.class, xContext) != null) + return new ComponentView (aContainer); + else + return null; + } + + public ComponentView (ObjectViewContainer aContainer) + { + super (aContainer); + + ViewGridLayout aLayout = new ViewGridLayout (this); + + maRelativeLocationLabel = aLayout.AddLabeledEntry ("Relative Location: "); + maAbsoluteLocationLabel = aLayout.AddLabeledEntry ("Location on Screen: "); + maSizeLabel = aLayout.AddLabeledEntry ("Size"); + maBoundingBoxLabel = aLayout.AddLabeledEntry ("Bounding Box: "); + maConsistencyLabel = aLayout.AddLabeledEntry ("Consistent: "); + maForegroundColorLabel = aLayout.AddLabeledEntry ("Foreground Color: "); + maBackgroundColorLabel = aLayout.AddLabeledEntry ("Background Color: "); + } + + + public void SetObject (XAccessibleContext xContext) + { + mxComponent = (XAccessibleComponent)UnoRuntime.queryInterface( + XAccessibleComponent.class, xContext); + super.SetObject (xContext); + } + + public void Update () + { + if (mxContext == null) + { + maRelativeLocationLabel.setText (""); + maAbsoluteLocationLabel.setText (""); + maSizeLabel.setText (""); + maBoundingBoxLabel.setText (""); + maConsistencyLabel.setText (""); + maForegroundColorLabel.setText (""); + maBackgroundColorLabel.setText (""); + } + else + { + com.sun.star.awt.Point aLocation = mxComponent.getLocation(); + maRelativeLocationLabel.setText ( + aLocation.X + ", " + aLocation.Y); + com.sun.star.awt.Point aLocationOnScreen = + mxComponent.getLocationOnScreen(); + maAbsoluteLocationLabel.setText ( + aLocationOnScreen.X + ", " + aLocationOnScreen.Y); + com.sun.star.awt.Size aSize = mxComponent.getSize(); + maSizeLabel.setText ( + aSize.Width + ", " + aSize.Height); + com.sun.star.awt.Rectangle aBBox = mxComponent.getBounds(); + maBoundingBoxLabel.setText ( + aBBox.X + ", " + aBBox.Y + "," + + aBBox.Width + ", " + aBBox.Height); + int nColor = mxComponent.getForeground(); + maForegroundColorLabel.setText ( + "R"+ (nColor>>16&0xff) + + "G" + (nColor>>8&0xff) + + "B" + (nColor>>0&0xff) + + "A" + (nColor>>24&0xff)); + nColor = mxComponent.getBackground(); + maBackgroundColorLabel.setText ( + "R"+ (nColor>>16&0xff) + + "G" + (nColor>>8&0xff) + + "B" + (nColor>>0&0xff) + + "A" + (nColor>>24&0xff)); + + // Check consistency of coordinates. + String sConsistency = new String (); + if (aBBox.X!=aLocation.X || aBBox.Y!=aLocation.Y) + sConsistency += (sConsistency.length()!=0?", ":"") + + "Bounding box conflicts with relative location"; + if (aBBox.Width!=aSize.Width || aBBox.Height!=aSize.Height) + sConsistency += (sConsistency.length()!=0?", ":"") + + "Bounding box conflicts with size"; + XAccessible xParent = mxContext.getAccessibleParent(); + XAccessibleComponent xParentComponent = + (XAccessibleComponent)UnoRuntime.queryInterface( + XAccessibleComponent.class, xParent); + if (xParentComponent == null) + { + if (aLocation.X != aLocationOnScreen.X + || aLocation.Y != aLocationOnScreen.Y) + sConsistency += (sConsistency.length()!=0?", ":"") + + "location on screen does not equal " + + "relative location without parent"; + } + else + { + com.sun.star.awt.Point aParentLocationOnScreen = + xParentComponent.getLocationOnScreen(); + if (aLocation.X+aParentLocationOnScreen.X + != aLocationOnScreen.X + || aLocation.Y+aParentLocationOnScreen.Y + != aLocationOnScreen.Y) + sConsistency += (sConsistency.length()!=0?", ":"") + + "location on screen does not match " + + "relative location"; + } + if (sConsistency.length() == 0) + sConsistency += "yes"; + else + maConsistencyLabel.setBackground (GetContainer().GetErrorColor()); + maConsistencyLabel.setText (sConsistency); + } + } + + public String GetTitle () + { + return ("Component"); + } + + /** Listen for changes regarding displayed values. + */ + public void notifyEvent (AccessibleEventObject aEvent) + { + switch (aEvent.EventId) + { + case AccessibleEventId.BOUNDRECT_CHANGED : + case AccessibleEventId.VISIBLE_DATA_CHANGED : + Update (); + } + } + + private XAccessibleComponent mxComponent; + private JLabel + maRelativeLocationLabel, + maAbsoluteLocationLabel, + maSizeLabel, + maBoundingBoxLabel, + maConsistencyLabel, + maForegroundColorLabel, + maBackgroundColorLabel; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java new file mode 100644 index 000000000000..16d51b6edd97 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java @@ -0,0 +1,149 @@ +/************************************************************************* + * + * $RCSfile: ContextView.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:32 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.awt.Color; +import java.awt.Dimension; + +import java.awt.event.ActionListener; +import java.awt.event.ActionEvent; + +import javax.swing.JLabel; +import javax.swing.JTextField; + +import com.sun.star.accessibility.AccessibleEventId; +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.XAccessibleContext; + +import org.openoffice.accessibility.misc.NameProvider; + +/** The ContextView class displays information accessible over + the XAccessibleContext interface. This includes name, + description, and role. +*/ +public class ContextView + extends ObjectView + implements ActionListener +{ + static public ObjectView Create ( + ObjectViewContainer aContainer, + XAccessibleContext xContext) + { + if (xContext != null) + return new ContextView (aContainer); + else + return null; + } + + public ContextView (ObjectViewContainer aContainer) + { + super (aContainer); + + ViewGridLayout aLayout = new ViewGridLayout (this); + maNameLabel = aLayout.AddLabeledString ("Name:"); + maDescriptionLabel = aLayout.AddLabeledString ("Description:"); + maRoleLabel = aLayout.AddLabeledEntry ("Role:"); + } + + public void Update () + { + if (mxContext == null) + { + maNameLabel.setText (""); + maDescriptionLabel.setText (""); + maRoleLabel.setText (""); + } + else + { + maNameLabel.setText (mxContext.getAccessibleName()); + maDescriptionLabel.setText (mxContext.getAccessibleDescription()); + maRoleLabel.setText (NameProvider.getRoleName (mxContext.getAccessibleRole())); + } + } + + public String GetTitle () + { + return ("Context"); + } + + /** Listen for changes regarding displayed values. + */ + public void notifyEvent (AccessibleEventObject aEvent) + { + switch (aEvent.EventId) + { + case AccessibleEventId.NAME_CHANGED : + case AccessibleEventId.DESCRIPTION_CHANGED : + Update (); + } + } + + public void actionPerformed (ActionEvent aEvent) + { + } + + + private JLabel + maNameLabel, + maDescriptionLabel, + maRoleLabel; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java new file mode 100644 index 000000000000..b60404f22efd --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java @@ -0,0 +1,153 @@ +/************************************************************************* + * + * $RCSfile: EditableTextView.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:33 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.awt.event.ActionListener; +import java.awt.event.ActionEvent; +import javax.swing.JButton; + +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleEditableText; +import com.sun.star.uno.UnoRuntime; + +import org.openoffice.accessibility.awb.view.text.TextDialogFactory; + + +public class EditableTextView + extends ObjectView + implements ActionListener +{ + /** Create a EditableTextView when the given object supports the + XAccessibleEditableText interface. + */ + static public ObjectView Create ( + ObjectViewContainer aContainer, + XAccessibleContext xContext) + { + XAccessibleEditableText xEditableText = + (XAccessibleEditableText)UnoRuntime.queryInterface( + XAccessibleEditableText.class, xContext); + if (xEditableText != null) + return new EditableTextView (aContainer); + else + return null; + } + + public EditableTextView (ObjectViewContainer aContainer) + { + super (aContainer); + + JButton aButton = new JButton ("cut..."); + aButton.setFont (ViewGridLayout.GetFont()); + aButton.addActionListener (this); + add (aButton); + aButton = new JButton ("paste..."); + aButton.setFont (ViewGridLayout.GetFont()); + aButton.addActionListener (this); + add (aButton); + aButton = new JButton ("edit..."); + aButton.setFont (ViewGridLayout.GetFont()); + aButton.addActionListener (this); + add (aButton); + aButton = new JButton ("format..."); + aButton.setFont (ViewGridLayout.GetFont()); + aButton.addActionListener (this); + add (aButton); + } + + + /** Additionally to the context store a reference to the + XAccessibleEditableText interface. + */ + public void SetObject (XAccessibleContext xObject) + { + mxEditableText = (XAccessibleEditableText)UnoRuntime.queryInterface( + XAccessibleEditableText.class, xObject); + super.SetObject (xObject); + } + + public String GetTitle () + { + return ("Editable Text"); + } + + synchronized public void Destroy () + { + mxEditableText = null; + super.Destroy(); + } + + public void actionPerformed (ActionEvent aEvent) + { + String sCommand = aEvent.getActionCommand(); + if (sCommand.equals ("cut...")) + TextDialogFactory.CreateCutDialog (mxContext); + else if (sCommand.equals ("past...")) + TextDialogFactory.CreatePasteDialog (mxContext); + else if (sCommand.equals ("edit...")) + TextDialogFactory.CreateEditDialog (mxContext); + else if (sCommand.equals ("format...")) + TextDialogFactory.CreateFormatDialog (mxContext); + } + + private XAccessibleEditableText mxEditableText; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java new file mode 100644 index 000000000000..e01f665b5e22 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java @@ -0,0 +1,158 @@ +/************************************************************************* + * + * $RCSfile: EventMonitorView.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:33 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.awt.BorderLayout; +import java.awt.GridBagLayout; +import java.awt.GridBagConstraints; +import java.awt.Color; +import java.awt.Dimension; +import java.awt.Font; +import java.awt.Graphics; +import javax.swing.JScrollBar; +import javax.swing.JScrollPane; +import javax.swing.JTextArea; + +import com.sun.star.accessibility.AccessibleEventId; +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.XAccessibleContext; + +import org.openoffice.accessibility.misc.NameProvider; + + +/** A simple event monitor that shows all events sent to one accessible + object. +*/ +class EventMonitorView + extends ObjectView +{ + static public ObjectView Create ( + ObjectViewContainer aContainer, + XAccessibleContext xContext) + { + if (xContext != null) + return new EventMonitorView (aContainer); + else + return null; + } + + public EventMonitorView (ObjectViewContainer aContainer) + { + super (aContainer); + Layout(); + } + + public String GetTitle () + { + return "Event Monitor"; + } + + /** Create and arrange the widgets for this view. + */ + private void Layout () + { + setLayout (new GridBagLayout ()); + + maText = new JTextArea(); + maText.setBackground (new Color (255,250,240)); + maText.setFont (new Font ("Helvetica", Font.PLAIN, 9)); + + maScrollPane = new JScrollPane (maText, + JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, + JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS); + maScrollPane.setPreferredSize (new Dimension (300,80)); + + GridBagConstraints aConstraints = new GridBagConstraints (); + aConstraints.weightx = 1; + aConstraints.fill = GridBagConstraints.HORIZONTAL; + add (maScrollPane, aConstraints); + } + + + public void Update () + { + } + + + private void UpdateVerticalScrollBar () + { + JScrollBar sb = maScrollPane.getVerticalScrollBar(); + if (sb != null) + { + int nScrollBarValue = sb.getMaximum() - sb.getVisibleAmount() - 1; + sb.setValue (nScrollBarValue); + } + } + + + public void notifyEvent (AccessibleEventObject aEvent) + { + maText.append (NameProvider.getEventName (aEvent.EventId) + " : " + + aEvent.OldValue.toString() + + " -> " + + aEvent.NewValue.toString() + "\n"); + UpdateVerticalScrollBar(); + } + + private JTextArea maText; + private JScrollPane maScrollPane; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java new file mode 100644 index 000000000000..6f3f850aeb14 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java @@ -0,0 +1,182 @@ +/************************************************************************* + * + * $RCSfile: FocusView.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:34 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.awt.Font; +import java.awt.GridBagConstraints; +import java.awt.GridBagLayout; +import java.awt.event.ActionListener; +import java.awt.event.ActionEvent; + +import javax.swing.JButton; +import javax.swing.JLabel; + +import com.sun.star.accessibility.AccessibleEventId; +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.AccessibleStateType; +import com.sun.star.accessibility.XAccessibleComponent; +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleStateSet; +import com.sun.star.uno.UnoRuntime; + +public class FocusView + extends ObjectView + implements ActionListener +{ + /** Create a FocusView when the given object supports the + XAccessibleComponent interface. + */ + static public ObjectView Create ( + ObjectViewContainer aContainer, + XAccessibleContext xContext) + { + XAccessibleComponent xComponent = (XAccessibleComponent)UnoRuntime.queryInterface( + XAccessibleComponent.class, xContext); + if (xComponent != null) + return new FocusView (aContainer); + else + return null; + } + + public FocusView (ObjectViewContainer aContainer) + { + super (aContainer); + + setLayout (new GridBagLayout()); + GridBagConstraints aConstraints = new GridBagConstraints (); + + maFocused = new JLabel (); + maFocused.setFont (GetContainer().GetViewFont()); + aConstraints.gridy = 0; + aConstraints.weightx = 1; + aConstraints.fill = GridBagConstraints.HORIZONTAL; + add (maFocused, aConstraints); + + maGrabFocus = new JButton ("grabFocus"); + maGrabFocus.setFont (GetContainer().GetViewFont()); + aConstraints.gridy = 1; + aConstraints.fill = GridBagConstraints.NONE; + aConstraints.anchor = GridBagConstraints.WEST; + add (maGrabFocus, aConstraints); + + maGrabFocus.addActionListener (this); + } + + /** Additionally to the context store a reference to the + XAccessibleComponent interface. + */ + public void SetObject (XAccessibleContext xObject) + { + mxComponent = (XAccessibleComponent)UnoRuntime.queryInterface( + XAccessibleComponent.class, xObject); + super.SetObject (xObject); + } + + synchronized public void Destroy () + { + super.Destroy(); + maGrabFocus.removeActionListener (this); + } + + synchronized public void Update () + { + if (mxContext == null) + { + maFocused.setText (""); + maGrabFocus.setEnabled (false); + } + else + { + XAccessibleStateSet aStateSet = mxContext.getAccessibleStateSet(); + if (aStateSet.contains(AccessibleStateType.FOCUSED)) + maFocused.setText ("focused"); + else + maFocused.setText ("not focused"); + if (maGrabFocus != null) + maGrabFocus.setEnabled (true); + } + } + + public String GetTitle () + { + return ("Focus"); + } + + synchronized public void actionPerformed (ActionEvent aEvent) + { + if (aEvent.getActionCommand().equals("grabFocus")) + { + mxComponent.grabFocus(); + } + } + + public void notifyEvent (AccessibleEventObject aEvent) + { + System.out.println (aEvent); + if (aEvent.EventId == AccessibleEventId.STATE_CHANGED) + Update (); + } + + private JLabel maFocused; + private JButton maGrabFocus; + private XAccessibleComponent mxComponent; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java b/accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java new file mode 100644 index 000000000000..590d17c94954 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java @@ -0,0 +1,194 @@ +/************************************************************************* + * + * $RCSfile: LayoutManager.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:34 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.awt.Component; +import java.awt.Cursor; +import java.awt.GridBagLayout; +import java.awt.GridBagConstraints; +import java.awt.Point; +import java.awt.event.MouseListener; +import java.awt.event.MouseMotionListener; +import java.awt.event.MouseEvent; +import javax.swing.JComponent; + +class LayoutManager + implements MouseListener, + MouseMotionListener +{ + public LayoutManager (JComponent aLayoutedComponent) + { + maLayoutedComponent = aLayoutedComponent; + maDraggedView = null; + mbInsertionPending = false; + } + + public void mouseClicked (MouseEvent aEvent) + { + System.out.println (aEvent); + } + public void mousePressed (MouseEvent aEvent) + { + mnOldY = aEvent.getPoint().y; + } + public void mouseReleased (MouseEvent aEvent) + { + if (mbInsertionPending) + { + InsertView (maDraggedView, aEvent.getPoint().y); + mbInsertionPending = false; + maDraggedView = null; + } + } + public void mouseEntered (MouseEvent aEvent) + { + } + public void mouseExited (MouseEvent aEvent) + { + if (mbInsertionPending) + { + InsertView (maDraggedView, mnOldY); + mbInsertionPending = false; + maDraggedView = null; + } + } + public void mouseDragged (MouseEvent aEvent) + { + int dy = mnOldY - aEvent.getPoint().y; + GridBagLayout aLayout = (GridBagLayout)maLayoutedComponent.getLayout(); + if ( ! mbInsertionPending && dy != 0) + { + maDraggedView = RemoveView (mnOldY); + if (maDraggedView != null) + mbInsertionPending = true; + } + } + public void mouseMoved (MouseEvent aEvent) + { + } + + + + + private ObjectView RemoveView (int y) + { + ObjectView aView = null; + GridBagLayout aLayout = (GridBagLayout)maLayoutedComponent.getLayout(); + + Point aGridLocation = aLayout.location (10,y); + Component[] aComponentList = maLayoutedComponent.getComponents(); + System.out.println ("removing view at " + aGridLocation); + for (int i=0; i= aGridLocation.y) + { + if (aConstraints.gridy == aGridLocation.y) + maLayoutedComponent.add (maDraggedView, aConstraints); + aConstraints.gridy += 1; + aLayout.setConstraints (aComponentList[i], aConstraints); + } + } + maLayoutedComponent.validate(); + maLayoutedComponent.repaint(); + } + maLayoutedComponent.setCursor (maNormalCursor); + } + + + + + private JComponent maLayoutedComponent; + private ObjectView maDraggedView; + private int mnOldY; + private boolean mbInsertionPending; + private Cursor maNormalCursor; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/Makefile b/accessibility/workben/org/openoffice/accessibility/awb/view/Makefile new file mode 100644 index 000000000000..2e4eb1566afd --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/Makefile @@ -0,0 +1,13 @@ +# $Id: Makefile,v 1.1 2003/06/13 16:30:34 af Exp $ + +all : package + +ROOT=../../../../.. +PACKAGE = org.openoffice.accessibility.awb.view +SUBDIRS = text +include makefile.common + +include $(ROOT)/makefile.in + + +package : $(CLASS_FILES) diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectView.java new file mode 100644 index 000000000000..3c1b8e90ff26 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectView.java @@ -0,0 +1,90 @@ +package org.openoffice.accessibility.awb.view; + +import javax.swing.JPanel; + +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.XAccessibleContext; + +/** This is the base class for all object views that can be placed inside an + object view container. + +

When provided with a new accessible object the container will call + the Create method to create a new instance when certain conditions are + met. It then calls SetObject to pass the object to the instance. + Finally it calls Update.

+ +

The SetObject and Update methods may be called for a new object + without calling Create first. In this way an existing instance is + recycled.

+*/ +abstract public class ObjectView + extends JPanel +{ + /** This factory method creates a new instance of the (derived) class + when the given accessible object supports all necessary features. + In the ususal case this will be the support of a specific + accessibility interface. + */ + static public ObjectView Create ( + ObjectViewContainer aContainer, + XAccessibleContext xContext) + { + return null; + } + + public ObjectView (ObjectViewContainer aContainer) + { + maContainer = aContainer; + mxContext = null; + } + + /** Call this when you want the object to be destroyed. Release all + resources when called. + */ + public void Destroy () + { + } + + /** Tell the view to display information for a new accessible object. + @param xObject + The given object may be null. A typical behaviour in this case + would be to display a blank area. But is also possible to show + information about the last object. + */ + public void SetObject (XAccessibleContext xContext) + { + mxContext = xContext; + Update (); + } + + + /** This is a request of a repaint with the current state of the current + object. The current object may or may not be the same as the one + when Update() was called the last time. + */ + public void Update () + { + } + + + /** Return a string that is used as a title of an enclosing frame. + */ + abstract public String GetTitle (); + + + public ObjectViewContainer GetContainer () + { + return maContainer; + } + + + /** Implement this method if you are interested in accessible events. + */ + public void notifyEvent (AccessibleEventObject aEvent) + {} + + /// Reference to the current object to display information about. + protected XAccessibleContext mxContext; + + protected ObjectViewContainer maContainer; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java new file mode 100644 index 000000000000..e5eeec95b41a --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java @@ -0,0 +1,344 @@ +/************************************************************************* + * + * $RCSfile: ObjectViewContainer.java,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obr $ $Date: 2003/09/19 09:21:42 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.awt.Color; +import java.awt.Component; +import java.awt.Font; +import java.awt.GridBagLayout; +import java.awt.GridBagConstraints; +import java.awt.Insets; + +import java.util.Vector; + +import java.lang.reflect.Method; +import java.lang.NoSuchMethodException; +import java.lang.IllegalAccessException; +import java.lang.reflect.InvocationTargetException; + +import javax.swing.JPanel; +import javax.swing.JTree; +import javax.swing.BorderFactory; +import javax.swing.border.Border; +import javax.swing.border.BevelBorder; +import javax.swing.SwingUtilities; + +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleComponent; +import com.sun.star.accessibility.XAccessibleEventBroadcaster; +import com.sun.star.accessibility.XAccessibleEventListener; +import com.sun.star.accessibility.XAccessibleSelection; +import com.sun.star.lang.EventObject; +import com.sun.star.uno.UnoRuntime; + +import org.openoffice.accessibility.awb.view.ObjectView; + + + +/** This container of specialized object views displays information about + one accessible object. + In this it plays several roles: + 1. Object container. + 2. Accessibility event dispatcher. + 3. Object view class registration manager. + 4. Swing widget. +*/ +public class ObjectViewContainer + extends JPanel + implements XAccessibleEventListener +{ + public ObjectViewContainer () + { + maFont = new Font ("Dialog", Font.PLAIN, 11); + maViewTemplates = new Vector (); + maViewBorder = BorderFactory.createBevelBorder (BevelBorder.RAISED); + GridBagLayout aLayout = new GridBagLayout (); + setLayout (aLayout); + // maLayoutManager = new LayoutManager (this); + maLayoutManager = null; + + RegisterView (ContextView.class); + RegisterView (ComponentView.class); + RegisterView (ParentView.class); + RegisterView (StateSetView.class); + RegisterView (FocusView.class); + RegisterView (TextView.class); + RegisterView (EditableTextView.class); + RegisterView (TableView.class); + RegisterView (SelectionView.class); + RegisterView (ServiceInterfaceView.class); + RegisterView (EventMonitorView.class); + + mxContext = null; + + // addMouseListener (maLayoutManager); + // addMouseMotionListener (maLayoutManager); + } + + + + /** Remove all existing views and create new ones according to the + interfaces supported by the given object. + */ + public synchronized void SetObject (XAccessibleContext xContext) + { + // Call Destroy at all views to give them a chance to release their + // resources. + int n = getComponentCount(); + for (int i=0; i= 0) + maViewTemplates.setElementAt (aSubstitution, nIndex); + } + + + /** Return a font that should be used for widgets in the views. + */ + public Font GetViewFont () + { + return maFont; + } + + public Color GetErrorColor () + { + return new Color (255,80,50); + } + + /** Add an object view and place it below all previously added views. + @param aView + This argument may be null. In this case nothing happens. + */ + private void Add (ObjectView aView) + { + if (aView != null) + { + GridBagConstraints constraints = new GridBagConstraints (); + constraints.gridx = 0; + constraints.gridy = getComponentCount(); + constraints.gridwidth = 1; + constraints.gridheight = 1; + constraints.weightx = 1; + constraints.weighty = 0; + constraints.ipadx = 2; + constraints.ipady = 5; + constraints.insets = new Insets (5,5,5,5); + constraints.anchor = GridBagConstraints.NORTH; + constraints.fill = GridBagConstraints.HORIZONTAL; + + aView.setBorder ( + BorderFactory.createTitledBorder ( + maViewBorder, aView.GetTitle())); + + add (aView, constraints); + } + } + + /** Update the layout manager by setting the vertical weight of the + bottom entry to 1 and so make it strech to over the available + space. + + */ + private void UpdateLayoutManager () + { + // Adapt the layout manager. + if (getComponentCount() > 1000) + { + Component aComponent = getComponent (getComponentCount()-1); + GridBagLayout aLayout = (GridBagLayout)getLayout(); + GridBagConstraints aConstraints = aLayout.getConstraints (aComponent); + aConstraints.weighty = 1; + aLayout.setConstraints (aComponent, aConstraints); + } + } + + + + + /** Put the event just received into the event queue which will deliver + it soon asynchronuously to the DispatchEvent method. + */ + public void notifyEvent (final AccessibleEventObject aEvent) + { + SwingUtilities.invokeLater( + new Runnable() + { + public void run() + { + DispatchEvent (aEvent); + } + } + ); + } + + + + + /** Forward accessibility events to all views without them being + registered as event listeners each on their own. + */ + private void DispatchEvent (AccessibleEventObject aEvent) + { + int n = getComponentCount(); + for (int i=0; i"); + maIndexLabel.setText (""); + maValidLabel.setText (""); + maChildrenLabel.setText (""); + } + else + { + XAccessible xParent = mxContext.getAccessibleParent(); + int nIndex = mxContext.getAccessibleIndexInParent(); + maIndexLabel.setText (Integer.toString(nIndex)); + if (xParent != null) + { + maParentLabel.setText ("yes"); + XAccessibleContext xParentContext = + xParent.getAccessibleContext(); + if (xParentContext != null) + { + try + { + XAccessible xChild = + xParentContext.getAccessibleChild(nIndex); + if (xChild != mxContext) + maValidLabel.setText ("yes"); + else + { + maValidLabel.setText ("no"); + maValidLabel.setBackground (GetContainer().GetErrorColor()); + } + } + catch (IndexOutOfBoundsException e) + { + maValidLabel.setText ("no: invalid index in parent"); + maValidLabel.setBackground (GetContainer().GetErrorColor()); + } + } + else + { + maValidLabel.setText ("no: parent has no context"); + maValidLabel.setBackground (GetContainer().GetErrorColor()); + } + } + else + maParentLabel.setText ("no"); + maChildrenLabel.setText (Integer.toString(mxContext.getAccessibleChildCount())); + } + } + + public String GetTitle () + { + return ("Parent"); + } + + + /** Listen for changes regarding displayed values. + */ + public void notifyEvent (AccessibleEventObject aEvent) + { + switch (aEvent.EventId) + { + default: + Update (); + } + } + + + private JLabel + maParentLabel, + maIndexLabel, + maValidLabel, + maChildrenLabel; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java new file mode 100644 index 000000000000..5967e4ae1ad4 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java @@ -0,0 +1,301 @@ +/************************************************************************* + * + * $RCSfile: SelectionView.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:36 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.util.Vector; + +import java.awt.event.ActionListener; +import java.awt.event.ActionEvent; + +import java.awt.BorderLayout; +import java.awt.Dimension; +import java.awt.GridBagLayout; +import java.awt.GridBagConstraints; + +import javax.swing.BoxLayout; +import javax.swing.ButtonGroup; +import javax.swing.JButton; +import javax.swing.JCheckBox; +import javax.swing.JLabel; +import javax.swing.JList; +import javax.swing.JPanel; +import javax.swing.JOptionPane; +import javax.swing.JRadioButton; +import javax.swing.JScrollPane; +import javax.swing.JToggleButton; +import javax.swing.ListSelectionModel; + + +import com.sun.star.accessibility.AccessibleEventId; +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.AccessibleRole; +import com.sun.star.accessibility.AccessibleStateType; +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleSelection; +import com.sun.star.accessibility.XAccessibleStateSet; + +import com.sun.star.uno.UnoRuntime; +import com.sun.star.lang.IndexOutOfBoundsException; + + +/** Display a list of children and select/deselect buttons +*/ +class SelectionView + extends ObjectView + implements ActionListener +{ + static public ObjectView Create ( + ObjectViewContainer aContainer, + XAccessibleContext xContext) + { + XAccessibleSelection xSelection = (XAccessibleSelection)UnoRuntime.queryInterface( + XAccessibleSelection.class, xContext); + if (xSelection != null) + return new SelectionView(aContainer); + else + return null; + } + + public SelectionView (ObjectViewContainer aContainer) + { + super (aContainer); + Layout(); + } + + public String GetTitle () + { + return "Selection"; + } + + /** Create and arrange the widgets for this view. + */ + private void Layout () + { + setLayout (new GridBagLayout()); + + GridBagConstraints aConstraints = new GridBagConstraints(); + + // Label that shows whether the selection is multi selectable. + aConstraints.gridx = 0; + aConstraints.gridy = 0; + aConstraints.anchor = GridBagConstraints.WEST; + maTypeLabel = new JLabel (); + maTypeLabel.setFont (maContainer.GetViewFont()); + add (maTypeLabel, aConstraints); + + // the JListBox + maChildrenSelector = new JPanel (); + maChildrenSelector.setPreferredSize (new Dimension (100,100)); + maChildrenSelector.setLayout ( + new BoxLayout (maChildrenSelector, BoxLayout.Y_AXIS)); + + aConstraints.gridx = 0; + aConstraints.gridwidth = 4; + aConstraints.gridy = 1; + aConstraints.fill = GridBagConstraints.HORIZONTAL; + add (new JScrollPane (maChildrenSelector, + JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, + JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED), + aConstraints); + + JButton aButton; + aButton = new JButton( "Select all" ); + aButton.setFont (maContainer.GetViewFont()); + aButton.setActionCommand( "Select all" ); + aButton.addActionListener( this ); + aConstraints.gridx = 0; + aConstraints.gridwidth = 1; + aConstraints.gridy = 2; + aConstraints.fill = GridBagConstraints.NONE; + aConstraints.anchor = GridBagConstraints.WEST; + add (aButton, aConstraints); + + aButton = new JButton( "Clear Selection" ); + aButton.setFont (maContainer.GetViewFont()); + aButton.setActionCommand( "Clear Selection" ); + aButton.addActionListener( this ); + aConstraints.gridx = 1; + aConstraints.gridy = 2; + aConstraints.weightx = 1; + add (aButton, aConstraints); + + setSize (getPreferredSize()); + } + + + public void SetObject (XAccessibleContext xContext) + { + mxSelection = (XAccessibleSelection)UnoRuntime.queryInterface( + XAccessibleSelection.class, xContext); + super.SetObject (xContext); + } + + + public void Update () + { + maChildrenSelector.removeAll (); + + // Determine whether multi selection is possible. + XAccessibleStateSet aStateSet = mxContext.getAccessibleStateSet(); + boolean bMultiSelectable = false; + if (aStateSet!=null && aStateSet.contains( + AccessibleStateType.MULTI_SELECTABLE)) + { + bMultiSelectable = true; + maTypeLabel.setText ("multi selectable"); + } + else + { + maTypeLabel.setText ("single selectable"); + } + + if (mxContext.getAccessibleRole() != AccessibleRole.TABLE) + { + int nCount = mxContext.getAccessibleChildCount(); + for (int i=0; i"))); + } + } + + private void CreateServiceTree () + { + XServiceInfo xServiceInfo = (XServiceInfo)UnoRuntime.queryInterface( + XServiceInfo.class, mxContext); + maServiceRoot.removeAllChildren(); + if (xServiceInfo != null) + { + String[] aServiceNames = xServiceInfo.getSupportedServiceNames(); + int nCount = aServiceNames.length; + for (int i=0; i"); + boolean bStateSet = xStateSet.contains (i); + g.setTransform (aTransform); + g.translate (x,y); + if (bStateSet) + { + switch (i) + { + case AccessibleStateType.INVALID: + case AccessibleStateType.DEFUNC: + g.setColor (saInvalidColor); + break; + case AccessibleStateType.FOCUSED: + g.setColor (saFocusColor); + break; + case AccessibleStateType.SELECTED: + g.setColor (saSelectionColor); + break; + case AccessibleStateType.EDITABLE: + g.setColor (saEditColor); + break; + default: + g.setColor (saDefaultColor); + break; + } + g.fill (aCheckBox); + g.setColor (aTextColor); + } + g.draw (aCheckBox); + g.rotate (nTextRotation); + g.scale (nScale, nScale); + g.translate (2,-2); + g.drawString (sStateName, 0,0); + } + + // Draw string of set states. + String sStates = new String (); + for (int i=0; i 0) + sStates = sStates + ", "; + sStates = sStates + NameProvider.getStateName(aStates[i]); + } + g.setTransform (aTransform); + g.translate (10,aWidgetArea.y+aWidgetArea.height-3); + g.scale (0.9,0.9); + g.drawString (sStates,0,0); + } + } + + static private Color + saInvalidColor = new Color (255,0,255), + saFocusColor = new Color (100,100,255), + saSelectionColor = Color.GREEN, + saDefaultColor = new Color (90,90,90), + saEditColor = new Color (240,240,0); +} + + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java new file mode 100644 index 000000000000..ad185ce86f7b --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java @@ -0,0 +1,195 @@ +/************************************************************************* + * + * $RCSfile: TableView.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:37 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view; + +import java.lang.Integer; +import java.lang.StringBuffer; + +import javax.swing.JLabel; + +import com.sun.star.accessibility.AccessibleEventId; +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.XAccessible; +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleTable; +import com.sun.star.uno.UnoRuntime; + + + +/** The ContextView class displays information accessible over + the XAccessibleContext interface. This includes name, + description, and role. +*/ +public class TableView + extends ObjectView +{ + static public ObjectView Create ( + ObjectViewContainer aContainer, + XAccessibleContext xContext) + { + if (UnoRuntime.queryInterface( + XAccessibleTable.class, xContext) != null) + return new TableView (aContainer); + else + return null; + } + + public TableView (ObjectViewContainer aContainer) + { + super (aContainer); + + ViewGridLayout aLayout = new ViewGridLayout (this); + + maRowCountLabel = aLayout.AddLabeledEntry ("Row Count: "); + maColumnCountLabel = aLayout.AddLabeledEntry ("Column Count: "); + maCellCountLabel = aLayout.AddLabeledEntry ("Cell Count: "); + maSelectedRowsLabel = aLayout.AddLabeledEntry ("Selected Rows: "); + maSelectedColumnsLabel = aLayout.AddLabeledEntry ("Selected Columns: "); + } + + + public void SetObject (XAccessibleContext xContext) + { + mxTable = (XAccessibleTable)UnoRuntime.queryInterface( + XAccessibleTable.class, xContext); + super.SetObject (xContext); + } + + + public void Update () + { + if (mxTable == null) + { + maRowCountLabel.setText (""); + maColumnCountLabel.setText (""); + maCellCountLabel.setText (""); + maSelectedRowsLabel.setText (""); + maSelectedColumnsLabel.setText (""); + } + else + { + int nRowCount = mxTable.getAccessibleRowCount(); + int nColumnCount = mxTable.getAccessibleColumnCount(); + maRowCountLabel.setText (Integer.toString (nRowCount)); + maColumnCountLabel.setText (Integer.toString (nColumnCount)); + maCellCountLabel.setText (Integer.toString (nRowCount*nColumnCount)); + + StringBuffer sList = new StringBuffer(); + int[] aSelected = mxTable.getSelectedAccessibleRows(); + boolean bFirst = true; + for (int i=0; i"); + maCharacterArrayLabel.setText (""); + maCharacterCountLabel.setText (""); + maSelectionLabel.setText (""); + maBoundsLabel.setText (""); + maCaretLineNoLabel.setText (""); + maCaretLineTextLabel.setText (""); + maLineNoFromCaretPosLabel.setText (""); + maLineTextFromCaretPosLabel.setText (""); + } + else + { + maTextLabel.setText (mxText.getText()); + maCharacterArrayLabel.setText (GetCharacterArray()); + maCharacterCountLabel.setText ( + Integer.toString(mxText.getCharacterCount())); + // Selection. + maSelectionLabel.setText ( + "[" + mxText.getSelectionStart() + + "," + mxText.getSelectionEnd() + + "] \"" + mxText.getSelectedText() + "\""); + + // Character bounds. + maBoundsLabel.setText (GetTextBoundsString()); + + // Caret position. + maCaretPositionSpinner.setValue (new Integer (mxText.getCaretPosition())); + + // Multi line methods. + XAccessibleMultiLineText xMultiText = (XAccessibleMultiLineText) + UnoRuntime.queryInterface( XAccessibleMultiLineText.class, mxText ); + + if( null != xMultiText ) { + try { + maCaretLineNoLabel.setText ( Integer.toString( xMultiText.getNumberOfLineWithCaret() ) ); + TextSegment ts = xMultiText.getTextAtLineWithCaret(); + maCaretLineTextLabel.setText ( "[" + ts.SegmentStart + + "," + ts.SegmentEnd + + "] \"" + ts.SegmentText + "\""); + maLineNoFromCaretPosLabel.setText ( Integer.toString( xMultiText.getLineNumberAtIndex( mxText.getCaretPosition() ) ) ); + ts = xMultiText.getTextAtLineNumber(xMultiText.getLineNumberAtIndex( mxText.getCaretPosition() ) ); + maLineTextFromCaretPosLabel.setText ( "[" + ts.SegmentStart + + "," + ts.SegmentEnd + + "] \"" + ts.SegmentText + "\""); + } catch( IndexOutOfBoundsException e) { + } + } + + // Text segments. + aRoot.add (CreateNode ("Character", AccessibleTextType.CHARACTER)); + aRoot.add (CreateNode ("Word", AccessibleTextType.WORD)); + aRoot.add (CreateNode ("Sentence", AccessibleTextType.SENTENCE)); + aRoot.add (CreateNode ("Paragraph", AccessibleTextType.PARAGRAPH)); + aRoot.add (CreateNode ("Line", AccessibleTextType.LINE)); + aRoot.add (CreateNode ("Attribute", AccessibleTextType.ATTRIBUTE_RUN)); + aRoot.add (CreateNode ("Glyph", AccessibleTextType.GLYPH)); + } + ((DefaultTreeModel)maTree.getModel()).setRoot (aRoot); + } + + public String GetTitle () + { + return ("Text"); + } + + public void notifyEvent (AccessibleEventObject aEvent) + { + System.out.println (aEvent); + switch (aEvent.EventId) + { + case AccessibleEventId.CARET_CHANGED : + maCaretSpinnerModel.Update(); + Update (); + break; + + case AccessibleEventId.TEXT_CHANGED : + case AccessibleEventId.TEXT_SELECTION_CHANGED: + Update (); + break; + } + } + + public void actionPerformed (ActionEvent aEvent) + { + String sCommand = aEvent.getActionCommand(); + if (sCommand.equals ("select...")) + TextDialogFactory.CreateSelectionDialog (mxContext); + else if (sCommand.equals ("copy...")) + TextDialogFactory.CreateCopyDialog (mxContext); + } + + + + /** Create a string that is a list of all characters returned by the + getCharacter() method. + */ + private String GetCharacterArray () + { + // Do not show more than 30 characters. + int nCharacterCount = mxText.getCharacterCount(); + int nMaxDisplayCount = 30; + + // build up string + StringBuffer aCharacterArray = new StringBuffer(); + int nIndex = 0; + try + { + while (nIndex= 0) && (nIndex < mxText.getCharacter(i))) + aBuffer.append (mxText.getCharacter(nIndex)); + else + aBuffer.append ('#'); + } + } + catch (IndexOutOfBoundsException aEvent) + { + // Ignore errors. + } + + return aBuffer.toString(); + } + + + + + private final static int BEFORE = -1; + private final static int AT = 0; + private final static int BEHIND = +1; + + private MutableTreeNode CreateNode (String sTitle, short nTextType) + { + DefaultMutableTreeNode aNode = new DefaultMutableTreeNode (sTitle); + + aNode.add (CreateSegmentNode ("Before", nTextType, BEFORE)); + aNode.add (CreateSegmentNode ("At", nTextType, AT)); + aNode.add (CreateSegmentNode ("Behind", nTextType, BEHIND)); + + return aNode; + } + + private MutableTreeNode CreateSegmentNode (String sTitle, short nTextType, int nWhere) + { + TextSegment aSegment; + int nTextLength = mxText.getCharacterCount(); + DefaultMutableTreeNode aNode = new DefaultMutableTreeNode (sTitle); + for (int nIndex=0; nIndex<=nTextLength; /* empty */) + { + aSegment = GetTextSegment (nIndex, nTextType, nWhere); + DefaultMutableTreeNode aSegmentNode = new DefaultMutableTreeNode ( + new StringBuffer ( + Integer.toString (nIndex) + " -> " + + Integer.toString (aSegment.SegmentStart) + " - " + + Integer.toString (aSegment.SegmentEnd) + " : " + + aSegment.SegmentText.toString())); + aNode.add (aSegmentNode); + if (nTextType == AccessibleTextType.ATTRIBUTE_RUN) + AddAttributeNodes (aSegmentNode, aSegment); + if (aSegment.SegmentEnd > nIndex) + nIndex = aSegment.SegmentEnd; + else + nIndex ++; + } + + return aNode; + } + + + private TextSegment GetTextSegment (int nIndex, short nTextType, int nWhere) + { + TextSegment aSegment; + + try + { + switch (nWhere) + { + case BEFORE: + aSegment = mxText.getTextBeforeIndex (nIndex, nTextType); + break; + + case AT: + aSegment = mxText.getTextAtIndex (nIndex, nTextType); + break; + + case BEHIND: + aSegment = mxText.getTextBehindIndex (nIndex, nTextType); + break; + + default: + aSegment = new TextSegment(); + aSegment.SegmentText = new String ("unknown position " + nWhere); + aSegment.SegmentStart = nIndex; + aSegment.SegmentStart = nIndex+1; + break; + } + } + catch (IndexOutOfBoundsException aException) + { + aSegment = new TextSegment (); + aSegment.SegmentText = new String ("Invalid index at ") + nIndex + " : " + + aException.toString(); + aSegment.SegmentStart = nIndex; + aSegment.SegmentEnd = nIndex+1; + } + catch (IllegalArgumentException aException) + { + aSegment = new TextSegment (); + aSegment.SegmentText = new String ("Illegal argument at ") + nIndex + " : " + + aException.toString(); + aSegment.SegmentStart = nIndex; + aSegment.SegmentEnd = nIndex+1; + } + + return aSegment; + } + + + /** Add to the given node one node for every attribute of the given segment. + */ + private void AddAttributeNodes ( + DefaultMutableTreeNode aNode, + TextSegment aSegment) + { + try + { + PropertyValue[] aValues = mxText.getCharacterAttributes ( + aSegment.SegmentStart, aAttributeList); + for (int i=0; i= "140" + +.INCLUDE : makefile.common + +JAVACLASSFILES= $(foreach,i,$(JAVAFILES) $(CLASSDIR)$/$(PACKAGE)$/$(i:b).class) + +.ENDIF + +# --- Targets ------------------------------------------------------ + + +.INCLUDE : target.mk + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java new file mode 100644 index 000000000000..6289697ee375 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java @@ -0,0 +1,156 @@ +/************************************************************************* + * + * $RCSfile: CaretSpinnerModel.java,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obr $ $Date: 2008/05/14 13:21:37 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view.text; + +import java.lang.Integer; +import java.util.Vector; +import javax.swing.SpinnerModel; +import javax.swing.event.ChangeEvent; +import javax.swing.event.ChangeListener; + +import com.sun.star.accessibility.XAccessibleText; +import com.sun.star.lang.IndexOutOfBoundsException; + + +/** A simple model for JSpinner objects that clips the spinner values to valid + text indices. +*/ +public class CaretSpinnerModel + implements SpinnerModel +{ + public CaretSpinnerModel (XAccessibleText xText) + { + mxText = xText; + maListeners = new Vector (); + } + + public void addChangeListener (ChangeListener aListener) + { + if (aListener != null) + maListeners.add (aListener); + } + + public void removeChangeListener (ChangeListener aListener) + { + maListeners.removeElement (aListener); + } + + public Object getNextValue () + { + if (mxText != null) + { + int nPosition = mxText.getCaretPosition(); + if (nPosition+1 <= mxText.getCharacterCount()) + return new Integer (nPosition+1); + } + return null; + } + + public Object getPreviousValue () + { + if (mxText != null) + { + int nPosition = mxText.getCaretPosition(); + if (nPosition > 0) + return new Integer (nPosition-1); + } + return null; + } + + public Object getValue () + { + if (mxText != null) + return new Integer (mxText.getCaretPosition()); + else + return null; + } + + public void setValue (Object aValue) + { + if (mxText != null) + if (aValue instanceof Integer) + { + try + { + if( ((Integer)aValue).intValue() != mxText.getCaretPosition() ) + mxText.setCaretPosition (((Integer)aValue).intValue()); + } + catch (IndexOutOfBoundsException aException) + { + } + } + } + + /** Call this method when the caret position has changes so that the model + can inform its listeners about it. + */ + public void Update () + { + ChangeEvent aEvent = new ChangeEvent (this); + for (int i=0; i 0) + aContent.add (new JLabel (msExplanation), BorderLayout.NORTH); + + // the text field + maText = new JTextArea(); + maText.setLineWrap (true); + maText.setEditable (false); + aContent.add (maText, BorderLayout.CENTER); + + XAccessibleText xText = (XAccessibleText)UnoRuntime.queryInterface( + XAccessibleText.class, mxContext); + String sText = xText.getText(); + maText.setText (sText); + maText.setRows (sText.length() / 40 + 1); + maText.setColumns (Math.min (Math.max (40, sText.length()), 20)); + + JPanel aButtons = new JPanel(); + aButtons.setLayout (new FlowLayout()); + maIndexToggle = new JCheckBox ("reverse selection"); + aButtons.add (maIndexToggle); + + JButton aActionButton = new JButton (msTitle); + aActionButton.setActionCommand ("Action"); + aActionButton.addActionListener (this); + aButtons.add (aActionButton); + + JButton aCancelButton = new JButton ("cancel"); + aCancelButton.setActionCommand ("Cancel"); + aCancelButton.addActionListener (this); + aButtons.add (aCancelButton); + + // add Panel with buttons + aContent.add (aButtons, BorderLayout.SOUTH); + } + + protected void Cancel() + { + hide(); + dispose(); + } + + public void actionPerformed(ActionEvent e) + { + String sCommand = e.getActionCommand(); + + if( "Cancel".equals( sCommand ) ) + Cancel(); + else if( "Action".equals( sCommand ) ) + Action(); + } + + + protected int GetSelectionStart() + { + return GetSelection(true); + } + protected int GetSelectionEnd() + { + return GetSelection(false); + } + private int GetSelection (boolean bStart) + { + if (bStart ^ maIndexToggle.isSelected()) + return maText.getSelectionStart(); + else + return maText.getSelectionEnd(); + } + + + + protected void Action () + { + String sError = null; + boolean bSuccess = true; + try + { + XAccessibleText xText = + (XAccessibleText)UnoRuntime.queryInterface( + XAccessibleText.class, mxContext); + if (xText != null) + bSuccess = bSuccess && TextAction (xText); + + XAccessibleEditableText xEditableText = + (XAccessibleEditableText)UnoRuntime.queryInterface( + XAccessibleEditableText.class, mxContext); + if (xEditableText != null) + bSuccess = bSuccess && EditableTextAction (xEditableText); + + if ( ! bSuccess) + sError = "Can't execute"; + } + catch (IndexOutOfBoundsException e) + { + sError = "Index out of bounds"; + } + + if (sError != null) + JOptionPane.showMessageDialog ( + this,// AccessibilityWorkBench.Instance(), + sError, + msTitle, + JOptionPane.ERROR_MESSAGE); + + Cancel(); + } + + /** override this for dialog-specific action */ + boolean TextAction (XAccessibleText xText) + throws IndexOutOfBoundsException + { + return true; + } + + boolean EditableTextAction (XAccessibleEditableText xText) + throws IndexOutOfBoundsException + { + return true; + } + + private XAccessibleContext mxContext; + protected JTextArea maText; + private String msTitle; + private String msExplanation; + private JCheckBox maIndexToggle; +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java new file mode 100644 index 000000000000..36d81162462c --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java @@ -0,0 +1,213 @@ +/************************************************************************* + * + * $RCSfile: TextAttributeDialog.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:42 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view.text; + +import java.awt.BorderLayout; +import java.awt.Color; +import java.awt.Component; +import java.awt.Graphics; +import java.awt.event.ActionListener; +import java.awt.event.ActionEvent; +import javax.swing.BoxLayout; +import javax.swing.Icon; +import javax.swing.JButton; +import javax.swing.JCheckBox; +import javax.swing.JColorChooser; +import javax.swing.JPanel; +import javax.swing.text.JTextComponent; + +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleEditableText; +import com.sun.star.beans.PropertyValue; +import com.sun.star.lang.IndexOutOfBoundsException; +import com.sun.star.uno.UnoRuntime; + + +class TextAttributeDialog + extends TextActionDialog +{ + public TextAttributeDialog (XAccessibleContext xContext) + { + super (xContext, + "Choose attributes, select text, and press 'Set':", + "set"); + } + + protected void Layout () + { + super.Layout (); + + maForeground = Color.black; + maBackground = Color.white; + + JPanel aPanel = new JPanel(); + aPanel.setLayout (new BoxLayout (aPanel, BoxLayout.Y_AXIS)); + + maBoldCheckBox = new JCheckBox ("bold"); + maUnderlineCheckBox = new JCheckBox ("underline"); + maItalicsCheckBox = new JCheckBox ("italics"); + + JButton aForegroundButton = new JButton ("Foreground", + new TextAttributeDialog.ColorIcon(true)); + aForegroundButton.addActionListener (new ActionListener() + { + public void actionPerformed (ActionEvent aEvent) + { + maForeground = JColorChooser.showDialog ( + TextAttributeDialog.this, + "Select Foreground Color", + maForeground); + } + } ); + + JButton aBackgroundButton = new JButton("Background", + new TextAttributeDialog.ColorIcon(false)); + aBackgroundButton.addActionListener (new ActionListener() + { + public void actionPerformed (ActionEvent eEvent) + { + maBackground = JColorChooser.showDialog( + TextAttributeDialog.this, + "Select Background Color", + maBackground); + } + } ); + + aPanel.add (maBoldCheckBox); + aPanel.add (maUnderlineCheckBox); + aPanel.add (maItalicsCheckBox); + aPanel.add (aForegroundButton); + aPanel.add (aBackgroundButton); + + getContentPane().add (aPanel, BorderLayout.WEST); + } + + + /** edit the text */ + boolean EditableTextAction (XAccessibleEditableText xText) + throws IndexOutOfBoundsException + { + PropertyValue[] aSequence = new PropertyValue[6]; + aSequence[0] = new PropertyValue(); + aSequence[0].Name = "CharWeight"; + aSequence[0].Value = new Integer (maBoldCheckBox.isSelected() ? 150 : 100); + aSequence[1] = new PropertyValue(); + aSequence[1].Name = "CharUnderline"; + aSequence[1].Value = new Integer (maUnderlineCheckBox.isSelected() ? 1 : 0); + aSequence[2] = new PropertyValue(); + aSequence[2].Name = "CharBackColor"; + aSequence[2].Value = new Integer (maBackground.getRGB()); + aSequence[3] = new PropertyValue(); + aSequence[3].Name = "CharColor"; + aSequence[3].Value = new Integer (maForeground.getRGB()); + aSequence[4] = new PropertyValue(); + aSequence[4].Name = "CharPosture"; + aSequence[4].Value = new Integer (maItalicsCheckBox.isSelected() ? 1 : 0); + aSequence[5] = new PropertyValue(); + aSequence[5].Name = "CharBackTransparent"; + aSequence[5].Value = new Boolean (false); + + return xText.setAttributes ( + GetSelectionStart(), + GetSelectionEnd(), + aSequence); + } + + class ColorIcon + implements Icon + { + public ColorIcon(boolean bWhich) { bForeground = bWhich; } + public int getIconHeight() { return nHeight; } + public int getIconWidth() { return nWidth; } + public void paintIcon (Component c, Graphics g, int x, int y) + { + g.setColor( getColor() ); + g.fillRect( x, y, nHeight, nWidth ); + g.setColor( c.getForeground() ); + g.drawRect( x, y, nHeight, nWidth ); + } + Color getColor() + { + if (bForeground) + return maForeground; + else + return maBackground; + } + + private static final int nHeight = 16; + private static final int nWidth = 16; + private boolean bForeground; + } + + + + + private JCheckBox + maBoldCheckBox, + maUnderlineCheckBox, + maItalicsCheckBox; + private Color + maForeground, + maBackground; + +} + diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java new file mode 100644 index 000000000000..397c3f8b1877 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java @@ -0,0 +1,170 @@ +/************************************************************************* + * + * $RCSfile: TextDialogFactory.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:43 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view.text; + +import javax.swing.JDialog; +import javax.swing.text.JTextComponent; + +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleEditableText; +import com.sun.star.accessibility.XAccessibleText; +import com.sun.star.lang.IndexOutOfBoundsException; +import com.sun.star.uno.UnoRuntime; + + +/** Factory for dialogs of the text views. +*/ +public class TextDialogFactory +{ + static public JDialog CreateSelectionDialog (XAccessibleContext xContext) + { + JDialog aDialog = new TextActionDialog( + xContext, + "Select range:", + "select") + { + boolean TextAction (XAccessibleText xText) + throws IndexOutOfBoundsException + { + return xText.setSelection( + GetSelectionStart(), + GetSelectionEnd() ); + } + }; + if (aDialog != null) + aDialog.show(); + return aDialog; + } + + static public JDialog CreateCopyDialog (XAccessibleContext xContext) + { + JDialog aDialog = new TextActionDialog( + xContext, + "Select range and copy:", + "copy") + { + boolean TextAction (XAccessibleText xText) + throws IndexOutOfBoundsException + { + return xText.copyText( + GetSelectionStart(), + GetSelectionEnd()); + } + }; + if (aDialog != null) + aDialog.show(); + return aDialog; + } + static public JDialog CreateCutDialog (XAccessibleContext xContext) + { + JDialog aDialog = new TextActionDialog( + xContext, + "Select range and cut:", + "cut") + { + boolean EditableTextAction (XAccessibleEditableText xText) + throws IndexOutOfBoundsException + { + return xText.cutText( + GetSelectionStart(), + GetSelectionEnd() ); + } + }; + if (aDialog != null) + aDialog.show(); + return aDialog; + } + static public JDialog CreatePasteDialog (XAccessibleContext xContext) + { + JDialog aDialog = new TextActionDialog ( + xContext, + "Place Caret and paste:", + "paste") + { + boolean EditableTextAction (XAccessibleEditableText xText) + throws IndexOutOfBoundsException + { + return xText.pasteText(maText.getCaretPosition()); + } + }; + if (aDialog != null) + aDialog.show(); + return aDialog; + } + static public JDialog CreateEditDialog (XAccessibleContext xContext) + { + JDialog aDialog = new TextEditDialog ( + xContext, + "Edit text:", + "edit"); + if (aDialog != null) + aDialog.show(); + return aDialog; + } + static public JDialog CreateFormatDialog (XAccessibleContext xContext) + { + JDialog aDialog = new TextAttributeDialog (xContext); + if (aDialog != null) + aDialog.show(); + return aDialog; + } +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java new file mode 100644 index 000000000000..55dfea6fb0b2 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java @@ -0,0 +1,156 @@ +/************************************************************************* + * + * $RCSfile: TextEditDialog.java,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: af $ $Date: 2003/06/13 16:30:43 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.awb.view.text; + +import javax.swing.text.JTextComponent; + +import com.sun.star.accessibility.XAccessibleContext; +import com.sun.star.accessibility.XAccessibleEditableText; +import com.sun.star.lang.IndexOutOfBoundsException; +import com.sun.star.uno.UnoRuntime; + + +class TextEditDialog + extends TextActionDialog +{ + public TextEditDialog ( + XAccessibleContext xContext, + String sExplanation, + String sTitle ) + { + super (xContext, sExplanation, sTitle); + } + + protected void Layout() + { + super.Layout(); + maText.setEditable (true); + } + + + /** edit the text */ + boolean EditableTextAction (XAccessibleEditableText xText) + { + return UpdateText (xText, maText.getText()); + } + + + /** update the text */ + boolean UpdateText (XAccessibleEditableText xText, String sNew) + { + boolean bResult = false; + + String sOld = xText.getText(); + + // false alarm? Early out if no change was done! + if ( ! sOld.equals (sNew)) + { + + // Get the minimum length of both strings. + int nMinLength = sOld.length(); + if (sNew.length() < nMinLength) + nMinLength = sNew.length(); + + // Count equal characters from front and end. + int nFront = 0; + while ((nFront < nMinLength) && + (sNew.charAt(nFront) == sOld.charAt(nFront))) + nFront++; + int nBack = 0; + while ((nBack < nMinLength) && + (sNew.charAt(sNew.length()-nBack-1) == + sOld.charAt(sOld.length()-nBack-1) )) + nBack++; + if (nFront + nBack > nMinLength) + nBack = nMinLength - nFront; + + // so... the first nFront and the last nBack characters are the + // same. Change the others! + String sDel = sOld.substring (nFront, sOld.length() - nBack); + String sIns = sNew.substring (nFront, sNew.length() - nBack); + + System.out.println ("edit text: " + + sOld.substring(0, nFront) + + " [ " + sDel + " -> " + sIns + " ] " + + sOld.substring(sOld.length() - nBack)); + + try + { + // edit the text, and use + // (set|insert|delete|replace)Text as needed + if( nFront+nBack == 0 ) + bResult = xText.setText( sIns ); + else if( sDel.length() == 0 ) + bResult = xText.insertText( sIns, nFront ); + else if( sIns.length() == 0 ) + bResult = xText.deleteText( nFront, sOld.length()-nBack ); + else + bResult = xText.replaceText(nFront, sOld.length()-nBack,sIns); + } + catch( IndexOutOfBoundsException aException) + { + } + } + + return bResult; + } +} diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common b/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common new file mode 100644 index 000000000000..32655a0c6a6f --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common @@ -0,0 +1,65 @@ +#************************************************************************* +# +# $RCSfile: makefile.common,v $ +# +# The Contents of this file are made available subject to the terms of +# either of the following licenses +# +# - GNU Lesser General Public License Version 2.1 +# - Sun Industry Standards Source License Version 1.1 +# +# Sun Microsystems Inc., October, 2000 +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2000 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1, as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +# +# Sun Industry Standards Source License Version 1.1 +# ================================================= +# The contents of this file are subject to the Sun Industry Standards +# Source License Version 1.1 (the "License"); You may not use this file +# except in compliance with the License. You may obtain a copy of the +# License at http://www.openoffice.org/license.html. +# +# Software provided under this License is provided on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, +# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, +# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. +# See the License for the specific provisions governing your rights and +# obligations concerning the Software. +# +# The Initial Developer of the Original Code is: Sun Microsystems, Inc. +# +# Copyright: 2000 by Sun Microsystems, Inc. +# +# All Rights Reserved. +# +# Contributor(s): _______________________________________ +# +# +# +#************************************************************************* + +JARFILES = sandbox.jar jurt.jar unoil.jar ridl.jar +JAVAFILES = \ + CaretSpinnerModel.java \ + TextActionDialog.java \ + TextEditDialog.java \ + TextAttributeDialog.java \ + TextDialogFactory.java diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk b/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk new file mode 100644 index 000000000000..05f5b3a99c35 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk @@ -0,0 +1,82 @@ +#************************************************************************* +# +# $RCSfile: makefile.mk,v $ +# +# The Contents of this file are made available subject to the terms of +# either of the following licenses +# +# - GNU Lesser General Public License Version 2.1 +# - Sun Industry Standards Source License Version 1.1 +# +# Sun Microsystems Inc., October, 2000 +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2000 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1, as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +# +# Sun Industry Standards Source License Version 1.1 +# ================================================= +# The contents of this file are subject to the Sun Industry Standards +# Source License Version 1.1 (the "License"); You may not use this file +# except in compliance with the License. You may obtain a copy of the +# License at http://www.openoffice.org/license.html. +# +# Software provided under this License is provided on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, +# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, +# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. +# See the License for the specific provisions governing your rights and +# obligations concerning the Software. +# +# The Initial Developer of the Original Code is: Sun Microsystems, Inc. +# +# Copyright: 2000 by Sun Microsystems, Inc. +# +# All Rights Reserved. +# +# Contributor(s): _______________________________________ +# +# +# +#************************************************************************* + +PRJNAME = awb +PRJ = ..$/..$/..$/..$/..$/..$/.. +TARGET = awb_view_text +PACKAGE = org$/openoffice$/accessibility$/awb$/view$/text + +USE_JAVAVER:=TRUE + +# --- Settings ----------------------------------------------------- + +.INCLUDE : settings.mk + +.IF "$(JAVAVER:s/.//)" >= "140" + +.INCLUDE : makefile.common + +JAVACLASSFILES= $(foreach,i,$(JAVAFILES) $(CLASSDIR)$/$(PACKAGE)$/$(i:b).class) + +.ENDIF + +# --- Targets ------------------------------------------------------ + + +.INCLUDE : target.mk + diff --git a/accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java b/accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java new file mode 100644 index 000000000000..f9212e05a35c --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java @@ -0,0 +1,122 @@ +/************************************************************************* + * + * $RCSfile: AccessibleEventMulticaster.java,v $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +package org.openoffice.accessibility.misc; + +import com.sun.star.lang.EventObject; + +import com.sun.star.accessibility.AccessibleEventObject; +import com.sun.star.accessibility.XAccessibleEventBroadcaster; +import com.sun.star.accessibility.XAccessibleEventListener; + +/** + * + */ +public class AccessibleEventMulticaster implements XAccessibleEventListener { + + private final XAccessibleEventListener a; + private final XAccessibleEventListener b; + + /** Creates a new instance of AccessibleEventMulticaster */ + protected AccessibleEventMulticaster(XAccessibleEventListener a, + XAccessibleEventListener b) { + this.a = a; + this.b = b; + } + + protected XAccessibleEventListener remove(XAccessibleEventListener l) { + if (l == a) + return b; + if (l == b) + return a; + XAccessibleEventListener a2 = remove(a, l); + XAccessibleEventListener b2 = remove(b, l); + if (a2 == a && b2 == b) { + return this; // not found + } + return add(a2, b2); + } + + public void notifyEvent(AccessibleEventObject accessibleEventObject) { + a.notifyEvent(accessibleEventObject); + b.notifyEvent(accessibleEventObject); + } + + public void disposing(EventObject eventObject) { + a.disposing(eventObject); + b.disposing(eventObject); + } + + public static XAccessibleEventListener add(XAccessibleEventListener a, XAccessibleEventListener b) { + if (a == null) + return b; + if (b == null) + return a; + return new AccessibleEventMulticaster(a,b); + } + + public static XAccessibleEventListener remove(XAccessibleEventListener l, XAccessibleEventListener oldl) { + if (l == oldl || l == null) { + return null; + } else if (l instanceof AccessibleEventMulticaster) { + return ((AccessibleEventMulticaster) l).remove(oldl); + } else { + return l; + } + } + +} diff --git a/accessibility/workben/org/openoffice/accessibility/misc/Connector.java b/accessibility/workben/org/openoffice/accessibility/misc/Connector.java new file mode 100644 index 000000000000..de188676e224 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/misc/Connector.java @@ -0,0 +1,50 @@ +package org.openoffice.accessibility.misc; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.util.Timer; +import java.util.TimerTask; +import java.util.Vector; + + +/** Wait for an Office application and connect to it. +*/ +public class Connector + extends TimerTask +{ + final public static long snDelay = 3000; + + public Connector () + { + maTimer = new Timer (true); + maListeners = new Vector(); + run (); + } + + public void AddConnectionListener (ActionListener aListener) + { + SimpleOffice aOffice = SimpleOffice.Instance(); + if (aOffice!=null && aOffice.IsConnected()) + aListener.actionPerformed ( + new ActionEvent (aOffice,0,"")); + maListeners.add (aListener); + } + + public void run () + { + SimpleOffice aOffice = SimpleOffice.Instance(); + if (aOffice!=null && !aOffice.IsConnected()) + if ( ! aOffice.Connect()) + maTimer.schedule (this, snDelay); + else + { + ActionEvent aEvent = new ActionEvent (aOffice,0,""); + for (int i=0; i 0) + sIndent += " "; + + // Get XAccessibleContext object if given object does not + // already support this interface. + XAccessibleContext xContext + = (XAccessibleContext) UnoRuntime.queryInterface ( + XAccessibleContext.class, xObject); + if (xContext == null) + { + XAccessible xAccessible + = (XAccessible) UnoRuntime.queryInterface ( + XAccessible.class, xObject); + if (xAccessible == null) + { + maOut.println (sIndent + "given object " + xObject + + " is not accessible"); + return false; + } + else + xContext = xAccessible.getAccessibleContext(); + } + + // Print information about the accessible context. + if (xContext != null) + { + maOut.println (sIndent + "Name : " + + xContext.getAccessibleName()); + maOut.println (sIndent + "Description : " + + xContext.getAccessibleDescription()); + maOut.println (sIndent + "Role : " + + xContext.getAccessibleRole()); + String sHasParent; + if (xContext.getAccessibleParent() != null) + { + maOut.println (sIndent + "Has parent : yes"); + maOut.println (sIndent + "Parent index : " + + xContext.getAccessibleIndexInParent()); + } + else + maOut.println (sIndent + "Has parent : no"); + maOut.println (sIndent + "Child count : " + + xContext.getAccessibleChildCount()); + maOut.print (sIndent + "Relation set : "); + XAccessibleRelationSet xRelationSet + = xContext.getAccessibleRelationSet(); + if (xRelationSet != null) + { + maOut.print (xRelationSet.getRelationCount() + " ("); + for (int i=0; i 0) + maOut.print (", "); + maOut.print (xRelationSet.getRelation(i).toString()); + } + maOut.println (")"); + } + else + maOut.println ("no relation set"); + + maOut.print (sIndent + "State set : "); + XAccessibleStateSet xStateSet = + xContext.getAccessibleStateSet(); + if (xStateSet != null) + { + XIndexAccess xStates = + (XIndexAccess) UnoRuntime.queryInterface ( + XIndexAccess.class, xStateSet); + maOut.print (xStates.getCount() + " ("); + for (int i=0; i 0) + maOut.print (", "); + maOut.print (xStates.getByIndex(i).toString()); + } + maOut.println (")"); + } + else + maOut.println ("no state set"); + + showAccessibleComponent (xContext, sIndent); + } + else + maOut.println ("object has no accessible context."); + + // showInfo (xContext); + // showServices (xContext); + // showInterfaces (xContext); + } + catch (Exception e) + { + System.out.println ("caught exception in showAccessibility :" + e); + } + return true; + } + + + + + /** @descr Print information about the given accessible component. + */ + public void showAccessibleComponent (XInterface xObject, String sIndent) + { + try + { + XAccessibleComponent xComponent = + (XAccessibleComponent) UnoRuntime.queryInterface ( + XAccessibleComponent.class, xObject); + + // Print information about the accessible context. + if (xComponent != null) + { + maOut.println (sIndent + "Position : " + + xComponent.getLocation().X+", " + + xComponent.getLocation().Y); + maOut.println (sIndent + "Screen position : " + + xComponent.getLocationOnScreen().X+", " + + xComponent.getLocationOnScreen().Y); + maOut.println (sIndent + "Size : " + + xComponent.getSize().Width+", " + + xComponent.getSize().Height); + } + } + catch (Exception e) + { + System.out.println ( + "caught exception in showAccessibleComponent : " + e); + } + } + + + /** Show a textual representation of the accessibility subtree rooted in + xRoot. + */ + public boolean showAccessibilityTree (XAccessible xRoot, int depth) + { + try + { + if ( ! showAccessibility (xRoot, depth)) + return false; + + String sIndent = ""; + for (int i=0; i 0) + aMessage = " " + aMessage; + Instance().printMessage(aMessage); + } + + + + + /** Show the given string at the end of the message area and scroll to make + it visible. + */ + public static void println (String aMessage) + { + println (0, aMessage); + } + + + + + /** Show the given string at the end of the message area and scroll to make + it visible. + */ + public static void println (int nIndentation, String aMessage) + { + print (nIndentation, aMessage+"\n"); + } + + + + + public void paintComponent (Graphics g) + { + synchronized (g) + { + JScrollBar sb = getVerticalScrollBar(); + if (sb != null) + { + int nScrollBarValue = sb.getMaximum() - sb.getVisibleAmount() - 1; + sb.setValue (nScrollBarValue); + } + super.paintComponent (g); + } + } + + + + + /** Append the given string to the end of the text and scroll so that it + becomes visible. This is an internal method. Use one of the static + and public ones. + */ + private synchronized void printMessage (String aMessage) + { + maText.append (aMessage); + } + + + + + private static MessageArea saInstance = null; + private JTextArea maText; +} diff --git a/accessibility/workben/org/openoffice/accessibility/misc/NameProvider.java b/accessibility/workben/org/openoffice/accessibility/misc/NameProvider.java new file mode 100644 index 000000000000..736bc2c7f17b --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/misc/NameProvider.java @@ -0,0 +1,263 @@ +package org.openoffice.accessibility.misc; + +import java.util.HashMap; +import com.sun.star.accessibility.AccessibleStateType; +import com.sun.star.accessibility.AccessibleEventId; +import com.sun.star.accessibility.AccessibleRole; +import com.sun.star.accessibility.AccessibleRelationType; + + +/** Provide names for several accessibility constants groups. +*/ +public class NameProvider +{ + /** Return the name of the specified state. + @param nStateId + Id of the state for which to return its name. This is one of + the ids listed in the AccessibleStateType + constants group. + @return + Returns the name of the specified state. When an invalid or + unknown state id is given then a special string is returned that + says that the state does not exist. + */ + public static String getStateName (int nStateId) + { + String sStateName = (String)maStateMap.get (new Integer(nStateId)); + if (sStateName == null) + sStateName = new String (""); + return sStateName; + } + + + /** Return the name of the specified event. + @param nEventId + Id of the event type for which to return its name. This is one + of the ids listed in the AccessibleEventId + constants group. + @return + Returns the name of the specified event type or an empty string + if an invalid / unknown event id was given. + */ + public static String getEventName (int nEventId) + { + return (String)maEventMap.get (new Integer(nEventId)); + } + + + /** Return the name of the specified role. + @param nRole + Id of the role for which to return its name. This is one of + the ids listed in the AccessibleRole + constants group. + @return + Returns the name of the specified role or an empty string if an + invalid / unknown role id was given. + */ + public static String getRoleName (int nRole) + { + return (String)maRoleMap.get (new Integer(nRole)); + } + + + /** Return the name of the specified relation. + @param nRelation + Id of the relation for which to return its name. This is one of + the ids listed in the AccessibleRelationType + constants group. + @return + Returns the name of the specified relation type or an empty + string if an invalid / unknown role id was given. + */ + public static String getRelationName (int nRelation) + { + return (String)maRelationMap.get (new Integer(nRelation)); + } + + + private static HashMap maStateMap = new HashMap(); + private static HashMap maEventMap = new HashMap(); + private static HashMap maRoleMap = new HashMap(); + private static HashMap maRelationMap = new HashMap(); + + static { + maStateMap.put (new Integer (AccessibleStateType.INVALID), "INVALID"); + maStateMap.put (new Integer (AccessibleStateType.ACTIVE), "ACTIVE"); + maStateMap.put (new Integer (AccessibleStateType.ARMED), "ARMED"); + maStateMap.put (new Integer (AccessibleStateType.BUSY), "BUSY"); + maStateMap.put (new Integer (AccessibleStateType.CHECKED), "CHECKED"); + // maStateMap.put (new Integer (AccessibleStateType.COLLAPSED), "COLLAPSED"); + maStateMap.put (new Integer (AccessibleStateType.DEFUNC), "DEFUNC"); + maStateMap.put (new Integer (AccessibleStateType.EDITABLE), "EDITABLE"); + maStateMap.put (new Integer (AccessibleStateType.ENABLED), "ENABLED"); + maStateMap.put (new Integer (AccessibleStateType.EXPANDABLE), "EXPANDABLE"); + maStateMap.put (new Integer (AccessibleStateType.EXPANDED), "EXPANDED"); + maStateMap.put (new Integer (AccessibleStateType.FOCUSABLE), "FOCUSABLE"); + maStateMap.put (new Integer (AccessibleStateType.FOCUSED), "FOCUSED"); + maStateMap.put (new Integer (AccessibleStateType.HORIZONTAL), "HORIZONTAL"); + maStateMap.put (new Integer (AccessibleStateType.ICONIFIED), "ICONIFIED"); + maStateMap.put (new Integer (AccessibleStateType.MODAL), "MODAL"); + maStateMap.put (new Integer (AccessibleStateType.MULTI_LINE), "MULTI_LINE"); + maStateMap.put (new Integer (AccessibleStateType.MULTI_SELECTABLE), "MULTI_SELECTABLE"); + maStateMap.put (new Integer (AccessibleStateType.OPAQUE), "OPAQUE"); + maStateMap.put (new Integer (AccessibleStateType.PRESSED), "PRESSED"); + maStateMap.put (new Integer (AccessibleStateType.RESIZABLE), "RESIZABLE"); + maStateMap.put (new Integer (AccessibleStateType.SELECTABLE), "SELECTABLE"); + maStateMap.put (new Integer (AccessibleStateType.SELECTED), "SELECTED"); + maStateMap.put (new Integer (AccessibleStateType.SENSITIVE), "SENSITIVE"); + maStateMap.put (new Integer (AccessibleStateType.SHOWING), "SHOWING"); + maStateMap.put (new Integer (AccessibleStateType.SINGLE_LINE), "SINGLE_LINE"); + maStateMap.put (new Integer (AccessibleStateType.STALE), "STALE"); + maStateMap.put (new Integer (AccessibleStateType.TRANSIENT), "TRANSIENT"); + maStateMap.put (new Integer (AccessibleStateType.VERTICAL), "VERTICAL"); + maStateMap.put (new Integer (AccessibleStateType.VISIBLE), "VISIBLE"); + maStateMap.put (new Integer (AccessibleStateType.MANAGES_DESCENDANTS), + "MANAGES_DESCENDANTS"); + //maStateMap.put (new Integer (AccessibleStateType.INCONSISTENT),"INCONSISTENT"); + + + maEventMap.put (new Integer (0), + "[UNKNOWN]"); + maEventMap.put (new Integer (AccessibleEventId.NAME_CHANGED), + "NAME_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.DESCRIPTION_CHANGED), + "DESCRIPTION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.ACTION_CHANGED), + "ACTION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.STATE_CHANGED), + "STATE_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.ACTIVE_DESCENDANT_CHANGED), + "ACTIVE_DESCENDANT_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.BOUNDRECT_CHANGED), + "BOUNDRECT_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.CHILD), + "CHILD"); + maEventMap.put (new Integer (AccessibleEventId.INVALIDATE_ALL_CHILDREN), + "INVALIDATE_ALL_CHILDREN"); + maEventMap.put (new Integer (AccessibleEventId.SELECTION_CHANGED), + "SELECTION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.VISIBLE_DATA_CHANGED), + "VISIBLE_DATA_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.VALUE_CHANGED), + "VALUE_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.CONTENT_FLOWS_FROM_RELATION_CHANGED), + "CONTENT_FLOWS_FROM_RELATION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.CONTENT_FLOWS_TO_RELATION_CHANGED), + "CONTENT_FLOWS_TO_RELATION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.CONTROLLED_BY_RELATION_CHANGED), + "CONTROLLED_BY_RELATION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.CONTROLLER_FOR_RELATION_CHANGED), + "CONTROLLER_FOR_RELATION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.LABEL_FOR_RELATION_CHANGED), + "LABEL_FOR_RELATION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.LABELED_BY_RELATION_CHANGED), + "LABELED_BY_RELATION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.MEMBER_OF_RELATION_CHANGED), + "MEMBER_OF_RELATION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.SUB_WINDOW_OF_RELATION_CHANGED), + "SUB_WINDOW_OF_RELATION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.CARET_CHANGED), + "CARET_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TEXT_SELECTION_CHANGED), + "TEXT_SELECTION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TEXT_CHANGED), + "TEXT_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TEXT_ATTRIBUTE_CHANGED), + "TEXT_ATTRIBUTE_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.HYPERTEXT_CHANGED), + "HYPERTEXT_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TABLE_CAPTION_CHANGED), + "TABLE_CAPTION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TABLE_COLUMN_DESCRIPTION_CHANGED), + "TABLE_COLUMN_DESCRIPTION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TABLE_COLUMN_HEADER_CHANGED), + "TABLE_COLUMN_HEADER_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TABLE_MODEL_CHANGED), + "TABLE_MODEL_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TABLE_ROW_DESCRIPTION_CHANGED), + "TABLE_ROW_DESCRIPTION_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TABLE_ROW_HEADER_CHANGED), + "TABLE_ROW_HEADER_CHANGED"); + maEventMap.put (new Integer (AccessibleEventId.TABLE_SUMMARY_CHANGED), + "TABLE_SUMMARY_CHANGED"); + + maRoleMap.put (new Integer(AccessibleRole.UNKNOWN), "UNKNOWN"); + maRoleMap.put (new Integer (AccessibleRole.UNKNOWN), "UNKNOWN"); + maRoleMap.put (new Integer (AccessibleRole.ALERT), "ALERT"); + maRoleMap.put (new Integer (AccessibleRole.COLUMN_HEADER), "COLUMN_HEADER"); + maRoleMap.put (new Integer (AccessibleRole.CANVAS), "CANVAS"); + maRoleMap.put (new Integer (AccessibleRole.CHECK_BOX), "CHECK_BOX"); + maRoleMap.put (new Integer (AccessibleRole.CHECK_MENU_ITEM), "CHECK_MENU_ITEM"); + maRoleMap.put (new Integer (AccessibleRole.COLOR_CHOOSER), "COLOR_CHOOSER"); + maRoleMap.put (new Integer (AccessibleRole.COMBO_BOX), "COMBO_BOX"); + maRoleMap.put (new Integer (AccessibleRole.DESKTOP_ICON), "DESKTOP_ICON"); + maRoleMap.put (new Integer (AccessibleRole.DESKTOP_PANE), "DESKTOP_PANE"); + maRoleMap.put (new Integer (AccessibleRole.DIRECTORY_PANE), "DIRECTORY_PANE"); + maRoleMap.put (new Integer (AccessibleRole.DIALOG), "DIALOG"); + maRoleMap.put (new Integer (AccessibleRole.DOCUMENT), "DOCUMENT"); + maRoleMap.put (new Integer (AccessibleRole.EMBEDDED_OBJECT), "EMBEDDED_OBJECT"); + maRoleMap.put (new Integer (AccessibleRole.END_NOTE), "END_NOTE"); + maRoleMap.put (new Integer (AccessibleRole.FILE_CHOOSER), "FILE_CHOOSER"); + maRoleMap.put (new Integer (AccessibleRole.FILLER), "FILLER"); + maRoleMap.put (new Integer (AccessibleRole.FONT_CHOOSER), "FONT_CHOOSER"); + maRoleMap.put (new Integer (AccessibleRole.FOOTER), "FOOTER"); + maRoleMap.put (new Integer (AccessibleRole.FOOTNOTE), "FOOTNOTE"); + maRoleMap.put (new Integer (AccessibleRole.FRAME), "FRAME"); + maRoleMap.put (new Integer (AccessibleRole.GLASS_PANE), "GLASS_PANE"); + maRoleMap.put (new Integer (AccessibleRole.GRAPHIC), "GRAPHIC"); + maRoleMap.put (new Integer (AccessibleRole.GROUP_BOX), "GROUP_BOX"); + maRoleMap.put (new Integer (AccessibleRole.HEADER), "HEADER"); + maRoleMap.put (new Integer (AccessibleRole.HEADING), "HEADING"); + maRoleMap.put (new Integer (AccessibleRole.HYPER_LINK), "HYPER_LINK"); + maRoleMap.put (new Integer (AccessibleRole.ICON), "ICON"); + maRoleMap.put (new Integer (AccessibleRole.INTERNAL_FRAME), "INTERNAL_FRAME"); + maRoleMap.put (new Integer (AccessibleRole.LABEL), "LABEL"); + maRoleMap.put (new Integer (AccessibleRole.LAYERED_PANE), "LAYERED_PANE"); + maRoleMap.put (new Integer (AccessibleRole.LIST), "LIST"); + maRoleMap.put (new Integer (AccessibleRole.LIST_ITEM), "LIST_ITEM"); + maRoleMap.put (new Integer (AccessibleRole.MENU), "MENU"); + maRoleMap.put (new Integer (AccessibleRole.MENU_BAR), "MENU_BAR"); + maRoleMap.put (new Integer (AccessibleRole.MENU_ITEM), "MENU_ITEM"); + maRoleMap.put (new Integer (AccessibleRole.OPTION_PANE), "OPTION_PANE"); + maRoleMap.put (new Integer (AccessibleRole.PAGE_TAB), "PAGE_TAB"); + maRoleMap.put (new Integer (AccessibleRole.PAGE_TAB_LIST), "PAGE_TAB_LIST"); + maRoleMap.put (new Integer (AccessibleRole.PANEL), "PANEL"); + maRoleMap.put (new Integer (AccessibleRole.PARAGRAPH), "PARAGRAPH"); + maRoleMap.put (new Integer (AccessibleRole.PASSWORD_TEXT), "PASSWORD_TEXT"); + maRoleMap.put (new Integer (AccessibleRole.POPUP_MENU), "POPUP_MENU"); + maRoleMap.put (new Integer (AccessibleRole.PUSH_BUTTON), "PUSH_BUTTON"); + maRoleMap.put (new Integer (AccessibleRole.PROGRESS_BAR), "PROGRESS_BAR"); + maRoleMap.put (new Integer (AccessibleRole.RADIO_BUTTON), "RADIO_BUTTON"); + maRoleMap.put (new Integer (AccessibleRole.RADIO_MENU_ITEM), "RADIO_MENU_ITEM"); + maRoleMap.put (new Integer (AccessibleRole.ROW_HEADER), "ROW_HEADER"); + maRoleMap.put (new Integer (AccessibleRole.ROOT_PANE), "ROOT_PANE"); + maRoleMap.put (new Integer (AccessibleRole.SCROLL_BAR), "SCROLL_BAR"); + maRoleMap.put (new Integer (AccessibleRole.SCROLL_PANE), "SCROLL_PANE"); + maRoleMap.put (new Integer (AccessibleRole.SHAPE), "SHAPE"); + maRoleMap.put (new Integer (AccessibleRole.SEPARATOR), "SEPARATOR"); + maRoleMap.put (new Integer (AccessibleRole.SLIDER), "SLIDER"); + maRoleMap.put (new Integer (AccessibleRole.SPIN_BOX), "SPIN_BOX"); + maRoleMap.put (new Integer (AccessibleRole.SPLIT_PANE), "SPLIT_PANE"); + maRoleMap.put (new Integer (AccessibleRole.STATUS_BAR), "STATUS_BAR"); + maRoleMap.put (new Integer (AccessibleRole.TABLE), "TABLE"); + maRoleMap.put (new Integer (AccessibleRole.TABLE_CELL), "TABLE_CELL"); + maRoleMap.put (new Integer (AccessibleRole.TEXT), "TEXT"); + maRoleMap.put (new Integer (AccessibleRole.TEXT_FRAME), "TEXT_FRAME"); + maRoleMap.put (new Integer (AccessibleRole.TOGGLE_BUTTON), "TOGGLE_BUTTON"); + maRoleMap.put (new Integer (AccessibleRole.TOOL_BAR), "TOOL_BAR"); + maRoleMap.put (new Integer (AccessibleRole.TOOL_TIP), "TOOL_TIP"); + maRoleMap.put (new Integer (AccessibleRole.TREE), "TREE"); + maRoleMap.put (new Integer (AccessibleRole.VIEW_PORT), "VIEW_PORT"); + maRoleMap.put (new Integer (AccessibleRole.WINDOW), "WINDOW"); + + maRelationMap.put (new Integer (AccessibleRelationType.INVALID), "INVALID"); + maRelationMap.put (new Integer (AccessibleRelationType.CONTENT_FLOWS_FROM), "CONTENT_FLOWS_FROM"); + maRelationMap.put (new Integer (AccessibleRelationType.CONTENT_FLOWS_TO), "CONTENT_FLOWS_TO"); + maRelationMap.put (new Integer (AccessibleRelationType.CONTROLLED_BY), "CONTROLLED_BY"); + maRelationMap.put (new Integer (AccessibleRelationType.CONTROLLER_FOR), "CONTROLLER_FOR"); + maRelationMap.put (new Integer (AccessibleRelationType.LABEL_FOR), "LABEL_FOR"); + maRelationMap.put (new Integer (AccessibleRelationType.LABELED_BY), "LABELED_BY"); + maRelationMap.put (new Integer (AccessibleRelationType.MEMBER_OF), "MEMBER_OF"); + maRelationMap.put (new Integer (AccessibleRelationType.SUB_WINDOW_OF), "SUB_WINDOW_OF"); + } +} diff --git a/accessibility/workben/org/openoffice/accessibility/misc/OfficeConnection.java b/accessibility/workben/org/openoffice/accessibility/misc/OfficeConnection.java new file mode 100644 index 000000000000..d9f77d9e4e07 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/misc/OfficeConnection.java @@ -0,0 +1,169 @@ +package org.openoffice.accessibility.misc; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.io.PrintStream; +import java.util.Timer; +import java.util.TimerTask; +import java.util.Vector; + +import com.sun.star.uno.UnoRuntime; +import com.sun.star.bridge.XUnoUrlResolver; +import com.sun.star.lang.XMultiServiceFactory; +import com.sun.star.comp.helper.Bootstrap; + +/** This class establishes a connection to a StarOffice application. + */ +public class OfficeConnection + extends TimerTask +{ + final public static long snDelay = 3000; + + public static synchronized OfficeConnection Instance () + { + if (saInstance == null) + saInstance = new OfficeConnection (); + return saInstance; + } + + + + + static public void SetPipeName (String sPipeName) + { + ssDefaultPipeName = sPipeName; + } + + + + + public void AddConnectionListener (ActionListener aListener) + { + SimpleOffice aOffice = SimpleOffice.Instance(); + if (IsValid()) + aListener.actionPerformed ( + new ActionEvent (aOffice,0,"")); + maListeners.add (aListener); + } + + + + /** @descr Return the service manager that represents the connected + StarOffice application + */ + public XMultiServiceFactory GetServiceManager () + { + return maServiceManager; + } + + + + + /** Return a flag that indicates if the constructor has been able to + establish a valid connection. + */ + public boolean IsValid () + { + return (maServiceManager != null); + } + + + + + /** Connect to a already running StarOffice application that has + been started with a command line argument like + "-accept=pipe,name=;urp;" + */ + private boolean Connect () + { + mbInitialized = true; + // Set up connection string. + String sConnectString = "uno:pipe,name=" + msPipeName + + ";urp;StarOffice.ServiceManager"; + + // connect to a running office and get the ServiceManager + try + { + // Create a URL Resolver. + XMultiServiceFactory aLocalServiceManager = + Bootstrap.createSimpleServiceManager(); + XUnoUrlResolver aURLResolver = + (XUnoUrlResolver) UnoRuntime.queryInterface ( + XUnoUrlResolver.class, + aLocalServiceManager.createInstance ( + "com.sun.star.bridge.UnoUrlResolver") + ); + + maServiceManager = + (XMultiServiceFactory) UnoRuntime.queryInterface ( + XMultiServiceFactory.class, + aURLResolver.resolve (sConnectString) + ); + } + + catch (Exception e) + { + if (maOut != null) + { + maOut.println ("Could not connect with " + + sConnectString + " : " + e); + maOut.println ("Please start OpenOffice/StarOffice with " + + "\"-accept=pipe,name=" + msPipeName + ";urp;\""); + } + } + + return maServiceManager != null; + } + + + public void run () + { + if ( ! IsValid()) + { + MessageArea.println ("trying to connect"); + if (Connect()) + { + // Stop the timer. + cancel (); + + ActionEvent aEvent = new ActionEvent (this,0,""); + for (int i=0; i 0) + { + // All shapes return as accessible object the document window's + // accessible object. This is, of course, a hack and will be + // removed as soon as the missing infrastructure for obtaining + // the object directly is implemented. + XShape xShape = null; + try{ + xShape = (XShape) UnoRuntime.queryInterface( + XShape.class, xShapeList.getByIndex (0)); + } catch (Exception e) + {} + XAccessible xAccessible = (XAccessible) UnoRuntime.queryInterface ( + XAccessible.class, xShape); + return xAccessible; + } + else + return null; + } + + private SimpleOffice () + { + } + + + + private XDesktop mxDesktop; + private static SimpleOffice saInstance = null; +} diff --git a/accessibility/workben/org/openoffice/accessibility/misc/makefile.common b/accessibility/workben/org/openoffice/accessibility/misc/makefile.common new file mode 100644 index 000000000000..d06336e12c56 --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/misc/makefile.common @@ -0,0 +1,67 @@ +#************************************************************************* +# +# $RCSfile: makefile.common,v $ +# +# The Contents of this file are made available subject to the terms of +# either of the following licenses +# +# - GNU Lesser General Public License Version 2.1 +# - Sun Industry Standards Source License Version 1.1 +# +# Sun Microsystems Inc., October, 2000 +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2000 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1, as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +# +# Sun Industry Standards Source License Version 1.1 +# ================================================= +# The contents of this file are subject to the Sun Industry Standards +# Source License Version 1.1 (the "License"); You may not use this file +# except in compliance with the License. You may obtain a copy of the +# License at http://www.openoffice.org/license.html. +# +# Software provided under this License is provided on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, +# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, +# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. +# See the License for the specific provisions governing your rights and +# obligations concerning the Software. +# +# The Initial Developer of the Original Code is: Sun Microsystems, Inc. +# +# Copyright: 2000 by Sun Microsystems, Inc. +# +# All Rights Reserved. +# +# Contributor(s): _______________________________________ +# +# +# +#************************************************************************* + +JARFILES = sandbox.jar jurt.jar unoil.jar ridl.jar juh.jar java_uno.jar +JAVAFILES = \ + AccessibleEventMulticaster.java \ + InformationWriter.java \ + MessageArea.java \ + NameProvider.java \ + OfficeConnection.java \ + Options.java \ + SimpleOffice.java diff --git a/accessibility/workben/org/openoffice/accessibility/misc/makefile.mk b/accessibility/workben/org/openoffice/accessibility/misc/makefile.mk new file mode 100644 index 000000000000..f0b71f860c3e --- /dev/null +++ b/accessibility/workben/org/openoffice/accessibility/misc/makefile.mk @@ -0,0 +1,86 @@ +#************************************************************************* +# +# $RCSfile: makefile.mk,v $ +# +# The Contents of this file are made available subject to the terms of +# either of the following licenses +# +# - GNU Lesser General Public License Version 2.1 +# - Sun Industry Standards Source License Version 1.1 +# +# Sun Microsystems Inc., October, 2000 +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2000 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1, as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +# +# Sun Industry Standards Source License Version 1.1 +# ================================================= +# The contents of this file are subject to the Sun Industry Standards +# Source License Version 1.1 (the "License"); You may not use this file +# except in compliance with the License. You may obtain a copy of the +# License at http://www.openoffice.org/license.html. +# +# Software provided under this License is provided on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, +# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, +# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. +# See the License for the specific provisions governing your rights and +# obligations concerning the Software. +# +# The Initial Developer of the Original Code is: Sun Microsystems, Inc. +# +# Copyright: 2000 by Sun Microsystems, Inc. +# +# All Rights Reserved. +# +# Contributor(s): _______________________________________ +# +# +# +#************************************************************************* + +PRJNAME = awb +PRJ = ..$/..$/..$/..$/.. +TARGET = java_misc +PACKAGE = org$/openoffice$/accessibility$/misc + +USE_JAVAVER:=TRUE + +# --- Settings ----------------------------------------------------- + +.INCLUDE : settings.mk + +.IF "$(JAVAVER:s/.//)" >= "140" + +.INCLUDE : makefile.common + +JAVACLASSFILES= $(foreach,i,$(JAVAFILES) $(CLASSDIR)$/$(PACKAGE)$/$(i:b).class) + +#JARTARGET = $(TARGET).jar +#JARCOMPRESS = TRUE +#JARCLASSDIRS = $(PACKAGE) org/openoffice/java/accessibility/awb +#CUSTOMMANIFESTFILE = manifest +.ENDIF + +# --- Targets ------------------------------------------------------ + + +.INCLUDE : target.mk + diff --git a/automation/source/communi/communi.cxx b/automation/source/communi/communi.cxx index 55b72e1031e2..6f79551ecd72 100644 --- a/automation/source/communi/communi.cxx +++ b/automation/source/communi/communi.cxx @@ -260,7 +260,7 @@ long CommunicationLinkViaSocket::DataReceived( void* EMPTYARG ) IMPL_LINK( CommunicationLinkViaSocket, PutDataReceivedHdl, CommunicationLinkViaSocket*, EMPTYARG ) { - nDataReceivedEventId = GetpApp()->PostUserEvent( LINK( this, CommunicationLinkViaSocket, DataReceived ) ); + nDataReceivedEventId = GetpApp()->PostUserEvent( LINK( this, CommunicationLink, DataReceived ) ); return 0; } diff --git a/automation/source/server/server.cxx b/automation/source/server/server.cxx index 5d84cb6cd75d..988f4055a2eb 100644 --- a/automation/source/server/server.cxx +++ b/automation/source/server/server.cxx @@ -805,7 +805,7 @@ BOOL ImplRemoteControl::QueCommands( ULONG nServiceId, SvStream *pIn ) break; } default: - DBG_ERROR1( "Unbekannter Request Nr:%il", nId ); + DBG_ERROR1( "Unbekannter Request Nr:%i", nId ); break; } if( !pIn->IsEof() ) diff --git a/automation/source/testtool/makefile.mk b/automation/source/testtool/makefile.mk index 4cb27a48ddd4..79a811fdaee7 100644 --- a/automation/source/testtool/makefile.mk +++ b/automation/source/testtool/makefile.mk @@ -103,12 +103,15 @@ $(MISC)$/xfilter.pl : filter.pl .IF "$(GUI)"=="UNX" INIFILESUFFIX=rc +BRANDPATH=none .ELIF "$(GUI)"=="WNT" || "$(GUI)"=="OS2" INIFILESUFFIX=.ini +BRANDPATH=.. .END $(BIN)$/testtool$(INIFILESUFFIX): testtool.ini - $(SED) -e s/$(EMQ)!INIFILESUFFIX$(EMQ)!/$(INIFILESUFFIX)/ < $< > $@ + $(SED) -e s/$(EMQ)!INIFILESUFFIX$(EMQ)!/$(INIFILESUFFIX)/ \ + -e s/$(EMQ)!BRANDPATH$(EMQ)!/$(BRANDPATH)/ < $< > $@ ALLTAR: \ $(BIN)$/testtool$(INIFILESUFFIX) diff --git a/automation/source/testtool/tcommuni.cxx b/automation/source/testtool/tcommuni.cxx index f341bd3efe36..3ac135829f6d 100644 --- a/automation/source/testtool/tcommuni.cxx +++ b/automation/source/testtool/tcommuni.cxx @@ -36,7 +36,6 @@ #include #include #include -#include #include #ifndef _BASIC_TTRESHLP_HXX diff --git a/automation/source/testtool/testtool.ini b/automation/source/testtool/testtool.ini index bf1b54c8777e..ff2e43f5c0f6 100644 --- a/automation/source/testtool/testtool.ini +++ b/automation/source/testtool/testtool.ini @@ -1,7 +1,7 @@ [Bootstrap] URE_BOOTSTRAP=${ORIGIN}/fundamentalbasis!INIFILESUFFIX! OOO_BASE_DIR=${ORIGIN}/.. -BRAND_BASE_DIR=${OOO_BASE_DIR}/none +BRAND_BASE_DIR=${OOO_BASE_DIR}/!BRANDPATH! UserInstallation=${SYSUSERCONFIG}/.oootesttool [Misc] diff --git a/automation/util/manually_added_ids.hid b/automation/util/manually_added_ids.hid index 1a76246e5128..7372dc0d9879 100755 --- a/automation/util/manually_added_ids.hid +++ b/automation/util/manually_added_ids.hid @@ -3,11 +3,6 @@ MSC_Super_ID 123456 MSC_Super_ID2 1234567 MSC_Super_ID3 12345678 -HID_OPTIONS_JAVA_LIST 39997 - -PDF1TBO 867876864 -PDF2TBO 867860480 - FontWork1TBO 40026 FontWork2TBO 40027 diff --git a/basctl/source/basicide/basidesh.src b/basctl/source/basicide/basidesh.src index 5d5f4b6fe9fb..130dda34d9e4 100644 --- a/basctl/source/basicide/basidesh.src +++ b/basctl/source/basicide/basidesh.src @@ -195,7 +195,7 @@ String RID_STR_APPENDLIBS String RID_STR_QUERYDELMACRO { /* ### ACHTUNG: Neuer Text in Resource? Möchten Sie das Makro XX löschen ? : M÷chten Sie das Makro XX l÷schen ? */ - Text [ en-US ] = "Do you want to delete the macro XX ?" ; + Text [ en-US ] = "Do you want to delete the macro XX?" ; }; String RID_STR_QUERYDELDIALOG { diff --git a/basctl/source/basicide/basobj2.cxx b/basctl/source/basicide/basobj2.cxx index 4d0ccca05581..e4abb3fad92e 100644 --- a/basctl/source/basicide/basobj2.cxx +++ b/basctl/source/basicide/basobj2.cxx @@ -80,31 +80,6 @@ namespace BasicIDE { //---------------------------------------------------------------------------- -SfxMacro* CreateMacro() -{ - DBG_ERROR( "BasicIDE::CreateMacro() - war eigentlich nur fuer Macro-Recording!" ); - IDE_DLL()->GetExtraData()->ChoosingMacro() = TRUE; - SFX_APP()->EnterBasicCall(); - Window* pParent = Application::GetDefDialogParent(); - SfxMacro* pMacro = 0; - MacroChooser* pChooser = new MacroChooser( pParent, TRUE ); - Window* pOldModalDialogParent = Application::GetDefDialogParent(); - Application::SetDefDialogParent( pChooser ); - //pChooser->SetMode( MACROCHOOSER_RECORDING ); - short nRetValue = pChooser->Execute(); - (void)nRetValue; - - Application::SetDefDialogParent( pOldModalDialogParent ); - delete pChooser; - - SFX_APP()->LeaveBasicCall(); - IDE_DLL()->GetExtraData()->ChoosingMacro() = FALSE; - - return pMacro; -} - -//---------------------------------------------------------------------------- - void Organize( INT16 tabId ) { BasicIDEDLL::Init(); diff --git a/basctl/source/basicide/bastype3.hxx b/basctl/source/basicide/bastype3.hxx index 35607b43f307..02dbb9cd95dd 100644 --- a/basctl/source/basicide/bastype3.hxx +++ b/basctl/source/basicide/bastype3.hxx @@ -62,24 +62,6 @@ public: Accelerator& GetAccelerator() { return aAcc; } }; -class ExtendedMultiLineEdit : public MultiLineEdit -{ -private: - Accelerator aAcc; - Link aAccHdl; - -protected: - DECL_LINK( EditAccHdl, Accelerator * ); - DECL_LINK( ImplGetFocusHdl, Control* ); - DECL_LINK( ImplLoseFocusHdl, Control* ); - -public: - ExtendedMultiLineEdit( Window* pParent, IDEResId nRes ); - - void SetAccHdl( const Link& rLink ) { aAccHdl = rLink; } - Accelerator& GetAccelerator() { return aAcc; } -}; - #endif //NO_SPECIALEDIT #endif // _BASTYPE3_HXX diff --git a/basctl/source/basicide/bastypes.cxx b/basctl/source/basicide/bastypes.cxx index c00037cf8cab..3b64b11b9abc 100644 --- a/basctl/source/basicide/bastypes.cxx +++ b/basctl/source/basicide/bastypes.cxx @@ -484,24 +484,6 @@ void __EXPORT BasicDockingWindow::StartDocking() - -BasicToolBox::BasicToolBox( Window* pParent, IDEResId nRes ) : - ToolBox( pParent, nRes ) -{ -} - - - -void __EXPORT BasicToolBox::MouseButtonDown( const MouseEvent &rEvt ) -{ - ToolBox::MouseButtonDown( rEvt ); - if ( !GetCurItemId() ) - ((BasicDockingWindow*)GetParent())->MouseButtonDown( rEvt ); -} - - - - ExtendedEdit::ExtendedEdit( Window* pParent, IDEResId nRes ) : Edit( pParent, nRes ) { @@ -534,34 +516,6 @@ IMPL_LINK_INLINE_END( ExtendedEdit, EditAccHdl, Accelerator *, pAcc ) -ExtendedMultiLineEdit::ExtendedMultiLineEdit( Window* pParent, IDEResId nRes ) : - MultiLineEdit( pParent, nRes ) -{ - aAcc.SetSelectHdl( LINK( this, ExtendedMultiLineEdit, EditAccHdl ) ); - Control::SetGetFocusHdl( LINK( this, ExtendedMultiLineEdit, ImplGetFocusHdl ) ); - Control::SetLoseFocusHdl( LINK( this, ExtendedMultiLineEdit, ImplLoseFocusHdl ) ); -} - -IMPL_LINK( ExtendedMultiLineEdit, ImplGetFocusHdl, Control*, EMPTYARG ) -{ - Application::InsertAccel( &aAcc ); - return 0; -} - - -IMPL_LINK( ExtendedMultiLineEdit, ImplLoseFocusHdl, Control*, EMPTYARG ) -{ - Application::RemoveAccel( &aAcc ); - return 0; -} - -IMPL_LINK_INLINE_START( ExtendedMultiLineEdit, EditAccHdl, Accelerator *, pAcc ) -{ - aAccHdl.Call( pAcc ); - return 0; -} -IMPL_LINK_INLINE_END( ExtendedMultiLineEdit, EditAccHdl, Accelerator *, pAcc ) - struct TabBarDDInfo { ULONG npTabBar; @@ -803,11 +757,6 @@ ULONG CalcLineCount( SvStream& rStream ) return nCRs; } -LibInfoKey::LibInfoKey() - :m_aDocument( ScriptDocument::getApplicationScriptDocument() ) -{ -} - LibInfoKey::LibInfoKey( const ScriptDocument& rDocument, const String& rLibName ) :m_aDocument( rDocument ) ,m_aLibName( rLibName ) @@ -839,12 +788,6 @@ bool LibInfoKey::operator==( const LibInfoKey& rKey ) const return bRet; } -LibInfoItem::LibInfoItem() - :m_aDocument( ScriptDocument::getApplicationScriptDocument() ) - ,m_nCurrentType( 0 ) -{ -} - LibInfoItem::LibInfoItem( const ScriptDocument& rDocument, const String& rLibName, const String& rCurrentName, USHORT nCurrentType ) :m_aDocument( rDocument ) ,m_aLibName( rLibName ) diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index abf25722eab2..f0143cc8517b 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -232,14 +232,6 @@ SvLBoxEntry* BasicCheckBox::DoInsertEntry( const String& rStr, ULONG nPos ) //---------------------------------------------------------------------------- -void BasicCheckBox::RemoveEntry( ULONG nPos ) -{ - if ( nPos < GetEntryCount() ) - SvTreeListBox::GetModel()->Remove( GetEntry( nPos ) ); -} - -//---------------------------------------------------------------------------- - SvLBoxEntry* BasicCheckBox::FindEntry( const String& rName ) { ULONG nCount = GetEntryCount(); @@ -255,29 +247,6 @@ SvLBoxEntry* BasicCheckBox::FindEntry( const String& rName ) //---------------------------------------------------------------------------- -ULONG BasicCheckBox::GetSelectEntryPos() const -{ - return GetModel()->GetAbsPos( FirstSelected() ); -} - -//---------------------------------------------------------------------------- - -ULONG BasicCheckBox::GetCheckedEntryCount() const -{ - ULONG nCheckCount = 0; - ULONG nCount = GetEntryCount(); - - for (ULONG i=0; i& rxSFac) :SdrUnoObj(rModelName, rxSFac, sal_False) @@ -1382,23 +1372,6 @@ DBG_NAME(DlgEdForm); //---------------------------------------------------------------------------- -DlgEdForm::DlgEdForm(const ::rtl::OUString& rModelName) - :DlgEdObj(rModelName) -{ - DBG_CTOR(DlgEdForm, NULL); -} - -//---------------------------------------------------------------------------- - -DlgEdForm::DlgEdForm(const ::rtl::OUString& rModelName, - const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& rxSFac) - :DlgEdObj(rModelName, rxSFac) -{ - DBG_CTOR(DlgEdForm, NULL); -} - -//---------------------------------------------------------------------------- - DlgEdForm::DlgEdForm() :DlgEdObj() { diff --git a/basctl/source/inc/basobj.hxx b/basctl/source/inc/basobj.hxx index a243d64af39a..c917de5a6dee 100644 --- a/basctl/source/inc/basobj.hxx +++ b/basctl/source/inc/basobj.hxx @@ -54,7 +54,6 @@ struct BasicIDE_Impl; namespace BasicIDE { - SfxMacro* CreateMacro(); void Organize( INT16 tabId ); diff --git a/basctl/source/inc/bastypes.hxx b/basctl/source/inc/bastypes.hxx index ba1ac9c57068..0c542ac405ad 100644 --- a/basctl/source/inc/bastypes.hxx +++ b/basctl/source/inc/bastypes.hxx @@ -98,8 +98,6 @@ struct BreakPoint class BasicDockingWindow : public DockingWindow { - friend class BasicToolBox; - Rectangle aFloatingPosAndSize; protected: @@ -113,14 +111,6 @@ public: BasicDockingWindow( Window* pParent ); }; -class BasicToolBox : public ToolBox -{ -public: - BasicToolBox( Window* pParent, IDEResId nRes ); - - virtual void MouseButtonDown( const MouseEvent& rMEvt ); -}; - DECLARE_LIST( BreakPL, BreakPoint* ) class BreakPointList : public BreakPL { @@ -264,7 +254,6 @@ private: String m_aLibName; public: - LibInfoKey(); LibInfoKey( const ScriptDocument& rDocument, const String& rLibName ); ~LibInfoKey(); @@ -287,7 +276,6 @@ private: USHORT m_nCurrentType; public: - LibInfoItem(); LibInfoItem( const ScriptDocument& rDocument, const String& rLibName, const String& rCurrentName, USHORT nCurrentType ); ~LibInfoItem(); diff --git a/basctl/source/inc/dlgedobj.hxx b/basctl/source/inc/dlgedobj.hxx index 8d0f46b089f0..e352ad738da4 100644 --- a/basctl/source/inc/dlgedobj.hxx +++ b/basctl/source/inc/dlgedobj.hxx @@ -66,7 +66,6 @@ private: protected: DlgEdObj(); - DlgEdObj(const ::rtl::OUString& rModelName); DlgEdObj(const ::rtl::OUString& rModelName, const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& rxSFac); @@ -160,9 +159,6 @@ private: protected: - DlgEdForm(const ::rtl::OUString& rModelName); - DlgEdForm(const ::rtl::OUString& rModelName, - const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& rxSFac); DlgEdForm(); virtual void NbcMove( const Size& rSize ); diff --git a/basctl/util/makefile.mk b/basctl/util/makefile.mk index 80b3efd4325d..0f2a919ff655 100644 --- a/basctl/util/makefile.mk +++ b/basctl/util/makefile.mk @@ -54,6 +54,7 @@ SHL1TARGET= basctl$(DLLPOSTFIX) SHL1IMPLIB= basctl SHL1BASE = 0x1d800000 SHL1STDLIBS= \ + $(SVXCORELIB) \ $(SVXLIB) \ $(SFX2LIB) \ $(BASICLIB) \ diff --git a/crashrep/source/unx/makefile.mk b/crashrep/source/unx/makefile.mk index 54628be1f2f7..2f8be8f96a76 100755 --- a/crashrep/source/unx/makefile.mk +++ b/crashrep/source/unx/makefile.mk @@ -63,7 +63,7 @@ APP1RPATH=BRAND .IF "$(OS)" != "MACOSX" APP1STDLIBS=$(DYNAMIC) -lXext -lX11 .ENDIF -.IF "$(OS)" != "FREEBSD" && "$(OS)" != "MACOSX" +.IF "$(OS)" != "FREEBSD" && "$(OS)" != "MACOSX" && "$(OS)"!="NETBSD" APP1STDLIBS+=-ldl -lnsl .ENDIF .IF "$(OS)" == "SOLARIS" diff --git a/embedserv/source/inprocserv/makefile.mk b/embedserv/source/inprocserv/makefile.mk index 0f81dcc8bd0d..1928b1ec42ac 100644 --- a/embedserv/source/inprocserv/makefile.mk +++ b/embedserv/source/inprocserv/makefile.mk @@ -57,7 +57,17 @@ SLOFILES=\ $(SLO)$/inprocembobj.obj SHL1TARGET=$(TARGET) -SHL1STDLIBS=\ +.IF "$(COM)"=="GCC" +SHL1STDLIBS += -lstdc++ +.IF "$(MINGW_GCCLIB_EH)"=="YES" +SHL1STDLIBS += -lgcc_eh +.ENDIF +SHL1STDLIBS += -lgcc -lmingw32 -lmoldname -lmsvcrt +.ELSE +SHL1STDLIBS= +.ENDIF + +SHL1STDLIBS+=\ $(UUIDLIB)\ $(OLE32LIB)\ $(GDI32LIB)\ diff --git a/extensions/source/abpilot/makefile.mk b/extensions/source/abpilot/makefile.mk index 85a19ade9996..8830b9144409 100644 --- a/extensions/source/abpilot/makefile.mk +++ b/extensions/source/abpilot/makefile.mk @@ -94,6 +94,7 @@ SHL1STDLIBS= \ $(COMPHELPERLIB) \ $(TKLIB) \ $(UNOTOOLSLIB) \ + $(SVXCORELIB) \ $(SVXLIB) SHL1LIBS= $(SLB)$/$(TARGET).lib diff --git a/extensions/source/activex/main/SOActiveX.h b/extensions/source/activex/main/SOActiveX.h index f7017d582be9..2bf33f96b4e9 100644 --- a/extensions/source/activex/main/SOActiveX.h +++ b/extensions/source/activex/main/SOActiveX.h @@ -163,7 +163,7 @@ public: HRESULT GetUrlStruct( OLECHAR* sUrl, CComPtr& pdispUrl ); HRESULT Cleanup(); HRESULT TerminateOffice(); - HRESULT CSOActiveX::GetURL( const OLECHAR* url, + HRESULT GetURL( const OLECHAR* url, const OLECHAR* target ); void CallbackCreateXInputStream( CBindStatusCallback* pbsc, BYTE* pBytes, DWORD dwSize ); diff --git a/extensions/source/dbpilots/listcombowizard.cxx b/extensions/source/dbpilots/listcombowizard.cxx index 7b36f27626c4..f86b284b72fd 100644 --- a/extensions/source/dbpilots/listcombowizard.cxx +++ b/extensions/source/dbpilots/listcombowizard.cxx @@ -223,9 +223,6 @@ namespace dbp // the bound field getContext().xObjectModel->setPropertyValue(::rtl::OUString::createFromAscii("DataField"), makeAny(::rtl::OUString(getSettings().sLinkedFormField))); - - // by default, create a drop down control - getContext().xObjectModel->setPropertyValue(::rtl::OUString::createFromAscii("Dropdown"), ::cppu::bool2any(sal_True)); } catch(Exception&) { diff --git a/extensions/source/ole/oleobjw.hxx b/extensions/source/ole/oleobjw.hxx index 2addf2f037a7..255d66f46ea8 100644 --- a/extensions/source/ole/oleobjw.hxx +++ b/extensions/source/ole/oleobjw.hxx @@ -32,8 +32,10 @@ #define __OLEOBJW_HXX #include "ole2uno.hxx" +#ifdef _MSC_VER #pragma warning (push,1) #pragma warning (disable:4548) +#endif #include #define _WIN32_WINNT 0x0400 @@ -46,7 +48,9 @@ #include #include +#ifdef _MSC_VER #pragma warning (pop) +#endif #include #include @@ -88,7 +92,7 @@ public: ~IUnknownWrapper_Impl(); //XInterface - Any SAL_CALL IUnknownWrapper_Impl::queryInterface(const Type& t) + Any SAL_CALL queryInterface(const Type& t) throw (RuntimeException); // XInvokation diff --git a/extensions/source/oooimprovecore/makefile.mk b/extensions/source/oooimprovecore/makefile.mk index 53de4e333994..74a9ad9aee19 100644 --- a/extensions/source/oooimprovecore/makefile.mk +++ b/extensions/source/oooimprovecore/makefile.mk @@ -62,6 +62,7 @@ SHL1STDLIBS= \ $(SVLLIB) \ $(SVTOOLLIB) \ $(SFXLIB) \ + $(SVXCORELIB) \ $(SVXLIB) \ $(TOOLSLIB) diff --git a/extensions/source/oooimprovement/config.cxx b/extensions/source/oooimprovement/config.cxx index daf1e81bc60d..bece7e089f1a 100644 --- a/extensions/source/oooimprovement/config.cxx +++ b/extensions/source/oooimprovement/config.cxx @@ -222,6 +222,7 @@ namespace oooimprovement return result; } +#ifdef FUTURE sal_Int32 Config::getFailedAttempts() const { sal_Int32 result = 0; @@ -231,6 +232,7 @@ namespace oooimprovement MyConfigurationHelper::E_READONLY) >>= result; return result; } +#endif sal_Int32 Config::getOfficeStartCounterdown() const { diff --git a/extensions/source/oooimprovement/config.hxx b/extensions/source/oooimprovement/config.hxx index ff032a6032a5..c5ea887fa76f 100644 --- a/extensions/source/oooimprovement/config.hxx +++ b/extensions/source/oooimprovement/config.hxx @@ -53,7 +53,9 @@ namespace oooimprovement ::rtl::OUString getSoapId() const; ::rtl::OUString getSoapUrl() const; sal_Int32 getReportCount() const; +#ifdef FUTURE sal_Int32 getFailedAttempts() const; +#endif sal_Int32 getOfficeStartCounterdown() const; sal_Int32 incrementEventCount(sal_Int32 by); sal_Int32 incrementReportCount(sal_Int32 by); diff --git a/extensions/source/oooimprovement/corecontroller.cxx b/extensions/source/oooimprovement/corecontroller.cxx index 34fc24e42302..3c9245d3faa9 100644 --- a/extensions/source/oooimprovement/corecontroller.cxx +++ b/extensions/source/oooimprovement/corecontroller.cxx @@ -33,7 +33,6 @@ #include "corecontroller.hxx" #include "config.hxx" - using ::rtl::OUString; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::uno; @@ -41,14 +40,6 @@ using namespace ::com::sun::star::uno; namespace oooimprovement { - - CoreController::CoreController(const Reference& context) - : m_ServiceFactory(Reference( - context->getServiceManager()->createInstanceWithContext( - OUString::createFromAscii("com.sun.star.lang.XMultiServiceFactory"), context), - UNO_QUERY)) - { } - CoreController::CoreController(const Reference& sf) : m_ServiceFactory(sf) { } @@ -96,9 +87,6 @@ namespace oooimprovement return aServiceNames; } - Reference SAL_CALL CoreController::Create(const Reference& context) - { return *(new CoreController(context)); } - Reference SAL_CALL CoreController::Create(const Reference& sm) { return *(new CoreController(sm)); } } diff --git a/extensions/source/oooimprovement/corecontroller.hxx b/extensions/source/oooimprovement/corecontroller.hxx index 3f1cadb82b69..4f62e9d026b6 100644 --- a/extensions/source/oooimprovement/corecontroller.hxx +++ b/extensions/source/oooimprovement/corecontroller.hxx @@ -54,8 +54,8 @@ namespace oooimprovement // css::lang::XServiceInfo - static version static ::rtl::OUString SAL_CALL getImplementationName_static(); static css::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames_static(); - static css::uno::Reference< css::uno::XInterface> SAL_CALL Create( - const css::uno::Reference& context); + //static css::uno::Reference< css::uno::XInterface> SAL_CALL Create( + // const css::uno::Reference& context); static css::uno::Reference< css::uno::XInterface> SAL_CALL Create( const css::uno::Reference< css::lang::XMultiServiceFactory>& sm); diff --git a/extensions/source/oooimprovement/invite_job.cxx b/extensions/source/oooimprovement/invite_job.cxx index 20efafcaa69a..bb1ce11d23fe 100644 --- a/extensions/source/oooimprovement/invite_job.cxx +++ b/extensions/source/oooimprovement/invite_job.cxx @@ -67,12 +67,12 @@ namespace namespace oooimprovement { - InviteJob::InviteJob(const Reference& context) - : m_ServiceFactory(Reference( - context->getServiceManager()->createInstanceWithContext( - OUString::createFromAscii("com.sun.star.lang.XMultiServiceFactory"), context), - UNO_QUERY)) - { } +// InviteJob::InviteJob(const Reference& context) +// : m_ServiceFactory(Reference( +// context->getServiceManager()->createInstanceWithContext( +// OUString::createFromAscii("com.sun.star.lang.XMultiServiceFactory"), context), +// UNO_QUERY)) +// { } InviteJob::InviteJob(const Reference& sf) : m_ServiceFactory(sf) @@ -128,8 +128,8 @@ namespace oooimprovement return aServiceNames; } - Reference InviteJob::Create(const Reference& context) - { return *(new InviteJob(context)); } +// Reference InviteJob::Create(const Reference& context) +// { return *(new InviteJob(context)); } Reference InviteJob::Create(const Reference& sm) { return *(new InviteJob(sm)); } diff --git a/extensions/source/oooimprovement/invite_job.hxx b/extensions/source/oooimprovement/invite_job.hxx index 17e5c2586003..8c1cd57f07a8 100644 --- a/extensions/source/oooimprovement/invite_job.hxx +++ b/extensions/source/oooimprovement/invite_job.hxx @@ -53,8 +53,8 @@ namespace oooimprovement // XServiceInfo - static version static ::rtl::OUString SAL_CALL getImplementationName_static(); static css::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames_static(); - static css::uno::Reference< css::uno::XInterface> SAL_CALL Create( - const css::uno::Reference< css::uno::XComponentContext>& context); + //static css::uno::Reference< css::uno::XInterface> SAL_CALL Create( + // const css::uno::Reference< css::uno::XComponentContext>& context); static css::uno::Reference< css::uno::XInterface> SAL_CALL Create(const css::uno::Reference< css::lang::XMultiServiceFactory>& sm); diff --git a/extensions/source/oooimprovement/myconfigurationhelper.cxx b/extensions/source/oooimprovement/myconfigurationhelper.cxx index c6e68e92a064..e0f14c6ec445 100644 --- a/extensions/source/oooimprovement/myconfigurationhelper.cxx +++ b/extensions/source/oooimprovement/myconfigurationhelper.cxx @@ -149,33 +149,6 @@ namespace oooimprovement xProps->setPropertyValue(sKey, aValue); } - Reference MyConfigurationHelper::makeSureSetNodeExists( - const Reference xCFG, - const OUString& sRelPathToSet, - const OUString& sSetNode) - { - Reference xAccess(xCFG, UNO_QUERY_THROW); - Reference xSet; - xAccess->getByHierarchicalName(sRelPathToSet) >>= xSet; - if (!xSet.is()) - throw css::container::NoSuchElementException( - noSuchElement(sRelPathToSet), - Reference()); - - Reference xNode; - if (xSet->hasByName(sSetNode)) - xSet->getByName(sSetNode) >>= xNode; - else - { - Reference xNodeFactory(xSet, UNO_QUERY_THROW); - xNode = xNodeFactory->createInstance(); - Reference xSetReplace(xSet, UNO_QUERY_THROW); - xSetReplace->insertByName(sSetNode, makeAny(xNode)); - } - - return xNode; - } - Any MyConfigurationHelper::readDirectKey( const Reference xSMGR, const OUString& sPackage, diff --git a/extensions/source/oooimprovement/myconfigurationhelper.hxx b/extensions/source/oooimprovement/myconfigurationhelper.hxx index a5d0c749e81a..5c5cb38b6a68 100644 --- a/extensions/source/oooimprovement/myconfigurationhelper.hxx +++ b/extensions/source/oooimprovement/myconfigurationhelper.hxx @@ -162,40 +162,6 @@ namespace oooimprovement const ::rtl::OUString& sKey, const css::uno::Any& aValue); - //----------------------------------------------- - /** it checks if the specified set node exists ... or create an empty one - * otherwise. - * - * This method must be used in combination with openConfig(). - * The cached configuration access must be provided here ... and - * all operations are made relativ to this access point. - * - * Further this method must be used only with configuration set's. - * Atomic keys can't be "created" ... they "exists everytimes". - * - * @param xCFG - * the configuration root, where sRelPathToSet should be interpreted - * as relativ path. - * - * @param sRelPathToSet - * path relative to xCFG parameter. - * - * @param sSetNode - * the set node, which should be checked if its exists ... - * or which should be created with default values. - * - * @return A reference to the found (or new created) set node. - * Cant be NULL .. in such case an exception occure ! - * - * @throw css::uno::Any exceptions the underlying configuration can throw. - * E.g. css::uno::Exception if the provided configuration - * access does not allow writing for this set. - */ - static css::uno::Reference< css::uno::XInterface> makeSureSetNodeExists( - const css::uno::Reference< css::uno::XInterface> xCFG, - const ::rtl::OUString& sRelPathToSet, - const ::rtl::OUString& sSetNode); - //----------------------------------------------- /** commit all changes made on the specified configuration access. * diff --git a/extensions/source/oooimprovement/soaprequest.cxx b/extensions/source/oooimprovement/soaprequest.cxx index d67ce911d204..94099cc21aee 100644 --- a/extensions/source/oooimprovement/soaprequest.cxx +++ b/extensions/source/oooimprovement/soaprequest.cxx @@ -33,6 +33,7 @@ #include "soaprequest.hxx" #include "errormail.hxx" +#include "config.hxx" #include #include #include @@ -56,7 +57,7 @@ namespace { static unsigned long asUlong(sal_Int8 input) { - return *reinterpret_cast(&input) ; + return *reinterpret_cast(&input); }; static Sequence base64_encode(const Sequence& input) @@ -150,10 +151,22 @@ namespace "\n"); static const OString SOAP_ITEM_END("]]>\n"); - static const OString getSoapSoapId(const OString& soap_id) + static const OString getSoapOfficeversion(const Reference& sf) { OStringBuffer buf = - "" + xmlEncode(soap_id) + "\n"; + "\n"; + return buf.makeStringAndClear(); + }; + + static const OString getSoapSoapId(const Reference& sf, const OString& soap_id) + { + OStringBuffer buf; + buf.append(""); + buf.append(xmlEncode(soap_id)).append("\n"); + buf.append(getSoapOfficeversion(sf)); + buf.append("\n"); return buf.makeStringAndClear(); }; @@ -180,7 +193,7 @@ namespace oooimprovement writeString(target, SOAP_START); writeString( target, - getSoapSoapId(rtl::OUStringToOString(m_SoapId, RTL_TEXTENCODING_ASCII_US))); + getSoapSoapId(m_ServiceFactory, rtl::OUStringToOString(m_SoapId, RTL_TEXTENCODING_ASCII_US))); writeString(target, SOAP_ITEMS_START); writeString(target, getSoapItemStart("reportmail.xml")); writeString(target, Errormail(m_ServiceFactory).getXml()); diff --git a/extensions/source/propctrlr/eformspropertyhandler.cxx b/extensions/source/propctrlr/eformspropertyhandler.cxx index d0ac0de3857a..b200d37cb83b 100644 --- a/extensions/source/propctrlr/eformspropertyhandler.cxx +++ b/extensions/source/propctrlr/eformspropertyhandler.cxx @@ -411,6 +411,18 @@ namespace pcr return Sequence< ::rtl::OUString >( &(*aInterestedInActuations.begin()), aInterestedInActuations.size() ); } + //-------------------------------------------------------------------- + Sequence< ::rtl::OUString > SAL_CALL EFormsPropertyHandler::getSupersededProperties( ) throw (RuntimeException) + { + ::osl::MutexGuard aGuard( m_aMutex ); + if ( !m_pHelper.get() ) + return Sequence< ::rtl::OUString >(); + + Sequence< ::rtl::OUString > aReturn( 1 ); + aReturn[ 0 ] = PROPERTY_INPUT_REQUIRED; + return aReturn; + } + //-------------------------------------------------------------------- LineDescriptor SAL_CALL EFormsPropertyHandler::describePropertyLine( const ::rtl::OUString& _rPropertyName, const Reference< XPropertyControlFactory >& _rxControlFactory ) diff --git a/extensions/source/propctrlr/eformspropertyhandler.hxx b/extensions/source/propctrlr/eformspropertyhandler.hxx index 700cf43431cf..55c464d77076 100644 --- a/extensions/source/propctrlr/eformspropertyhandler.hxx +++ b/extensions/source/propctrlr/eformspropertyhandler.hxx @@ -77,6 +77,8 @@ namespace pcr virtual void SAL_CALL setPropertyValue( const ::rtl::OUString& _rPropertyName, const ::com::sun::star::uno::Any& _rValue ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getActuatingProperties( ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > + SAL_CALL getSupersededProperties( ) throw (::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::inspection::LineDescriptor SAL_CALL describePropertyLine( const ::rtl::OUString& _rPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XPropertyControlFactory >& _rxControlFactory ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::NullPointerException, ::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::inspection::InteractiveSelectionResult diff --git a/extensions/source/propctrlr/makefile.mk b/extensions/source/propctrlr/makefile.mk index c043850e3c73..9b9ffe47aa15 100644 --- a/extensions/source/propctrlr/makefile.mk +++ b/extensions/source/propctrlr/makefile.mk @@ -120,6 +120,7 @@ SHL1TARGET= $(TARGET)$(DLLPOSTFIX) SHL1VERSIONMAP= $(TARGET).map SHL1STDLIBS= \ + $(SVXCORELIB) \ $(SVXLIB) \ $(SFXLIB) \ $(SVTOOLLIB)\ diff --git a/extensions/source/scanner/sanedlg.cxx b/extensions/source/scanner/sanedlg.cxx index c0374bbb3ce5..de2e7f272350 100644 --- a/extensions/source/scanner/sanedlg.cxx +++ b/extensions/source/scanner/sanedlg.cxx @@ -224,6 +224,19 @@ void SaneDlg::InitFields() maReslBox.SetMin( (long)pDouble[0] ); maReslBox.SetMax( (long)pDouble[1] ); maReslBox.InsertValue( (long)pDouble[0] ); + // mh@openoffice.org: issue 68557: Can only select 75 and 2400 dpi in Scanner dialogue + // scanner allows random setting of dpi resolution, a slider might be useful + // support that + // workaround: offer at least some more standard dpi resolution between + // min and max value + int bGot300 = 0; + for ( int nRes = (long) pDouble[0] * 2; nRes < (long) pDouble[1]; nRes = nRes * 2 ) + { + if ( !bGot300 && nRes > 300 ) { + nRes = 300; bGot300 = 1; + } + maReslBox.InsertValue(nRes); + } maReslBox.InsertValue( (long)pDouble[1] ); } if( pDouble ) diff --git a/extensions/source/scanner/scanunx.cxx b/extensions/source/scanner/scanunx.cxx index 2e0d470b3241..0b1d1e68f9f3 100644 --- a/extensions/source/scanner/scanunx.cxx +++ b/extensions/source/scanner/scanunx.cxx @@ -197,7 +197,14 @@ void ScannerThread::run() void ScannerManager::DestroyData() { - // unused + // was unused, now because of i99835: "Scanning interface not SANE API compliant" + // delete all SaneHolder to get Sane Dtor called + int i; + for ( i = allSanes.Count(); i > 0; i-- ) + { + SaneHolder *pSaneHolder = allSanes.GetObject(i-1); + if ( pSaneHolder ) delete pSaneHolder; + } } // ----------------------------------------------------------------------------- diff --git a/extensions/source/update/check/updatecheckjob.cxx b/extensions/source/update/check/updatecheckjob.cxx index 3bc292e4c8ef..f64ba851e679 100644 --- a/extensions/source/update/check/updatecheckjob.cxx +++ b/extensions/source/update/check/updatecheckjob.cxx @@ -36,12 +36,15 @@ #include "updatehdl.hxx" #include "updateprotocol.hxx" -#include +#include #include +#include "com/sun/star/frame/XDesktop.hpp" +#include "com/sun/star/frame/XTerminateListener.hpp" #include namespace beans = com::sun::star::beans ; +namespace frame = com::sun::star::frame ; namespace lang = com::sun::star::lang ; namespace task = com::sun::star::task ; namespace uno = com::sun::star::uno ; @@ -61,6 +64,7 @@ public: virtual void SAL_CALL onTerminated(); void showDialog(); + void setTerminating() { m_bTerminating = true; } protected: ~InitUpdateCheckJobThread(); @@ -70,10 +74,11 @@ private: uno::Reference m_xContext; uno::Sequence m_xParameters; bool m_bShowDialog; + bool m_bTerminating; }; class UpdateCheckJob : - public ::cppu::WeakImplHelper2< task::XJob, lang::XServiceInfo > + public ::cppu::WeakImplHelper3< task::XJob, lang::XServiceInfo, frame::XTerminateListener > { virtual ~UpdateCheckJob(); @@ -100,8 +105,19 @@ public: virtual uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames() throw (uno::RuntimeException); + // XEventListener + virtual void SAL_CALL disposing( ::com::sun::star::lang::EventObject const & evt ) + throw (::com::sun::star::uno::RuntimeException); + + // XTerminateListener + virtual void SAL_CALL queryTermination( lang::EventObject const & evt ) + throw ( frame::TerminationVetoException, uno::RuntimeException ); + virtual void SAL_CALL notifyTermination( lang::EventObject const & evt ) + throw ( uno::RuntimeException ); + private: uno::Reference m_xContext; + uno::Reference< frame::XDesktop > m_xDesktop; InitUpdateCheckJobThread *m_pInitThread; void handleExtensionUpdates( const uno::Sequence< beans::NamedValue > &rListProp ); @@ -115,7 +131,8 @@ InitUpdateCheckJobThread::InitUpdateCheckJobThread( const uno::Sequence< beans::NamedValue > &xParameters ) : m_xContext( xContext ), m_xParameters( xParameters ), - m_bShowDialog( false ) + m_bShowDialog( false ), + m_bTerminating( false ) { create(); } @@ -132,6 +149,9 @@ void SAL_CALL InitUpdateCheckJobThread::run() m_aCondition.wait( &tv ); + if ( m_bTerminating ) + return; + rtl::Reference< UpdateCheck > aController( UpdateCheck::get() ); aController->initialize( m_xParameters, m_xContext ); @@ -156,10 +176,13 @@ void InitUpdateCheckJobThread::showDialog() //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ -UpdateCheckJob::UpdateCheckJob(const uno::Reference& xContext) : +UpdateCheckJob::UpdateCheckJob( const uno::Reference& xContext ) : m_xContext(xContext), m_pInitThread( NULL ) { + m_xDesktop.set( xContext->getServiceManager()->createInstanceWithContext( UNISTRING("com.sun.star.frame.Desktop"), xContext ), uno::UNO_QUERY ); + if ( m_xDesktop.is() ) + m_xDesktop->addTerminateListener( this ); } //------------------------------------------------------------------------------ @@ -301,6 +324,37 @@ UpdateCheckJob::supportsService( rtl::OUString const & serviceName ) throw (uno: return sal_False; } +//------------------------------------------------------------------------------ +// XEventListener +void SAL_CALL UpdateCheckJob::disposing( lang::EventObject const & rEvt ) + throw ( uno::RuntimeException ) +{ + bool shutDown = ( rEvt.Source == m_xDesktop ); + + if ( shutDown && m_xDesktop.is() ) + { + m_xDesktop->removeTerminateListener( this ); + m_xDesktop.clear(); + } +} + +//------------------------------------------------------------------------------ +// XTerminateListener +void SAL_CALL UpdateCheckJob::queryTermination( lang::EventObject const & ) + throw ( frame::TerminationVetoException, uno::RuntimeException ) +{ +} + +//------------------------------------------------------------------------------ +void SAL_CALL UpdateCheckJob::notifyTermination( lang::EventObject const & rEvt ) + throw ( uno::RuntimeException ) +{ + if ( m_pInitThread ) + m_pInitThread->setTerminating(); + + disposing( rEvt ); +} + } // anonymous namespace //------------------------------------------------------------------------------ diff --git a/extensions/util/hidother.src b/extensions/util/hidother.src index 49b67060f8a3..3f8fcd5ed7f8 100644 --- a/extensions/util/hidother.src +++ b/extensions/util/hidother.src @@ -30,208 +30,92 @@ #include "../inc/extensio.hrc" -hidspecial HID_BIB_CHANGESOURCE { HelpId = HID_BIB_CHANGESOURCE; } -hidspecial HID_BIB_MAPPINGDLG { HelpId = HID_BIB_MAPPINGDLG; } -hidspecial HID_BIB_TBX_TABLE { HelpId = HID_BIB_TBX_TABLE; } -hidspecial HID_BIB_TBX_SEARCH { HelpId = HID_BIB_TBX_SEARCH; } -hidspecial HID_BIB_TBX_AUTOFILTER { HelpId = HID_BIB_TBX_AUTOFILTER; } +hidspecial HID_ABSPILOT { HelpId = HID_ABSPILOT; } +hidspecial HID_ABSPILOT_CANCEL { HelpId = HID_ABSPILOT_CANCEL; } +hidspecial HID_ABSPILOT_FINISH { HelpId = HID_ABSPILOT_FINISH; } +hidspecial HID_ABSPILOT_NEXT { HelpId = HID_ABSPILOT_NEXT; } +hidspecial HID_ABSPILOT_PREVIOUS { HelpId = HID_ABSPILOT_PREVIOUS; } -hidspecial HID_BIB_IDENTIFIER_POS { HelpId = HID_BIB_IDENTIFIER_POS; } +hidspecial HID_BIB_ADDRESS_POS { HelpId = HID_BIB_ADDRESS_POS; } +hidspecial HID_BIB_ANNOTE_POS { HelpId = HID_BIB_ANNOTE_POS; } hidspecial HID_BIB_AUTHORITYTYPE_POS { HelpId = HID_BIB_AUTHORITYTYPE_POS; } hidspecial HID_BIB_AUTHOR_POS { HelpId = HID_BIB_AUTHOR_POS; } -hidspecial HID_BIB_TITLE_POS { HelpId = HID_BIB_TITLE_POS; } -hidspecial HID_BIB_YEAR_POS { HelpId = HID_BIB_YEAR_POS; } -hidspecial HID_BIB_ISBN_POS { HelpId = HID_BIB_ISBN_POS; } hidspecial HID_BIB_BOOKTITLE_POS { HelpId = HID_BIB_BOOKTITLE_POS; } +hidspecial HID_BIB_CHANGESOURCE { HelpId = HID_BIB_CHANGESOURCE; } hidspecial HID_BIB_CHAPTER_POS { HelpId = HID_BIB_CHAPTER_POS; } -hidspecial HID_BIB_EDITION_POS { HelpId = HID_BIB_EDITION_POS; } -hidspecial HID_BIB_EDITOR_POS { HelpId = HID_BIB_EDITOR_POS; } -hidspecial HID_BIB_HOWPUBLISHED_POS { HelpId = HID_BIB_HOWPUBLISHED_POS; } -hidspecial HID_BIB_INSTITUTION_POS { HelpId = HID_BIB_INSTITUTION_POS; } -hidspecial HID_BIB_JOURNAL_POS { HelpId = HID_BIB_JOURNAL_POS; } -hidspecial HID_BIB_MONTH_POS { HelpId = HID_BIB_MONTH_POS; } -hidspecial HID_BIB_NOTE_POS { HelpId = HID_BIB_NOTE_POS; } -hidspecial HID_BIB_ANNOTE_POS { HelpId = HID_BIB_ANNOTE_POS; } -hidspecial HID_BIB_NUMBER_POS { HelpId = HID_BIB_NUMBER_POS; } -hidspecial HID_BIB_ORGANIZATIONS_POS { HelpId = HID_BIB_ORGANIZATIONS_POS; } -hidspecial HID_BIB_PAGES_POS { HelpId = HID_BIB_PAGES_POS; } -hidspecial HID_BIB_PUBLISHER_POS { HelpId = HID_BIB_PUBLISHER_POS; } -hidspecial HID_BIB_ADDRESS_POS { HelpId = HID_BIB_ADDRESS_POS; } -hidspecial HID_BIB_SCHOOL_POS { HelpId = HID_BIB_SCHOOL_POS; } -hidspecial HID_BIB_SERIES_POS { HelpId = HID_BIB_SERIES_POS; } -hidspecial HID_BIB_REPORTTYPE_POS { HelpId = HID_BIB_REPORTTYPE_POS; } -hidspecial HID_BIB_VOLUME_POS { HelpId = HID_BIB_VOLUME_POS; } -hidspecial HID_BIB_URL_POS { HelpId = HID_BIB_URL_POS; } +hidspecial HID_BIB_CONTROL_PAGE { HelpId = HID_BIB_CONTROL_PAGE; } +hidspecial HID_BIB_CONTROL_PARENT { HelpId = HID_BIB_CONTROL_PARENT; } hidspecial HID_BIB_CUSTOM1_POS { HelpId = HID_BIB_CUSTOM1_POS; } hidspecial HID_BIB_CUSTOM2_POS { HelpId = HID_BIB_CUSTOM2_POS; } hidspecial HID_BIB_CUSTOM3_POS { HelpId = HID_BIB_CUSTOM3_POS; } hidspecial HID_BIB_CUSTOM4_POS { HelpId = HID_BIB_CUSTOM4_POS; } hidspecial HID_BIB_CUSTOM5_POS { HelpId = HID_BIB_CUSTOM5_POS; } - -hidspecial HID_BIB_DB_TBX { HelpId = HID_BIB_DB_TBX; } hidspecial HID_BIB_DB_GRIDCTRL { HelpId = HID_BIB_DB_GRIDCTRL; } -hidspecial HID_BIB_CONTROL_PAGE { HelpId = HID_BIB_CONTROL_PAGE; } -hidspecial HID_BIB_CONTROL_PARENT { HelpId = HID_BIB_CONTROL_PARENT; } - -hidspecial HID_GRIDWIZARD_PREVIOUS { HelpId = HID_GRIDWIZARD_PREVIOUS; }; -hidspecial HID_GRIDWIZARD_NEXT { HelpId = HID_GRIDWIZARD_NEXT; } -hidspecial HID_GRIDWIZARD_CANCEL { HelpId = HID_GRIDWIZARD_CANCEL; } -hidspecial HID_GRIDWIZARD_FINISH { HelpId = HID_GRIDWIZARD_FINISH; } -hidspecial HID_GROUPWIZARD_PREVIOUS { HelpId = HID_GROUPWIZARD_PREVIOUS; } -hidspecial HID_GROUPWIZARD_NEXT { HelpId = HID_GROUPWIZARD_NEXT; } -hidspecial HID_GROUPWIZARD_CANCEL { HelpId = HID_GROUPWIZARD_CANCEL; } -hidspecial HID_GROUPWIZARD_FINISH { HelpId = HID_GROUPWIZARD_FINISH; } -hidspecial HID_LISTWIZARD_PREVIOUS { HelpId = HID_LISTWIZARD_PREVIOUS; } -hidspecial HID_LISTWIZARD_NEXT { HelpId = HID_LISTWIZARD_NEXT; } -hidspecial HID_LISTWIZARD_CANCEL { HelpId = HID_LISTWIZARD_CANCEL; } -hidspecial HID_LISTWIZARD_FINISH { HelpId = HID_LISTWIZARD_FINISH; } -hidspecial HID_DBIWIZARD_PREVIOUS { HelpId = HID_DBIWIZARD_PREVIOUS; } -hidspecial HID_DBIWIZARD_NEXT { HelpId = HID_DBIWIZARD_NEXT; } -hidspecial HID_DBIWIZARD_CANCEL { HelpId = HID_DBIWIZARD_CANCEL; } -hidspecial HID_DBIWIZARD_FINISH { HelpId = HID_DBIWIZARD_FINISH; } -hidspecial UID_DBIWIZARD_SOURCESTATS { HelpId = UID_DBIWIZARD_SOURCESTATS; } -hidspecial UID_DBIWIZARD_SOURCEFILE { HelpId = UID_DBIWIZARD_SOURCEFILE; } -hidspecial UID_DBIWIZARD_QUERIES { HelpId = UID_DBIWIZARD_QUERIES; } -hidspecial UID_DBIWIZARD_FORMS { HelpId = UID_DBIWIZARD_FORMS; } -hidspecial UID_DBIWIZARD_FORMS_SAVETO { HelpId = UID_DBIWIZARD_FORMS_SAVETO; } -hidspecial UID_BIB_FRAME_WINDOW { HelpId = UID_BIB_FRAME_WINDOW;} - -hidspecial HID_ABSPILOT_PREVIOUS { HelpId = HID_ABSPILOT_PREVIOUS; } -hidspecial HID_ABSPILOT_NEXT { HelpId = HID_ABSPILOT_NEXT; } -hidspecial HID_ABSPILOT_CANCEL { HelpId = HID_ABSPILOT_CANCEL; } -hidspecial HID_ABSPILOT_FINISH { HelpId = HID_ABSPILOT_FINISH; } -hidspecial HID_ABSPILOT { HelpId = HID_ABSPILOT; } - -hidspecial UID_ABSPILOT_HELP { HelpId = UID_ABSPILOT_HELP; } -hidspecial HID_DBIWIZARD { HelpId = HID_DBIWIZARD; } -hidspecial UID_DBIWIZARD_HELP { HelpId = UID_DBIWIZARD_HELP; } -hidspecial HID_DBIWIZARD_FILESELECTION { HelpId = HID_DBIWIZARD_FILESELECTION; } - +hidspecial HID_BIB_DB_TBX { HelpId = HID_BIB_DB_TBX; } hidspecial HID_BIB_DELETE_RECORD { HelpId = HID_BIB_DELETE_RECORD; } +hidspecial HID_BIB_EDITION_POS { HelpId = HID_BIB_EDITION_POS; } +hidspecial HID_BIB_EDITOR_POS { HelpId = HID_BIB_EDITOR_POS; } +hidspecial HID_BIB_HOWPUBLISHED_POS { HelpId = HID_BIB_HOWPUBLISHED_POS; } +hidspecial HID_BIB_IDENTIFIER_POS { HelpId = HID_BIB_IDENTIFIER_POS; } hidspecial HID_BIB_INSERT_RECORD { HelpId = HID_BIB_INSERT_RECORD; } +hidspecial HID_BIB_INSTITUTION_POS { HelpId = HID_BIB_INSTITUTION_POS; } +hidspecial HID_BIB_ISBN_POS { HelpId = HID_BIB_ISBN_POS; } +hidspecial HID_BIB_JOURNAL_POS { HelpId = HID_BIB_JOURNAL_POS; } +hidspecial HID_BIB_MAPPINGDLG { HelpId = HID_BIB_MAPPINGDLG; } +hidspecial HID_BIB_MONTH_POS { HelpId = HID_BIB_MONTH_POS; } +hidspecial HID_BIB_NOTE_POS { HelpId = HID_BIB_NOTE_POS; } +hidspecial HID_BIB_NUMBER_POS { HelpId = HID_BIB_NUMBER_POS; } +hidspecial HID_BIB_ORGANIZATIONS_POS { HelpId = HID_BIB_ORGANIZATIONS_POS; } +hidspecial HID_BIB_PAGES_POS { HelpId = HID_BIB_PAGES_POS; } +hidspecial HID_BIB_PUBLISHER_POS { HelpId = HID_BIB_PUBLISHER_POS; } +hidspecial HID_BIB_REPORTTYPE_POS { HelpId = HID_BIB_REPORTTYPE_POS; } +hidspecial HID_BIB_SCHOOL_POS { HelpId = HID_BIB_SCHOOL_POS; } +hidspecial HID_BIB_SERIES_POS { HelpId = HID_BIB_SERIES_POS; } +hidspecial HID_BIB_TBX_AUTOFILTER { HelpId = HID_BIB_TBX_AUTOFILTER; } +hidspecial HID_BIB_TBX_SEARCH { HelpId = HID_BIB_TBX_SEARCH; } +hidspecial HID_BIB_TBX_TABLE { HelpId = HID_BIB_TBX_TABLE; } +hidspecial HID_BIB_TITLE_POS { HelpId = HID_BIB_TITLE_POS; } +hidspecial HID_BIB_URL_POS { HelpId = HID_BIB_URL_POS; } +hidspecial HID_BIB_VOLUME_POS { HelpId = HID_BIB_VOLUME_POS; } +hidspecial HID_BIB_YEAR_POS { HelpId = HID_BIB_YEAR_POS; } -hidspecial HID_PROP_TITLE { HelpId = HID_PROP_TITLE; } -hidspecial HID_PROP_STEP { HelpId = HID_PROP_STEP; } -hidspecial HID_PROP_VALUE { HelpId = HID_PROP_VALUE; } -hidspecial HID_PROP_PROGRESSVALUE { HelpId = HID_PROP_PROGRESSVALUE; } -hidspecial HID_PROP_PROGRESSVALUE_MIN { HelpId = HID_PROP_PROGRESSVALUE_MIN; } -hidspecial HID_PROP_PROGRESSVALUE_MAX { HelpId = HID_PROP_PROGRESSVALUE_MAX; } -hidspecial HID_PROP_SCROLLVALUE { HelpId = HID_PROP_SCROLLVALUE; } -hidspecial HID_PROP_SCROLLVALUE_MIN { HelpId = HID_PROP_SCROLLVALUE_MIN; } -hidspecial HID_PROP_SCROLLVALUE_MAX { HelpId = HID_PROP_SCROLLVALUE_MAX; } -hidspecial HID_PROP_LINEINCREMENT { HelpId = HID_PROP_LINEINCREMENT; } -hidspecial HID_PROP_BLOCKINCREMENT { HelpId = HID_PROP_BLOCKINCREMENT; } -hidspecial HID_PROP_VISIBLESIZE { HelpId = HID_PROP_VISIBLESIZE; } -hidspecial HID_PROP_ORIENTATION { HelpId = HID_PROP_ORIENTATION; } -hidspecial HID_PROP_POSITIONX { HelpId = HID_PROP_POSITIONX; } -hidspecial HID_PROP_POSITIONY { HelpId = HID_PROP_POSITIONY; } -hidspecial HID_PROP_PUSHBUTTONTYPE { HelpId = HID_PROP_PUSHBUTTONTYPE; } -hidspecial HID_PROP_STATE { HelpId = HID_PROP_STATE; } -hidspecial HID_PROP_SCALEIMAGE { HelpId = HID_PROP_SCALEIMAGE; } -hidspecial HID_PROP_BOUND_CELL { HelpId = HID_PROP_BOUND_CELL; } -hidspecial HID_PROP_LIST_CELL_RANGE { HelpId = HID_PROP_LIST_CELL_RANGE; } -hidspecial HID_PROP_CELL_EXCHANGE_TYPE { HelpId = HID_PROP_CELL_EXCHANGE_TYPE; } -hidspecial HID_PROP_SELECTEDITEMS { HelpId = HID_PROP_SELECTEDITEMS; } -hidspecial HID_PROP_SCROLLVALUEMIN { HelpId = HID_PROP_SCROLLVALUE_MIN; } -hidspecial HID_PROP_DEFAULT_SCROLLVALUE { HelpId = HID_PROP_DEFAULT_SCROLLVALUE; } -hidspecial HID_PROP_REPEAT_DELAY { HelpId = HID_PROP_REPEAT_DELAY; } -hidspecial HID_PROP_SYMBOLCOLOR { HelpId = HID_PROP_SYMBOLCOLOR; } -hidspecial HID_PROP_SPINVALUE { HelpId = HID_PROP_SPINVALUE; } -hidspecial HID_PROP_SPINVALUE_MIN { HelpId = HID_PROP_SPINVALUE_MIN; } -hidspecial HID_PROP_SPINVALUE_MAX { HelpId = HID_PROP_SPINVALUE_MAX; } -hidspecial HID_PROP_DEFAULT_SPINVALUE { HelpId = HID_PROP_DEFAULT_SPINVALUE; } -hidspecial HID_PROP_SPININCREMENT { HelpId = HID_PROP_SPININCREMENT; } -hidspecial HID_PROP_REPEAT { HelpId = HID_PROP_REPEAT; } -hidspecial UID_PROP_DLG_FONT_TYPE { HelpId = UID_PROP_DLG_FONT_TYPE; } -hidspecial UID_PROP_DLG_ATTR_TARGET_URL { HelpId = UID_PROP_DLG_ATTR_TARGET_URL; } -hidspecial UID_PROP_DLG_IMAGE_URL { HelpId = UID_PROP_DLG_IMAGE_URL; } -hidspecial UID_PROP_DLG_BACKGROUNDCOLOR { HelpId = UID_PROP_DLG_BACKGROUNDCOLOR; } -hidspecial UID_PROP_DLG_CONTROLLABEL { HelpId = UID_PROP_DLG_CONTROLLABEL; } -hidspecial UID_PROP_DLG_NUMBER_FORMAT { HelpId = UID_PROP_DLG_NUMBER_FORMAT; } -hidspecial UID_PROP_DLG_ATTR_DATASOURCE { HelpId = UID_PROP_DLG_ATTR_DATASOURCE; } -hidspecial UID_PROP_DLG_FILLCOLOR { HelpId = UID_PROP_DLG_FILLCOLOR; } -hidspecial UID_PROP_DLG_SYMBOLCOLOR { HelpId = UID_PROP_DLG_SYMBOLCOLOR; } -hidspecial UID_EVT_MACRODLG { HelpId = UID_EVT_MACRODLG; } -hidspecial HID_PROP_WORDBREAK { HelpId = HID_PROP_WORDBREAK; } -hidspecial HID_PROP_SHOW_SCROLLBARS { HelpId = HID_PROP_SHOW_SCROLLBARS; } -hidspecial HID_PROP_TABORDER_CONTROLS { HelpId = HID_PROP_TABORDER_CONTROLS; } -hidspecial HID_PROP_ICONSIZE { HelpId = HID_PROP_ICONSIZE; } -hidspecial HID_PROP_SHOW_POSITION { HelpId = HID_PROP_SHOW_POSITION; } -hidspecial HID_PROP_SHOW_NAVIGATION { HelpId = HID_PROP_SHOW_NAVIGATION; } -hidspecial HID_PROP_SHOW_RECORDACTIONS { HelpId = HID_PROP_SHOW_RECORDACTIONS; } -hidspecial HID_PROP_SHOW_FILTERSORT { HelpId = HID_PROP_SHOW_FILTERSORT; } +hidspecial HID_CHECK_FOR_UPD_CANCEL { HelpId = HID_CHECK_FOR_UPD_CANCEL; } +hidspecial HID_CHECK_FOR_UPD_CLOSE { HelpId = HID_CHECK_FOR_UPD_CLOSE; } +hidspecial HID_CHECK_FOR_UPD_DESCRIPTION { HelpId = HID_CHECK_FOR_UPD_DESCRIPTION; } +hidspecial HID_CHECK_FOR_UPD_DLG { HelpId = HID_CHECK_FOR_UPD_DLG; } +hidspecial HID_CHECK_FOR_UPD_DOWNLOAD { HelpId = HID_CHECK_FOR_UPD_DOWNLOAD; } +hidspecial HID_CHECK_FOR_UPD_DOWNLOAD2 { HelpId = HID_CHECK_FOR_UPD_DOWNLOAD2; } +hidspecial HID_CHECK_FOR_UPD_INSTALL { HelpId = HID_CHECK_FOR_UPD_INSTALL; } +hidspecial HID_CHECK_FOR_UPD_PAUSE { HelpId = HID_CHECK_FOR_UPD_PAUSE; } +hidspecial HID_CHECK_FOR_UPD_RESUME { HelpId = HID_CHECK_FOR_UPD_RESUME; } +hidspecial HID_CHECK_FOR_UPD_STATUS { HelpId = HID_CHECK_FOR_UPD_STATUS; } -hidspecial UID_PROP_DLG_FONT_TYPE { HelpId = UID_PROP_DLG_FONT_TYPE; } -hidspecial UID_PROP_DLG_IMAGE_URL { HelpId = UID_PROP_DLG_IMAGE_URL; } -hidspecial UID_PROP_DLG_BACKGROUNDCOLOR { HelpId = UID_PROP_DLG_BACKGROUNDCOLOR; } -hidspecial UID_PROP_DLG_ATTR_DATASOURCE { HelpId = UID_PROP_DLG_ATTR_DATASOURCE; } -hidspecial UID_PROP_DLG_ATTR_TARGET_URL { HelpId = UID_PROP_DLG_ATTR_TARGET_URL; } -hidspecial UID_PROP_DLG_NUMBER_FORMAT { HelpId = UID_PROP_DLG_NUMBER_FORMAT; } -hidspecial UID_PROP_DLG_CONTROLLABEL { HelpId = UID_PROP_DLG_CONTROLLABEL; } -hidspecial UID_PROP_DLG_FILLCOLOR { HelpId = UID_PROP_DLG_FILLCOLOR; } -hidspecial UID_PROP_DLG_TABINDEX { HelpId = UID_PROP_DLG_TABINDEX; } -hidspecial UID_PROP_DLG_SQLCOMMAND { HelpId = UID_PROP_DLG_SQLCOMMAND; } -hidspecial UID_PROP_DLG_FORMLINKFIELDS { HelpId = UID_PROP_DLG_FORMLINKFIELDS; } -hidspecial HID_FIELDLINK_DETAIL_COLUMN { HelpId = HID_FIELDLINK_DETAIL_COLUMN; } -hidspecial HID_FIELDLINK_MASTER_COLUMN { HelpId = HID_FIELDLINK_MASTER_COLUMN; } -hidspecial UID_FIELDLINK_DETAIL1 { HelpId = UID_FIELDLINK_DETAIL1; } -hidspecial UID_FIELDLINK_MASTER1 { HelpId = UID_FIELDLINK_MASTER1; } -hidspecial UID_FIELDLINK_DETAIL2 { HelpId = UID_FIELDLINK_DETAIL2; } -hidspecial UID_FIELDLINK_MASTER2 { HelpId = UID_FIELDLINK_MASTER2; } -hidspecial UID_FIELDLINK_DETAIL3 { HelpId = UID_FIELDLINK_DETAIL3; } -hidspecial UID_FIELDLINK_MASTER3 { HelpId = UID_FIELDLINK_MASTER3; } -hidspecial UID_FIELDLINK_DETAIL4 { HelpId = UID_FIELDLINK_DETAIL4; } -hidspecial UID_FIELDLINK_MASTER4 { HelpId = UID_FIELDLINK_MASTER4; } -hidspecial UID_PROP_DLG_FILTER { HelpId = UID_PROP_DLG_FILTER; } -hidspecial UID_PROP_DLG_ORDER { HelpId = UID_PROP_DLG_ORDER; } -hidspecial UID_PROP_DLG_SELECTION { HelpId = UID_PROP_DLG_SELECTION; } -hidspecial UID_PROP_DLG_SYMBOLCOLOR { HelpId = UID_PROP_DLG_SYMBOLCOLOR; } -hidspecial UID_BRWEVT_APPROVEACTIONPERFORMED { HelpId = UID_BRWEVT_APPROVEACTIONPERFORMED; } -hidspecial UID_BRWEVT_ACTIONPERFORMED { HelpId = UID_BRWEVT_ACTIONPERFORMED; } -hidspecial UID_BRWEVT_CHANGED { HelpId = UID_BRWEVT_CHANGED; } -hidspecial UID_BRWEVT_TEXTCHANGED { HelpId = UID_BRWEVT_TEXTCHANGED; } -hidspecial UID_BRWEVT_ITEMSTATECHANGED { HelpId = UID_BRWEVT_ITEMSTATECHANGED; } -hidspecial UID_BRWEVT_FOCUSGAINED { HelpId = UID_BRWEVT_FOCUSGAINED; } -hidspecial UID_BRWEVT_FOCUSLOST { HelpId = UID_BRWEVT_FOCUSLOST; } -hidspecial UID_BRWEVT_KEYTYPED { HelpId = UID_BRWEVT_KEYTYPED; } -hidspecial UID_BRWEVT_KEYUP { HelpId = UID_BRWEVT_KEYUP; } -hidspecial UID_BRWEVT_MOUSEENTERED { HelpId = UID_BRWEVT_MOUSEENTERED; } -hidspecial UID_BRWEVT_MOUSEDRAGGED { HelpId = UID_BRWEVT_MOUSEDRAGGED; } -hidspecial UID_BRWEVT_MOUSEMOVED { HelpId = UID_BRWEVT_MOUSEMOVED; } -hidspecial UID_BRWEVT_MOUSEPRESSED { HelpId = UID_BRWEVT_MOUSEPRESSED; } -hidspecial UID_BRWEVT_MOUSERELEASED { HelpId = UID_BRWEVT_MOUSERELEASED; } -hidspecial UID_BRWEVT_MOUSEEXITED { HelpId = UID_BRWEVT_MOUSEEXITED; } -hidspecial UID_BRWEVT_APPROVERESETTED { HelpId = UID_BRWEVT_APPROVERESETTED; } -hidspecial UID_BRWEVT_RESETTED { HelpId = UID_BRWEVT_RESETTED; } -hidspecial UID_BRWEVT_SUBMITTED { HelpId = UID_BRWEVT_SUBMITTED; } -hidspecial UID_BRWEVT_BEFOREUPDATE { HelpId = UID_BRWEVT_BEFOREUPDATE; } -hidspecial UID_BRWEVT_AFTERUPDATE { HelpId = UID_BRWEVT_AFTERUPDATE; } -hidspecial UID_BRWEVT_LOADED { HelpId = UID_BRWEVT_LOADED; } -hidspecial UID_BRWEVT_RELOADING { HelpId = UID_BRWEVT_RELOADING; } -hidspecial UID_BRWEVT_RELOADED { HelpId = UID_BRWEVT_RELOADED; } -hidspecial UID_BRWEVT_UNLOADING { HelpId = UID_BRWEVT_UNLOADING; } -hidspecial UID_BRWEVT_UNLOADED { HelpId = UID_BRWEVT_UNLOADED; } -hidspecial UID_BRWEVT_CONFIRMDELETE { HelpId = UID_BRWEVT_CONFIRMDELETE; } -hidspecial UID_BRWEVT_APPROVEROWCHANGE { HelpId = UID_BRWEVT_APPROVEROWCHANGE; } -hidspecial UID_BRWEVT_ROWCHANGE { HelpId = UID_BRWEVT_ROWCHANGE; } -hidspecial UID_BRWEVT_POSITIONING { HelpId = UID_BRWEVT_POSITIONING; } -hidspecial UID_BRWEVT_POSITIONED { HelpId = UID_BRWEVT_POSITIONED; } -hidspecial UID_BRWEVT_APPROVEPARAMETER { HelpId = UID_BRWEVT_APPROVEPARAMETER; } -hidspecial UID_BRWEVT_ERROROCCURED { HelpId = UID_BRWEVT_ERROROCCURED; } -hidspecial UID_BRWEVT_ADJUSTMENTVALUECHANGED { HelpId = UID_BRWEVT_ADJUSTMENTVALUECHANGED; } -hidspecial HID_PROP_AUTOLINEBREAK { HelpId = HID_PROP_AUTOLINEBREAK; } -hidspecial HID_PROP_TEXTTYPE { HelpId = HID_PROP_TEXTTYPE; } -hidspecial HID_PROP_LINEEND_FORMAT { HelpId = HID_PROP_LINEEND_FORMAT; } +hidspecial HID_DBIWIZARD { HelpId = HID_DBIWIZARD; } +hidspecial HID_DBIWIZARD_CANCEL { HelpId = HID_DBIWIZARD_CANCEL; } +hidspecial HID_DBIWIZARD_FILESELECTION { HelpId = HID_DBIWIZARD_FILESELECTION; } +hidspecial HID_DBIWIZARD_FINISH { HelpId = HID_DBIWIZARD_FINISH; } +hidspecial HID_DBIWIZARD_NEXT { HelpId = HID_DBIWIZARD_NEXT; } +hidspecial HID_DBIWIZARD_PREVIOUS { HelpId = HID_DBIWIZARD_PREVIOUS; } + +hidspecial HID_DLG_DBCHANGE { HelpId = HID_DLG_DBCHANGE; } +hidspecial HID_DLG_MAPPING { HelpId = HID_DLG_MAPPING; } hidspecial HID_EVT_ACTIONPERFORMED { HelpId = HID_EVT_ACTIONPERFORMED; } +hidspecial HID_EVT_ADJUSTMENTVALUECHANGED { HelpId = HID_EVT_ADJUSTMENTVALUECHANGED; } hidspecial HID_EVT_AFTERUPDATE { HelpId = HID_EVT_AFTERUPDATE; } +hidspecial HID_EVT_APPROVEACTIONPERFORMED { HelpId = HID_EVT_APPROVEACTIONPERFORMED; } +hidspecial HID_EVT_APPROVEPARAMETER { HelpId = HID_EVT_APPROVEPARAMETER; } +hidspecial HID_EVT_APPROVERESETTED { HelpId = HID_EVT_APPROVERESETTED; } +hidspecial HID_EVT_APPROVEROWCHANGE { HelpId = HID_EVT_APPROVEROWCHANGE; } hidspecial HID_EVT_BEFOREUPDATE { HelpId = HID_EVT_BEFOREUPDATE; } +hidspecial HID_EVT_CHANGED { HelpId = HID_EVT_CHANGED; } hidspecial HID_EVT_CONFIRMDELETE { HelpId = HID_EVT_CONFIRMDELETE; } hidspecial HID_EVT_ERROROCCURED { HelpId = HID_EVT_ERROROCCURED; } hidspecial HID_EVT_FOCUSGAINED { HelpId = HID_EVT_FOCUSGAINED; } hidspecial HID_EVT_FOCUSLOST { HelpId = HID_EVT_FOCUSLOST; } hidspecial HID_EVT_ITEMSTATECHANGED { HelpId = HID_EVT_ITEMSTATECHANGED; } hidspecial HID_EVT_KEYTYPED { HelpId = HID_EVT_KEYTYPED; } +hidspecial HID_EVT_KEYUP { HelpId = HID_EVT_KEYUP; } hidspecial HID_EVT_LOADED { HelpId = HID_EVT_LOADED; } hidspecial HID_EVT_MOUSEDRAGGED { HelpId = HID_EVT_MOUSEDRAGGED; } hidspecial HID_EVT_MOUSEENTERED { HelpId = HID_EVT_MOUSEENTERED; } @@ -240,74 +124,314 @@ hidspecial HID_EVT_MOUSEMOVED { HelpId = HID_EVT_MOUSEMOVED; } hidspecial HID_EVT_MOUSEPRESSED { HelpId = HID_EVT_MOUSEPRESSED; } hidspecial HID_EVT_MOUSERELEASED { HelpId = HID_EVT_MOUSERELEASED; } hidspecial HID_EVT_POSITIONED { HelpId = HID_EVT_POSITIONED; } +hidspecial HID_EVT_POSITIONING { HelpId = HID_EVT_POSITIONING; } +hidspecial HID_EVT_RELOADED { HelpId = HID_EVT_RELOADED; } +hidspecial HID_EVT_RELOADING { HelpId = HID_EVT_RELOADING; } hidspecial HID_EVT_RESETTED { HelpId = HID_EVT_RESETTED; } +hidspecial HID_EVT_ROWCHANGE { HelpId = HID_EVT_ROWCHANGE; } hidspecial HID_EVT_SUBMITTED { HelpId = HID_EVT_SUBMITTED; } hidspecial HID_EVT_TEXTCHANGED { HelpId = HID_EVT_TEXTCHANGED; } hidspecial HID_EVT_UNLOADED { HelpId = HID_EVT_UNLOADED; } -hidspecial HID_EVT_CHANGED { HelpId = HID_EVT_CHANGED; } -hidspecial HID_EVT_APPROVEACTIONPERFORMED { HelpId = HID_EVT_APPROVEACTIONPERFORMED; } -hidspecial HID_EVT_APPROVERESETTED { HelpId = HID_EVT_APPROVERESETTED; } -hidspecial HID_EVT_KEYUP { HelpId = HID_EVT_KEYUP; } -hidspecial HID_EVT_APPROVEPARAMETER { HelpId = HID_EVT_APPROVEPARAMETER; } -hidspecial HID_EVT_POSITIONING { HelpId = HID_EVT_POSITIONING; } -hidspecial HID_EVT_RELOADED { HelpId = HID_EVT_RELOADED; } -hidspecial HID_EVT_APPROVEROWCHANGE { HelpId = HID_EVT_APPROVEROWCHANGE; } -hidspecial HID_EVT_ROWCHANGE { HelpId = HID_EVT_ROWCHANGE; } -hidspecial HID_EVT_RELOADING { HelpId = HID_EVT_RELOADING; } hidspecial HID_EVT_UNLOADING { HelpId = HID_EVT_UNLOADING; } -hidspecial HID_EVT_ADJUSTMENTVALUECHANGED { HelpId = HID_EVT_ADJUSTMENTVALUECHANGED; } -hidspecial HID_PROP_TOGGLE { HelpId = HID_PROP_TOGGLE; } -hidspecial HID_PROP_FOCUSONCLICK { HelpId = HID_PROP_FOCUSONCLICK; } -hidspecial HID_PROP_HIDEINACTIVESELECTION { HelpId = HID_PROP_HIDEINACTIVESELECTION; } -hidspecial HID_PROP_VISUALEFFECT { HelpId = HID_PROP_VISUALEFFECT; } -hidspecial HID_PROP_BORDERCOLOR { HelpId = HID_PROP_BORDERCOLOR; } -hidspecial UID_PROP_DLG_BORDERCOLOR { HelpId = UID_PROP_DLG_BORDERCOLOR; } -hidspecial HID_PROP_IMAGEPOSITION { HelpId = HID_PROP_IMAGEPOSITION; } -hidspecial HID_PROP_XML_DATA_MODEL { HelpId = HID_PROP_XML_DATA_MODEL; } -hidspecial HID_PROP_BIND_EXPRESSION { HelpId = HID_PROP_BIND_EXPRESSION; } -hidspecial HID_PROP_XSD_REQUIRED { HelpId = HID_PROP_XSD_REQUIRED; } -hidspecial HID_PROP_XSD_RELEVANT { HelpId = HID_PROP_XSD_RELEVANT; } -hidspecial HID_PROP_XSD_READONLY { HelpId = HID_PROP_XSD_READONLY; } -hidspecial HID_PROP_XSD_CONSTRAINT { HelpId = HID_PROP_XSD_CONSTRAINT; } -hidspecial HID_PROP_XSD_CALCULATION { HelpId = HID_PROP_XSD_CALCULATION; } -hidspecial HID_PROP_XSD_DATA_TYPE { HelpId = HID_PROP_XSD_DATA_TYPE; } -hidspecial HID_PROP_XSD_WHITESPACES { HelpId = HID_PROP_XSD_WHITESPACES; } -hidspecial HID_PROP_XSD_PATTERN { HelpId = HID_PROP_XSD_PATTERN; } -hidspecial HID_PROP_XSD_LENGTH { HelpId = HID_PROP_XSD_LENGTH; } -hidspecial HID_PROP_XSD_MIN_LENGTH { HelpId = HID_PROP_XSD_MIN_LENGTH; } -hidspecial HID_PROP_XSD_MAX_LENGTH { HelpId = HID_PROP_XSD_MAX_LENGTH; } -hidspecial UID_PROP_DLG_BIND_EXPRESSION { HelpId = UID_PROP_DLG_BIND_EXPRESSION; } -hidspecial UID_PROP_DLG_XSD_REQUIRED { HelpId = UID_PROP_DLG_XSD_REQUIRED; } -hidspecial UID_PROP_DLG_XSD_RELEVANT { HelpId = UID_PROP_DLG_XSD_RELEVANT; } -hidspecial UID_PROP_DLG_XSD_READONLY { HelpId = UID_PROP_DLG_XSD_READONLY; } -hidspecial UID_PROP_DLG_XSD_CONSTRAINT { HelpId = UID_PROP_DLG_XSD_CONSTRAINT; } -hidspecial UID_PROP_DLG_XSD_CALCULATION { HelpId = UID_PROP_DLG_XSD_CALCULATION; } -hidspecial UID_PROP_ADD_DATA_TYPE { HelpId = UID_PROP_ADD_DATA_TYPE; } -hidspecial UID_PROP_REMOVE_DATA_TYPE { HelpId = UID_PROP_REMOVE_DATA_TYPE; } -hidspecial HID_PROP_XSD_TOTAL_DIGITS { HelpId = HID_PROP_XSD_TOTAL_DIGITS; } -hidspecial HID_PROP_XSD_FRACTION_DIGITS { HelpId = HID_PROP_XSD_FRACTION_DIGITS; } -hidspecial HID_PROP_XSD_MAX_INCLUSIVE { HelpId = HID_PROP_XSD_MAX_INCLUSIVE; } -hidspecial HID_PROP_XSD_MAX_EXCLUSIVE { HelpId = HID_PROP_XSD_MAX_EXCLUSIVE; } -hidspecial HID_PROP_XSD_MIN_INCLUSIVE { HelpId = HID_PROP_XSD_MIN_INCLUSIVE; } -hidspecial HID_PROP_XSD_MIN_EXCLUSIVE { HelpId = HID_PROP_XSD_MIN_EXCLUSIVE; } -hidspecial HID_PROP_UNCHECKEDREFVALUE { HelpId = HID_PROP_UNCHECKEDREFVALUE; } -hidspecial HID_PROP_SUBMISSION_ID { HelpId = HID_PROP_SUBMISSION_ID; } -hidspecial HID_PROP_LIST_BINDING { HelpId = HID_PROP_LIST_BINDING; } -hidspecial HID_PROP_BINDING_NAME { HelpId = HID_PROP_BINDING_NAME; } -hidspecial HID_CHECK_FOR_UPD_DLG { HelpId = HID_CHECK_FOR_UPD_DLG; } -hidspecial HID_CHECK_FOR_UPD_CLOSE { HelpId = HID_CHECK_FOR_UPD_CLOSE; } -hidspecial HID_CHECK_FOR_UPD_PAUSE { HelpId = HID_CHECK_FOR_UPD_PAUSE; } -hidspecial HID_CHECK_FOR_UPD_RESUME { HelpId = HID_CHECK_FOR_UPD_RESUME; } -hidspecial HID_CHECK_FOR_UPD_DOWNLOAD { HelpId = HID_CHECK_FOR_UPD_DOWNLOAD; } -hidspecial HID_CHECK_FOR_UPD_DOWNLOAD2 { HelpId = HID_CHECK_FOR_UPD_DOWNLOAD2; } -hidspecial HID_CHECK_FOR_UPD_INSTALL { HelpId = HID_CHECK_FOR_UPD_INSTALL; } -hidspecial HID_CHECK_FOR_UPD_STATUS { HelpId = HID_CHECK_FOR_UPD_STATUS; } -hidspecial HID_CHECK_FOR_UPD_DESCRIPTION { HelpId = HID_CHECK_FOR_UPD_DESCRIPTION; } -hidspecial HID_CHECK_FOR_UPD_CANCEL { HelpId = HID_CHECK_FOR_UPD_CANCEL; } -hidspecial HID_PROP_NOLABEL { HelpId = HID_PROP_NOLABEL; } -hidspecial HID_PROP_INPUT_REQUIRED { HelpId = HID_PROP_INPUT_REQUIRED; } -hidspecial HID_PROP_WRITING_MODE { HelpId = HID_PROP_WRITING_MODE; } -hidspecial HID_PROP_ENABLE_VISIBLE { HelpId = HID_PROP_ENABLE_VISIBLE; } -hidspecial HID_PROP_WHEEL_BEHAVIOR { HelpId = HID_PROP_WHEEL_BEHAVIOR; } +hidspecial HID_FIELDLINK_DETAIL_COLUMN { HelpId = HID_FIELDLINK_DETAIL_COLUMN; } +hidspecial HID_FIELDLINK_MASTER_COLUMN { HelpId = HID_FIELDLINK_MASTER_COLUMN; } + +hidspecial HID_GRIDWIZARD_CANCEL { HelpId = HID_GRIDWIZARD_CANCEL; } +hidspecial HID_GRIDWIZARD_FINISH { HelpId = HID_GRIDWIZARD_FINISH; } +hidspecial HID_GRIDWIZARD_NEXT { HelpId = HID_GRIDWIZARD_NEXT; } +hidspecial HID_GRIDWIZARD_PREVIOUS { HelpId = HID_GRIDWIZARD_PREVIOUS; }; +hidspecial HID_GROUPWIZARD_CANCEL { HelpId = HID_GROUPWIZARD_CANCEL; } +hidspecial HID_GROUPWIZARD_FINISH { HelpId = HID_GROUPWIZARD_FINISH; } +hidspecial HID_GROUPWIZARD_NEXT { HelpId = HID_GROUPWIZARD_NEXT; } +hidspecial HID_GROUPWIZARD_PREVIOUS { HelpId = HID_GROUPWIZARD_PREVIOUS; } + +hidspecial HID_LISTWIZARD_CANCEL { HelpId = HID_LISTWIZARD_CANCEL; } +hidspecial HID_LISTWIZARD_FINISH { HelpId = HID_LISTWIZARD_FINISH; } +hidspecial HID_LISTWIZARD_NEXT { HelpId = HID_LISTWIZARD_NEXT; } +hidspecial HID_LISTWIZARD_PREVIOUS { HelpId = HID_LISTWIZARD_PREVIOUS; } + +hidspecial HID_PROP_ALIGN { HelpId = HID_PROP_ALIGN; } +hidspecial HID_PROP_ALLOW_ADDITIONS { HelpId = HID_PROP_ALLOW_ADDITIONS; } +hidspecial HID_PROP_ALLOW_DELETIONS { HelpId = HID_PROP_ALLOW_DELETIONS; } +hidspecial HID_PROP_ALLOW_EDITS { HelpId = HID_PROP_ALLOW_EDITS; } hidspecial HID_PROP_ANCHOR_TYPE { HelpId = HID_PROP_ANCHOR_TYPE; } +hidspecial HID_PROP_AUTOCOMPLETE { HelpId = HID_PROP_AUTOCOMPLETE; } +hidspecial HID_PROP_AUTOLINEBREAK { HelpId = HID_PROP_AUTOLINEBREAK; } +hidspecial HID_PROP_BACKGROUNDCOLOR { HelpId = HID_PROP_BACKGROUNDCOLOR; } +hidspecial HID_PROP_BINDING_NAME { HelpId = HID_PROP_BINDING_NAME; } +hidspecial HID_PROP_BIND_EXPRESSION { HelpId = HID_PROP_BIND_EXPRESSION; } +hidspecial HID_PROP_BLOCKINCREMENT { HelpId = HID_PROP_BLOCKINCREMENT; } +hidspecial HID_PROP_BORDER { HelpId = HID_PROP_BORDER; } +hidspecial HID_PROP_BORDERCOLOR { HelpId = HID_PROP_BORDERCOLOR; } +hidspecial HID_PROP_BOUNDCOLUMN { HelpId = HID_PROP_BOUNDCOLUMN; } +hidspecial HID_PROP_BOUND_CELL { HelpId = HID_PROP_BOUND_CELL; } +hidspecial HID_PROP_BUTTONTYPE { HelpId = HID_PROP_BUTTONTYPE; } +hidspecial HID_PROP_CELL_EXCHANGE_TYPE { HelpId = HID_PROP_CELL_EXCHANGE_TYPE; } +hidspecial HID_PROP_CLASSID { HelpId = HID_PROP_CLASSID; } +hidspecial HID_PROP_CONTROLLABEL { HelpId = HID_PROP_CONTROLLABEL; } +hidspecial HID_PROP_CONTROLSOURCE { HelpId = HID_PROP_CONTROLSOURCE; } +hidspecial HID_PROP_CURRENCYSYMBOL { HelpId = HID_PROP_CURRENCYSYMBOL; } +hidspecial HID_PROP_CURRSYM_POSITION { HelpId = HID_PROP_CURRSYM_POSITION; } +hidspecial HID_PROP_CURSORSOURCE { HelpId = HID_PROP_CURSORSOURCE; } +hidspecial HID_PROP_CURSORSOURCETYPE { HelpId = HID_PROP_CURSORSOURCETYPE; } +hidspecial HID_PROP_CURSORTYPE { HelpId = HID_PROP_CURSORTYPE; } +hidspecial HID_PROP_CYCLE { HelpId = HID_PROP_CYCLE; } +hidspecial HID_PROP_DATAENTRY { HelpId = HID_PROP_DATAENTRY; } +hidspecial HID_PROP_DATASOURCE { HelpId = HID_PROP_DATASOURCE; } +hidspecial HID_PROP_DATE { HelpId = HID_PROP_DATE; } +hidspecial HID_PROP_DATEFORMAT { HelpId = HID_PROP_DATEFORMAT; } +hidspecial HID_PROP_DATEMAX { HelpId = HID_PROP_DATEMAX; } +hidspecial HID_PROP_DATEMIN { HelpId = HID_PROP_DATEMIN; } +hidspecial HID_PROP_DECIMAL_ACCURACY { HelpId = HID_PROP_DECIMAL_ACCURACY; } +hidspecial HID_PROP_DECORATION { HelpId = HID_PROP_DECORATION; } +hidspecial HID_PROP_DEFAULTVALUE { HelpId = HID_PROP_DEFAULTVALUE; } +hidspecial HID_PROP_DEFAULT_BUTTON { HelpId = HID_PROP_DEFAULT_BUTTON; } +hidspecial HID_PROP_DEFAULT_DATE { HelpId = HID_PROP_DEFAULT_DATE; } +hidspecial HID_PROP_DEFAULT_LONG_VALUE { HelpId = HID_PROP_DEFAULT_LONG_VALUE; } +hidspecial HID_PROP_DEFAULT_SCROLLVALUE { HelpId = HID_PROP_DEFAULT_SCROLLVALUE; } +hidspecial HID_PROP_DEFAULT_SELECT_SEQ { HelpId = HID_PROP_DEFAULT_SELECT_SEQ; } +hidspecial HID_PROP_DEFAULT_SPINVALUE { HelpId = HID_PROP_DEFAULT_SPINVALUE; } +hidspecial HID_PROP_DEFAULT_STATE { HelpId = HID_PROP_DEFAULT_STATE; } +hidspecial HID_PROP_DEFAULT_TIME { HelpId = HID_PROP_DEFAULT_TIME; } +hidspecial HID_PROP_DIRTY { HelpId = HID_PROP_DIRTY; } +hidspecial HID_PROP_DROPDOWN { HelpId = HID_PROP_DROPDOWN; } +hidspecial HID_PROP_ECHO_CHAR { HelpId = HID_PROP_ECHO_CHAR; } +hidspecial HID_PROP_EDITABLE { HelpId = HID_PROP_EDITABLE; } +hidspecial HID_PROP_EDITMASK { HelpId = HID_PROP_EDITMASK; } +hidspecial HID_PROP_EFFECTIVEDEFAULT { HelpId = HID_PROP_EFFECTIVEDEFAULT; } +hidspecial HID_PROP_EFFECTIVEMAX { HelpId = HID_PROP_EFFECTIVEMAX; } +hidspecial HID_PROP_EFFECTIVEMIN { HelpId = HID_PROP_EFFECTIVEMIN; } +hidspecial HID_PROP_EMPTY_IS_NULL { HelpId = HID_PROP_EMPTY_IS_NULL; } +hidspecial HID_PROP_ENABLED { HelpId = HID_PROP_ENABLED; } +hidspecial HID_PROP_ENABLE_VISIBLE { HelpId = HID_PROP_ENABLE_VISIBLE; } +hidspecial HID_PROP_ESCAPE_PROCESSING { HelpId = HID_PROP_ESCAPE_PROCESSING; } +hidspecial HID_PROP_FILLCOLOR { HelpId = HID_PROP_FILLCOLOR; } +hidspecial HID_PROP_FILTER { HelpId = HID_PROP_FILTER; } +hidspecial HID_PROP_FILTERPROPOSAL { HelpId = HID_PROP_FILTERPROPOSAL; } +hidspecial HID_PROP_FOCUSONCLICK { HelpId = HID_PROP_FOCUSONCLICK; } +hidspecial HID_PROP_FONT { HelpId = HID_PROP_FONT; } +hidspecial HID_PROP_FORMATKEY { HelpId = HID_PROP_FORMATKEY; } +hidspecial HID_PROP_GROUPBOX { HelpId = HID_PROP_GROUPBOX; } +hidspecial HID_PROP_HEIGHT { HelpId = HID_PROP_HEIGHT; } +hidspecial HID_PROP_HELPTEXT { HelpId = HID_PROP_HELPTEXT; } +hidspecial HID_PROP_HELPURL { HelpId = HID_PROP_HELPURL; } +hidspecial HID_PROP_HIDDEN_VALUE { HelpId = HID_PROP_HIDDEN_VALUE; } +hidspecial HID_PROP_HIDEINACTIVESELECTION { HelpId = HID_PROP_HIDEINACTIVESELECTION; } +hidspecial HID_PROP_HSCROLL { HelpId = HID_PROP_HSCROLL; } +hidspecial HID_PROP_ICONSIZE { HelpId = HID_PROP_ICONSIZE; } +hidspecial HID_PROP_IMAGEPOSITION { HelpId = HID_PROP_IMAGEPOSITION; } +hidspecial HID_PROP_IMAGE_URL { HelpId = HID_PROP_IMAGE_URL; } +hidspecial HID_PROP_INPUT_REQUIRED { HelpId = HID_PROP_INPUT_REQUIRED; } +hidspecial HID_PROP_INVOKES_STOP_NOT_EDITING { HelpId = HID_PROP_INVOKES_STOP_NOT_EDITING; } +hidspecial HID_PROP_LABEL { HelpId = HID_PROP_LABEL; } +hidspecial HID_PROP_LEFT { HelpId = HID_PROP_LEFT; } +hidspecial HID_PROP_LINECOLOR { HelpId = HID_PROP_LINECOLOR; } +hidspecial HID_PROP_LINECOUNT { HelpId = HID_PROP_LINECOUNT; } +hidspecial HID_PROP_LINEEND_FORMAT { HelpId = HID_PROP_LINEEND_FORMAT; } +hidspecial HID_PROP_LINEINCREMENT { HelpId = HID_PROP_LINEINCREMENT; } +hidspecial HID_PROP_LISTINDEX { HelpId = HID_PROP_LISTINDEX; } +hidspecial HID_PROP_LISTSOURCE { HelpId = HID_PROP_LISTSOURCE; } +hidspecial HID_PROP_LISTSOURCETYPE { HelpId = HID_PROP_LISTSOURCETYPE; } +hidspecial HID_PROP_LIST_BINDING { HelpId = HID_PROP_LIST_BINDING; } +hidspecial HID_PROP_LIST_CELL_RANGE { HelpId = HID_PROP_LIST_CELL_RANGE; } +hidspecial HID_PROP_LITERALMASK { HelpId = HID_PROP_LITERALMASK; } +hidspecial HID_PROP_LOCKED { HelpId = HID_PROP_LOCKED; } +hidspecial HID_PROP_MASTERFIELDS { HelpId = HID_PROP_MASTERFIELDS; } +hidspecial HID_PROP_MAXTEXTLEN { HelpId = HID_PROP_MAXTEXTLEN; } +hidspecial HID_PROP_MULTILINE { HelpId = HID_PROP_MULTILINE; } +hidspecial HID_PROP_MULTISELECTION { HelpId = HID_PROP_MULTISELECTION; } +hidspecial HID_PROP_NAME { HelpId = HID_PROP_NAME; } +hidspecial HID_PROP_NAVIGATION { HelpId = HID_PROP_NAVIGATION; } +hidspecial HID_PROP_NAVIGATIONBAR { HelpId = HID_PROP_NAVIGATIONBAR; } +hidspecial HID_PROP_NOLABEL { HelpId = HID_PROP_NOLABEL; } +hidspecial HID_PROP_OLDVALUE { HelpId = HID_PROP_OLDVALUE; } +hidspecial HID_PROP_ORIENTATION { HelpId = HID_PROP_ORIENTATION; } +hidspecial HID_PROP_POSITIONX { HelpId = HID_PROP_POSITIONX; } +hidspecial HID_PROP_POSITIONY { HelpId = HID_PROP_POSITIONY; } +hidspecial HID_PROP_PRINTABLE { HelpId = HID_PROP_PRINTABLE; } +hidspecial HID_PROP_PROGRESSVALUE { HelpId = HID_PROP_PROGRESSVALUE; } +hidspecial HID_PROP_PROGRESSVALUE_MAX { HelpId = HID_PROP_PROGRESSVALUE_MAX; } +hidspecial HID_PROP_PROGRESSVALUE_MIN { HelpId = HID_PROP_PROGRESSVALUE_MIN; } +hidspecial HID_PROP_PUSHBUTTONTYPE { HelpId = HID_PROP_PUSHBUTTONTYPE; } +hidspecial HID_PROP_READONLY { HelpId = HID_PROP_READONLY; } +hidspecial HID_PROP_RECORDMARKER { HelpId = HID_PROP_RECORDMARKER; } +hidspecial HID_PROP_REFVALUE { HelpId = HID_PROP_REFVALUE; } +hidspecial HID_PROP_REPEAT { HelpId = HID_PROP_REPEAT; } +hidspecial HID_PROP_REPEAT_DELAY { HelpId = HID_PROP_REPEAT_DELAY; } +hidspecial HID_PROP_REQUIRED { HelpId = HID_PROP_REQUIRED; } +hidspecial HID_PROP_RIGHT { HelpId = HID_PROP_RIGHT; } +hidspecial HID_PROP_ROOT_DISPLAYED { HelpId = HID_PROP_ROOT_DISPLAYED; } +hidspecial HID_PROP_ROWHEIGHT { HelpId = HID_PROP_ROWHEIGHT; } +hidspecial HID_PROP_ROW_HEIGHT { HelpId = HID_PROP_ROW_HEIGHT; } +hidspecial HID_PROP_SCALEIMAGE { HelpId = HID_PROP_SCALEIMAGE; } +hidspecial HID_PROP_SCROLLVALUE { HelpId = HID_PROP_SCROLLVALUE; } +hidspecial HID_PROP_SCROLLVALUEMIN { HelpId = HID_PROP_SCROLLVALUE_MIN; } +hidspecial HID_PROP_SCROLLVALUE_MAX { HelpId = HID_PROP_SCROLLVALUE_MAX; } +hidspecial HID_PROP_SCROLLVALUE_MIN { HelpId = HID_PROP_SCROLLVALUE_MIN; } +hidspecial HID_PROP_SEARCHING { HelpId = HID_PROP_SEARCHING; } +hidspecial HID_PROP_SELECTEDITEMS { HelpId = HID_PROP_SELECTEDITEMS; } +hidspecial HID_PROP_SELECTION_TYPE { HelpId = HID_PROP_SELECTION_TYPE; } +hidspecial HID_PROP_SHOWS_HANDLES { HelpId = HID_PROP_SHOWS_HANDLES; } +hidspecial HID_PROP_SHOWS_ROOT_HANDLES { HelpId = HID_PROP_SHOWS_ROOT_HANDLES; } +hidspecial HID_PROP_SHOWTHOUSANDSEP { HelpId = HID_PROP_SHOWTHOUSANDSEP; } +hidspecial HID_PROP_SHOW_FILTERSORT { HelpId = HID_PROP_SHOW_FILTERSORT; } +hidspecial HID_PROP_SHOW_NAVIGATION { HelpId = HID_PROP_SHOW_NAVIGATION; } +hidspecial HID_PROP_SHOW_POSITION { HelpId = HID_PROP_SHOW_POSITION; } +hidspecial HID_PROP_SHOW_RECORDACTIONS { HelpId = HID_PROP_SHOW_RECORDACTIONS; } +hidspecial HID_PROP_SHOW_SCROLLBARS { HelpId = HID_PROP_SHOW_SCROLLBARS; } +hidspecial HID_PROP_SLAVEFIELDS { HelpId = HID_PROP_SLAVEFIELDS; } +hidspecial HID_PROP_SORT_CRITERIA { HelpId = HID_PROP_SORT_CRITERIA; } +hidspecial HID_PROP_SPIN { HelpId = HID_PROP_SPIN; } +hidspecial HID_PROP_SPININCREMENT { HelpId = HID_PROP_SPININCREMENT; } +hidspecial HID_PROP_SPINVALUE { HelpId = HID_PROP_SPINVALUE; } +hidspecial HID_PROP_SPINVALUE_MAX { HelpId = HID_PROP_SPINVALUE_MAX; } +hidspecial HID_PROP_SPINVALUE_MIN { HelpId = HID_PROP_SPINVALUE_MIN; } +hidspecial HID_PROP_STATE { HelpId = HID_PROP_STATE; } +hidspecial HID_PROP_STEP { HelpId = HID_PROP_STEP; } +hidspecial HID_PROP_STRICTFORMAT { HelpId = HID_PROP_STRICTFORMAT; } +hidspecial HID_PROP_STRINGITEMLIST { HelpId = HID_PROP_STRINGITEMLIST; } +hidspecial HID_PROP_SUBMISSION_ID { HelpId = HID_PROP_SUBMISSION_ID; } +hidspecial HID_PROP_SUBMIT_ACTION { HelpId = HID_PROP_SUBMIT_ACTION; } +hidspecial HID_PROP_SUBMIT_ENCODING { HelpId = HID_PROP_SUBMIT_ENCODING; } +hidspecial HID_PROP_SUBMIT_METHOD { HelpId = HID_PROP_SUBMIT_METHOD; } +hidspecial HID_PROP_SUBMIT_TARGET { HelpId = HID_PROP_SUBMIT_TARGET; } +hidspecial HID_PROP_SYMBOLCOLOR { HelpId = HID_PROP_SYMBOLCOLOR; } +hidspecial HID_PROP_TABINDEX { HelpId = HID_PROP_TABINDEX; } +hidspecial HID_PROP_TABORDER_CONTROLS { HelpId = HID_PROP_TABORDER_CONTROLS; } +hidspecial HID_PROP_TABSTOP { HelpId = HID_PROP_TABSTOP; } +hidspecial HID_PROP_TAG { HelpId = HID_PROP_TAG; } +hidspecial HID_PROP_TARGET_FRAME { HelpId = HID_PROP_TARGET_FRAME; } +hidspecial HID_PROP_TARGET_URL { HelpId = HID_PROP_TARGET_URL; } +hidspecial HID_PROP_TEXT { HelpId = HID_PROP_TEXT; } +hidspecial HID_PROP_TEXTTYPE { HelpId = HID_PROP_TEXTTYPE; } +hidspecial HID_PROP_TIME { HelpId = HID_PROP_TIME; } +hidspecial HID_PROP_TIMEFORMAT { HelpId = HID_PROP_TIMEFORMAT; } +hidspecial HID_PROP_TIMEMAX { HelpId = HID_PROP_TIMEMAX; } +hidspecial HID_PROP_TIMEMIN { HelpId = HID_PROP_TIMEMIN; } +hidspecial HID_PROP_TITLE { HelpId = HID_PROP_TITLE; } +hidspecial HID_PROP_TOGGLE { HelpId = HID_PROP_TOGGLE; } +hidspecial HID_PROP_TRISTATE { HelpId = HID_PROP_TRISTATE; } +hidspecial HID_PROP_UNCHECKEDREFVALUE { HelpId = HID_PROP_UNCHECKEDREFVALUE; } +hidspecial HID_PROP_UNIQUE { HelpId = HID_PROP_UNIQUE; } +hidspecial HID_PROP_VALUE { HelpId = HID_PROP_VALUE; } +hidspecial HID_PROP_VALUEMAX { HelpId = HID_PROP_VALUEMAX; } +hidspecial HID_PROP_VALUEMIN { HelpId = HID_PROP_VALUEMIN; } +hidspecial HID_PROP_VALUESTEP { HelpId = HID_PROP_VALUESTEP; } +hidspecial HID_PROP_VERTICAL_ALIGN { HelpId = HID_PROP_VERTICAL_ALIGN; } +hidspecial HID_PROP_VISIBLESIZE { HelpId = HID_PROP_VISIBLESIZE; } +hidspecial HID_PROP_VISUALEFFECT { HelpId = HID_PROP_VISUALEFFECT; } +hidspecial HID_PROP_VSCROLL { HelpId = HID_PROP_VSCROLL; } +hidspecial HID_PROP_WHEEL_BEHAVIOR { HelpId = HID_PROP_WHEEL_BEHAVIOR; } +hidspecial HID_PROP_WIDTH { HelpId = HID_PROP_WIDTH; } +hidspecial HID_PROP_WORDBREAK { HelpId = HID_PROP_WORDBREAK; } +hidspecial HID_PROP_WRITING_MODE { HelpId = HID_PROP_WRITING_MODE; } +hidspecial HID_PROP_XML_DATA_MODEL { HelpId = HID_PROP_XML_DATA_MODEL; } +hidspecial HID_PROP_XSD_CALCULATION { HelpId = HID_PROP_XSD_CALCULATION; } +hidspecial HID_PROP_XSD_CONSTRAINT { HelpId = HID_PROP_XSD_CONSTRAINT; } +hidspecial HID_PROP_XSD_DATA_TYPE { HelpId = HID_PROP_XSD_DATA_TYPE; } +hidspecial HID_PROP_XSD_FRACTION_DIGITS { HelpId = HID_PROP_XSD_FRACTION_DIGITS; } +hidspecial HID_PROP_XSD_LENGTH { HelpId = HID_PROP_XSD_LENGTH; } +hidspecial HID_PROP_XSD_MAX_EXCLUSIVE { HelpId = HID_PROP_XSD_MAX_EXCLUSIVE; } +hidspecial HID_PROP_XSD_MAX_INCLUSIVE { HelpId = HID_PROP_XSD_MAX_INCLUSIVE; } +hidspecial HID_PROP_XSD_MAX_LENGTH { HelpId = HID_PROP_XSD_MAX_LENGTH; } +hidspecial HID_PROP_XSD_MIN_EXCLUSIVE { HelpId = HID_PROP_XSD_MIN_EXCLUSIVE; } +hidspecial HID_PROP_XSD_MIN_INCLUSIVE { HelpId = HID_PROP_XSD_MIN_INCLUSIVE; } +hidspecial HID_PROP_XSD_MIN_LENGTH { HelpId = HID_PROP_XSD_MIN_LENGTH; } +hidspecial HID_PROP_XSD_PATTERN { HelpId = HID_PROP_XSD_PATTERN; } +hidspecial HID_PROP_XSD_READONLY { HelpId = HID_PROP_XSD_READONLY; } +hidspecial HID_PROP_XSD_RELEVANT { HelpId = HID_PROP_XSD_RELEVANT; } +hidspecial HID_PROP_XSD_REQUIRED { HelpId = HID_PROP_XSD_REQUIRED; } +hidspecial HID_PROP_XSD_TOTAL_DIGITS { HelpId = HID_PROP_XSD_TOTAL_DIGITS; } +hidspecial HID_PROP_XSD_WHITESPACES { HelpId = HID_PROP_XSD_WHITESPACES; } + +hidspecial HID_PROTOCOLS { HelpId = HID_PROTOCOLS; } +hidspecial HID_SELECTION_TLB { HelpId = HID_SELECTION_TLB; } + +hidspecial UID_ABSPILOT_HELP { HelpId = UID_ABSPILOT_HELP; } +hidspecial UID_BIB_FRAME_WINDOW { HelpId = UID_BIB_FRAME_WINDOW;} + +hidspecial UID_BRWEVT_ACTIONPERFORMED { HelpId = UID_BRWEVT_ACTIONPERFORMED; } +hidspecial UID_BRWEVT_ADJUSTMENTVALUECHANGED { HelpId = UID_BRWEVT_ADJUSTMENTVALUECHANGED; } +hidspecial UID_BRWEVT_AFTERUPDATE { HelpId = UID_BRWEVT_AFTERUPDATE; } +hidspecial UID_BRWEVT_APPROVEACTIONPERFORMED { HelpId = UID_BRWEVT_APPROVEACTIONPERFORMED; } +hidspecial UID_BRWEVT_APPROVEPARAMETER { HelpId = UID_BRWEVT_APPROVEPARAMETER; } +hidspecial UID_BRWEVT_APPROVERESETTED { HelpId = UID_BRWEVT_APPROVERESETTED; } +hidspecial UID_BRWEVT_APPROVEROWCHANGE { HelpId = UID_BRWEVT_APPROVEROWCHANGE; } +hidspecial UID_BRWEVT_BEFOREUPDATE { HelpId = UID_BRWEVT_BEFOREUPDATE; } +hidspecial UID_BRWEVT_CHANGED { HelpId = UID_BRWEVT_CHANGED; } +hidspecial UID_BRWEVT_CONFIRMDELETE { HelpId = UID_BRWEVT_CONFIRMDELETE; } +hidspecial UID_BRWEVT_ERROROCCURED { HelpId = UID_BRWEVT_ERROROCCURED; } +hidspecial UID_BRWEVT_FOCUSGAINED { HelpId = UID_BRWEVT_FOCUSGAINED; } +hidspecial UID_BRWEVT_FOCUSLOST { HelpId = UID_BRWEVT_FOCUSLOST; } +hidspecial UID_BRWEVT_ITEMSTATECHANGED { HelpId = UID_BRWEVT_ITEMSTATECHANGED; } +hidspecial UID_BRWEVT_KEYTYPED { HelpId = UID_BRWEVT_KEYTYPED; } +hidspecial UID_BRWEVT_KEYUP { HelpId = UID_BRWEVT_KEYUP; } +hidspecial UID_BRWEVT_LOADED { HelpId = UID_BRWEVT_LOADED; } +hidspecial UID_BRWEVT_MOUSEDRAGGED { HelpId = UID_BRWEVT_MOUSEDRAGGED; } +hidspecial UID_BRWEVT_MOUSEENTERED { HelpId = UID_BRWEVT_MOUSEENTERED; } +hidspecial UID_BRWEVT_MOUSEEXITED { HelpId = UID_BRWEVT_MOUSEEXITED; } +hidspecial UID_BRWEVT_MOUSEMOVED { HelpId = UID_BRWEVT_MOUSEMOVED; } +hidspecial UID_BRWEVT_MOUSEPRESSED { HelpId = UID_BRWEVT_MOUSEPRESSED; } +hidspecial UID_BRWEVT_MOUSERELEASED { HelpId = UID_BRWEVT_MOUSERELEASED; } +hidspecial UID_BRWEVT_POSITIONED { HelpId = UID_BRWEVT_POSITIONED; } +hidspecial UID_BRWEVT_POSITIONING { HelpId = UID_BRWEVT_POSITIONING; } +hidspecial UID_BRWEVT_RELOADED { HelpId = UID_BRWEVT_RELOADED; } +hidspecial UID_BRWEVT_RELOADING { HelpId = UID_BRWEVT_RELOADING; } +hidspecial UID_BRWEVT_RESETTED { HelpId = UID_BRWEVT_RESETTED; } +hidspecial UID_BRWEVT_ROWCHANGE { HelpId = UID_BRWEVT_ROWCHANGE; } +hidspecial UID_BRWEVT_SUBMITTED { HelpId = UID_BRWEVT_SUBMITTED; } +hidspecial UID_BRWEVT_TEXTCHANGED { HelpId = UID_BRWEVT_TEXTCHANGED; } +hidspecial UID_BRWEVT_UNLOADED { HelpId = UID_BRWEVT_UNLOADED; } +hidspecial UID_BRWEVT_UNLOADING { HelpId = UID_BRWEVT_UNLOADING; } + +hidspecial UID_DBIWIZARD_FORMS { HelpId = UID_DBIWIZARD_FORMS; } +hidspecial UID_DBIWIZARD_FORMS_SAVETO { HelpId = UID_DBIWIZARD_FORMS_SAVETO; } +hidspecial UID_DBIWIZARD_HELP { HelpId = UID_DBIWIZARD_HELP; } +hidspecial UID_DBIWIZARD_QUERIES { HelpId = UID_DBIWIZARD_QUERIES; } +hidspecial UID_DBIWIZARD_SOURCEFILE { HelpId = UID_DBIWIZARD_SOURCEFILE; } +hidspecial UID_DBIWIZARD_SOURCESTATS { HelpId = UID_DBIWIZARD_SOURCESTATS; } + +hidspecial UID_EVT_MACRODLG { HelpId = UID_EVT_MACRODLG; } + +hidspecial UID_FIELDLINK_DETAIL1 { HelpId = UID_FIELDLINK_DETAIL1; } +hidspecial UID_FIELDLINK_DETAIL2 { HelpId = UID_FIELDLINK_DETAIL2; } +hidspecial UID_FIELDLINK_DETAIL3 { HelpId = UID_FIELDLINK_DETAIL3; } +hidspecial UID_FIELDLINK_DETAIL4 { HelpId = UID_FIELDLINK_DETAIL4; } +hidspecial UID_FIELDLINK_MASTER1 { HelpId = UID_FIELDLINK_MASTER1; } +hidspecial UID_FIELDLINK_MASTER2 { HelpId = UID_FIELDLINK_MASTER2; } +hidspecial UID_FIELDLINK_MASTER3 { HelpId = UID_FIELDLINK_MASTER3; } +hidspecial UID_FIELDLINK_MASTER4 { HelpId = UID_FIELDLINK_MASTER4; } + +hidspecial UID_PROP_ADD_DATA_TYPE { HelpId = UID_PROP_ADD_DATA_TYPE; } +hidspecial UID_PROP_DLG_ATTR_DATASOURCE { HelpId = UID_PROP_DLG_ATTR_DATASOURCE; } +hidspecial UID_PROP_DLG_ATTR_DATASOURCE { HelpId = UID_PROP_DLG_ATTR_DATASOURCE; } +hidspecial UID_PROP_DLG_ATTR_TARGET_URL { HelpId = UID_PROP_DLG_ATTR_TARGET_URL; } +hidspecial UID_PROP_DLG_ATTR_TARGET_URL { HelpId = UID_PROP_DLG_ATTR_TARGET_URL; } +hidspecial UID_PROP_DLG_BACKGROUNDCOLOR { HelpId = UID_PROP_DLG_BACKGROUNDCOLOR; } +hidspecial UID_PROP_DLG_BACKGROUNDCOLOR { HelpId = UID_PROP_DLG_BACKGROUNDCOLOR; } +hidspecial UID_PROP_DLG_BIND_EXPRESSION { HelpId = UID_PROP_DLG_BIND_EXPRESSION; } +hidspecial UID_PROP_DLG_BORDERCOLOR { HelpId = UID_PROP_DLG_BORDERCOLOR; } +hidspecial UID_PROP_DLG_CONTROLLABEL { HelpId = UID_PROP_DLG_CONTROLLABEL; } +hidspecial UID_PROP_DLG_CONTROLLABEL { HelpId = UID_PROP_DLG_CONTROLLABEL; } +hidspecial UID_PROP_DLG_FILLCOLOR { HelpId = UID_PROP_DLG_FILLCOLOR; } +hidspecial UID_PROP_DLG_FILLCOLOR { HelpId = UID_PROP_DLG_FILLCOLOR; } +hidspecial UID_PROP_DLG_FILTER { HelpId = UID_PROP_DLG_FILTER; } +hidspecial UID_PROP_DLG_FONT_TYPE { HelpId = UID_PROP_DLG_FONT_TYPE; } +hidspecial UID_PROP_DLG_FONT_TYPE { HelpId = UID_PROP_DLG_FONT_TYPE; } +hidspecial UID_PROP_DLG_FORMLINKFIELDS { HelpId = UID_PROP_DLG_FORMLINKFIELDS; } +hidspecial UID_PROP_DLG_IMAGE_URL { HelpId = UID_PROP_DLG_IMAGE_URL; } +hidspecial UID_PROP_DLG_IMAGE_URL { HelpId = UID_PROP_DLG_IMAGE_URL; } +hidspecial UID_PROP_DLG_NUMBER_FORMAT { HelpId = UID_PROP_DLG_NUMBER_FORMAT; } +hidspecial UID_PROP_DLG_NUMBER_FORMAT { HelpId = UID_PROP_DLG_NUMBER_FORMAT; } +hidspecial UID_PROP_DLG_ORDER { HelpId = UID_PROP_DLG_ORDER; } +hidspecial UID_PROP_DLG_SELECTION { HelpId = UID_PROP_DLG_SELECTION; } +hidspecial UID_PROP_DLG_SQLCOMMAND { HelpId = UID_PROP_DLG_SQLCOMMAND; } +hidspecial UID_PROP_DLG_SYMBOLCOLOR { HelpId = UID_PROP_DLG_SYMBOLCOLOR; } +hidspecial UID_PROP_DLG_TABINDEX { HelpId = UID_PROP_DLG_TABINDEX; } +hidspecial UID_PROP_DLG_XSD_CALCULATION { HelpId = UID_PROP_DLG_XSD_CALCULATION; } +hidspecial UID_PROP_DLG_XSD_CONSTRAINT { HelpId = UID_PROP_DLG_XSD_CONSTRAINT; } +hidspecial UID_PROP_DLG_XSD_READONLY { HelpId = UID_PROP_DLG_XSD_READONLY; } +hidspecial UID_PROP_DLG_XSD_RELEVANT { HelpId = UID_PROP_DLG_XSD_RELEVANT; } +hidspecial UID_PROP_DLG_XSD_REQUIRED { HelpId = UID_PROP_DLG_XSD_REQUIRED; } +hidspecial UID_PROP_REMOVE_DATA_TYPE { HelpId = UID_PROP_REMOVE_DATA_TYPE; } diff --git a/forms/qa/integration/forms/TestSkeleton.java b/forms/qa/integration/forms/TestSkeleton.java index f16083664cbe..8f2765b3a6d5 100644 --- a/forms/qa/integration/forms/TestSkeleton.java +++ b/forms/qa/integration/forms/TestSkeleton.java @@ -6,9 +6,6 @@ * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TestSkeleton.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -29,61 +26,50 @@ ************************************************************************/ package integration.forms; -import com.sun.star.uno.UnoRuntime; +import com.sun.star.uno.Exception; -import com.sun.star.lang.XMultiServiceFactory; - -import com.sun.star.util.XCloseable; - -import integration.forms.DocumentHelper; - -public class TestSkeleton extends complexlib.ComplexTestCase +public class TestSkeleton extends TestCase { - private DocumentHelper m_document; - private FormLayer m_formLayer; - private XMultiServiceFactory m_orb; - - /** Creates a new instance of ValueBinding */ + /** Creates a new instance of TestSkeleton */ public TestSkeleton() { + super( DocumentType.WRITER ); } /* ------------------------------------------------------------------ */ public String[] getTestMethodNames() { return new String[] { - "checkSomething" + "checkTestSkeleton" }; } /* ------------------------------------------------------------------ */ public String getTestObjectName() { - return "Form Control Spreadsheet Cell Binding Test"; + return "Test Skeleton"; } /* ------------------------------------------------------------------ */ - public void before() throws com.sun.star.uno.Exception, java.lang.Exception + public void checkTestSkeleton() throws com.sun.star.uno.Exception, java.lang.Exception { - m_orb = (XMultiServiceFactory)param.getMSF(); - m_document = DocumentHelper.blankTextDocument( m_orb ); - m_formLayer = new FormLayer( m_document ); } /* ------------------------------------------------------------------ */ - public void after() throws com.sun.star.uno.Exception, java.lang.Exception + public void before() throws Exception, java.lang.Exception { - // close our document - if ( m_document != null ) - { - XCloseable closeDoc = (XCloseable)UnoRuntime.queryInterface( XCloseable.class, - m_document.getDocument() ); - closeDoc.close( true ); - } + super.before(); } /* ------------------------------------------------------------------ */ - public void checkSomething() throws com.sun.star.uno.Exception, java.lang.Exception + public void after() throws Exception, java.lang.Exception { + super.before(); } -} + + /* ------------------------------------------------------------------ */ + protected void prepareDocument() throws com.sun.star.uno.Exception, java.lang.Exception + { + super.prepareDocument(); + } + } diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx index ed3e85a905ec..23c05be9f89f 100644 --- a/forms/source/component/FormComponent.cxx +++ b/forms/source/component/FormComponent.cxx @@ -2151,9 +2151,9 @@ sal_Bool OBoundControlModel::connectToField(const Reference& rForm) try { + sal_Int32 nFieldType = DataType::OTHER; if ( xFieldCandidate.is() ) { - sal_Int32 nFieldType = 0; xFieldCandidate->getPropertyValue( PROPERTY_FIELDTYPE ) >>= nFieldType; if ( approveDbColumnType( nFieldType ) ) impl_setField_noNotify( xFieldCandidate ); @@ -2165,6 +2165,8 @@ sal_Bool OBoundControlModel::connectToField(const Reference& rForm) { if( m_xField->getPropertySetInfo()->hasPropertyByName( PROPERTY_VALUE ) ) { + m_nFieldType = nFieldType; + // an wertaenderungen horchen m_xField->addPropertyChangeListener( PROPERTY_VALUE, this ); m_xColumnUpdate = Reference< XColumnUpdate >( m_xField, UNO_QUERY ); diff --git a/forms/util/makefile.mk b/forms/util/makefile.mk index 1e99e6446f47..17f594ba7c4f 100644 --- a/forms/util/makefile.mk +++ b/forms/util/makefile.mk @@ -73,7 +73,7 @@ SHL1STDLIBS= \ $(COMPHELPERLIB) \ $(DBTOOLSLIB) \ $(TKLIB) \ - $(SVXLIB) \ + $(SVXCORELIB) \ $(UCBHELPERLIB) \ $(LIBXML2LIB) \ $(ICUUCLIB) \ diff --git a/setup_native/prj/build.lst b/setup_native/prj/build.lst index fcb276075a09..e3690f14381a 100644 --- a/setup_native/prj/build.lst +++ b/setup_native/prj/build.lst @@ -2,6 +2,7 @@ pk setup_native : soltools xml2cmp sal officecfg unoil NULL pk setup_native usr1 - all sn_mkout NULL pk setup_native\scripts\source nmake - u sn_source NULL pk setup_native\scripts nmake - u sn_scripts sn_source.u NULL +pk setup_native\source\mac nmake - u sn_mac NULL pk setup_native\source\win32\customactions\tools nmake - w sn_tools NULL pk setup_native\source\win32\customactions\relnotes nmake - w sn_relnotes NULL pk setup_native\source\win32\customactions\rebase nmake - w sn_rebase NULL diff --git a/setup_native/prj/d.lst b/setup_native/prj/d.lst index a5df50320a73..3be9984f8728 100644 --- a/setup_native/prj/d.lst +++ b/setup_native/prj/d.lst @@ -19,6 +19,7 @@ mkdir: %_DEST%\bin%_EXT%\userscripts ..\%__SRC%\bin\javaloader.sh %_DEST%\bin%_EXT%\javaloader.sh ..\%__SRC%\bin\stclient_wrapper.sh %_DEST%\bin%_EXT%\stclient_wrapper ..\%__SRC%\bin\stclient_wrapper.exe %_DEST%\bin%_EXT%\stclient_wrapper.exe +..\%__SRC%\misc\mac_ulffiles_dest\*.ulf %_DEST%\bin%_EXT%\*.ulf ..\source\win32\msi-encodinglist.txt %_DEST%\bin%_EXT%\msi-encodinglist.txt ..\source\win32\patchlist.txt %_DEST%\bin%_EXT%\patchlist.txt ..\source\win32\desktophelper.txt %_DEST%\bin%_EXT%\desktophelper.txt @@ -27,6 +28,8 @@ mkdir: %_DEST%\bin%_EXT%\userscripts ..\source\win32\nsis\*.ico %_DEST%\bin%_EXT%\*.ico ..\source\win32\nsis\*.bmp %_DEST%\bin%_EXT%\*.bmp ..\source\linux\*.dat %_DEST%\bin%_EXT%\*.dat +..\source\mac\*.icns %_DEST%\bin%_EXT%\*.icns +..\source\mac\Info.plist.langpack %_DEST%\bin%_EXT%\Info.plist.langpack ..\source\java\openofficeorg_setup.gif %_DEST%\bin%_EXT%\osl\Setup.gif ..\source\java\javaversion.dat %_DEST%\bin%_EXT%\javaversion.dat ..\source\java\javaversion2.dat %_DEST%\bin%_EXT%\javaversion2.dat @@ -35,6 +38,9 @@ mkdir: %_DEST%\bin%_EXT%\userscripts ..\source\packinfo\*.pcp %_DEST%\bin%_EXT%\*.pcp ..\scripts\admin.pl %_DEST%\bin%_EXT%\admin.pl ..\scripts\*.txt %_DEST%\bin%_EXT%\*.txt +..\scripts\mac_install.script %_DEST%\bin%_EXT%\mac_install.script +..\scripts\osx_install_languagepack.applescript %_DEST%\bin%_EXT%\osx_install_languagepack.applescript +..\scripts\osx_install_patch.applescript %_DEST%\bin%_EXT%\osx_install_patch.applescript ..\%__SRC%\lib\getuid.so %_DEST%\bin%_EXT%\getuid.so diff --git a/setup_native/scripts/mac_install.script b/setup_native/scripts/mac_install.script new file mode 100644 index 000000000000..2b34da1b04ed --- /dev/null +++ b/setup_native/scripts/mac_install.script @@ -0,0 +1,10 @@ +#!/bin/bash + +# shell script as a workaraound since it is hard to impossible to store compiled +# applescript in CVS and running osacompile would require a GUI session while +# building (or root privileges) +# using osascript only works when the shell script is camouflaged as application + +MY_DIR=$(dirname "$0") + +osascript "$MY_DIR/osx_install.applescript" diff --git a/setup_native/scripts/osx_install_languagepack.applescript b/setup_native/scripts/osx_install_languagepack.applescript new file mode 100644 index 000000000000..33d376adec1b --- /dev/null +++ b/setup_native/scripts/osx_install_languagepack.applescript @@ -0,0 +1,115 @@ +(* +This script is meant to + 1) Identify installed instances of the product + 2) check whether the user has write-access (and if not + ask for authentification) + 3) install the shipped tarball +*) + +-- strings for localisations - to be meant to be replaced +-- by a makefile or similar +set OKLabel to "[OKLabel]" +set InstallLabel to "[InstallLabel]" +set AbortLabel to "[AbortLabel]" +set intro to "[IntroText1] + +[IntroText2] + +[IntroText3]" +set chooseMyOwn to "[ChooseMyOwnText]" +set listPrompt to "[ListPromptText]" +set chooseManual to "[ChooseManualText]" +set listOKLabel to "[ListOKLabelText]" +set listCancelLabel to "[ListCancelLabel]" +set appInvalid to "[AppInvalidText1] + +[AppInvalidText2]" -- string will begin with the chosen application's name +set startInstall to "[StartInstallText1] + +[StartInstallText2]" +set IdentifyQ to "[IdentifyQText] + +[IdentifyQText2]" +set IdentifyYES to "[IdentifyYES]" +set IdentifyNO to "[IdentifyNO]" +set installFailed to "[InstallFailedText]" +set installComplete to "[InstallCompleteText] + +[InstallCompleteText2]" + +set sourcedir to (do shell script "dirname " & quoted form of POSIX path of (path to of me)) + +display dialog intro buttons {AbortLabel, InstallLabel} default button 2 + +if (button returned of result) is AbortLabel then + return 2 +end if + +set the found_ooos to (do shell script "mdfind \"kMDItemContentType == 'com.apple.application-bundle' && kMDItemDisplayName == '[PRODUCTNAME]*' && kMDItemDisplayName != '[FULLPRODUCTNAME].app'\"") & " +" & chooseMyOwn + +-- the choice returned is of type "list" +-- Show selection dialog only if more than one or no product was found +if (get first paragraph of found_ooos) is "" then + set the choice to (choose from list of paragraphs in found_ooos default items (get last paragraph of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel) + if choice is false then + -- do nothing, the user cancelled the installation + return 2 --aborted by user + else if (choice as string) is chooseMyOwn then + -- yeah, one needs to use "choose file", otherwise + -- the user would not be able to select the .app + set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.application-bundle" without showing package contents and invisibles) + end if +else if (get second paragraph of found_ooos) is chooseMyOwn then + -- set choice to found installation + set the choice to (get first paragraph of found_ooos) +else + set the choice to (choose from list of paragraphs in found_ooos default items (get first paragraph of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel) + if choice is false then + -- do nothing, the user cancelled the installation + return 2 --aborted by user + else if (choice as string) is chooseMyOwn then + -- yeah, one needs to use "choose file", otherwise + -- the user would not be able to select the .app + set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.application-bundle" without showing package contents and invisibles) + end if +end if + +-- now only check whether the path is really from [PRODUCTNAME] +try + do shell script "grep '[PRODUCTNAME] [PRODUCTVERSION]' " & quoted form of (choice as string) & "/Contents/Info.plist" +on error + display dialog (choice as string) & appInvalid buttons {InstallLabel} default button 1 with icon 0 + return 3 --wrong target-directory +end try + +(* +display dialog startInstall buttons {AbortLabel, InstallLabel} default button 2 + +if (button returned of result) is AbortLabel then + return 2 +end if +*) + +set tarCommand to "/usr/bin/tar -C " & quoted form of (choice as string) & " -xjf " & quoted form of sourcedir & "/tarball.tar.bz2" +try + do shell script tarCommand + +on error errMSG number errNUM + display dialog IdentifyQ buttons {IdentifyYES, IdentifyNO} with icon 2 + if (button returned of result) is IdentifyYES then + try + do shell script tarCommand with administrator privileges + on error errMSG number errNUM + display dialog installFailed buttons {OKLabel} default button 1 with icon 0 + -- -60005 username/password wrong + -- -128 aborted by user + -- 2 error from tar - tarball not found (easy to test) + return errNUM + end try + else + return 2 -- aborted by user + end if +end try + +display dialog installComplete buttons {OKLabel} default button 1 diff --git a/setup_native/scripts/osx_install_patch.applescript b/setup_native/scripts/osx_install_patch.applescript new file mode 100644 index 000000000000..33a9d4126339 --- /dev/null +++ b/setup_native/scripts/osx_install_patch.applescript @@ -0,0 +1,113 @@ +(* +This script is meant to + 1) Identify installed instances of the product + 2) check whether the user has write-access (and if not + ask for authentification) + 3) install the shipped tarball +*) + +-- strings for localisations - to be meant to be replaced +-- by a makefile or similar +set OKLabel to "[OKLabel]" +set InstallLabel to "[InstallLabel]" +set AbortLabel to "[AbortLabel]" +set intro to "[IntroText1] + +[IntroText2] + +[IntroText3]" +set chooseMyOwn to "[ChooseMyOwnText]" +set listPrompt to "[ListPromptText]" +set chooseManual to "[ChooseManualText]" +set listOKLabel to "[ListOKLabelText]" +set listCancelLabel to "[ListCancelLabel]" +set appInvalid to "[AppInvalidText1] + +[AppInvalidText2]" -- string will begin with the chosen application's name +set startInstall to "[StartInstallText1] + +[StartInstallText2]" +set IdentifyQ to "[IdentifyQText] + +[IdentifyQText2]" +set IdentifyYES to "[IdentifyYES]" +set IdentifyNO to "[IdentifyNO]" +set installFailed to "[InstallFailedText]" +set installComplete to "[InstallCompleteTextPatch]" + +set sourcedir to (do shell script "dirname " & quoted form of POSIX path of (path to of me)) + +display dialog intro buttons {AbortLabel, InstallLabel} default button 2 + +if (button returned of result) is AbortLabel then + return 2 +end if + +set the found_ooos to (do shell script "mdfind \"kMDItemContentType == 'com.apple.application-bundle' && kMDItemDisplayName == '[PRODUCTNAME]*' && kMDItemDisplayName != '[FULLPRODUCTNAME].app'\"") & " +" & chooseMyOwn + +-- the choice returned is of type "list" +-- Show selection dialog only if more than one or no product was found +if (get first paragraph of found_ooos) is "" then + set the choice to (choose from list of paragraphs in found_ooos default items (get last paragraph of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel) + if choice is false then + -- do nothing, the user cancelled the installation + return 2 --aborted by user + else if (choice as string) is chooseMyOwn then + -- yeah, one needs to use "choose file", otherwise + -- the user would not be able to select the .app + set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.application-bundle" without showing package contents and invisibles) + end if +else if (get second paragraph of found_ooos) is chooseMyOwn then + -- set choice to found installation + set the choice to (get first paragraph of found_ooos) +else + set the choice to (choose from list of paragraphs in found_ooos default items (get first paragraph of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel) + if choice is false then + -- do nothing, the user cancelled the installation + return 2 --aborted by user + else if (choice as string) is chooseMyOwn then + -- yeah, one needs to use "choose file", otherwise + -- the user would not be able to select the .app + set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.application-bundle" without showing package contents and invisibles) + end if +end if + +-- now only check whether the path is really from [PRODUCTNAME] +try + do shell script "grep '[PRODUCTNAME] [PRODUCTVERSION]' " & quoted form of (choice as string) & "/Contents/Info.plist" +on error + display dialog (choice as string) & appInvalid buttons {InstallLabel} default button 1 with icon 0 + return 3 --wrong target-directory +end try + +(* +display dialog startInstall buttons {AbortLabel, InstallLabel} default button 2 + +if (button returned of result) is AbortLabel then + return 2 +end if +*) + +set tarCommand to "/usr/bin/tar -C " & quoted form of (choice as string) & " -xjf " & quoted form of sourcedir & "/tarball.tar.bz2" +try + do shell script tarCommand + +on error errMSG number errNUM + display dialog IdentifyQ buttons {IdentifyYES, IdentifyNO} with icon 2 + if (button returned of result) is IdentifyYES then + try + do shell script tarCommand with administrator privileges + on error errMSG number errNUM + display dialog installFailed buttons {OKLabel} default button 1 with icon 0 + -- -60005 username/password wrong + -- -128 aborted by user + -- 2 error from tar - tarball not found (easy to test) + return errNUM + end try + else + return 2 -- aborted by user + end if +end try + +display dialog installComplete buttons {OKLabel} default button 1 diff --git a/setup_native/scripts/source/getuid.c b/setup_native/scripts/source/getuid.c index 926c2b809af2..9af63f4f079d 100644 --- a/setup_native/scripts/source/getuid.c +++ b/setup_native/scripts/source/getuid.c @@ -88,13 +88,29 @@ int fstatat64(int fildes, const char *path, struct stat64 *buf, int flag) return ret; } - -#elif defined LINUX +#elif defined LINUX uid_t getuid (void) {return 0;} uid_t geteuid (void) {return 0;} /* This is to fool tar */ +#ifdef X86_64 +int __lxstat(int n, const char *path, struct stat *buf) +{ + int ret = 0; + static int (*p_lstat) (int n, const char *path, struct stat *buf) = NULL; + if (p_lstat == NULL) + p_lstat = (int (*)(int n, const char *path, struct stat *buf)) + dlsym (RTLD_NEXT, "__lxstat"); + ret = (*p_lstat)(n, path, buf); + if (buf != NULL) + { + buf->st_uid = 0; /* root */ + buf->st_gid = 0; /* root */ + } + return ret; +} +#else int __lxstat64(int n, const char *path, struct stat64 *buf) { int ret = 0; @@ -105,13 +121,12 @@ int __lxstat64(int n, const char *path, struct stat64 *buf) ret = (*p_lstat)(n, path, buf); if (buf != NULL) { - buf->st_uid = 0; /* root */ - buf->st_gid = 0; /* root */ + buf->st_uid = 0; + buf->st_gid = 0; } - return ret; } - +#endif #endif #ifdef _cplusplus diff --git a/setup_native/source/java/javaversion2.dat b/setup_native/source/java/javaversion2.dat index 34e9257bb9ff..87172c3a6495 100644 --- a/setup_native/source/java/javaversion2.dat +++ b/setup_native/source/java/javaversion2.dat @@ -30,30 +30,30 @@ #************************************************************************* # GUI String in the installer ("Java Runtime Environment (${JAVAVERSION})") -JAVAVERSION=Java 6 Update 14 -WINDOWSJAVAVERSION=Java 6 Update 14 +JAVAVERSION=Java 6 Update 16 +WINDOWSJAVAVERSION=Java 6 Update 16 # Windows (scp2 and downloadtemplate.nsi) -WINDOWSJAVAFILENAME=jre-6u14-windows-i586.exe -WINDOWSJAVAREGISTRYENTRY=1.6.0_14 +WINDOWSJAVAFILENAME=jre-6u16-windows-i586.exe +WINDOWSJAVAREGISTRYENTRY=1.6.0_16 # Linux (scp2) -LINUXJAVAFILENAME=jre-6u14-linux-i586.rpm +LINUXJAVAFILENAME=jre-6u16-linux-i586.rpm # Linux (rpmUnit.xml, rpm -qp ) -LINUXJAVANAME=jre-1.6.0_14-fcs +LINUXJAVANAME=jre-1.6.0_16-fcs # Linux-x64 (scp2) -LINUXX64JAVAFILENAME=jre-6u14-linux-amd64.rpm +LINUXX64JAVAFILENAME=jre-6u16-linux-amd64.rpm # Solaris Sparc (scp2) -SOLSJAVARTPACKED=SUNWj6rt_1_6_0_14_sparc.tar.gz -SOLSJAVACFGPACKED=SUNWj6cfg_1_6_0_14_sparc.tar.gz -SOLSJAVAMANPACKED=SUNWj6man_1_6_0_14_sparc.tar.gz +SOLSJAVARTPACKED=SUNWj6rt_1_6_0_16_sparc.tar.gz +SOLSJAVACFGPACKED=SUNWj6cfg_1_6_0_16_sparc.tar.gz +SOLSJAVAMANPACKED=SUNWj6man_1_6_0_16_sparc.tar.gz # Solaris x86 (scp2) -SOLIJAVARTPACKED=SUNWj6rt_1_6_0_14_x86.tar.gz -SOLIJAVACFGPACKED=SUNWj6cfg_1_6_0_14_x86.tar.gz -SOLIJAVAMANPACKED=SUNWj6man_1_6_0_14_x86.tar.gz +SOLIJAVARTPACKED=SUNWj6rt_1_6_0_16_x86.tar.gz +SOLIJAVACFGPACKED=SUNWj6cfg_1_6_0_16_x86.tar.gz +SOLIJAVAMANPACKED=SUNWj6man_1_6_0_16_x86.tar.gz # Solaris (pkgUnit.xml, needs only to be changed in major changes) SOLARISJAVART=SUNWj6rt diff --git a/setup_native/source/mac/Info.plist.langpack b/setup_native/source/mac/Info.plist.langpack new file mode 100644 index 000000000000..3c1eb2c6f369 --- /dev/null +++ b/setup_native/source/mac/Info.plist.langpack @@ -0,0 +1,36 @@ + + + + + CFBundleDevelopmentRegion + English + + UTExportedTypeDeclarations + + UTImportedTypeDeclarations + + CFBundleExecutable + [FULLPRODUCTNAME] + CFBundleGetInfoString + [FULLPRODUCTNAME] + CFBundleIconFile + ooo3_installer.icns + CFBundleShortVersionString + 9 + CFBundleIdentifier + org.openoffice.script + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + [FULLPRODUCTNAME] + CFBundlePackageType + APPL + CFBundleSignature + OOo3 + LSRequiresCarbon + 1 + NSPrincipalClass + VCL_NSApplication + + + diff --git a/setup_native/source/mac/macinstall.ulf b/setup_native/source/mac/macinstall.ulf new file mode 100644 index 000000000000..4651d93e03ab --- /dev/null +++ b/setup_native/source/mac/macinstall.ulf @@ -0,0 +1,68 @@ +[OKLabel] +en-US = "Ok" + +[InstallLabel] +en-US = "Install" + +[AbortLabel] +en-US = "Abort" + +[IntroText1] +en-US = "Welcome to the [FULLPRODUCTNAME] Installation Wizard" + +[IntroText2] +en-US = "This installation will update your installed versions of [PRODUCTNAME]" + +[IntroText3] +en-US = "This might take a moment." + +[ChooseMyOwnText] +en-US = "Not listed (choose location in an extra step)" + +[ListPromptText] +en-US = "Choose [PRODUCTNAME] [PRODUCTVERSION] installation for which you want to install the [FULLPRODUCTNAME]" + +[ChooseManualText] +en-US = "Point the dialog to your [PRODUCTNAME] [PRODUCTVERSION] installation." + +[ListOKLabelText] +en-US = "Install" + +[ListCancelLabel] +en-US = "Abort" + +[AppInvalidText1] +en-US = "This is not a valid [PRODUCTNAME] [PRODUCTVERSION] installation." + +[AppInvalidText2] +en-US = "Run the installer again and choose a valid [PRODUCTNAME] [PRODUCTVERSION] installation" + +[StartInstallText1] +en-US = "Click Install to start the installation" + +[StartInstallText2] +en-US = "Installation might take a minute..." + +[IdentifyQText] +en-US = "Installation failed, most likely your account does not have the necessary privileges." + +[IdentifyQText2] +en-US = "Do you want to identify as administrator and try again?" + +[IdentifyYES] +en-US = "Yes, identify" + +[IdentifyNO] +en-US = "No, abort installation" + +[InstallFailedText] +en-US = "Installation failed." + +[InstallCompleteText] +en-US = "Installation of [PRODUCTNAME] language pack completed." + +[InstallCompleteText2] +en-US = "Call 'Tools-Options-Language Settings' to change the user interface language." + +[InstallCompleteTextPatch] +en-US = "Installation of [FULLPRODUCTNAME] completed" diff --git a/setup_native/source/mac/makefile.mk b/setup_native/source/mac/makefile.mk new file mode 100644 index 000000000000..026073b65c44 --- /dev/null +++ b/setup_native/source/mac/makefile.mk @@ -0,0 +1,65 @@ +#************************************************************************* +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.5 $ +# +# last change: $Author: rt $ $Date: 2005-09-07 18:20:20 $ +# +# The Contents of this file are made available subject to +# the terms of GNU Lesser General Public License Version 2.1. +# +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2005 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1, as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +#************************************************************************* + +PRJ=..$/.. + +PRJNAME=setup_native +TARGET=mac_ulffiles + +# --- Settings ----------------------------------------------------- + +.INCLUDE : settings.mk + +# ------------------------------------------------------------------ + +ULFFILES = macinstall.ulf + +ULFDESTFILES=$(foreach,i,$(ULFFILES) $(MISC)$/$(TARGET)_dest$/$i) + +# --- Targets ------------------------------------------------------ + +.IF "$(OS)"=="MACOSX" +ALLTAR : $(ULFDESTFILES) +.ENDIF + +.INCLUDE : target.mk + +.IF "$(WITH_LANG)"!="" +$(MISC)$/$(TARGET)_dest$/%.ulf : $(COMMONMISC)$/$(TARGET)$/%.ulf +.ELSE # "$(WITH_LANG)"!="" +$(MISC)$/$(TARGET)_dest$/%.ulf : %.ulf +.ENDIF # "$(WITH_LANG)"!="" + @-$(MKDIRHIER) $(MISC)$/$(TARGET)_dest + $(COPY) $< $@ diff --git a/setup_native/source/mac/ooo3_installer.icns b/setup_native/source/mac/ooo3_installer.icns new file mode 100644 index 0000000000000000000000000000000000000000..e064ad70479dcf2592503fa76488b5a330557b56 GIT binary patch literal 49809 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 DocumentDig if (rSigInfo.Signer.is()) { try { - rSigInfo.CertificateStatus = xSecEnv->verifyCertificate(rSigInfo.Signer); + rSigInfo.CertificateStatus = xSecEnv->verifyCertificate(rSigInfo.Signer, + Sequence >()); } catch (SecurityException& ) { OSL_ENSURE(0, "Verification of certificate failed"); rSigInfo.CertificateStatus = css::security::CertificateValidity::INVALID; diff --git a/xmlsecurity/source/dialogs/certificateviewer.cxx b/xmlsecurity/source/dialogs/certificateviewer.cxx index 0d77d05df31c..fb9b41d5f637 100644 --- a/xmlsecurity/source/dialogs/certificateviewer.cxx +++ b/xmlsecurity/source/dialogs/certificateviewer.cxx @@ -126,7 +126,8 @@ CertificateViewerGeneralTP::CertificateViewerGeneralTP( Window* _pParent, Certif maKeyImg.SetImage( Image( XMLSEC_RES( IMG_KEY_HC ) ) ); //Verify the certificate - sal_Int32 certStatus = mpDlg->mxSecurityEnvironment->verifyCertificate(mpDlg->mxCert); + sal_Int32 certStatus = mpDlg->mxSecurityEnvironment->verifyCertificate(mpDlg->mxCert, + Sequence >()); //We currently have two status //These errors are alloweds sal_Int32 validCertErrors = css::security::CertificateValidity::VALID @@ -481,7 +482,8 @@ void CertificateViewerCertPathTP::ActivatePage() const Reference< security::XCertificate > rCert = pCertPath[ --i ]; String sName = XmlSec::GetContentPart( rCert->getSubjectName() ); //Verify the certificate - sal_Int32 certStatus = mpDlg->mxSecurityEnvironment->verifyCertificate(rCert); + sal_Int32 certStatus = mpDlg->mxSecurityEnvironment->verifyCertificate(rCert, + Sequence >()); //We currently have two status //These errors are alloweds sal_Int32 validCertErrors = css::security::CertificateValidity::VALID diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx index e0c27b59c3c0..109959be1554 100644 --- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx +++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx @@ -530,7 +530,8 @@ void DigitalSignaturesDialog::ImplFillSignaturesBox() { //check the validity of the cert try { - sal_Int32 certResult = xSecEnv->verifyCertificate(xCert); + sal_Int32 certResult = xSecEnv->verifyCertificate(xCert, + Sequence >()); //These errors are alloweds sal_Int32 validErrors = css::security::CertificateValidity::VALID diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx index c6c71c01a677..1b35d2b968bc 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx @@ -882,7 +882,33 @@ Reference< XCertificate > SecurityEnvironment_MSCryptImpl :: createCertificateFr return createCertificateFromRaw( rawCert ) ; } -sal_Int32 SecurityEnvironment_MSCryptImpl :: verifyCertificate( const ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate >& aCert ) throw( ::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException ) { + +HCERTSTORE getCertStoreForIntermediatCerts( + const Sequence< Reference< ::com::sun::star::security::XCertificate > >& seqCerts) +{ + HCERTSTORE store = NULL; + store = CertOpenStore( + CERT_STORE_PROV_MEMORY, 0, NULL, 0, NULL); + if (store == NULL) + return NULL; + + for (int i = 0; i < seqCerts.getLength(); i++) + { + Sequence data = seqCerts[i]->getEncoded(); + PCCERT_CONTEXT cert = CertCreateCertificateContext( + X509_ASN_ENCODING, ( const BYTE* )&data[0], data.getLength()); + //Adding the certificate creates a copy and not just increases the ref count + //Therefore we free later the certificate that we now add + CertAddCertificateContextToStore(store, cert, CERT_STORE_ADD_ALWAYS, NULL); + CertFreeCertificateContext(cert); + } + return store; +} +sal_Int32 SecurityEnvironment_MSCryptImpl :: verifyCertificate( + const Reference< ::com::sun::star::security::XCertificate >& aCert, + const Sequence< Reference< ::com::sun::star::security::XCertificate > >& seqCerts) + throw( ::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException ) +{ sal_Int32 validity = 0; PCCERT_CHAIN_CONTEXT pChainContext = NULL; PCCERT_CONTEXT pCertContext = NULL; @@ -913,52 +939,50 @@ sal_Int32 SecurityEnvironment_MSCryptImpl :: verifyCertificate( const ::com::sun chainPara.cbSize = sizeof( CERT_CHAIN_PARA ) ; chainPara.RequestedUsage = certUsage ; + + HCERTSTORE hCollectionStore = NULL; + HCERTSTORE hIntermediateCertsStore = NULL; BOOL bChain = FALSE; if( pCertContext != NULL ) { - HCERTSTORE hAdditionalStore = NULL; - HCERTSTORE hCollectionStore = NULL; - if (m_hCertStore && m_hKeyStore) + hIntermediateCertsStore = + getCertStoreForIntermediatCerts(seqCerts); + + //Merge m_hCertStore and m_hKeyStore and the store of the intermediate + //certificates into one store. + hCollectionStore = CertOpenStore( + CERT_STORE_PROV_COLLECTION , + 0 , + NULL , + 0 , + NULL + ) ; + if (hCollectionStore != NULL) { - //Merge m_hCertStore and m_hKeyStore into one store. - hCollectionStore = CertOpenStore( - CERT_STORE_PROV_COLLECTION , - 0 , - NULL , - 0 , - NULL - ) ; - if (hCollectionStore != NULL) - { - CertAddStoreToCollection ( - hCollectionStore , - m_hCertStore , - CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG , - 0) ; - CertAddStoreToCollection ( - hCollectionStore , - m_hCertStore , - CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG , - 0) ; - hAdditionalStore = hCollectionStore; - } + CertAddStoreToCollection ( + hCollectionStore , + m_hCertStore , + CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG , + 0) ; + CertAddStoreToCollection ( + hCollectionStore , + m_hCertStore , + CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG , + 0) ; + CertAddStoreToCollection ( + hCollectionStore, + hIntermediateCertsStore, + CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG, + 0); } - //if the merge of both stores failed then we add only m_hCertStore - if (hAdditionalStore == NULL && m_hCertStore) - hAdditionalStore = m_hCertStore; - else if (hAdditionalStore == NULL && m_hKeyStore) - hAdditionalStore = m_hKeyStore; - else - hAdditionalStore = NULL; - //CertGetCertificateChain searches by default in MY, CA, ROOT and TRUST bChain = CertGetCertificateChain( NULL , pCertContext , NULL , //use current system time - hAdditionalStore, + hCollectionStore, &chainPara , CERT_CHAIN_REVOCATION_CHECK_CHAIN | CERT_CHAIN_TIMESTAMP_TIME , NULL , @@ -967,8 +991,6 @@ sal_Int32 SecurityEnvironment_MSCryptImpl :: verifyCertificate( const ::com::sun if (!bChain) pChainContext = NULL; - //Close the additional store - CertCloseStore(hCollectionStore, CERT_CLOSE_STORE_CHECK_FLAG); } if(bChain && pChainContext != NULL ) @@ -1081,6 +1103,12 @@ sal_Int32 SecurityEnvironment_MSCryptImpl :: verifyCertificate( const ::com::sun if (pChainContext) CertFreeCertificateChain(pChainContext); + //Close the additional store, do not destroy the contained certs + CertCloseStore(hCollectionStore, CERT_CLOSE_STORE_CHECK_FLAG); + //Close the temporary store containing the intermediate certificates and make + //sure all certificates are deleted. + CertCloseStore(hIntermediateCertsStore, CERT_CLOSE_STORE_CHECK_FLAG); + return validity ; } diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx index 9770d5c1cba7..f1441184602f 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx @@ -108,7 +108,11 @@ class SecurityEnvironment_MSCryptImpl : public ::cppu::WeakImplHelper4< virtual ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate > SAL_CALL createCertificateFromAscii( const ::rtl::OUString& asciiCertificate ) throw( ::com::sun::star::uno::SecurityException , ::com::sun::star::uno::RuntimeException ) ; - virtual ::sal_Int32 SAL_CALL verifyCertificate( const ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate >& xCert ) throw (::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException) ; + virtual ::sal_Int32 SAL_CALL verifyCertificate( + const ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate >& xCert, + const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< + ::com::sun::star::security::XCertificate > >& intermediateCertificates) + throw (::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException) ; virtual ::sal_Int32 SAL_CALL getCertificateCharacters( const ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate >& xCert ) throw (::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException) ; virtual ::rtl::OUString SAL_CALL getSecurityEnvironmentInformation( ) throw (::com::sun::star::uno::RuntimeException); diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx index d0e6670fd2ff..4a290ae2feb5 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx @@ -28,22 +28,20 @@ * ************************************************************************/ + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_xmlsecurity.hxx" + +//todo before commit: nssrenam.h is not delivered!!! +#include "nssrenam.h" +#include "cert.h" +#include "secerr.h" + #include #include "securityenvironment_nssimpl.hxx" #include "x509certificate_nssimpl.hxx" #include -#include "nspr.h" -#include "nss.h" -#include "secport.h" -#include "secitem.h" -#include "secder.h" -#include "secerr.h" -#include "limits.h" -#include "certt.h" -#include "prerror.h" #include //For reasons that escape me, this is what xmlsec does when size_t is not 4 @@ -64,7 +62,7 @@ #include #include #include - +#include #include "boost/scoped_array.hpp" // MM : added for password exception @@ -84,6 +82,7 @@ using ::com::sun::star::security::XCertificate ; extern X509Certificate_NssImpl* NssCertToXCert( CERTCertificate* cert ) ; extern X509Certificate_NssImpl* NssPrivKeyToXCert( SECKEYPrivateKey* ) ; + char* GetPasswordFunction( PK11SlotInfo* pSlot, PRBool bRetry, void* /*arg*/ ) { uno::Reference< lang::XMultiServiceFactory > xMSF( ::comphelper::getProcessServiceFactory() ); @@ -748,17 +747,23 @@ Reference< XCertificate > SecurityEnvironment_NssImpl :: createCertificateFromAs return createCertificateFromRaw( rawCert ) ; } -sal_Int32 SecurityEnvironment_NssImpl :: verifyCertificate( const ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate >& aCert ) throw( ::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException ) { +sal_Int32 SecurityEnvironment_NssImpl :: +verifyCertificate( const Reference< csss::XCertificate >& aCert, + const Sequence< Reference< csss::XCertificate > >& intermediateCerts ) + throw( ::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException ) +{ sal_Int32 validity = 0; const X509Certificate_NssImpl* xcert ; const CERTCertificate* cert ; - + ::std::vector vecTmpNSSCertificates; Reference< XUnoTunnel > xCertTunnel( aCert, UNO_QUERY ) ; if( !xCertTunnel.is() ) { throw RuntimeException() ; } - + OSL_TRACE("[xmlsecurity] Start verification of certificate: %s", + OUStringToOString( + aCert->getIssuerName(), osl_getThreadTextEncoding()).getStr()); xcert = reinterpret_cast( @@ -769,7 +774,38 @@ sal_Int32 SecurityEnvironment_NssImpl :: verifyCertificate( const ::com::sun::st cert = xcert->getNssCert() ; if( cert != NULL ) + { + + //prepare the intermediate certificates + CERTCertDBHandle * certDb = m_pHandler != NULL ? m_pHandler : CERT_GetDefaultCertDB(); + for (sal_Int32 i = 0; i < intermediateCerts.getLength(); i++) { + Sequence der = intermediateCerts[i]->getEncoded(); + SECItem item; + item.type = siBuffer; + item.data = (unsigned char*)der.getArray(); + item.len = der.getLength(); + + CERTCertificate* certTmp = CERT_NewTempCertificate(certDb, &item, + NULL /* nickname */, + PR_FALSE /* isPerm */, + PR_TRUE /* copyDER */); + if (!certTmp) + { + OSL_TRACE("[xmlsecurity] Failed to add a temporary certificate: %s", + OUStringToOString(intermediateCerts[i]->getIssuerName(), + osl_getThreadTextEncoding()).getStr()); + + } + else + { + OSL_TRACE("[xmlsecurity] Added temporary certificate: %s", + certTmp->subjectName ? certTmp->subjectName : ""); + vecTmpNSSCertificates.push_back(certTmp); + } + } + + int64 timeboundary ; SECStatus status ; @@ -779,15 +815,15 @@ sal_Int32 SecurityEnvironment_NssImpl :: verifyCertificate( const ::com::sun::st // create log - CERTVerifyLog realLog; + CERTVerifyLog realLog; CERTVerifyLog *log; - log = &realLog; + log = &realLog; - log->count = 0; - log->head = NULL; - log->tail = NULL; + log->count = 0; + log->head = NULL; + log->tail = NULL; log->arena = PORT_NewArena( DER_DEFAULT_CHUNKSIZE ); //CERTVerifyLog *log; @@ -798,11 +834,6 @@ sal_Int32 SecurityEnvironment_NssImpl :: verifyCertificate( const ::com::sun::st //log->arena = arena; validity = csss::CertificateValidity::INVALID; - CERTCertificateList * certList; - - certList = CERT_CertChainFromCert( (CERTCertificateStr *) cert, (SECCertUsage) 0, 0); - - if( m_pHandler != NULL ) { //JL: We must not pass a particular usage in the requiredUsages argument (the 4th) because, @@ -894,9 +925,23 @@ sal_Int32 SecurityEnvironment_NssImpl :: verifyCertificate( const ::com::sun::st } else { + validity = ::com::sun::star::security::CertificateValidity::INVALID ; } + //Destroying the temporary certificates + std::vector::const_iterator cert_i; + for (cert_i = vecTmpNSSCertificates.begin(); cert_i != vecTmpNSSCertificates.end(); cert_i++) + { + OSL_TRACE("[xmlsecurity] Destroying temporary certificate"); + CERT_DestroyCertificate(*cert_i); + } +#if OSL_DEBUG_LEVEL > 1 + if (validity == ::com::sun::star::security::CertificateValidity::VALID) + OSL_TRACE("[xmlsecurity] Certificate is valid."); + else + OSL_TRACE("[xmlsecurity] Certificate is invalid."); +#endif return validity ; } diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx index bfa9295e50fe..d6586794bea5 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx @@ -115,7 +115,13 @@ private : static ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > impl_createFactory( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& aServiceManager ) ; - virtual ::sal_Int32 SAL_CALL verifyCertificate( const ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate >& xCert ) throw (::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException) ; + virtual ::sal_Int32 SAL_CALL verifyCertificate( + const ::com::sun::star::uno::Reference< + ::com::sun::star::security::XCertificate >& xCert, + const ::com::sun::star::uno::Sequence< + ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate > > & + intermediateCerts) + throw (::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException) ; virtual ::sal_Int32 SAL_CALL getCertificateCharacters( const ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate >& xCert ) throw (::com::sun::star::uno::SecurityException, ::com::sun::star::uno::RuntimeException) ; diff --git a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx index 5a3c80dfb162..3255a2d5bf58 100644 --- a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx @@ -54,7 +54,12 @@ #include - +#include "rtl/instance.hxx" +#include "rtl/bootstrap.hxx" +#include "rtl/string.hxx" +#include "rtl/strbuf.hxx" +#include "osl/file.hxx" +#include "osl/thread.h" #include #include @@ -64,18 +69,10 @@ #include #include "nspr.h" -#include "prtypes.h" -#include "pk11func.h" -#ifdef SYSTEM_MOZILLA -#include "nssrenam.h" -#include "secmod.h" -#endif #include "cert.h" -#include "cryptohi.h" -#include "certdb.h" #include "nss.h" -#include "prerror.h" - +#include "secmod.h" +#include "nssckbi.h" namespace cssu = com::sun::star::uno; @@ -83,49 +80,234 @@ namespace cssl = com::sun::star::lang; namespace cssxc = com::sun::star::xml::crypto; using namespace com::sun::star; +using ::rtl::OUString; +using ::rtl::OString; #define SERVICE_NAME "com.sun.star.xml.crypto.SEInitializer" #define IMPLEMENTATION_NAME "com.sun.star.xml.security.bridge.xmlsec.SEInitializer_NssImpl" #define SECURITY_ENVIRONMENT "com.sun.star.xml.crypto.SecurityEnvironment" #define SECURITY_CONTEXT "com.sun.star.xml.crypto.XMLSecurityContext" -bool nsscrypto_initialize( const char* token ) { - static char initialized = 0 ; - //PR_Init( PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 1 ) ; - if( !initialized ) { - PR_Init( PR_USER_THREAD, PR_PRIORITY_NORMAL, 1 ) ; +#define ROOT_CERTS "Root Certs for OpenOffice.org" - if( NSS_InitReadWrite( token ) != SECSuccess ) - { - char * error = NULL; - PR_GetErrorText(error); - if (error) - printf("%s",error); - return false ; - } +extern "C" void nsscrypto_finalize(); -#ifdef SYSTEM_MOZILLA - if (!SECMOD_HasRootCerts()) + +namespace +{ + +bool nsscrypto_initialize( const char * sProfile, bool & out_nss_init); + +struct InitNSSInitialize +{ + //path to the database folder + const OString m_sProfile; + InitNSSInitialize(const OString & sProfile): m_sProfile(sProfile) {}; + bool * operator()() { - SECMOD_AddNewModule("Root Certs", "libnssckbi" SAL_DLLEXTENSION, - 0, 0); + static bool bInitialized = false; + bool bNSSInit = false; + bInitialized = nsscrypto_initialize(m_sProfile.getStr(), bNSSInit); + if (bNSSInit) + atexit(nsscrypto_finalize ); + return & bInitialized; + } -#endif +}; - initialized = 1 ; - } - - return true ; +bool * initNSS(const OString & sProfile) +{ + return rtl_Instance< bool, InitNSSInitialize, + ::osl::MutexGuard, ::osl::GetGlobalMutex >::create( + InitNSSInitialize(sProfile), ::osl::GetGlobalMutex()); } +void deleteRootsModule() +{ + SECMODModule *RootsModule = 0; + SECMODModuleList *list = SECMOD_GetDefaultModuleList(); + SECMODListLock *lock = SECMOD_GetDefaultModuleListLock(); + SECMOD_GetReadLock(lock); + + while (!RootsModule && list) + { + SECMODModule *module = list->module; + + for (int i=0; i < module->slotCount; i++) + { + PK11SlotInfo *slot = module->slots[i]; + if (PK11_IsPresent(slot)) + { + if (PK11_HasRootCerts(slot)) + { + OSL_TRACE("[xmlsecurity] The root certifificates module \"%s" + "\" is already loaded: \n%s", + module->commonName, module->dllName); + + RootsModule = SECMOD_ReferenceModule(module); + break; + } + } + } + list = list->next; + } + SECMOD_ReleaseReadLock(lock); + + if (RootsModule) + { + PRInt32 modType; + if (SECSuccess == SECMOD_DeleteModule(RootsModule->commonName, &modType)) + { + OSL_TRACE("[xmlsecurity] Deleted module \"%s\".", RootsModule->commonName); + } + else + { + OSL_TRACE("[xmlsecurity] Failed to delete \"%s\" : \n%s", + RootsModule->commonName, RootsModule->dllName); + } + SECMOD_DestroyModule(RootsModule); + RootsModule = 0; + } +} + +//Older versions of Firefox (FF), for example FF2, and Thunderbird (TB) 2 write +//the roots certificate module (libnssckbi.so), which they use, into the +//profile. This module will then already be loaded during NSS_Init (and the +//other init functions). This fails in two cases. First, FF3 was used to create +//the profile, or possibly used that profile before, and second the profile was +//used on a different platform. +// +//Then one needs to add the roots module oneself. This should be done with +//SECMOD_LoadUserModule rather then SECMOD_AddNewModule. The latter would write +//the location of the roots module to the profile, which makes FF2 and TB2 use +//it instead of there own module. +// +//When using SYSTEM_MOZILLA then the libnss3.so lib is typically found in +///usr/lib. This folder may, however, NOT contain the roots certificate +//module. That is, just providing the library name in SECMOD_LoadUserModule or +//SECMOD_AddNewModule will FAIL to load the mozilla unless the LD_LIBRARY_PATH +//contains an FF or TB installation. +//ATTENTION: DO NOT call this function directly instead use initNSS +//return true - whole initialization was successful +//param out_nss_init = true: at least the NSS initialization (NSS_InitReadWrite +//was successful and therefor NSS_Shutdown should be called when terminating. +bool nsscrypto_initialize( const char* token, bool & out_nss_init ) +{ + bool return_value = true; + + OSL_TRACE("[xmlsecurity] Using profile: %s", token); + + PR_Init( PR_USER_THREAD, PR_PRIORITY_NORMAL, 1 ) ; + + if( NSS_InitReadWrite( token ) != SECSuccess ) + { + char * error = NULL; + + PR_GetErrorText(error); + if (error) + printf("%s",error); + return false ; + } + out_nss_init = true; + +#if defined SYSTEM_MOZILLA + if (!SECMOD_HasRootCerts()) + { +#endif + deleteRootsModule(); + +#if defined SYSTEM_MOZILLA + OUString rootModule(RTL_CONSTASCII_USTRINGPARAM("libnssckbi"SAL_DLLEXTENSION)); +#else + OUString rootModule(RTL_CONSTASCII_USTRINGPARAM("${OOO_BASE_DIR}/program/libnssckbi"SAL_DLLEXTENSION)); +#endif + ::rtl::Bootstrap::expandMacros(rootModule); + + OUString rootModulePath; + if (::osl::File::E_None == ::osl::File::getSystemPathFromFileURL(rootModule, rootModulePath)) + { + ::rtl::OString ospath = ::rtl::OUStringToOString(rootModulePath, osl_getThreadTextEncoding()); + ::rtl::OStringBuffer pkcs11moduleSpec; + pkcs11moduleSpec.append("name=\""); + pkcs11moduleSpec.append(ROOT_CERTS); + pkcs11moduleSpec.append("\" library=\""); + pkcs11moduleSpec.append(ospath.getStr()); + pkcs11moduleSpec.append("\""); + + SECMODModule * RootsModule = + SECMOD_LoadUserModule( + const_cast(pkcs11moduleSpec.makeStringAndClear().getStr()), + 0, // no parent + PR_FALSE); // do not recurse + + if (RootsModule) + { + + bool found = RootsModule->loaded; + + SECMOD_DestroyModule(RootsModule); + RootsModule = 0; + if (found) + OSL_TRACE("[xmlsecurity] Added new root certificate module " + "\""ROOT_CERTS"\" contained in \n%s", ospath.getStr()); + else + { + OSL_TRACE("[xmlsecurity] FAILED to load the new root certificate module " + "\""ROOT_CERTS"\" contained in \n%s", ospath.getStr()); + return_value = false; + } + } + else + { + OSL_TRACE("[xmlsecurity] FAILED to add new root certifice module: " + "\""ROOT_CERTS"\" contained in \n%s", ospath.getStr()); + return_value = false; + + } + } + else + { + OSL_TRACE("[xmlsecurity] Adding new root certificate module failed."); + return_value = false; + } +#if SYSTEM_MOZILLA + } +#endif + + return return_value; +} + + // must be extern "C" because we pass the function pointer to atexit -extern "C" void nsscrypto_finalize() { +extern "C" void nsscrypto_finalize() +{ + SECMODModule *RootsModule = SECMOD_FindModule(ROOT_CERTS); + + if (RootsModule) + { + + if (SECSuccess == SECMOD_UnloadUserModule(RootsModule)) + { + OSL_TRACE("[xmlsecurity] Unloaded module \""ROOT_CERTS"\"."); + } + else + { + OSL_TRACE("[xmlsecurity] Failed unloadeding module \""ROOT_CERTS"\"."); + } + SECMOD_DestroyModule(RootsModule); + } + else + { + OSL_TRACE("[xmlsecurity] Unloading module \""ROOT_CERTS + "\" failed because it was not found."); + } PK11_LogoutAll(); NSS_Shutdown(); } + bool getMozillaCurrentProfile( const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > &rxMSF, rtl::OUString& profilePath) @@ -143,7 +325,7 @@ bool getMozillaCurrentProfile( else { RTL_LOGFILE_TRACE( "getMozillaCurrentProfile: Using MozillaBootstrap..." ); - mozilla::MozillaProductType productTypes[4] = { + mozilla::MozillaProductType productTypes[4] = { mozilla::MozillaProductType_Thunderbird, mozilla::MozillaProductType_Mozilla, mozilla::MozillaProductType_Firefox, @@ -180,6 +362,8 @@ bool getMozillaCurrentProfile( } } +} // namespace + SEInitializer_NssImpl::SEInitializer_NssImpl( const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > &rxMSF) :mxMSF( rxMSF ) @@ -238,7 +422,7 @@ cssu::Reference< cssxc::XXMLSecurityContext > SAL_CALL return NULL; } ----*/ - if( !nsscrypto_initialize( sCertDir.getStr() ) ) + if( ! *initNSS( sCertDir.getStr() ) ) { RTL_LOGFILE_TRACE( "XMLSEC: Error - nsscrypto_initialize() failed." ); if ( NSS_NoDB_Init(NULL) != SECSuccess ) @@ -251,8 +435,6 @@ cssu::Reference< cssxc::XXMLSecurityContext > SAL_CALL RTL_LOGFILE_TRACE( "XMLSEC: NSS_NoDB_Init works, enough for verifying signatures..." ); } } - else - atexit(nsscrypto_finalize ); pCertHandle = CERT_GetDefaultCertDB() ; diff --git a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx index c457b4fb8a30..d6b5e189330e 100644 --- a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx @@ -30,14 +30,10 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_xmlsecurity.hxx" -#include -#include -#include "x509certificate_nssimpl.hxx" -#ifndef _CERTIFICATEEXTENSION_NSSIMPL_HXX_ -#include "certificateextension_xmlsecimpl.hxx" -#endif + +#include "nssrenam.h" #include "nspr.h" #include "nss.h" #include "secder.h" @@ -48,6 +44,17 @@ #include "pk11func.h" //MM : end + + +#include +#include +#include "x509certificate_nssimpl.hxx" + +#ifndef _CERTIFICATEEXTENSION_NSSIMPL_HXX_ +#include "certificateextension_xmlsecimpl.hxx" +#endif + + using namespace ::com::sun::star::uno ; using namespace ::com::sun::star::security ; using ::rtl::OUString ; diff --git a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx index 51b2b2fd1d7f..bb16bcc7fb6e 100644 --- a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx @@ -40,9 +40,6 @@ #include "com/sun/star/uno/SecurityException.hpp" #include -#ifdef SYSTEM_MOZILLA -#include "nssrenam.h" -#endif #include "cert.h" class X509Certificate_NssImpl : public ::cppu::WeakImplHelper2< diff --git a/xmlsecurity/util/makefile.mk b/xmlsecurity/util/makefile.mk index e3f78a45592f..cfc012a78cd2 100644 --- a/xmlsecurity/util/makefile.mk +++ b/xmlsecurity/util/makefile.mk @@ -152,7 +152,7 @@ SHL4STDLIBS=\ $(SALLIB) \ $(SVLLIB) \ $(XMLOFFLIB) \ - $(SVXLIB) + $(SVXCORELIB) SHL4VERSIONMAP = xmlsecurity.map SHL4DEPN= From bb35ec279351b63104a1edbb4033693387d774b2 Mon Sep 17 00:00:00 2001 From: sb Date: Fri, 2 Oct 2009 13:56:08 +0200 Subject: [PATCH 10/45] #i101955# adapted LDAP backend to new interface, dropped registry/ldap/*-attr.map files, replaced registry/data/org/openoffice/LDAP.xcu.sample with registry/oo-ldap.xcd.sample and registry/oo-ad-ldap.xcd.sample --- .../source/config/ldap/componentdef.cxx | 51 +-- extensions/source/config/ldap/ldapaccess.cxx | 75 ++--- extensions/source/config/ldap/ldapaccess.hxx | 33 +- extensions/source/config/ldap/ldapbe2.uno.xml | 45 --- .../source/config/ldap/ldapuserprof.cxx | 229 ------------- .../source/config/ldap/ldapuserprof.hxx | 166 ---------- .../source/config/ldap/ldapuserprofilebe.cxx | 301 +++++------------- .../source/config/ldap/ldapuserprofilebe.hxx | 110 ++++--- .../config/ldap/ldapuserprofilelayer.cxx | 247 -------------- .../config/ldap/ldapuserprofilelayer.hxx | 124 -------- extensions/source/config/ldap/makefile.mk | 4 - .../source/config/ldap/propertysethelper.cxx | 153 --------- .../source/config/ldap/propertysethelper.hxx | 137 -------- 13 files changed, 170 insertions(+), 1505 deletions(-) delete mode 100644 extensions/source/config/ldap/ldapbe2.uno.xml delete mode 100644 extensions/source/config/ldap/ldapuserprof.cxx delete mode 100644 extensions/source/config/ldap/ldapuserprof.hxx delete mode 100644 extensions/source/config/ldap/ldapuserprofilelayer.cxx delete mode 100644 extensions/source/config/ldap/ldapuserprofilelayer.hxx delete mode 100644 extensions/source/config/ldap/propertysethelper.cxx delete mode 100644 extensions/source/config/ldap/propertysethelper.hxx diff --git a/extensions/source/config/ldap/componentdef.cxx b/extensions/source/config/ldap/componentdef.cxx index 7759a96d4d9a..0fe67caa6d7e 100644 --- a/extensions/source/config/ldap/componentdef.cxx +++ b/extensions/source/config/ldap/componentdef.cxx @@ -31,14 +31,8 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_extensions.hxx" -#ifndef EXTENSIONS_CONFIG_LDAP_LDAPUSERPROFILE_HXX_ #include "ldapuserprofilebe.hxx" -#endif //CONFIGMGR_BACKEND_LDAPUSERPROFILE_HXX_ -#include -#ifndef _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_ #include -#endif // _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_ -#include using namespace extensions::config::ldap ; @@ -73,49 +67,8 @@ extern "C" void SAL_CALL component_getImplementationEnvironment( extern "C" sal_Bool SAL_CALL component_writeInfo(void *aServiceManager, void *aRegistryKey) { - using namespace ::com::sun::star::registry; - if (aRegistryKey) - { - - /** Service factory */ - uno::Reference xFactory - (reinterpret_cast (aServiceManager), - uno::UNO_QUERY); - - rtl::OUStringBuffer aImplKeyName; - aImplKeyName.appendAscii("/"); - aImplKeyName.append(LdapUserProfileBe::getLdapUserProfileBeName()); - - rtl::OUString aMainKeyName(RTL_CONSTASCII_USTRINGPARAM("/UNO/SERVICES")); - - uno::Reference xNewImplKey( - reinterpret_cast - (aRegistryKey)->createKey(aImplKeyName.makeStringAndClear())); - - uno::Reference xNewKey( - xNewImplKey->createKey(aMainKeyName)); - - //Now register associated service names - uno::Sequence sServiceNames = - LdapUserProfileBe::getLdapUserProfileBeServiceNames(); - for (sal_Int32 i = 0 ; i < sServiceNames.getLength() ; ++ i) - { - xNewKey->createKey(sServiceNames[i]); - } - //Now register associated org.openoffice.UserProfile component - //that this backend supports under xNewImplKey - uno::Reference xComponentKey( - xNewImplKey->createKey(rtl::OUString::createFromAscii - ("/DATA/SupportedComponents"))); - - uno::Sequence aComponentList(1); - aComponentList[0]= rtl::OUString::createFromAscii - ("org.openoffice.UserProfile"); - - xComponentKey->setAsciiListValue(aComponentList); - return sal_True; - } - return sal_False; + return cppu::component_writeInfoHelper( + aServiceManager, aRegistryKey, kImplementations_entries); } //------------------------------------------------------------------------------ diff --git a/extensions/source/config/ldap/ldapaccess.cxx b/extensions/source/config/ldap/ldapaccess.cxx index a850a441c5fe..02a9910f082c 100644 --- a/extensions/source/config/ldap/ldapaccess.cxx +++ b/extensions/source/config/ldap/ldapaccess.cxx @@ -33,7 +33,6 @@ #include "ldapaccess.hxx" -#include "ldapuserprof.hxx" #include #include @@ -49,6 +48,8 @@ t_ldap_init LdapConnection::s_p_init = NULL; t_ldap_msgfree LdapConnection::s_p_msgfree = NULL; t_ldap_get_dn LdapConnection::s_p_get_dn = NULL; t_ldap_first_entry LdapConnection::s_p_first_entry = NULL; +t_ldap_first_attribute LdapConnection::s_p_first_attribute = NULL; +t_ldap_next_attribute LdapConnection::s_p_next_attribute = NULL; t_ldap_search_s LdapConnection::s_p_search_s = NULL; t_ldap_value_free LdapConnection::s_p_value_free = NULL; t_ldap_get_values LdapConnection::s_p_get_values = NULL; @@ -191,12 +192,12 @@ void LdapConnection::initConnection() } } //------------------------------------------------------------------------------ - void LdapConnection::getUserProfile(const rtl::OUString& aUser, - const LdapUserProfileMap& aUserProfileMap, - LdapUserProfile& aUserProfile) + void LdapConnection::getUserProfile( + const rtl::OUString& aUser, LdapData * data) throw (lang::IllegalArgumentException, ldap::LdapConnectionException, ldap::LdapGenericException) - { +{ + OSL_ASSERT(data != 0); if (!isValid()) { connectSimple(); } rtl::OString aUserDn =findUserDn( rtl::OUStringToOString(aUser, RTL_TEXTENCODING_ASCII_US)); @@ -206,18 +207,25 @@ void LdapConnection::initConnection() aUserDn, LDAP_SCOPE_BASE, "(objectclass=*)", - const_cast(aUserProfileMap.getLdapAttributes()), + 0, 0, // Attributes + values &result.msg) ; checkLdapReturnCode("getUserProfile", retCode,mConnection) ; - - aUserProfileMap.ldapToUserProfile(mConnection, - result.msg, - aUserProfile) ; - - } + void * ptr; + char * attr = (*s_p_first_attribute)(mConnection, result.msg, &ptr); + while (attr != 0) { + char ** values = (*s_p_get_values)(mConnection, result.msg, attr); + if (values != 0) { + data->insert( + LdapData::value_type( + rtl::OStringToOUString(attr, RTL_TEXTENCODING_ASCII_US), + rtl::OStringToOUString(*values, RTL_TEXTENCODING_UTF8))); + } + attr = (*s_p_next_attribute)(mConnection, result.msg, ptr); + } +} //------------------------------------------------------------------------------ rtl::OString LdapConnection::findUserDn(const rtl::OString& aUser) throw (lang::IllegalArgumentException, @@ -267,47 +275,6 @@ void LdapConnection::initConnection() return userDn ; } -//------------------------------------------------------------------------------ -rtl::OString LdapConnection::getSingleAttribute( - const rtl::OString& aDn, - const rtl::OString& aAttribute) - throw (ldap::LdapConnectionException, ldap::LdapGenericException) -{ - if (!isValid()) { connectSimple(); } - const sal_Char *attributes [2] ; - rtl::OString value ; - - attributes [0] = aAttribute ; - attributes [1] = 0 ; - LdapMessageHolder result ; - LdapErrCode retCode = (*s_p_search_s)(mConnection, - aDn, - LDAP_SCOPE_BASE, - "(objectclass=*)", - const_cast(attributes), - 0, // Attributes + values - &result.msg) ; - - if (retCode == LDAP_NO_SUCH_OBJECT) - { - return value ; - } - checkLdapReturnCode("GetSingleAttribute", retCode, mConnection) ; - LDAPMessage *entry = (*s_p_first_entry)(mConnection, result.msg) ; - - if (entry != NULL) - { - sal_Char **values = (*s_p_get_values)(mConnection, entry, - aAttribute) ; - - if (values != NULL) - { - if (*values != NULL) { value = *values ; } - (*s_p_value_free)(values) ; - } - } - return value ; -} extern "C" { static void SAL_CALL thisModule() {} } void LdapConnection::loadModule() @@ -336,6 +303,8 @@ void LdapConnection::loadModule() s_p_msgfree = (t_ldap_msgfree)(osl_getFunctionSymbol(s_Ldap_Module, ::rtl::OUString::createFromAscii("ldap_msgfree").pData)); s_p_get_dn = (t_ldap_get_dn)(osl_getFunctionSymbol(s_Ldap_Module, ::rtl::OUString::createFromAscii("ldap_get_dn").pData)); s_p_first_entry = (t_ldap_first_entry)(osl_getFunctionSymbol(s_Ldap_Module, ::rtl::OUString::createFromAscii("ldap_first_entry").pData)); + s_p_first_attribute = (t_ldap_first_attribute)(osl_getFunctionSymbol(s_Ldap_Module, ::rtl::OUString::createFromAscii("ldap_first_attribute").pData)); + s_p_next_attribute = (t_ldap_next_attribute)(osl_getFunctionSymbol(s_Ldap_Module, ::rtl::OUString::createFromAscii("ldap_next_attribute").pData)); s_p_search_s = (t_ldap_search_s)(osl_getFunctionSymbol(s_Ldap_Module, ::rtl::OUString::createFromAscii("ldap_search_s").pData)); s_p_value_free = (t_ldap_value_free)(osl_getFunctionSymbol(s_Ldap_Module, ::rtl::OUString::createFromAscii("ldap_value_free").pData)); s_p_get_values = (t_ldap_get_values)(osl_getFunctionSymbol(s_Ldap_Module, ::rtl::OUString::createFromAscii("ldap_get_values").pData)); diff --git a/extensions/source/config/ldap/ldapaccess.hxx b/extensions/source/config/ldap/ldapaccess.hxx index 47022bb0d615..3951d8645e6d 100644 --- a/extensions/source/config/ldap/ldapaccess.hxx +++ b/extensions/source/config/ldap/ldapaccess.hxx @@ -31,6 +31,10 @@ #ifndef EXTENSIONS_CONFIG_LDAP_LDAPACCESS_HXX_ #define EXTENSIONS_CONFIG_LDAP_LDAPACCESS_HXX_ +#include "sal/config.h" + +#include + #include "wrapldapinclude.hxx" #include @@ -57,6 +61,8 @@ typedef LDAP_API(LDAP *) (LDAP_CALL *t_ldap_init)( const char *defhost, int defp typedef LDAP_API(int) (LDAP_CALL *t_ldap_msgfree)( LDAPMessage *lm ); typedef LDAP_API(char *) (LDAP_CALL *t_ldap_get_dn)( LDAP *ld, LDAPMessage *entry ); typedef LDAP_API(LDAPMessage *) (LDAP_CALL *t_ldap_first_entry)( LDAP *ld, LDAPMessage *chain ); +typedef LDAP_API(char *) (LDAP_CALL *t_ldap_first_attribute)( LDAP *ld, LDAPMessage *entry, void **ptr ); +typedef LDAP_API(char *) (LDAP_CALL *t_ldap_next_attribute)( LDAP *ld, LDAPMessage *entry, void *ptr ); typedef LDAP_API(int) (LDAP_CALL *t_ldap_search_s)( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPMessage **res ); typedef LDAP_API(void) (LDAP_CALL *t_ldap_value_free)( char **vals ); typedef LDAP_API(char **) (LDAP_CALL *t_ldap_get_values)( LDAP *ld, LDAPMessage *entry, const char *target ); @@ -79,10 +85,10 @@ struct LdapDefinition rtl::OString mUserObjectClass; /** User Entity Unique Attribute */ rtl::OString mUserUniqueAttr; - /** Mapping File */ - rtl::OString mMapping; } ; +typedef std::map< rtl::OUString, rtl::OUString > LdapData; // key/value pairs + /** Class encapulating all LDAP functionality */ class LdapConnection { @@ -98,36 +104,19 @@ public: throw (ldap::LdapConnectionException, ldap::LdapGenericException); - /** query connection status */ - bool isConnected() const { return isValid(); } - /** Gets LdapUserProfile from LDAP repository for specified user @param aUser name of logged on user @param aUserProfileMap Map containing LDAP->00o mapping - @param aUserProfile struct for holding OOo values + @param aUserProfile struct for holding OOo values @throws com::sun::star::ldap::LdapGenericException if an LDAP error occurs. */ - void getUserProfile(const rtl::OUString& aUser, - const LdapUserProfileMap& aUserProfileMap, - LdapUserProfile& aUserProfile) + void getUserProfile(const rtl::OUString& aUser, LdapData * data) throw (lang::IllegalArgumentException, ldap::LdapConnectionException, ldap::LdapGenericException); - /** - Retrieves a single attribute from a single entry. - @param aDn entry DN - @param aAttribute attribute name - - @throws com::sun::star::ldap::LdapGenericException - if an LDAP error occurs. - */ - rtl::OString getSingleAttribute(const rtl::OString& aDn, - const rtl::OString& aAttribute) - throw (ldap::LdapConnectionException, - ldap::LdapGenericException); /** finds DN of user @return DN of User @@ -169,6 +158,8 @@ private: static t_ldap_msgfree s_p_msgfree; static t_ldap_get_dn s_p_get_dn; static t_ldap_first_entry s_p_first_entry; + static t_ldap_first_attribute s_p_first_attribute; + static t_ldap_next_attribute s_p_next_attribute; static t_ldap_search_s s_p_search_s; static t_ldap_memfree s_p_memfree; diff --git a/extensions/source/config/ldap/ldapbe2.uno.xml b/extensions/source/config/ldap/ldapbe2.uno.xml deleted file mode 100644 index e365e20f48aa..000000000000 --- a/extensions/source/config/ldap/ldapbe2.uno.xml +++ /dev/null @@ -1,45 +0,0 @@ -c - - - ldapbe2.uno - - Sarah Smith - com.sun.star.comp.configuration.backend.LdapUserProfileBe - The LdapUserProfileBe accesses User Profile settings form a configured LDAP repository - com.sun.star.loader.SharedLibrary - C++ - - com.sun.star.configuration.backend.LdapUserProfileBe - com.sun.star.configuration.backend.PlatformBackend - com.sun.star.configuration.backend.SingleLayerStratum - com.sun.star.configuration.backend.LayerDescriber - com.sun.star.configuration.CannotLoadConfigurationException - com.sun.star.configuration.backend.BackendAccessException - com.sun.star.configuration.backend.XLayer - com.sun.star.configuration.backend.XUpdateHandler - com.sun.star.configuration.backend.XSingleLayerStratum - com.sun.star.uno.XComponentContext - com.sun.star.lang.IllegalArgumentException - com.sun.star.lang.XInitialization - com.sun.star.lang.XMultiServiceFactory - com.sun.star.lang.XServiceInfo - com.sun.star.lang.XSingleServiceFactory - com.sun.star.lang.XSingleComponentFactory - com.sun.star.lang.XTypeProvider - com.sun.star.registry.XRegistryKey - com.sun.star.uno.Any - com.sun.star.uno.Sequence - - comphelper - vos - cppuhelper - salhelper - cppu - sal - comphelp2$(COM) - vos2$(COM) - cppuhelper3$(COM) - salhelper3$(COM) - cppu3 - sal3 - diff --git a/extensions/source/config/ldap/ldapuserprof.cxx b/extensions/source/config/ldap/ldapuserprof.cxx deleted file mode 100644 index 3a031ddae211..000000000000 --- a/extensions/source/config/ldap/ldapuserprof.cxx +++ /dev/null @@ -1,229 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: ldapuserprof.cxx,v $ - * $Revision: 1.6 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_extensions.hxx" -#include "ldapuserprof.hxx" -#include "ldapaccess.hxx" -namespace extensions { namespace config { namespace ldap { -//============================================================================== - -//------------------------------------------------------------------------------ - -/** - Finds the next line in a buffer and returns it, along with a - modified version of the buffer with the line removed. - - @param aString string to extract the next line from - @param aLine next line - @return sal_True if a line has been extracted, sal_False otherwise - */ -static sal_Bool getNextLine(rtl::OString& aString, - rtl::OString& aLine) -{ - aString = aString.trim() ; - const sal_Char *currentChar = aString ; - const sal_Char *endChar = currentChar + aString.getLength() ; - sal_Int32 lineThreshold = 0 ; - - while (currentChar < endChar && - *currentChar != '\r' && *currentChar != '\n') { ++ currentChar ; } - lineThreshold = currentChar - static_cast(aString) ; - if (lineThreshold == 0) { return sal_False ; } - aLine = aString.copy(0, lineThreshold) ; - aString = aString.copy(lineThreshold) ; - return sal_True ; -} -//------------------------------------------------------------------------------ - -LdapUserProfileMap::~LdapUserProfileMap(void) -{ - // No need to delete the contents of the mAttributes array, - // since they refer to rtl::OStrings stored in the mLdapAttributes - // array. - if (mAttributes != NULL) - { - delete [] mAttributes ; - } -} -//------------------------------------------------------------------------------ - -void LdapUserProfileMap::source(const rtl::OString& aMap) -{ - if (mAttributes != NULL) - { - delete [] mAttributes ; mAttributes = NULL ; - mMapping.clear() ; - } - rtl::OString currentLine ; - rtl::OString buffer = aMap ; - std::set attributes ; - rtl::OString prefix ; - - // First, parse the buffer to find all the mapping definitions. - // While we're at it, we collect the list of unique LDAP attributes - // involved in the mapping. - while (getNextLine(buffer, currentLine)) - { - addNewMapping(currentLine, attributes, prefix) ; - } - // Now we use the list of attributes to build mAttributes - mAttributes = new const sal_Char * [attributes.size() + 1] ; - std::set::const_iterator attribute ; - sal_Int32 i = 0 ; - - for (attribute = attributes.begin() ; - attribute != attributes.end() ; ++ attribute) - { - mAttributes [i ++] = static_cast(*attribute) ; - } - mAttributes [i] = NULL ; -} -//------------------------------------------------------------------------------ - -void LdapUserProfileMap::ldapToUserProfile(LDAP *aConnection, - LDAPMessage *aEntry, - LdapUserProfile& aProfile) const -{ - if (aEntry == NULL) { return ; } - // Ensure return value has proper size - aProfile.mProfile.resize(mMapping.size()) ; - sal_Char **values = NULL ; - - for (sal_uInt32 i = 0 ; i < mMapping.size() ; ++ i) - { - aProfile.mProfile [i].mAttribute = rtl::OStringToOUString( - mMapping [i].mProfileElement, - RTL_TEXTENCODING_ASCII_US); - rtl::OUString debugStr = aProfile.mProfile [i].mAttribute; - - for (sal_uInt32 j = 0 ; - j < mMapping [i].mLdapAttributes.size() ; ++ j) - { - values = (*LdapConnection::s_p_get_values)(aConnection, aEntry, - mMapping [i].mLdapAttributes [j]) ; - - if (values != NULL) - { - aProfile.mProfile[i].mValue = rtl::OStringToOUString( - *values, RTL_TEXTENCODING_UTF8); - (*LdapConnection::s_p_value_free)(values); - break; - } - } - } -} -//------------------------------------------------------------------------------ -void LdapUserProfileMap::addNewMapping(const rtl::OString& aLine, - std::set& aLdapAttributes, - rtl::OString& aPrefix) -{ - if (aLine.getStr() [0] == '#') { return ; } - sal_Int32 prefixLength = aPrefix.getLength() ; - - if (prefixLength == 0) - { - sal_Int32 firstSlash = aLine.indexOf('/') ; - - if (firstSlash == -1) { return ; } - sal_Int32 secondSlash = aLine.indexOf('/', firstSlash + 1) ; - - if (secondSlash == -1){ return; } - - - mComponentName = - rtl::OUString::createFromAscii(aLine.copy(0, firstSlash)) ; - mGroupName = - rtl::OUString::createFromAscii(aLine.copy(firstSlash + 1, - secondSlash - firstSlash - 1)) ; - aPrefix = aLine.copy(0, secondSlash + 1) ; - prefixLength = secondSlash + 1 ; - - } - else if (aLine.compareTo(aPrefix, prefixLength) != 0) - { - return ; - } - mMapping.push_back(Mapping()) ; - if (!mMapping.back().parse(aLine.copy(prefixLength))) - { - mMapping.pop_back() ; - } - else - { - const std::vector& attributes = - mMapping.back().mLdapAttributes ; - std::vector::const_iterator ldapAttribute ; - - for (ldapAttribute = attributes.begin() ; - ldapAttribute != attributes.end() ; ++ ldapAttribute) - { - aLdapAttributes.insert(*ldapAttribute) ; - } - } -} -//------------------------------------------------------------------------------ - -static sal_Char kMappingSeparator = '=' ; -static sal_Char kLdapMapSeparator = ',' ; - -sal_Bool LdapUserProfileMap::Mapping::parse(const rtl::OString& aLine) -{ - sal_Int32 index = aLine.indexOf(kMappingSeparator) ; - - if (index == -1) - { - // Imparsable line - return sal_False ; - } - sal_Int32 oldIndex = index + 1 ; - - mProfileElement = aLine.copy(0, index).trim() ; - mLdapAttributes.clear() ; - index = aLine.indexOf(kLdapMapSeparator, oldIndex) ; - while (index != -1) - { - mLdapAttributes.push_back( - aLine.copy(oldIndex, index - oldIndex).trim()) ; - oldIndex = index + 1 ; - index = aLine.indexOf(kLdapMapSeparator, oldIndex) ; - } - rtl::OString endOfLine = aLine.copy(oldIndex).trim() ; - - if (endOfLine.getLength() > 0) - { - mLdapAttributes.push_back(endOfLine) ; - } - return sal_True ; -} -//------------------------------------------------------------------------------ - -} } } // extensiond.config.ldap - diff --git a/extensions/source/config/ldap/ldapuserprof.hxx b/extensions/source/config/ldap/ldapuserprof.hxx deleted file mode 100644 index 83ba526da27f..000000000000 --- a/extensions/source/config/ldap/ldapuserprof.hxx +++ /dev/null @@ -1,166 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: ldapuserprof.hxx,v $ - * $Revision: 1.7 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#ifndef EXTENSIONS_CONFIG_LDAP_LDAPUSERPROF_HXX_ -#define EXTENSIONS_CONFIG_LDAP_LDAPUSERPROF_HXX_ - -#include "wrapldapinclude.hxx" -#include -#include - -#ifndef VECTOR_INCLUDED -#define VECTOR_INCLUDED -#include -#endif // VECTOR_INCLUDED - -#ifndef SET_INCLUDED -#define SET_INCLUDED -#include -#endif // SET_INCLUDED - - -namespace extensions { namespace config { namespace ldap { - -/** Struct containing the data associated to a UserProfile */ -struct LdapUserProfile { - /** Struct defining an entry in the profile */ - struct ProfileEntry { - rtl::OUString mAttribute ; - rtl::OUString mValue ; - } ; - /** List of attribute/value pairs */ - std::vector mProfile ; - - typedef std::vector::const_iterator Iterator; -} ; - -/** Provider of UserProfile mapping services */ -class LdapUserProfileMap -{ - public : - /** Default constructor, doesn't do much. */ - LdapUserProfileMap() : mAttributes(NULL) {} - /** Destructor */ - ~LdapUserProfileMap() ; - - /** - Fills the map using a string description of the mapping. - Each possible UserProfile attribute is mapped to a list - of LDAP attributes, in order of priority. - The entry is formatted as: - =,..., - - @param aMap string description of the mapping - */ - void source(const rtl::OString& aMap) ; - /** - Returns an array of all the LDAP attribute names that may - be relevant for UserProfile mapping. - - @return array of LDAP attribute names - */ - const sal_Char **getLdapAttributes(void) const { return mAttributes ; } - /** - Returns the component name that holds the data - when presented to the outside. - - @return component name - */ - const rtl::OUString& getComponentName(void) const { - return mComponentName ; - } - /** - Returns the group name that holds the data when - presented to the outside world. - - @return group name - */ - const rtl::OUString& getGroupName(void) const { - return mGroupName ; - } - /** - Struct defining the mapping between UserProfile attributes - and LDAP ones. It also serves as a crude "schema" of the - UserProfile component, as the list of profile elements - is the list of properties in the component and the presence - or absence of LDAP mapping indicates whether the property - should be made writable or kept read-only. - */ - struct Mapping { - /** Name of the UserProfile element */ - rtl::OString mProfileElement ; - /** Corresponding LDAP attributes in order of priority */ - std::vector mLdapAttributes ; - - /** Utility to fill the mapping from a =;...; - description */ - sal_Bool parse(const rtl::OString& aDescription) ; - } ; - - - /** - Maps an LDAP entry to a UserProfile. - - @param aConnection LDAP connection to the repository - @param aEntry entry containing the data - @param aProfile user profile struct to fill up - */ - void ldapToUserProfile(LDAP *aConnection, - LDAPMessage *aEntry, - LdapUserProfile& aProfile) const ; - - private : - /** Contains the mapping entries */ - std::vector mMapping ; - /** Contains the LDAP attributes used in a NULL terminated array */ - const sal_Char **mAttributes ; - /** User profile component name */ - rtl::OUString mComponentName ; - /** User profile storage group name */ - rtl::OUString mGroupName ; - - /** - Adds a new mapping entry to the list, and collects the - LDAP attributes involved in the mapping. - - @param aMappingDescription string describing the mapping - @param aLdapAttributes collection of LDAP attributes - @param aPrefix common prefix to the attributes - containing the component and group - name, used for validation - */ - void addNewMapping(const rtl::OString& aMappingDescription, - std::set& aLdapAttributes, - rtl::OString& aPrefix) ; -} ; - -} } } // extensions.config.ldap - -#endif // EXTENSIONS_CONFIG_LDAP_LDAPUSERPROF_HXX_ diff --git a/extensions/source/config/ldap/ldapuserprofilebe.cxx b/extensions/source/config/ldap/ldapuserprofilebe.cxx index 330834c5b414..2067f108a90a 100644 --- a/extensions/source/config/ldap/ldapuserprofilebe.cxx +++ b/extensions/source/config/ldap/ldapuserprofilebe.cxx @@ -31,8 +31,8 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_extensions.hxx" +#include "ldapaccess.hxx" #include "ldapuserprofilebe.hxx" -#include "ldapuserprofilelayer.hxx" #include #include #include @@ -43,6 +43,7 @@ #include #endif #include +#include #include //============================================================================== @@ -65,41 +66,19 @@ static void checkIOError( rtl::OUStringBuffer sMsg; sMsg.appendAscii("LdapUserProfileBe: Cannot Read Meta-Configuration file:"); sMsg.append(aFileUrl); - throw backend::BackendSetupException(sMsg.makeStringAndClear(), - NULL, uno::Any()); + throw css::uno::RuntimeException(sMsg.makeStringAndClear(), + NULL); } } } -//------------------------------------------------------------------------------ -#if 0 -static rtl::OUString getCurrentModuleDirectory() // URL excluding terminating slash -{ - rtl::OUString aFileURL; - if ( !osl::Module::getUrlFromAddress((void*)&getCurrentModuleDirectory,aFileURL) ) - { - OSL_TRACE(false, "Cannot locate current module - using executable instead"); - - OSL_VERIFY(osl_Process_E_None == osl_getExecutableFile(&aFileURL.pData)); - } - - OSL_ENSURE(0 < aFileURL.lastIndexOf('/'), "Cannot find directory for module URL"); - - return aFileURL.copy(0, aFileURL.lastIndexOf('/') ); -} -#endif //------------------------------------------------------------------------------ LdapUserProfileBe::LdapUserProfileBe( const uno::Reference& xContext) -// throw (backend::BackendAccessException, backend::BackendSetupException, RuntimeException) : LdapProfileMutexHolder(), - BackendBase(mMutex), - mFactory(xContext->getServiceManager(),uno::UNO_QUERY_THROW), - mContext(xContext), - mLdapSource( new LdapUserProfileSource ), - mLoggedOnUser(), - mUserDN() + BackendBase(mMutex) { LdapDefinition aDefinition; + rtl::OUString loggedOnUser; // This whole rigmarole is to prevent an infinite recursion where reading // the configuration for the backend would create another instance of the @@ -116,16 +95,20 @@ LdapUserProfileBe::LdapUserProfileBe( const uno::Reference( + xContext->getServiceManager(), + css::uno::UNO_QUERY_THROW), + &aDefinition, &loggedOnUser)) { - throw backend::BackendSetupException( + throw css::uno::RuntimeException( rtl::OUString::createFromAscii("LdapUserProfileBe- LDAP not configured"), - NULL, uno::Any()); + NULL); } bReentrantCall = false ; } - catch (uno::Exception&) + catch (...) { bReentrantCall = false; throw; @@ -133,34 +116,10 @@ LdapUserProfileBe::LdapUserProfileBe( const uno::ReferencemConnection.loadModule(); - mLdapSource->mConnection.connectSimple(aDefinition); - //Set the UserDN - mUserDN = mLdapSource->mConnection.findUserDn( - rtl::OUStringToOString(mLoggedOnUser, RTL_TEXTENCODING_ASCII_US)); - } - catch (lang::IllegalArgumentException& exception) - { - throw backend::BackendSetupException(exception.Message, NULL, - uno::makeAny(exception)) ; - } - catch (ldap::LdapConnectionException& exception) - { - throw backend::CannotConnectException(exception.Message, NULL, - uno::makeAny(exception)) ; - } - catch(ldap::LdapGenericException& exception) - { - mapGenericException(exception) ; - } - - initializeMappingTable( - rtl::OStringToOUString(aDefinition.mMapping, - RTL_TEXTENCODING_ASCII_US)); - - OSL_POSTCOND(mLdapSource->mConnection.isConnected(),"Erroneously constructed a LdapUserProfileBackend without a LDAP connection"); + LdapConnection connection; + connection.loadModule(); + connection.connectSimple(aDefinition); + connection.getUserProfile(loggedOnUser, &data_); } //------------------------------------------------------------------------------ LdapUserProfileBe::~LdapUserProfileBe() @@ -168,129 +127,11 @@ LdapUserProfileBe::~LdapUserProfileBe() } //------------------------------------------------------------------------------ -void LdapUserProfileBe::initializeMappingTable(const rtl::OUString& aFileMapName) -{ - rtl::OUString aMappingFileUrl = getMappingFileUrl(aFileMapName ); - - osl::File aFile (aMappingFileUrl); - checkIOError( aFile.open(OpenFlag_Read), aMappingFileUrl); - - sal_uInt64 nFileLength = 0; - checkIOError( aFile.getSize(nFileLength), aMappingFileUrl); - - sal_uInt32 nDataLength = sal_uInt32(nFileLength); - if (nDataLength != nFileLength) - { - throw backend::BackendSetupException(rtl::OUString::createFromAscii - ("LdapUserProfileBe - can not read entire Mapping File: too big"), - NULL, uno::Any()); - } - - struct RawBuffer - { - RawBuffer(sal_Size size) : data(rtl_allocateMemory(size)) {} - ~RawBuffer() { rtl_freeMemory(data); } - - void * data; - }; - RawBuffer buffer( nDataLength ); - - sal_uInt64 nRead = 0; - osl::File::RC result = aFile.read (static_cast(buffer.data), nDataLength, nRead); - if (result != osl::File::E_None) - { - checkIOError( result, aMappingFileUrl ); - OSL_ASSERT(!"unreached"); - } - - if (nRead != nDataLength) - { - throw backend::BackendSetupException(rtl::OUString::createFromAscii - ("LdapUserProfileBe - can not read entire Mapping File"), - NULL, uno::Any()); - } - - rtl::OString aStrBuffer ( static_cast(buffer.data), sal_uInt32(nDataLength) ); - mLdapSource->mProfileMap.source(aStrBuffer); - -} -//------------------------------------------------------------------------------ - -static const rtl::OUString kMappingFileSuffix(RTL_CONSTASCII_USTRINGPARAM( - "-attr.map")); - -static const rtl::OUString kMappingUrl( - RTL_CONSTASCII_USTRINGPARAM("/modules/com.sun.star.configuration/bootstrap/LdapMappingUrl")); - - -static const sal_Unicode kPathSeparator = '/' ; -static const rtl::OUString kBootstrapContextSingletonName( - RTL_CONSTASCII_USTRINGPARAM( - "/singletons/com.sun.star.configuration.bootstrap.theBootstrapContext")); - -rtl::OUString LdapUserProfileBe::getMappingFileUrl(const rtl::OUString& aFileMapName) const -{ - uno::Any aContext = mContext->getValueByName(kBootstrapContextSingletonName); - uno::Reference aBootStrapContext; - - rtl::OUString aFileUrl; - if (aContext >>= aBootStrapContext) - aBootStrapContext->getValueByName(kMappingUrl) >>= aFileUrl; - - if (aFileUrl.getLength() == 0 ) - { -#if 0 - static const rtl::OUString kMappingDirectory(RTL_CONSTASCII_USTRINGPARAM( "/share/registry/ldap")); - - rtl::OUString aModuleUrl = getCurrentModuleDirectory(); - sal_Int32 nIndex = aModuleUrl.lastIndexOf('/'); - if (nIndex == 0) - { - throw backend::BackendSetupException(rtl::OUString::createFromAscii - ("LdapUserProfileBe - can not access Mapping File"), - NULL, uno::Any()); - } - rtl::OUString aMappingFileUrl = aModuleUrl.copy(0, nIndex); - aMappingFileUrl += kMappingDirectory; - aFileUrl = aMappingFileUrl; -#else - throw backend::BackendSetupException(rtl::OUString::createFromAscii - ("LdapUserProfileBe - can not locate Mapping File"), - NULL, uno::Any()); -#endif - } - - rtl::OUStringBuffer sFileBuffer(aFileUrl); - sFileBuffer.append(kPathSeparator); - sFileBuffer.append (aFileMapName); - sFileBuffer.append(kMappingFileSuffix); - return sFileBuffer.makeStringAndClear(); -} -//------------------------------------------------------------------------------ -void LdapUserProfileBe::mapGenericException(ldap::LdapGenericException& aException) - throw (backend::InsufficientAccessRightsException, - backend::ConnectionLostException, - backend::BackendAccessException) -{ - switch (aException.ErrorCode) - { - case LDAP_INSUFFICIENT_ACCESS: - throw backend::InsufficientAccessRightsException(aException.Message, - NULL, uno::makeAny(aException)) ; - - case LDAP_SERVER_DOWN: - case LDAP_CONNECT_ERROR: - throw backend::ConnectionLostException(aException.Message, NULL, - uno::makeAny(aException)) ; - default: - throw backend::BackendAccessException(aException.Message, NULL, - uno::makeAny(aException)) ; - } -} -//------------------------------------------------------------------------------ - -bool LdapUserProfileBe::readLdapConfiguration(LdapDefinition& aDefinition) +bool LdapUserProfileBe::readLdapConfiguration( + css::uno::Reference< css::lang::XMultiServiceFactory > const & factory, + LdapDefinition * definition, rtl::OUString * loggedOnUser) { + OSL_ASSERT(factory.is() && definition != 0 && loggedOnUser != 0); const rtl::OUString kConfigurationProviderService( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.ConfigurationProvider")) ; const rtl::OUString kReadOnlyViewService( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.ConfigurationAccess")) ; const rtl::OUString kComponent( RTL_CONSTASCII_USTRINGPARAM("org.openoffice.LDAP/UserDirectory")); @@ -302,14 +143,12 @@ bool LdapUserProfileBe::readLdapConfiguration(LdapDefinition& aDefinition) const rtl::OUString kPassword(RTL_CONSTASCII_USTRINGPARAM("SearchPassword")); const rtl::OUString kUserObjectClass(RTL_CONSTASCII_USTRINGPARAM("UserObjectClass")); const rtl::OUString kUserUniqueAttr(RTL_CONSTASCII_USTRINGPARAM("UserUniqueAttribute")); - const rtl::OUString kMapping(RTL_CONSTASCII_USTRINGPARAM("Mapping")); - const rtl::OString kDefaultMappingFile("oo-ldap"); uno::Reference< XInterface > xIface; try { uno::Reference< lang::XMultiServiceFactory > xCfgProvider( - mFactory->createInstance(kConfigurationProviderService), + factory->createInstance(kConfigurationProviderService), uno::UNO_QUERY); OSL_ENSURE(xCfgProvider.is(),"LdapUserProfileBe: could not create the configuration provider"); if (!xCfgProvider.is()) @@ -327,26 +166,23 @@ bool LdapUserProfileBe::readLdapConfiguration(LdapDefinition& aDefinition) uno::Reference xChildAccess(xIface, uno::UNO_QUERY_THROW); - if (!getLdapStringParam(xChildAccess, kServer, aDefinition.mServer)) + if (!getLdapStringParam(xChildAccess, kServer, definition->mServer)) return false; - if (!getLdapStringParam(xChildAccess, kBaseDN, aDefinition.mBaseDN)) + if (!getLdapStringParam(xChildAccess, kBaseDN, definition->mBaseDN)) return false; - aDefinition.mPort=0; - xChildAccess->getByName(kPort) >>= aDefinition.mPort ; - if (aDefinition.mPort == 0) + definition->mPort=0; + xChildAccess->getByName(kPort) >>= definition->mPort ; + if (definition->mPort == 0) return false; - if (!getLdapStringParam(xAccess, kUserObjectClass, aDefinition.mUserObjectClass)) + if (!getLdapStringParam(xAccess, kUserObjectClass, definition->mUserObjectClass)) return false; - if (!getLdapStringParam(xAccess, kUserUniqueAttr, aDefinition.mUserUniqueAttr)) + if (!getLdapStringParam(xAccess, kUserUniqueAttr, definition->mUserUniqueAttr)) return false; - getLdapStringParam(xAccess, kUser, aDefinition.mAnonUser); - getLdapStringParam(xAccess, kPassword, aDefinition.mAnonCredentials); - - if (!getLdapStringParam(xAccess, kMapping, aDefinition.mMapping)) - aDefinition.mMapping = kDefaultMappingFile; + getLdapStringParam(xAccess, kUser, definition->mAnonUser); + getLdapStringParam(xAccess, kPassword, definition->mAnonCredentials); } catch (uno::Exception & e) { @@ -356,15 +192,15 @@ bool LdapUserProfileBe::readLdapConfiguration(LdapDefinition& aDefinition) } osl::Security aSecurityContext; - if (!aSecurityContext.getUserName(mLoggedOnUser)) + if (!aSecurityContext.getUserName(*loggedOnUser)) OSL_TRACE("LdapUserProfileBackend - could not get Logged on user from system"); - sal_Int32 nIndex = mLoggedOnUser.indexOf('/'); + sal_Int32 nIndex = loggedOnUser->indexOf('/'); if (nIndex > 0) - mLoggedOnUser = mLoggedOnUser.copy(nIndex+1); + *loggedOnUser = loggedOnUser->copy(nIndex+1); //Remember to remove - OSL_TRACE("Logged on user is %s", rtl::OUStringToOString(mLoggedOnUser,RTL_TEXTENCODING_ASCII_US).getStr()); + OSL_TRACE("Logged on user is %s", rtl::OUStringToOString(*loggedOnUser,RTL_TEXTENCODING_ASCII_US).getStr()); return true; } @@ -382,35 +218,48 @@ bool LdapUserProfileBe::getLdapStringParam( return aServerParameter.getLength() != 0; } //------------------------------------------------------------------------------ -uno::Reference SAL_CALL LdapUserProfileBe::getLayer( - const rtl::OUString& /*aComponent*/, const rtl::OUString& /*aTimestamp*/) - throw (backend::BackendAccessException, lang::IllegalArgumentException,uno::RuntimeException) +void LdapUserProfileBe::setPropertyValue( + rtl::OUString const &, css::uno::Any const &) + throw ( + css::beans::UnknownPropertyException, css::beans::PropertyVetoException, + css::lang::IllegalArgumentException, css::lang::WrappedTargetException, + css::uno::RuntimeException) { - OSL_PRECOND(mLdapSource->mConnection.isConnected(), "LdapUserProfileBackend invoked without a connection"); - if (!mLdapSource->mConnection.isConnected()) - return NULL; - - const rtl::OString kModificationAttribute = "modifyTimeStamp"; - - rtl::OString aTimeStamp = mLdapSource->mConnection. - getSingleAttribute( mUserDN, kModificationAttribute); - - return new LdapUserProfileLayer( - mFactory, mLoggedOnUser, mLdapSource, - rtl::OStringToOUString(aTimeStamp, RTL_TEXTENCODING_ASCII_US)); + throw css::lang::IllegalArgumentException( + rtl::OUString( + RTL_CONSTASCII_USTRINGPARAM("setPropertyValue not supported")), + static_cast< cppu::OWeakObject * >(this), -1); } -//------------------------------------------------------------------------------ -uno::Reference SAL_CALL -LdapUserProfileBe::getUpdatableLayer(const rtl::OUString& /*aComponent*/) - throw (backend::BackendAccessException,lang::NoSupportException, - lang::IllegalArgumentException,uno::RuntimeException) +css::uno::Any LdapUserProfileBe::getPropertyValue( + rtl::OUString const & PropertyName) + throw ( + css::beans::UnknownPropertyException, css::lang::WrappedTargetException, + css::uno::RuntimeException) { - throw lang::NoSupportException( - rtl::OUString::createFromAscii( - "LdapUserProfileBe: No Update Operation allowed, Read Only access"), - *this) ; + for (sal_Int32 i = 0;;) { + sal_Int32 j = PropertyName.indexOf(',', i); + if (j == -1) { + j = PropertyName.getLength(); + } + if (j == i) { + throw css::beans::UnknownPropertyException( + PropertyName, static_cast< cppu::OWeakObject * >(this)); + } + LdapData::iterator k(data_.find(PropertyName.copy(i, j - i))); + if (k != data_.end()) { + return css::uno::makeAny( + css::beans::Optional< css::uno::Any >( + true, css::uno::makeAny(k->second))); + } + if (j == PropertyName.getLength()) { + break; + } + i = j + 1; + } + return css::uno::makeAny(css::beans::Optional< css::uno::Any >()); } + //------------------------------------------------------------------------------ rtl::OUString SAL_CALL LdapUserProfileBe::getLdapUserProfileBeName(void) { return rtl::OUString::createFromAscii("com.sun.star.comp.configuration.backend.LdapUserProfileBe") ; @@ -426,10 +275,8 @@ rtl::OUString SAL_CALL LdapUserProfileBe::getImplementationName(void) uno::Sequence SAL_CALL LdapUserProfileBe::getLdapUserProfileBeServiceNames(void) { - uno::Sequence aServices(2) ; + uno::Sequence aServices(1) ; aServices[0] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.backend.LdapUserProfileBe")) ; - aServices[1] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.backend.PlatformBackend")) ; - return aServices ; } //------------------------------------------------------------------------------ diff --git a/extensions/source/config/ldap/ldapuserprofilebe.hxx b/extensions/source/config/ldap/ldapuserprofilebe.hxx index 6b2f78389a8f..c3cbb7952336 100644 --- a/extensions/source/config/ldap/ldapuserprofilebe.hxx +++ b/extensions/source/config/ldap/ldapuserprofilebe.hxx @@ -31,41 +31,33 @@ #ifndef EXTENSIONS_CONFIG_LDAP_LDAPUSERPROFILEBE_HXX_ #define EXTENSIONS_CONFIG_LDAP_LDAPUSERPROFILEBE_HXX_ -#include "ldapuserprof.hxx" -#include "ldapaccess.hxx" -#include "ldapuserprofilelayer.hxx" -#include +#include #include #include #include #include -#include -#include -#include #include #include #include +#include "ldapaccess.hxx" -#define CONTEXT_ITEM_PREFIX_ "/modules/com.sun.star.configuration/bootstrap/" namespace extensions { namespace config { namespace ldap { namespace css = com::sun::star ; namespace uno = css::uno ; namespace lang = css::lang ; -namespace ldap= css::ldap ; -namespace backend = css::configuration::backend ; namespace container = css::container; -//------------------------------------------------------------------------------ -//------------------------------------------------------------------------------ -typedef cppu::WeakComponentImplHelper2 BackendBase ; struct LdapProfileMutexHolder { osl::Mutex mMutex; }; /** Implements the PlatformBackend service, a specialization of the - SingleLayerStratum service for retreiving LDAP user profile + XPropertySet service for retreiving LDAP user profile configuration settings from a LDAP repsoitory. */ class LdapUserProfileBe : private LdapProfileMutexHolder, public BackendBase @@ -73,7 +65,6 @@ class LdapUserProfileBe : private LdapProfileMutexHolder, public BackendBase public : LdapUserProfileBe(const uno::Reference& xContext); - // throw(backend::BackendAccessException, backend::BackendSetupException, RuntimeException); ~LdapUserProfileBe(void) ; // XServiceInfo @@ -89,19 +80,57 @@ class LdapUserProfileBe : private LdapProfileMutexHolder, public BackendBase getSupportedServiceNames( ) throw (uno::RuntimeException) ; - //XSingleLayerStratum - virtual uno::Reference SAL_CALL - getLayer( const rtl::OUString& aLayerId, const rtl::OUString& aTimestamp ) - throw (backend::BackendAccessException, - lang::IllegalArgumentException, - uno::RuntimeException) ; + // XPropertySet + virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL + getPropertySetInfo() throw (css::uno::RuntimeException) + { return css::uno::Reference< css::beans::XPropertySetInfo >(); } + + virtual void SAL_CALL setPropertyValue( + rtl::OUString const &, css::uno::Any const &) + throw ( + css::beans::UnknownPropertyException, + css::beans::PropertyVetoException, + css::lang::IllegalArgumentException, + css::lang::WrappedTargetException, css::uno::RuntimeException); + + virtual css::uno::Any SAL_CALL getPropertyValue( + rtl::OUString const & PropertyName) + throw ( + css::beans::UnknownPropertyException, + css::lang::WrappedTargetException, css::uno::RuntimeException); + + virtual void SAL_CALL addPropertyChangeListener( + rtl::OUString const &, + css::uno::Reference< css::beans::XPropertyChangeListener > const &) + throw ( + css::beans::UnknownPropertyException, + css::lang::WrappedTargetException, css::uno::RuntimeException) + {} + + virtual void SAL_CALL removePropertyChangeListener( + rtl::OUString const &, + css::uno::Reference< css::beans::XPropertyChangeListener > const &) + throw ( + css::beans::UnknownPropertyException, + css::lang::WrappedTargetException, css::uno::RuntimeException) + {} + + virtual void SAL_CALL addVetoableChangeListener( + rtl::OUString const &, + css::uno::Reference< css::beans::XVetoableChangeListener > const &) + throw ( + css::beans::UnknownPropertyException, + css::lang::WrappedTargetException, css::uno::RuntimeException) + {} + + virtual void SAL_CALL removeVetoableChangeListener( + rtl::OUString const &, + css::uno::Reference< css::beans::XVetoableChangeListener > const &) + throw ( + css::beans::UnknownPropertyException, + css::lang::WrappedTargetException, css::uno::RuntimeException) + {} - virtual uno::Reference SAL_CALL - getUpdatableLayer( const rtl::OUString& aLayerId ) - throw (backend::BackendAccessException, - lang::NoSupportException, - lang::IllegalArgumentException, - uno::RuntimeException) ; /** Provides the implementation name. @return implementation name @@ -115,35 +144,16 @@ class LdapUserProfileBe : private LdapProfileMutexHolder, public BackendBase getLdapUserProfileBeServiceNames(void) ; private: - /** Build OO/LDAP attribute mapping table */ - void initializeMappingTable (const rtl::OUString& aFileMapName); /** Check if LDAP is configured */ - bool readLdapConfiguration(LdapDefinition& aDefinition); + bool readLdapConfiguration( + uno::Reference const & factory, + LdapDefinition * definition, rtl::OUString * loggedOnUser); bool getLdapStringParam(uno::Reference& xAccess, const rtl::OUString& aLdapSetting, rtl::OString& aServerParameter); - void mapGenericException(ldap::LdapGenericException& aException) - throw (backend::InsufficientAccessRightsException, - backend::ConnectionLostException, - backend::BackendAccessException); - /** Connect to LDAP server */ - void connectToLdapServer(const LdapDefinition& aDefinition ); - /** Get URL of OO-to-LDAP Mapping File */ - rtl::OUString getMappingFileUrl(const rtl::OUString& aFileMapName) const; - - /** Service Factory object */ - uno::Reference mFactory; - /** Component Context */ - uno::Reference mContext ; - /** Object for LDAP functionality */ - LdapUserProfileSourceRef mLdapSource; - /**Currently logged in user */ - rtl::OUString mLoggedOnUser ; - /** DN of currently logged in user */ - rtl::OString mUserDN; - + LdapData data_; } ; //------------------------------------------------------------------------------ }}} diff --git a/extensions/source/config/ldap/ldapuserprofilelayer.cxx b/extensions/source/config/ldap/ldapuserprofilelayer.cxx deleted file mode 100644 index fb40799ef650..000000000000 --- a/extensions/source/config/ldap/ldapuserprofilelayer.cxx +++ /dev/null @@ -1,247 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: ldapuserprofilelayer.cxx,v $ - * $Revision: 1.8 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_extensions.hxx" -#include "ldapuserprofilelayer.hxx" -#include -#include -#ifndef _COM_SUN_STAR_BEANS_PROPERTYATTRIBUTE_HPP_ -// on windows this is defined indirectly by -#undef OPTIONAL -#include -#endif -#include -#include - -//============================================================================== -namespace extensions { namespace config { namespace ldap { - -static const sal_Unicode kPathSeparator = '/' ; - -static -uno::Reference - newLayerDescriber(const uno::Reference& xFactory) -{ - typedef uno::Reference LayerDescriber; - - rtl::OUString const k_sLayerDescriberService ( - RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.configuration.backend.LayerDescriber")); - - LayerDescriber xResult(xFactory->createInstance(k_sLayerDescriberService), uno::UNO_QUERY_THROW); - return xResult; -} -//------------------------------------------------------------------------------ - -void LdapUserProfileSource::getUserProfile(const rtl::OUString & aUser, LdapUserProfile & aProfile) -{ - mConnection.getUserProfile(aUser, - mProfileMap, - aProfile); -} - -rtl::OUString LdapUserProfileSource::getComponentName() const -{ - return mProfileMap.getComponentName(); -} - -rtl::OUString LdapUserProfileSource::getConfigurationBasePath() const -{ - rtl::OUStringBuffer sComponentNameBuffer(mProfileMap.getComponentName()); - sComponentNameBuffer.append(kPathSeparator); - sComponentNameBuffer.append (mProfileMap.getGroupName()); - sComponentNameBuffer.append(kPathSeparator); - - return sComponentNameBuffer.makeStringAndClear(); -} -//------------------------------------------------------------------------------ - -struct LdapUserProfileLayer::ProfileData -{ - LdapUserProfile mProfile; - rtl::OUString mBasePath; - - explicit ProfileData(LdapUserProfileSource & aSource, const rtl::OUString & aUser) - { - aSource.getUserProfile(aUser, mProfile); - mBasePath = aSource.getConfigurationBasePath(); - } -}; -//------------------------------------------------------------------------------ - -LdapUserProfileLayer::LdapUserProfileLayer( - const uno::Reference& xFactory, - const rtl::OUString& aUser, - const LdapUserProfileSourceRef & aUserProfileSource, - const rtl::OUString& aTimestamp) -: mLayerDescriber( newLayerDescriber(xFactory) ) -, mSource( aUserProfileSource ) -, mUser(aUser) -, mTimestamp(aTimestamp) -, mProfile( 0 ) -{ - OSL_ASSERT(mSource.is()); -} - -//------------------------------------------------------------------------------ -LdapUserProfileLayer::~LdapUserProfileLayer() -{ - delete mProfile; -} -//------------------------------------------------------------------------------ - -#define PROPNAME( name ) rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( name ) ) -#define PROPTYPE( type ) getCppuType( static_cast< type const *>( 0 ) ) - -const sal_Int32 LAYER_PROPERTY_URL = 1; - -cppu::IPropertyArrayHelper * SAL_CALL LdapUserProfileLayer::newInfoHelper() -{ - using com::sun::star::beans::Property; - using namespace com::sun::star::beans::PropertyAttribute; - - Property properties[] = - { - Property(PROPNAME("URL"), LAYER_PROPERTY_URL, PROPTYPE(rtl::OUString), READONLY) - }; - - return new cppu::OPropertyArrayHelper(properties, sizeof(properties)/sizeof(properties[0])); -} -//------------------------------------------------------------------------------ - -void SAL_CALL LdapUserProfileLayer::getFastPropertyValue( uno::Any& rValue, sal_Int32 nHandle ) const -{ - switch (nHandle) - { - case LAYER_PROPERTY_URL: - { - rtl::OUStringBuffer aURL; - aURL.appendAscii("ldap-user-profile:"); - aURL.append(mUser); - aURL.append(sal_Unicode('@')); - if (mSource.is()) - aURL.append(mSource->getComponentName()); - else - aURL.appendAscii(""); - - rValue <<= aURL.makeStringAndClear(); - } - break; - - default: - OSL_ENSURE(false, "Error: trying to get an UNKNOWN property"); - break; - } -} -//------------------------------------------------------------------------------ - -bool LdapUserProfileLayer::readProfile() -{ - if (mSource.is()) - try - { - OSL_ASSERT(!mProfile); - mProfile = new ProfileData(*mSource,mUser); - - mSource.clear(); - } - catch (ldap::LdapConnectionException & e) - { - // without existing Ldap Connection we should never have gotten a timestamp - OSL_ENSURE(false, "Unexpected: Have Ldap Backedn Layer but no vaild LDAP connection ?!"); - throw backend::ConnectionLostException(e.Message, *this, uno::makeAny(e) ); - } - catch (ldap::LdapGenericException & e) - { - throw backend::BackendAccessException(e.Message, *this, uno::makeAny(e) ); - } - OSL_ASSERT( !mSource.is() ); - OSL_ASSERT( mProfile != 0 ); - return mProfile != 0; -} -//------------------------------------------------------------------------------ - -void SAL_CALL LdapUserProfileLayer::readData( - const uno::Reference& xHandler) - throw ( backend::MalformedDataException, - lang::NullPointerException, - lang::WrappedTargetException, - uno::RuntimeException) -{ - std::vector aPropList; -#ifdef SUPPRESS_BACKEND_ERRORS - try -#endif - if ( readProfile() ) - { - // initialize PropInfo members that are the same for all settings - const rtl::OUString k_sTypeString(RTL_CONSTASCII_USTRINGPARAM("string")); - - backend::PropertyInfo aPropInfo; - aPropInfo.Type = k_sTypeString; - aPropInfo.Protected = sal_False; - - LdapUserProfile * pProfile = &mProfile->mProfile; - aPropList.reserve(pProfile->mProfile.size()); - - for (LdapUserProfile::Iterator entry = pProfile->mProfile.begin() ; - entry != pProfile->mProfile.end() ; ++ entry) - { - if (entry->mAttribute.getLength()==0) { continue ; } - if (entry->mValue.getLength()==0) { continue ; } - - aPropInfo.Name = mProfile->mBasePath + entry->mAttribute; - aPropInfo.Value <<= entry->mValue; - - aPropList.push_back(aPropInfo); - } - } -#ifdef SUPPRESS_BACKEND_ERRORS - catch (uno::Exception & e) - { - OSL_TRACE("LDAP Backend - Reading data from LDAP failed: %s\n", - rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).getStr() ); - } -#endif - - if ( !aPropList.empty()) - { - //Describe UserProfileLayer (the list of properties) to the XHandler - //Object using com.sun.star.comp.backend.LayerContentDescriber Service - uno::Sequence aPropInfoList(&aPropList.front(),aPropList.size()); - - mLayerDescriber->describeLayer(xHandler, aPropInfoList); - } - // else { check handler not NULL; xHandler->startLayer(); xHandler->endLayer(); } -} -//------------------------------------------------------------------------------ -}}} -//------------------------------------------------------------------------------ - diff --git a/extensions/source/config/ldap/ldapuserprofilelayer.hxx b/extensions/source/config/ldap/ldapuserprofilelayer.hxx deleted file mode 100644 index b595deb74006..000000000000 --- a/extensions/source/config/ldap/ldapuserprofilelayer.hxx +++ /dev/null @@ -1,124 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: ldapuserprofilelayer.hxx,v $ - * $Revision: 1.7 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#ifndef EXTENSIONS_CONFIG_LDAP_LADPUSERPROFILELAYER_HXX_ -#define EXTENSIONS_CONFIG_LDAP_LADPUSERPROFILELAYER_HXX_ - -#include "ldapuserprof.hxx" -#include "ldapaccess.hxx" - -#include "propertysethelper.hxx" -#include -#include - -#ifndef _COM_SUN_STAR_CONFIGURATION_BACKEND_XLAYERCONTENTDESCIBER_HPP_ -#include -#endif -#include -#include -#include -#include - - -namespace extensions { namespace config { namespace ldap { - -namespace css = com::sun::star ; -namespace uno = css::uno ; -namespace lang = css::lang ; -namespace backend = css::configuration::backend ; -namespace util = css::util ; - -//------------------------------------------------------------------------------ -struct LdapUserProfileSource : public salhelper::SimpleReferenceObject -{ - LdapConnection mConnection; - LdapUserProfileMap mProfileMap; - - rtl::OUString getComponentName() const; - rtl::OUString getConfigurationBasePath() const; - void getUserProfile(rtl::OUString const & aUser, LdapUserProfile & aProfile); -}; -typedef rtl::Reference< LdapUserProfileSource > LdapUserProfileSourceRef; -//------------------------------------------------------------------------------ - -/** - Implementation of the XLayer interfaces for LdapUserProfileBe. - Class reads UserProfile setting form LDAP. - The timestamp indicates the last modification time - */ - class LdapUserProfileLayer : public cppu::ImplInheritanceHelper2< - apihelper::ReadOnlyPropertySetHelper, - backend::XLayer, - util::XTimeStamped> -{ - public : - /** Constructor */ - LdapUserProfileLayer( - const uno::Reference& xFactory, - const rtl::OUString& aUser, - const LdapUserProfileSourceRef & aUserProfileSource, - const rtl::OUString& aTimestamp); - // throw (uno::RuntimeException - - /** Destructor */ - ~LdapUserProfileLayer(); - - // XLayer - virtual void SAL_CALL readData( - const uno::Reference& xHandler) - throw ( backend::MalformedDataException, - lang::NullPointerException, - lang::WrappedTargetException, - uno::RuntimeException) ; - - // XTimeStamped - virtual rtl::OUString SAL_CALL getTimestamp(void) - throw (uno::RuntimeException) - { return mTimestamp; } - - protected: - // PropertySetHelper - virtual cppu::IPropertyArrayHelper * SAL_CALL newInfoHelper(); - - virtual void SAL_CALL getFastPropertyValue( uno::Any& rValue, sal_Int32 nHandle ) const; - private : - struct ProfileData; - bool readProfile(); - - uno::Reference mLayerDescriber; - LdapUserProfileSourceRef mSource; - rtl::OUString mUser; - rtl::OUString mTimestamp; - ProfileData * mProfile; - private: - using cppu::OPropertySetHelper::getFastPropertyValue; - } ; -}}} -#endif // EXTENSIONS_CONFIG_LDAP_LADPUSERPROFILELAYER_HXX_ diff --git a/extensions/source/config/ldap/makefile.mk b/extensions/source/config/ldap/makefile.mk index 5ff3da4d21de..40cafed6ad43 100644 --- a/extensions/source/config/ldap/makefile.mk +++ b/extensions/source/config/ldap/makefile.mk @@ -31,7 +31,6 @@ PRJ=..$/..$/.. -PRJINC=$(PRJ)$/source PRJNAME=extensions TARGET=ldapbe ENABLE_EXCEPTIONS=TRUE @@ -68,10 +67,7 @@ SOLARINC+= $(LDAPSDKINCLUDES) SLOFILES=\ $(SLO)$/ldapuserprofilebe.obj \ - $(SLO)$/ldapuserprof.obj \ $(SLO)$/ldapaccess.obj \ - $(SLO)$/ldapuserprofilelayer.obj \ - $(SLO)$/propertysethelper.obj \ $(SLO)$/componentdef.obj LIB1TARGET=$(SLB)$/_$(TARGET).lib diff --git a/extensions/source/config/ldap/propertysethelper.cxx b/extensions/source/config/ldap/propertysethelper.cxx deleted file mode 100644 index 09f19185ce6f..000000000000 --- a/extensions/source/config/ldap/propertysethelper.cxx +++ /dev/null @@ -1,153 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: propertysethelper.cxx,v $ - * $Revision: 1.6 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_extensions.hxx" - -#include "propertysethelper.hxx" -#include - -#include - -//.......................................................................... -namespace extensions { - namespace apihelper { -//.......................................................................... - namespace uno = com::sun::star::uno; - namespace lang = com::sun::star::lang; - namespace beans = com::sun::star::beans; -//.......................................................................... -PropertySetHelper::PropertySetHelper() -: BroadcasterBase() -, cppu::OWeakObject() -, cppu::OPropertySetHelper( BroadcasterBase::getBroadcastHelper() ) -, m_pHelper(0) -{ -} - -//.......................................................................... -PropertySetHelper::~PropertySetHelper() -{ - delete m_pHelper; -} - -//.......................................................................... -// XInterface -uno::Any SAL_CALL PropertySetHelper::queryInterface( uno::Type const & rType ) throw (uno::RuntimeException) -{ - uno::Any aResult = cppu::OPropertySetHelper::queryInterface(rType); - if (!aResult.hasValue()) - aResult = OWeakObject::queryInterface(rType); - return aResult; -} - -void SAL_CALL PropertySetHelper::acquire() throw () -{ - OWeakObject::acquire(); -} - -void SAL_CALL PropertySetHelper::release() throw () -{ - if (m_refCount == 1) - this->disposing(); - - OWeakObject::release(); -} - -//.......................................................................... -// XTypeProvider -uno::Sequence< uno::Type > SAL_CALL PropertySetHelper::getTypes() throw (uno::RuntimeException) -{ - // could be static instance - cppu::OTypeCollection aTypes( - ::getCppuType( static_cast< uno::Reference< beans::XPropertySet > const * >(0) ), - ::getCppuType( static_cast< uno::Reference< beans::XMultiPropertySet > const * >(0) ), - ::getCppuType( static_cast< uno::Reference< beans::XFastPropertySet > const * >(0) ), - ::getCppuType( static_cast< uno::Reference< lang::XTypeProvider > const * >(0) ) ); - - return aTypes.getTypes(); -} - -//.......................................................................... -// cppu::OPropertySetHelper -uno::Reference< beans::XPropertySetInfo > SAL_CALL PropertySetHelper::getPropertySetInfo( ) - throw (uno::RuntimeException) -{ - return createPropertySetInfo(getInfoHelper()); -} - -//.......................................................................... -cppu::IPropertyArrayHelper & SAL_CALL PropertySetHelper::getInfoHelper() -{ - osl::MutexGuard aGuard( getBroadcastMutex() ); - if (!m_pHelper) - m_pHelper = newInfoHelper(); - - OSL_ENSURE(m_pHelper,"Derived class did not create new PropertyInfoHelper"); - if (!m_pHelper) - throw uno::RuntimeException(rtl::OUString::createFromAscii("No PropertyArrayHelper available"),*this); - - return *m_pHelper; -} - -//.......................................................................... -sal_Bool SAL_CALL PropertySetHelper::convertFastPropertyValue( - uno::Any & rConvertedValue, uno::Any & rOldValue, sal_Int32 nHandle, const uno::Any& rValue ) - throw (lang::IllegalArgumentException) -{ - this->getFastPropertyValue(rOldValue, nHandle); - rConvertedValue = rValue; - return rValue.isExtractableTo( rOldValue.getValueType() ); -} - -//.......................................................................... -void SAL_CALL ReadOnlyPropertySetHelper::setFastPropertyValue_NoBroadcast( - sal_Int32 /*nHandle*/, const uno::Any& /*rValue*/ ) - throw (uno::Exception) -{ - OSL_ENSURE(false, "Attempt to set value in read-only property set"); - throw beans::PropertyVetoException(rtl::OUString::createFromAscii("Attempt to set value in Read-Only property set"),*this); -} - -//.......................................................................... -sal_Bool SAL_CALL ReadOnlyPropertySetHelper::convertFastPropertyValue( - uno::Any & /*rConvertedValue*/, uno::Any & /*rOldValue*/, sal_Int32 /*nHandle*/, const uno::Any& /*rValue*/ ) - throw (lang::IllegalArgumentException) -{ - OSL_ENSURE(false, "Attempt to convert value in read-only property set"); - return false; -} -//.......................................................................... -//.......................................................................... - } // namespace apihelper -} // namespace extensions -//.......................................................................... - - diff --git a/extensions/source/config/ldap/propertysethelper.hxx b/extensions/source/config/ldap/propertysethelper.hxx deleted file mode 100644 index 0cb75262b942..000000000000 --- a/extensions/source/config/ldap/propertysethelper.hxx +++ /dev/null @@ -1,137 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: propertysethelper.hxx,v $ - * $Revision: 1.4 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#ifndef EXTENSIONS_MISC_PROPERTYSETHELPER_HXX -#define EXTENSIONS_MISC_PROPERTYSETHELPER_HXX - -#include -#include - -//.......................................................................... -namespace extensions { - namespace apihelper { -//.......................................................................... - namespace uno = com::sun::star::uno; - namespace lang = com::sun::star::lang; - namespace beans = com::sun::star::beans; -//.......................................................................... -class BroadcasterBase -{ - osl::Mutex m_aMutex; - cppu::OBroadcastHelper m_aBroadcastHelper; - -protected: - BroadcasterBase() : m_aMutex(), m_aBroadcastHelper(m_aMutex) {} - ~BroadcasterBase() {} - - osl::Mutex & getBroadcastMutex() { return m_aMutex; } - cppu::OBroadcastHelper & getBroadcastHelper() { return m_aBroadcastHelper; } -}; - -//.......................................................................... - -class PropertySetHelper : protected BroadcasterBase // must be first - , public cppu::OWeakObject - , public cppu::OPropertySetHelper // not copyable -{ -public: - PropertySetHelper(); - ~PropertySetHelper(); - - // XInterface - virtual uno::Any SAL_CALL queryInterface( uno::Type const & rType ) throw (uno::RuntimeException); - virtual void SAL_CALL acquire() throw (); - virtual void SAL_CALL release() throw (); - // XTypeProvider - virtual uno::Sequence< uno::Type > SAL_CALL getTypes() throw (uno::RuntimeException); - - // to be provided by derived classes - // virtual uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (uno::RuntimeException) = 0; - - // XPropertySet - virtual uno::Reference< beans::XPropertySetInfo > SAL_CALL - getPropertySetInfo( ) throw (uno::RuntimeException); - - -protected: -// new methods still to be overridden - virtual cppu::IPropertyArrayHelper * SAL_CALL newInfoHelper() = 0; - -// cppu::OPropertySetHelper interface -#if 0 // these methods still must be overridden - virtual cppu::IPropertyArrayHelper * SAL_CALL newInfoHelper() = 0; - - virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const uno::Any& rValue ) - throw (uno::Exception) = 0; - - virtual void SAL_CALL getFastPropertyValue( uno::Any& rValue, sal_Int32 nHandle ) const = 0; -#endif - virtual cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper(); - - // default implementation: does not do any conversion - virtual sal_Bool SAL_CALL convertFastPropertyValue( - uno::Any & rConvertedValue, uno::Any & rOldValue, - sal_Int32 nHandle, const uno::Any& rValue ) - throw (lang::IllegalArgumentException); -private: - cppu::IPropertyArrayHelper * m_pHelper; -}; -//.......................................................................... - -class ReadOnlyPropertySetHelper : public PropertySetHelper -{ -public: - ReadOnlyPropertySetHelper() {} - ~ReadOnlyPropertySetHelper() {} - -protected: -#if 0 // these methods still must be overridden - virtual cppu::IPropertyArrayHelper * SAL_CALL newInfoHelper() = 0; - - virtual void SAL_CALL getFastPropertyValue( uno::Any& rValue, sal_Int32 nHandle ) const = 0; -#endif - // default implementation: rejects any attempt to set a value - virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const uno::Any& rValue ) - throw (uno::Exception); - - // default implementation: rejects any attempt to do a conversion - virtual sal_Bool SAL_CALL convertFastPropertyValue( - uno::Any & rConvertedValue, uno::Any & rOldValue, - sal_Int32 nHandle, const uno::Any& rValue ) - throw (lang::IllegalArgumentException); -}; -//.......................................................................... - } // namespace apihelper -} // namespace extensions -//.......................................................................... - -#endif - - From 6c1c735ed9ac838b41648f12da2bced3864362eb Mon Sep 17 00:00:00 2001 From: sb Date: Fri, 2 Oct 2009 15:34:09 +0200 Subject: [PATCH 11/45] #i101955# re-introduced lost ldap_value_free call; minor clean up --- extensions/source/config/ldap/ldapaccess.cxx | 1 + extensions/source/config/ldap/ldapaccess.hxx | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/extensions/source/config/ldap/ldapaccess.cxx b/extensions/source/config/ldap/ldapaccess.cxx index 02a9910f082c..7d67871b2f01 100644 --- a/extensions/source/config/ldap/ldapaccess.cxx +++ b/extensions/source/config/ldap/ldapaccess.cxx @@ -222,6 +222,7 @@ void LdapConnection::initConnection() LdapData::value_type( rtl::OStringToOUString(attr, RTL_TEXTENCODING_ASCII_US), rtl::OStringToOUString(*values, RTL_TEXTENCODING_UTF8))); + (*s_p_value_free)(values); } attr = (*s_p_next_attribute)(mConnection, result.msg, ptr); } diff --git a/extensions/source/config/ldap/ldapaccess.hxx b/extensions/source/config/ldap/ldapaccess.hxx index 3951d8645e6d..321c54845a87 100644 --- a/extensions/source/config/ldap/ldapaccess.hxx +++ b/extensions/source/config/ldap/ldapaccess.hxx @@ -129,8 +129,6 @@ public: void loadModule(); static t_ldap_err2string s_p_err2string; - static t_ldap_value_free s_p_value_free; - static t_ldap_get_values s_p_get_values; private: void initConnection() @@ -151,6 +149,8 @@ private: LdapDefinition mLdapDefinition; static oslModule s_Ldap_Module; + static t_ldap_value_free s_p_value_free; + static t_ldap_get_values s_p_get_values; static t_ldap_unbind_s s_p_unbind_s; static t_ldap_simple_bind_s s_p_simple_bind_s; static t_ldap_set_option s_p_set_option; From 0516edd8931507e2cb2cb6a805cb4314ad3e0adf Mon Sep 17 00:00:00 2001 From: sb Date: Thu, 8 Oct 2009 16:33:02 +0200 Subject: [PATCH 12/45] #i101955# removed unused method (warned about by GCC) --- .../source/config/ldap/ldapuserprofilebe.cxx | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/extensions/source/config/ldap/ldapuserprofilebe.cxx b/extensions/source/config/ldap/ldapuserprofilebe.cxx index 2067f108a90a..2ae7cd485a7d 100644 --- a/extensions/source/config/ldap/ldapuserprofilebe.cxx +++ b/extensions/source/config/ldap/ldapuserprofilebe.cxx @@ -49,30 +49,6 @@ //============================================================================== namespace extensions { namespace config { namespace ldap { - -static void checkIOError( - osl::File::RC aErrorCode, - const rtl::OUString& aFileUrl) -{ - switch (aErrorCode) - { - case osl::File::E_None: // got it - { - - } - break; - default: - { - rtl::OUStringBuffer sMsg; - sMsg.appendAscii("LdapUserProfileBe: Cannot Read Meta-Configuration file:"); - sMsg.append(aFileUrl); - throw css::uno::RuntimeException(sMsg.makeStringAndClear(), - NULL); - } - } -} - -//------------------------------------------------------------------------------ LdapUserProfileBe::LdapUserProfileBe( const uno::Reference& xContext) : LdapProfileMutexHolder(), BackendBase(mMutex) From cad2c1a1e4ce5a4e511eac641651e82f8c2852c2 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Thu, 15 Oct 2009 18:23:29 -0400 Subject: [PATCH 13/45] Support slice settings in WriteZeroBytesToRecord(). --- extensions/source/config/ldap/ldapaccess.cxx | 15 +++++++++------ extensions/source/config/ldap/wrapldapinclude.hxx | 6 ++++++ 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/extensions/source/config/ldap/ldapaccess.cxx b/extensions/source/config/ldap/ldapaccess.cxx index a850a441c5fe..ee7505c8a518 100644 --- a/extensions/source/config/ldap/ldapaccess.cxx +++ b/extensions/source/config/ldap/ldapaccess.cxx @@ -315,14 +315,17 @@ void LdapConnection::loadModule() if ( !s_Ldap_Module ) { #if defined(WIN) || defined(WNT) - const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("nsldap32v50.dll")); +# define LIBLDAP "nsldap32v50.dll" #else -#ifdef WITH_OPENLDAP - const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("libldap.so")); -#else - const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("libldap50.so")); -#endif +# ifdef WITH_OPENLDAP +# define xstr(s) str(s) +# define str(s) #s +# define LIBLDAP "libldap-" xstr(LDAP_VENDOR_VERSION_MAJOR) "." xstr(LDAP_VENDOR_VERSION_MINOR) ".so." xstr(LDAP_VENDOR_VERSION_MAJOR) +# else +# define LIBLDAP "libldap50.so" +# endif #endif + const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM(LIBLDAP)); // load the dbtools library s_Ldap_Module = osl_loadModuleRelative(&thisModule, sModuleName.pData, 0); diff --git a/extensions/source/config/ldap/wrapldapinclude.hxx b/extensions/source/config/ldap/wrapldapinclude.hxx index 4c1bbdc350f8..b3b8d45e94d7 100644 --- a/extensions/source/config/ldap/wrapldapinclude.hxx +++ b/extensions/source/config/ldap/wrapldapinclude.hxx @@ -35,6 +35,12 @@ #ifdef WITH_OPENLDAP #include +#ifndef LDAP_API +# define LDAP_API(rt) rt +#endif +#ifndef LDAP_CALL +# define LDAP_CALL +#endif #else #ifndef LDAP_INCLUDED #define LDAP_INCLUDED From 79a4b8932e26b1319b907e0730cf404f733dfa7c Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Fri, 16 Oct 2009 20:30:58 -0400 Subject: [PATCH 14/45] Removed changes that are not associated with this CWS. --- extensions/source/config/ldap/ldapaccess.cxx | 15 ++++++--------- extensions/source/config/ldap/wrapldapinclude.hxx | 6 ------ 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/extensions/source/config/ldap/ldapaccess.cxx b/extensions/source/config/ldap/ldapaccess.cxx index ee7505c8a518..a850a441c5fe 100644 --- a/extensions/source/config/ldap/ldapaccess.cxx +++ b/extensions/source/config/ldap/ldapaccess.cxx @@ -315,17 +315,14 @@ void LdapConnection::loadModule() if ( !s_Ldap_Module ) { #if defined(WIN) || defined(WNT) -# define LIBLDAP "nsldap32v50.dll" + const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("nsldap32v50.dll")); #else -# ifdef WITH_OPENLDAP -# define xstr(s) str(s) -# define str(s) #s -# define LIBLDAP "libldap-" xstr(LDAP_VENDOR_VERSION_MAJOR) "." xstr(LDAP_VENDOR_VERSION_MINOR) ".so." xstr(LDAP_VENDOR_VERSION_MAJOR) -# else -# define LIBLDAP "libldap50.so" -# endif +#ifdef WITH_OPENLDAP + const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("libldap.so")); +#else + const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("libldap50.so")); +#endif #endif - const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM(LIBLDAP)); // load the dbtools library s_Ldap_Module = osl_loadModuleRelative(&thisModule, sModuleName.pData, 0); diff --git a/extensions/source/config/ldap/wrapldapinclude.hxx b/extensions/source/config/ldap/wrapldapinclude.hxx index b3b8d45e94d7..4c1bbdc350f8 100644 --- a/extensions/source/config/ldap/wrapldapinclude.hxx +++ b/extensions/source/config/ldap/wrapldapinclude.hxx @@ -35,12 +35,6 @@ #ifdef WITH_OPENLDAP #include -#ifndef LDAP_API -# define LDAP_API(rt) rt -#endif -#ifndef LDAP_CALL -# define LDAP_CALL -#endif #else #ifndef LDAP_INCLUDED #define LDAP_INCLUDED From cbb9a21b81b0753fac59d4e12963492a3c1bbcdc Mon Sep 17 00:00:00 2001 From: Joachim Lingner Date: Tue, 8 Dec 2009 15:52:14 +0100 Subject: [PATCH 15/45] jl145: #i97653# subject name of certificate are not correct displayed if they use special characters --- .../mscrypt/x509certificate_mscryptimpl.cxx | 34 +++++++++---------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx index e01fe5109190..eeca856c4d84 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx @@ -263,24 +263,27 @@ sal_Int16 SAL_CALL X509Certificate_MSCryptImpl :: getVersion() throw ( ::com::su } } -::rtl::OUString SAL_CALL X509Certificate_MSCryptImpl :: getSubjectName() throw ( ::com::sun::star::uno::RuntimeException) { - if( m_pCertContext != NULL && m_pCertContext->pCertInfo != NULL ) { - char* subject ; +::rtl::OUString SAL_CALL X509Certificate_MSCryptImpl :: getSubjectName() throw ( ::com::sun::star::uno::RuntimeException) +{ + if( m_pCertContext != NULL && m_pCertContext->pCertInfo != NULL ) + { + wchar_t* subject ; DWORD cbSubject ; - cbSubject = CertNameToStr( + cbSubject = CertNameToStrW( X509_ASN_ENCODING | PKCS_7_ASN_ENCODING , &( m_pCertContext->pCertInfo->Subject ), CERT_X500_NAME_STR | CERT_NAME_STR_REVERSE_FLAG , NULL, 0 ) ; - if( cbSubject != 0 ) { - subject = new char[ cbSubject ] ; + if( cbSubject != 0 ) + { + subject = new wchar_t[ cbSubject ] ; if( subject == NULL ) throw RuntimeException() ; - cbSubject = CertNameToStr( + cbSubject = CertNameToStrW( X509_ASN_ENCODING | PKCS_7_ASN_ENCODING , &( m_pCertContext->pCertInfo->Subject ), CERT_X500_NAME_STR | CERT_NAME_STR_REVERSE_FLAG , @@ -292,22 +295,17 @@ sal_Int16 SAL_CALL X509Certificate_MSCryptImpl :: getVersion() throw ( ::com::su throw RuntimeException() ; } - // By CP , for correct encoding - sal_uInt16 encoding ; - rtl_Locale *pLocale = NULL ; - osl_getProcessLocale( &pLocale ) ; - encoding = osl_getTextEncodingFromLocale( pLocale ) ; - // CP end - - if(subject[cbSubject-1] == 0) cbSubject--; //delimit the last 0x00; - OUString xSubject(subject , cbSubject ,encoding ) ; //By CP + OUString xSubject(subject); delete [] subject ; return replaceTagSWithTagST(xSubject); - } else { + } else + { return OUString() ; } - } else { + } + else + { return OUString() ; } } From 55d7592433bf4b70bdd4bcbe957eabf9052de44e Mon Sep 17 00:00:00 2001 From: sb Date: Wed, 9 Dec 2009 14:34:43 +0100 Subject: [PATCH 16/45] sb111: #i107556# do not depend on order of XNameAccess::getElementNames; removed some unused com.sun.star.wizards code --- .../sun/star/wizards/common/Configuration.java | 6 ------ .../com/sun/star/wizards/table/CGCategory.java | 6 ++++-- .../sun/star/wizards/table/FieldDescription.java | 3 --- .../sun/star/wizards/table/ScenarioSelector.java | 16 ++-------------- 4 files changed, 6 insertions(+), 25 deletions(-) diff --git a/wizards/com/sun/star/wizards/common/Configuration.java b/wizards/com/sun/star/wizards/common/Configuration.java index ead63de88183..36421599da9a 100644 --- a/wizards/com/sun/star/wizards/common/Configuration.java +++ b/wizards/com/sun/star/wizards/common/Configuration.java @@ -368,12 +368,6 @@ public abstract class Configuration } } - public static XNameAccess getChildNodebyIndex(Object _oNode, int _index) - { - XNameAccess xNameAccessNode = (XNameAccess) UnoRuntime.queryInterface(XNameAccess.class, _oNode); - return getChildNodebyIndex(xNameAccessNode, _index); - } - public static XNameAccess getChildNodebyIndex(XNameAccess _xNameAccess, int _index) { try diff --git a/wizards/com/sun/star/wizards/table/CGCategory.java b/wizards/com/sun/star/wizards/table/CGCategory.java index 4179011cb368..06c8a6b28b23 100644 --- a/wizards/com/sun/star/wizards/table/CGCategory.java +++ b/wizards/com/sun/star/wizards/table/CGCategory.java @@ -59,12 +59,14 @@ public class CGCategory xMSF = _xMSF; } - public void initialize(int _index) + public void initialize(String category) { try { oconfigView = Configuration.getConfigurationRoot(xMSF, CGROOTPATH, false); //business/Tables - xNameAccessCurBusinessNode = Configuration.getChildNodebyIndex(oconfigView, _index); + xNameAccessCurBusinessNode = Configuration.getChildNodebyName( + UnoRuntime.queryInterface(XNameAccess.class, oconfigView), + category); } catch (Exception e) { diff --git a/wizards/com/sun/star/wizards/table/FieldDescription.java b/wizards/com/sun/star/wizards/table/FieldDescription.java index 7c4b2bcaa409..8d75de343c11 100644 --- a/wizards/com/sun/star/wizards/table/FieldDescription.java +++ b/wizards/com/sun/star/wizards/table/FieldDescription.java @@ -42,8 +42,6 @@ import com.sun.star.wizards.common.Properties; public class FieldDescription { - - int category; private String tablename = ""; // String fieldname; private String keyname; @@ -63,7 +61,6 @@ public class FieldDescription { xMSF = _xMSF; aLocale = _aLocale; - category = _curscenarioselector.getCategory(); tablename = _curscenarioselector.getTableName(); Name = _fieldname; keyname = _keyname; diff --git a/wizards/com/sun/star/wizards/table/ScenarioSelector.java b/wizards/com/sun/star/wizards/table/ScenarioSelector.java index cf0389b84ff3..831c4e7d5a35 100644 --- a/wizards/com/sun/star/wizards/table/ScenarioSelector.java +++ b/wizards/com/sun/star/wizards/table/ScenarioSelector.java @@ -168,19 +168,6 @@ public class ScenarioSelector extends FieldSelection implements XItemListener, X initializeCategory(BUSINESS); } - public int getCategory() - { - if (optBusiness.getState()) - { - curcategory = BUSINESS; - } - else - { - curcategory = PRIVATE; - } - return curcategory; - } - public void selectCategory() { if (optBusiness.getState()) @@ -197,7 +184,8 @@ public class ScenarioSelector extends FieldSelection implements XItemListener, X { try { - oCGCategory.initialize(_iCategory); + oCGCategory.initialize( + _iCategory == PRIVATE ? "private" : "business"); xTableListBox.removeItems((short) 0, xTableListBox.getItemCount()); xTableListBox.addItems(oCGCategory.getTableNames(), (short) _iCategory); initializeTable(0); From 69ea879c3dceb464f3d01ae3ecbd178bd77de96a Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Thu, 10 Dec 2009 18:09:38 +0100 Subject: [PATCH 17/45] #i107450#: remove SdrObject dependency from OutlinerForwarder; EditEnginePool for ItempropertySet of EditObjects; split unoprov.hxx+cxx --- forms/source/richtext/richtextunowrapper.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/forms/source/richtext/richtextunowrapper.cxx b/forms/source/richtext/richtextunowrapper.cxx index f5a9d178d32c..fa5733ef488c 100644 --- a/forms/source/richtext/richtextunowrapper.cxx +++ b/forms/source/richtext/richtextunowrapper.cxx @@ -38,6 +38,8 @@ #include #include #include +#include +#include //........................................................................ namespace frm @@ -64,7 +66,7 @@ namespace frm { MAP_CHAR_LEN("ParaUserDefinedAttributes"), EE_PARA_XMLATTRIBS, &::getCppuType( static_cast< const Reference< XNameContainer >* >( NULL ) ), 0, 0 }, { NULL, 0, 0, NULL, 0, 0 } }; - static SvxItemPropertySet aTextEnginePropertySet( aTextEnginePropertyMap ); + static SvxItemPropertySet aTextEnginePropertySet( aTextEnginePropertyMap, SdrObject::GetGlobalDrawObjectItemPool() ); return &aTextEnginePropertySet; } } From cce4c0607de1a4b63728812500c20c4b099c8214 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Thu, 10 Dec 2009 18:36:58 +0100 Subject: [PATCH 18/45] #i107450#: move GetLanguageString to class SvtLanguageTable --- cui/source/dialogs/SpellDialog.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx index 0e69585a4ff4..a583a708c8b0 100644 --- a/cui/source/dialogs/SpellDialog.cxx +++ b/cui/source/dialogs/SpellDialog.cxx @@ -73,6 +73,7 @@ #include #include #include "treeopt.hxx" +#include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; @@ -927,7 +928,7 @@ void SpellDialog::SetTitle_Impl(LanguageType nLang) sTitle = m_sTitleSpellingGrammar; } } - sTitle.SearchAndReplaceAscii( "$LANGUAGE ($LOCATION)", ::GetLanguageString(nLang) ); + sTitle.SearchAndReplaceAscii( "$LANGUAGE ($LOCATION)", SvtLanguageTable::GetLanguageString(nLang) ); SetText( sTitle ); } /*------------------------------------------------------------------------- From 5a85f2a075030f9f15e5d48ed0a82dbf5eb55d68 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Thu, 10 Dec 2009 18:44:22 +0100 Subject: [PATCH 19/45] #i107450#: split up the two different ways to detect a module field unit --- cui/source/tabpages/border.cxx | 2 +- cui/source/tabpages/connect.cxx | 2 +- cui/source/tabpages/grfpage.cxx | 4 ++-- cui/source/tabpages/labdlg.cxx | 2 +- cui/source/tabpages/measure.cxx | 2 +- cui/source/tabpages/page.cxx | 2 +- cui/source/tabpages/paragrph.cxx | 2 +- cui/source/tabpages/swpossizetabpage.cxx | 2 +- cui/source/tabpages/tabstpge.cxx | 2 +- cui/source/tabpages/textanim.cxx | 2 +- cui/source/tabpages/textattr.cxx | 2 +- cui/source/tabpages/tparea.cxx | 2 +- cui/source/tabpages/tphatch.cxx | 2 +- cui/source/tabpages/tpline.cxx | 2 +- cui/source/tabpages/tplnedef.cxx | 2 +- cui/source/tabpages/tpshadow.cxx | 2 +- cui/source/tabpages/transfrm.cxx | 6 +++--- 17 files changed, 20 insertions(+), 20 deletions(-) diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx index 31191b4dffe1..955e297f6515 100644 --- a/cui/source/tabpages/border.cxx +++ b/cui/source/tabpages/border.cxx @@ -239,7 +239,7 @@ SvxBorderTabPage::SvxBorderTabPage( Window* pParent, mbUseMarginItem = rCoreAttrs.GetItemState(GetWhich(SID_ATTR_ALIGN_MARGIN),TRUE) != SFX_ITEM_UNKNOWN; // Metrik einstellen - FieldUnit eFUnit = GetModuleFieldUnit( &rCoreAttrs ); + FieldUnit eFUnit = GetModuleFieldUnit( rCoreAttrs ); if( mbUseMarginItem ) { diff --git a/cui/source/tabpages/connect.cxx b/cui/source/tabpages/connect.cxx index cd62234aeb2d..9d354ce71da5 100644 --- a/cui/source/tabpages/connect.cxx +++ b/cui/source/tabpages/connect.cxx @@ -133,7 +133,7 @@ SvxConnectionPage::SvxConnectionPage( Window* pWindow, const SfxItemSet& rInAttr FillTypeLB(); - const FieldUnit eFUnit = GetModuleFieldUnit( &rInAttrs ); + const FieldUnit eFUnit = GetModuleFieldUnit( rInAttrs ); SetFieldUnit( aMtrFldHorz1, eFUnit ); SetFieldUnit( aMtrFldHorz2, eFUnit ); SetFieldUnit( aMtrFldVert1, eFUnit ); diff --git a/cui/source/tabpages/grfpage.cxx b/cui/source/tabpages/grfpage.cxx index 5afb0e817aa3..d32b264c3715 100644 --- a/cui/source/tabpages/grfpage.cxx +++ b/cui/source/tabpages/grfpage.cxx @@ -93,7 +93,7 @@ SvxGrfCropPage::SvxGrfCropPage ( Window *pParent, const SfxItemSet &rSet ) SetExchangeSupport(); // set the correct metric - const FieldUnit eMetric = GetModuleFieldUnit( &rSet ); + const FieldUnit eMetric = GetModuleFieldUnit( rSet ); SetFieldUnit( aWidthMF, eMetric ); SetFieldUnit( aHeightMF, eMetric ); @@ -698,7 +698,7 @@ void SvxGrfCropPage::GraphicHasChanged( BOOL bFound ) aBottomMF.SetSpinSize(nSpin); //Originalgroesse anzeigen - const FieldUnit eMetric = GetModuleFieldUnit( &GetItemSet() ); + const FieldUnit eMetric = GetModuleFieldUnit( GetItemSet() ); MetricField aFld(this, WB_HIDE); SetFieldUnit( aFld, eMetric ); diff --git a/cui/source/tabpages/labdlg.cxx b/cui/source/tabpages/labdlg.cxx index a311fadca64b..23e947d79222 100644 --- a/cui/source/tabpages/labdlg.cxx +++ b/cui/source/tabpages/labdlg.cxx @@ -252,7 +252,7 @@ void SvxCaptionTabPage::Reset( const SfxItemSet& ) //------------Metrik einstellen----------------------------- - FieldUnit eFUnit = GetModuleFieldUnit( &rOutAttrs ); + FieldUnit eFUnit = GetModuleFieldUnit( rOutAttrs ); switch ( eFUnit ) { diff --git a/cui/source/tabpages/measure.cxx b/cui/source/tabpages/measure.cxx index 4b00f3289338..fbe40bebdad0 100644 --- a/cui/source/tabpages/measure.cxx +++ b/cui/source/tabpages/measure.cxx @@ -137,7 +137,7 @@ SvxMeasurePage::SvxMeasurePage( Window* pWindow, const SfxItemSet& rInAttrs ) : FreeResource(); - const FieldUnit eFUnit = GetModuleFieldUnit( &rInAttrs ); + const FieldUnit eFUnit = GetModuleFieldUnit( rInAttrs ); SetFieldUnit( aMtrFldLineDist, eFUnit ); SetFieldUnit( aMtrFldHelplineOverhang, eFUnit ); SetFieldUnit( aMtrFldHelplineDist, eFUnit ); diff --git a/cui/source/tabpages/page.cxx b/cui/source/tabpages/page.cxx index 27db31f684fa..2b9a508e060c 100644 --- a/cui/source/tabpages/page.cxx +++ b/cui/source/tabpages/page.cxx @@ -347,7 +347,7 @@ SvxPageDescPage::SvxPageDescPage( Window* pParent, const SfxItemSet& rAttr ) : } Init_Impl(); - FieldUnit eFUnit = GetModuleFieldUnit( &rAttr ); + FieldUnit eFUnit = GetModuleFieldUnit( rAttr ); SetFieldUnit( aLeftMarginEdit, eFUnit ); SetFieldUnit( aRightMarginEdit, eFUnit ); SetFieldUnit( aTopMarginEdit, eFUnit ); diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx index 8800e63d0f86..3f3021162db9 100644 --- a/cui/source/tabpages/paragrph.cxx +++ b/cui/source/tabpages/paragrph.cxx @@ -440,7 +440,7 @@ void SvxStdParagraphTabPage::Reset( const SfxItemSet& rSet ) String aEmpty; // Metrik einstellen - FieldUnit eFUnit = GetModuleFieldUnit( &rSet ); + FieldUnit eFUnit = GetModuleFieldUnit( rSet ); SetFieldUnit( aLeftIndent, eFUnit ); SetFieldUnit( aRightIndent, eFUnit ); SetFieldUnit( aFLineIndent, eFUnit ); diff --git a/cui/source/tabpages/swpossizetabpage.cxx b/cui/source/tabpages/swpossizetabpage.cxx index 488eb057418f..0906a49d8937 100644 --- a/cui/source/tabpages/swpossizetabpage.cxx +++ b/cui/source/tabpages/swpossizetabpage.cxx @@ -589,7 +589,7 @@ SvxSwPosSizeTabPage::SvxSwPosSizeTabPage( Window* pParent, const SfxItemSet& rIn m_bIsInRightToLeft(false) { FreeResource(); - FieldUnit eDlgUnit = GetModuleFieldUnit( &rInAttrs ); + FieldUnit eDlgUnit = GetModuleFieldUnit( rInAttrs ); SetFieldUnit( m_aHoriByMF, eDlgUnit, TRUE ); SetFieldUnit( m_aVertByMF, eDlgUnit, TRUE ); SetFieldUnit( m_aWidthMF , eDlgUnit, TRUE ); diff --git a/cui/source/tabpages/tabstpge.cxx b/cui/source/tabpages/tabstpge.cxx index 12b6fd870419..a00a697eaae3 100644 --- a/cui/source/tabpages/tabstpge.cxx +++ b/cui/source/tabpages/tabstpge.cxx @@ -153,7 +153,7 @@ SvxTabulatorTabPage::SvxTabulatorTabPage( Window* pParent, // Metrik einstellen - FieldUnit eFUnit = GetModuleFieldUnit( &rAttr ); + FieldUnit eFUnit = GetModuleFieldUnit( rAttr ); SetFieldUnit( aTabBox, eFUnit ); // Buttons initialisieren diff --git a/cui/source/tabpages/textanim.cxx b/cui/source/tabpages/textanim.cxx index 3c7bdbcd4653..07604a8a8bc0 100644 --- a/cui/source/tabpages/textanim.cxx +++ b/cui/source/tabpages/textanim.cxx @@ -140,7 +140,7 @@ SvxTextAnimationPage::SvxTextAnimationPage( Window* pWindow, const SfxItemSet& r { FreeResource(); - eFUnit = GetModuleFieldUnit( &rInAttrs ); + eFUnit = GetModuleFieldUnit( rInAttrs ); SfxItemPool* pPool = rOutAttrs.GetPool(); DBG_ASSERT( pPool, "Wo ist der Pool" ); eUnit = pPool->GetMetric( SDRATTR_TEXT_LEFTDIST ); diff --git a/cui/source/tabpages/textattr.cxx b/cui/source/tabpages/textattr.cxx index 6c81356cb334..b008fbe5b625 100644 --- a/cui/source/tabpages/textattr.cxx +++ b/cui/source/tabpages/textattr.cxx @@ -133,7 +133,7 @@ SvxTextAttrPage::SvxTextAttrPage( Window* pWindow, const SfxItemSet& rInAttrs ) { FreeResource(); - FieldUnit eFUnit = GetModuleFieldUnit( &rInAttrs ); + FieldUnit eFUnit = GetModuleFieldUnit( rInAttrs ); SetFieldUnit( aMtrFldLeft, eFUnit ); SetFieldUnit( aMtrFldRight, eFUnit ); SetFieldUnit( aMtrFldTop, eFUnit ); diff --git a/cui/source/tabpages/tparea.cxx b/cui/source/tabpages/tparea.cxx index ddeb02a20c1d..ec156bb5e654 100644 --- a/cui/source/tabpages/tparea.cxx +++ b/cui/source/tabpages/tparea.cxx @@ -712,7 +712,7 @@ SvxAreaTabPage::SvxAreaTabPage( Window* pParent, const SfxItemSet& rInAttrs ) : SetExchangeSupport(); // set Metrics - eFUnit = GetModuleFieldUnit( &rInAttrs ); + eFUnit = GetModuleFieldUnit( rInAttrs ); switch ( eFUnit ) { diff --git a/cui/source/tabpages/tphatch.cxx b/cui/source/tabpages/tphatch.cxx index 006099f1fde6..f93056e10028 100644 --- a/cui/source/tabpages/tphatch.cxx +++ b/cui/source/tabpages/tphatch.cxx @@ -117,7 +117,7 @@ SvxHatchTabPage::SvxHatchTabPage SetExchangeSupport(); // Metrik einstellen - FieldUnit eFUnit = GetModuleFieldUnit( &rInAttrs ); + FieldUnit eFUnit = GetModuleFieldUnit( rInAttrs ); switch ( eFUnit ) { diff --git a/cui/source/tabpages/tpline.cxx b/cui/source/tabpages/tpline.cxx index 09a5daadfe1d..2b42b27fa02b 100644 --- a/cui/source/tabpages/tpline.cxx +++ b/cui/source/tabpages/tpline.cxx @@ -174,7 +174,7 @@ SvxLineTabPage::SvxLineTabPage SetExchangeSupport(); // Metrik einstellen - FieldUnit eFUnit = GetModuleFieldUnit( &rInAttrs ); + FieldUnit eFUnit = GetModuleFieldUnit( rInAttrs ); switch ( eFUnit ) { diff --git a/cui/source/tabpages/tplnedef.cxx b/cui/source/tabpages/tplnedef.cxx index f3d92be73278..e39fe7652e9b 100644 --- a/cui/source/tabpages/tplnedef.cxx +++ b/cui/source/tabpages/tplnedef.cxx @@ -122,7 +122,7 @@ SvxLineDefTabPage::SvxLineDefTabPage SetExchangeSupport(); // Metrik einstellen - eFUnit = GetModuleFieldUnit( &rInAttrs ); + eFUnit = GetModuleFieldUnit( rInAttrs ); switch ( eFUnit ) { diff --git a/cui/source/tabpages/tpshadow.cxx b/cui/source/tabpages/tpshadow.cxx index 48d6d627230d..d5e30a087190 100644 --- a/cui/source/tabpages/tpshadow.cxx +++ b/cui/source/tabpages/tpshadow.cxx @@ -100,7 +100,7 @@ SvxShadowTabPage::SvxShadowTabPage( Window* pParent, const SfxItemSet& rInAttrs SetExchangeSupport(); // Metrik einstellen - FieldUnit eFUnit = GetModuleFieldUnit( &rInAttrs ); + FieldUnit eFUnit = GetModuleFieldUnit( rInAttrs ); switch ( eFUnit ) { diff --git a/cui/source/tabpages/transfrm.cxx b/cui/source/tabpages/transfrm.cxx index 57e82898a947..298b12b207f1 100644 --- a/cui/source/tabpages/transfrm.cxx +++ b/cui/source/tabpages/transfrm.cxx @@ -259,7 +259,7 @@ SvxAngleTabPage::SvxAngleTabPage( Window* pParent, const SfxItemSet& rInAttrs ) void SvxAngleTabPage::Construct() { DBG_ASSERT(pView, "No valid view (!)"); - eDlgUnit = GetModuleFieldUnit(&GetItemSet()); + eDlgUnit = GetModuleFieldUnit(GetItemSet()); SetFieldUnit(aMtrPosX, eDlgUnit, TRUE); SetFieldUnit(aMtrPosY, eDlgUnit, TRUE); @@ -545,7 +545,7 @@ void SvxSlantTabPage::Construct() { // get the range DBG_ASSERT(pView, "no valid view (!)"); - eDlgUnit = GetModuleFieldUnit(&GetItemSet()); + eDlgUnit = GetModuleFieldUnit(GetItemSet()); SetFieldUnit(aMtrRadius, eDlgUnit, TRUE); { // #i75273# @@ -776,7 +776,7 @@ void SvxPositionSizeTabPage::Construct() { // get range and work area DBG_ASSERT( mpView, "no valid view (!)" ); - meDlgUnit = GetModuleFieldUnit( &GetItemSet() ); + meDlgUnit = GetModuleFieldUnit( GetItemSet() ); SetFieldUnit( maMtrPosX, meDlgUnit, TRUE ); SetFieldUnit( maMtrPosY, meDlgUnit, TRUE ); SetFieldUnit( maMtrWidth, meDlgUnit, TRUE ); From 557dd8031d3b8221e2664a8149401226a67d0f08 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Thu, 10 Dec 2009 19:12:58 +0100 Subject: [PATCH 20/45] #i107450#: move ThesaurusDialog and HyphenWordDialog to cui --- cui/source/dialogs/hyphen.cxx | 516 +++++++++++++++++++++++++++++++++ cui/source/dialogs/hyphen.hrc | 48 +++ cui/source/dialogs/hyphen.src | 146 ++++++++++ cui/source/dialogs/makefile.mk | 4 + cui/source/dialogs/thesdlg.cxx | 494 +++++++++++++++++++++++++++++++ cui/source/dialogs/thesdlg.hrc | 62 ++++ cui/source/dialogs/thesdlg.src | 211 ++++++++++++++ cui/source/factory/dlgfact.cxx | 51 ++++ cui/source/factory/dlgfact.hxx | 26 +- cui/source/inc/cuires.hrc | 4 + cui/source/inc/helpid.hrc | 5 +- cui/source/inc/hyphen.hxx | 122 ++++++++ cui/source/inc/thesdlg.hxx | 124 ++++++++ 13 files changed, 1810 insertions(+), 3 deletions(-) create mode 100644 cui/source/dialogs/hyphen.cxx create mode 100644 cui/source/dialogs/hyphen.hrc create mode 100644 cui/source/dialogs/hyphen.src create mode 100644 cui/source/dialogs/thesdlg.cxx create mode 100644 cui/source/dialogs/thesdlg.hrc create mode 100644 cui/source/dialogs/thesdlg.src create mode 100644 cui/source/inc/hyphen.hxx create mode 100644 cui/source/inc/thesdlg.hxx diff --git a/cui/source/dialogs/hyphen.cxx b/cui/source/dialogs/hyphen.cxx new file mode 100644 index 000000000000..dca6c2ff6dcd --- /dev/null +++ b/cui/source/dialogs/hyphen.cxx @@ -0,0 +1,516 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: hyphen.cxx,v $ + * $Revision: 1.14 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_cui.hxx" + +// include --------------------------------------------------------------- +#include +#include +#include +#include +#include "cuires.hrc" +#include "hyphen.hrc" +#include +#include "hyphen.hxx" +#include +#include +#include +#include +#include +#include "dialmgr.hxx" + +using namespace ::com::sun::star; +using namespace ::com::sun::star::uno; +using namespace ::com::sun::star::beans; +using namespace ::com::sun::star::linguistic2; + +#undef S2U +#undef U2S +//#define S2U(s) StringToOUString(s, CHARSET_SYSTEM) +//#define U2S(s) OUStringToString(s, CHARSET_SYSTEM) + +// define ---------------------------------------------------------------- + +#define HYPHHERE '-' +#define CONTINUE_HYPH USHRT_MAX + +// Dies ist nur ein Hack, weil an dieser Stelle das extern char aus hmwrap +// nicht bekannt ist, wird demnaechst in hmwrap durch ein define ersetzt. +#define SW_SOFT_HYPHEN '=' + +// class SvxHyphenEdit --------------------------------------------------- + +SvxHyphenEdit::SvxHyphenEdit( Window* pParent, const ResId& rResId ) : + + Edit( pParent, rResId ) +{ +} + +// ----------------------------------------------------------------------- + +void SvxHyphenEdit::KeyInput( const KeyEvent& rKEvt ) +{ +// sal_uInt16 nMod = rKEvt.GetKeyCode().GetModifier(); + sal_uInt16 nCode = rKEvt.GetKeyCode().GetCode(); + + switch ( nCode ) + { + case KEY_LEFT: + ( (SvxHyphenWordDialog*)GetParent() )->SelLeft(); + break; + + case KEY_RIGHT: + ( (SvxHyphenWordDialog*)GetParent() )->SelRight(); + break; + + case KEY_TAB: + case KEY_ESCAPE: + case KEY_RETURN: + Edit::KeyInput(rKEvt); + break; + default: + Control::KeyInput( rKEvt ); // An den Dialog weiterleiten + break; + } +} + +// class SvxHyphenWordDialog --------------------------------------------- + +SvxHyphenWordDialog::SvxHyphenWordDialog( const String &rWord, LanguageType nLang, + Window* pParent, + Reference< XHyphenator > &xHyphen, + SvxSpellWrapper* pWrapper ) : + SfxModalDialog( pParent, CUI_RES( RID_SVXDLG_HYPHENATE ) ), + + aWordFT ( this, CUI_RES( FT_WORD ) ), + aWordEdit ( this, CUI_RES( ED_WORD ) ), + aLeftBtn ( this, CUI_RES( BTN_LEFT ) ), + aRightBtn ( this, CUI_RES( BTN_RIGHT ) ), + aOkBtn ( this, CUI_RES( BTN_HYPH_CUT ) ), + aCancelBtn ( this, CUI_RES( BTN_HYPH_CANCEL ) ), + aContBtn ( this, CUI_RES( BTN_HYPH_CONTINUE ) ), + aDelBtn ( this, CUI_RES( BTN_HYPH_DELETE ) ), + aHelpBtn ( this, CUI_RES( BTN_HYPH_HELP ) ), + aLabel ( GetText() ), + pHyphWrapper ( pWrapper ), + xHyphenator ( xHyphen ), + aActWord ( rWord ), + nActLanguage ( nLang ), + nHyphPos ( 0 ), + nOldPos ( 0 ), + bBusy ( sal_False ) +{ + aContBtn.SetClickHdl( + LINK( this, SvxHyphenWordDialog, ContinueHdl_Impl ) ); + aOkBtn.SetClickHdl( LINK( this, SvxHyphenWordDialog, CutHdl_Impl ) ); + aDelBtn.SetClickHdl( LINK( this, SvxHyphenWordDialog, DeleteHdl_Impl ) ); + aCancelBtn.SetClickHdl( + LINK( this, SvxHyphenWordDialog, CancelHdl_Impl ) ); + aLeftBtn.SetClickHdl( LINK( this, SvxHyphenWordDialog, Left_Impl ) ); + aRightBtn.SetClickHdl( LINK( this, SvxHyphenWordDialog, Right_Impl ) ); + + aWordEdit.SetGetFocusHdl( + LINK( this, SvxHyphenWordDialog, GetFocusHdl_Impl ) ); + + Reference< XHyphenatedWord > xHyphWord( pWrapper ? + pWrapper->GetLast() : Reference< XInterface > () , UNO_QUERY ); + DBG_ASSERT(xHyphWord.is(), "missing hyphenated word"); + nMaxHyphenationPos = xHyphWord.is() ? xHyphWord->getHyphenationPos() : 0; + SetLabel_Impl( nLang ); + + InitControls_Impl(); + aWordEdit.GrabFocus(); + + FreeResource(); + + // disable controls if service is not available + if (!xHyphenator.is()) + Enable( sal_False ); +} + +// ----------------------------------------------------------------------- + +void SvxHyphenWordDialog::SelLeft() +{ + String aTxt( aWordEdit.GetText() ); + + for ( xub_StrLen i = nOldPos + 1; i-- > 0 ; ) + { + DBG_ASSERT(i <= aTxt.Len(), "index out of range"); + if( aTxt.GetChar( i ) == sal_Unicode( SW_SOFT_HYPHEN ) ) + { + aTxt.SetChar( i, sal_Unicode( HYPHHERE ) ); + + if ( nOldPos != 0 && nOldPos != aTxt.Len() ) + aTxt.SetChar( nOldPos, sal_Unicode( SW_SOFT_HYPHEN ) ); + nOldPos = i; + aWordEdit.SetText( aTxt ); + aWordEdit.GrabFocus(); + aWordEdit.SetSelection( Selection( i, i + 1 ) ); + break; + } + } + nHyphPos = GetHyphIndex_Impl(); + EnableLRBtn_Impl(); +} + +// ----------------------------------------------------------------------- + +void SvxHyphenWordDialog::SelRight() +{ + String aTxt( aWordEdit.GetText() ); + + for ( xub_StrLen i = nOldPos + 1; i < aTxt.Len(); ++i ) + { + if( aTxt.GetChar( i ) == sal_Unicode( SW_SOFT_HYPHEN ) ) + { + aTxt.SetChar( i, sal_Unicode( HYPHHERE ) ); + + if ( nOldPos != 0 && nOldPos != aTxt.Len() ) + aTxt.SetChar( nOldPos, sal_Unicode( SW_SOFT_HYPHEN ) ); + nOldPos = i; + aWordEdit.SetText( aTxt ); + aWordEdit.GrabFocus(); + aWordEdit.SetSelection( Selection( i, i + 1 ) ); + break; + } + } + nHyphPos = GetHyphIndex_Impl(); + EnableLRBtn_Impl(); +} + +// ----------------------------------------------------------------------- + +void SvxHyphenWordDialog::EnableLRBtn_Impl() +{ + String aTxt( aWordEdit.GetText() ); + xub_StrLen nLen = aTxt.Len(); + xub_StrLen i; + + aRightBtn.Disable(); + for ( i = nOldPos + 2; i < nLen; ++i ) + { + if ( aTxt.GetChar( i ) == sal_Unicode( SW_SOFT_HYPHEN ) ) + { + aRightBtn.Enable(); + break; + } + } + + DBG_ASSERT(nOldPos < aTxt.Len(), "nOldPos out of range"); + if (nOldPos >= aTxt.Len()) + nOldPos = aTxt.Len() - 1; + aLeftBtn.Disable(); + for ( i = nOldPos; i-- > 0; ) + { + if ( aTxt.GetChar( i ) == sal_Unicode( SW_SOFT_HYPHEN ) ) + { + aLeftBtn.Enable(); + break; + } + } +} + +// ----------------------------------------------------------------------- + + +void SvxHyphenWordDialog::SetLabel_Impl( LanguageType nLang ) +{ + String aLangStr( SvtLanguageTable::GetLanguageString( nLang ) ); + String aTmp( aLabel ); + aTmp.AppendAscii( RTL_CONSTASCII_STRINGPARAM( " (" ) ); + aTmp.Append( aLangStr ); + aTmp.Append( sal_Unicode( ')' ) ); + SetText( aTmp ); +} + +// ----------------------------------------------------------------------- + +String SvxHyphenWordDialog::EraseUnusableHyphens_Impl( + Reference< XPossibleHyphens > &rxPossHyph, + sal_uInt16 _nMaxHyphenationPos ) +{ + // returns a String showing only those hyphen positions which will result + // in a line break if hyphenation is done there + + String aTxt; + DBG_ASSERT(rxPossHyph.is(), "missing possible hyphens"); + if (rxPossHyph.is()) + { + aTxt = String( rxPossHyph->getPossibleHyphens() ); + + Sequence< sal_Int16 > aHyphenationPositions( + rxPossHyph->getHyphenationPositions() ); + sal_Int32 nLen = aHyphenationPositions.getLength(); + const sal_Int16 *pHyphenationPos = aHyphenationPositions.getConstArray(); + + // find position nIdx after which all hyphen positions are unusable + xub_StrLen nIdx = STRING_NOTFOUND, + nPos; + if (nLen) + { + xub_StrLen nStart = 0; + for (sal_Int32 i = 0; i < nLen; ++i) + { + if (pHyphenationPos[i] > _nMaxHyphenationPos) + break; + else + { + // find corresponding hyphen pos in string + nPos = aTxt.Search( sal_Unicode( SW_SOFT_HYPHEN ), nStart ); + + if (nStart == STRING_NOTFOUND) + break; + else + { + nIdx = nPos; + nStart = nPos + 1; + } + } + } + } + DBG_ASSERT(nIdx != STRING_NOTFOUND, "no usable hyphenation position"); + + // remove not usable hyphens from string + nPos = nIdx == STRING_NOTFOUND ? 0 : nIdx + 1; + String aTmp( sal_Unicode( SW_SOFT_HYPHEN ) ), + aEmpty; + while (nPos != STRING_NOTFOUND) + nPos = aTxt.SearchAndReplace( aTmp, aEmpty, nPos + 1 ); + } + return aTxt; +} + +// ----------------------------------------------------------------------- + +void SvxHyphenWordDialog::InitControls_Impl() +{ + String aTxt; + xPossHyph = NULL; + if (xHyphenator.is()) + { + lang::Locale aLocale( SvxCreateLocale(nActLanguage) ); + xPossHyph = xHyphenator->createPossibleHyphens( aActWord, aLocale, + Sequence< PropertyValue >() ); + if (xPossHyph.is()) + { + aTxt = EraseUnusableHyphens_Impl( xPossHyph, nMaxHyphenationPos ); + } + SetLabel_Impl( nActLanguage ); + } + aWordEdit.SetText( aTxt ); + + nOldPos = aTxt.Len(); + SelLeft(); + EnableLRBtn_Impl(); +} + +// ----------------------------------------------------------------------- + +void SvxHyphenWordDialog::ContinueHyph_Impl( sal_uInt16 nInsPos ) +{ + if ( nInsPos != CONTINUE_HYPH && xPossHyph.is()) + { + if (nInsPos) + { + //String aTmp( U2S( xPossHyph->getPossibleHyphens() ) ); + String aTmp( aWordEdit.GetText() ); + DBG_ASSERT(nInsPos <= aTmp.Len() - 2, "wrong hyphen position"); + + sal_uInt16 nIdxPos = 0; + sal_uInt16 i = 0; + sal_Unicode c; + while (i < aTmp.Len() && HYPHHERE != (c = aTmp.GetChar(i++)) ) + { + if (SW_SOFT_HYPHEN == c) + nIdxPos++; + } + + Sequence< sal_Int16 > aSeq = xPossHyph->getHyphenationPositions(); + sal_Int32 nLen = aSeq.getLength(); + DBG_ASSERT(nLen, "empty sequence"); + DBG_ASSERT(nIdxPos < nLen, "index out of range"); + if (nLen && nIdxPos < nLen) + { + nInsPos = aSeq.getConstArray()[ nIdxPos ]; + pHyphWrapper->InsertHyphen( nInsPos ); + } + } + else + { + //! calling with 0 as argument will remove hyphens! + pHyphWrapper->InsertHyphen( nInsPos ); + } + } + + if ( pHyphWrapper->FindSpellError() ) + { + Reference< XHyphenatedWord > xHyphWord( pHyphWrapper->GetLast(), UNO_QUERY ); + + // adapt actual word and language to new found hyphenation result + if(xHyphWord.is()) + { + aActWord = String( xHyphWord->getWord() ); + nActLanguage = SvxLocaleToLanguage( xHyphWord->getLocale() ); + nMaxHyphenationPos = xHyphWord->getHyphenationPos(); + InitControls_Impl(); + } + } + else + EndDialog( RET_OK ); +} + +// ----------------------------------------------------------------------- + +sal_uInt16 SvxHyphenWordDialog::GetHyphIndex_Impl() +{ + sal_uInt16 nPos = 0; + String aTxt(aWordEdit.GetText()); + + for ( sal_uInt16 i=0 ; i < aTxt.Len(); ++i ) + { + sal_Unicode nChar = aTxt.GetChar( i ); + + if ( nChar == HYPHHERE ) + break; + + if ( nChar != SW_SOFT_HYPHEN ) + nPos++; + } + return nPos; +} + +// ----------------------------------------------------------------------- + +IMPL_LINK_INLINE_START( SvxHyphenWordDialog, CutHdl_Impl, Button *, EMPTYARG ) +{ + if( !bBusy ) + { + bBusy = sal_True; + ContinueHyph_Impl( nHyphPos ); + bBusy = sal_False; + } + return 0; +} +IMPL_LINK_INLINE_END( SvxHyphenWordDialog, CutHdl_Impl, Button *, EMPTYARG ) + +// ----------------------------------------------------------------------- + +IMPL_LINK_INLINE_START( SvxHyphenWordDialog, DeleteHdl_Impl, Button *, EMPTYARG ) +{ + if( !bBusy ) + { + bBusy = sal_True; + ContinueHyph_Impl(); + bBusy = sal_False; + } + return 0; +} +IMPL_LINK_INLINE_END( SvxHyphenWordDialog, DeleteHdl_Impl, Button *, EMPTYARG ) + +// ----------------------------------------------------------------------- + +IMPL_LINK_INLINE_START( SvxHyphenWordDialog, ContinueHdl_Impl, Button *, EMPTYARG ) +{ + if( !bBusy ) + { + bBusy = sal_True; + ContinueHyph_Impl( CONTINUE_HYPH ); + bBusy = sal_False; + } + return 0; +} +IMPL_LINK_INLINE_END( SvxHyphenWordDialog, ContinueHdl_Impl, Button *, EMPTYARG ) + +// ----------------------------------------------------------------------- + +IMPL_LINK_INLINE_START( SvxHyphenWordDialog, CancelHdl_Impl, Button *, EMPTYARG ) +{ + if( !bBusy ) + { + bBusy = sal_True; + pHyphWrapper->SpellEnd(); + EndDialog( RET_CANCEL ); + bBusy = sal_False; + } + return 0; +} +IMPL_LINK_INLINE_END( SvxHyphenWordDialog, CancelHdl_Impl, Button *, EMPTYARG ) + +// ----------------------------------------------------------------------- + +IMPL_LINK_INLINE_START( SvxHyphenWordDialog, Left_Impl, Button *, EMPTYARG ) +{ + if( !bBusy ) + { + bBusy = sal_True; + SelLeft(); + bBusy = sal_False; + } + return 0; +} +IMPL_LINK_INLINE_END( SvxHyphenWordDialog, Left_Impl, Button *, EMPTYARG ) + +// ----------------------------------------------------------------------- + +IMPL_LINK_INLINE_START( SvxHyphenWordDialog, Right_Impl, Button *, EMPTYARG ) +{ + if( !bBusy ) + { + bBusy = sal_True; + SelRight(); + bBusy = sal_False; + } + return 0; +} +IMPL_LINK_INLINE_END( SvxHyphenWordDialog, Right_Impl, Button *, EMPTYARG ) + +// ----------------------------------------------------------------------- + +IMPL_LINK_INLINE_START( SvxHyphenWordDialog, GetFocusHdl_Impl, Edit *, EMPTYARG ) +{ + aWordEdit.SetSelection( Selection( nOldPos, nOldPos + 1 ) ); + return 0; +} +IMPL_LINK_INLINE_END( SvxHyphenWordDialog, GetFocusHdl_Impl, Edit *, EMPTYARG ) + +// ----------------------------------------------------------------------- + +IMPL_LINK( SvxHyphenWordDialog, LangError_Impl, void *, nLang ) +{ + // Status anzeigen + String aErr( SvtLanguageTable::GetLanguageString( (LanguageType)(sal_IntPtr)nLang ) ); + aErr += CUI_RESSTR( RID_SVXSTR_HMERR_CHECKINSTALL ); + InfoBox( this, aErr ).Execute(); + return 0; +} + + diff --git a/cui/source/dialogs/hyphen.hrc b/cui/source/dialogs/hyphen.hrc new file mode 100644 index 000000000000..a87b7b6588b8 --- /dev/null +++ b/cui/source/dialogs/hyphen.hrc @@ -0,0 +1,48 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: hyphen.hrc,v $ + * $Revision: 1.4 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ +#ifndef _SVX_HYPHEN_HRC +#define _SVX_HYPHEN_HRC + +// defines ------------------------------------------------------------------ + +#define ED_WORD 10 +#define BTN_LEFT 11 +#define BTN_RIGHT 12 +#define FT_WORD 13 + +#define BTN_HYPH_CONTINUE 20 +#define BTN_HYPH_DELETE 21 +#define BTN_HYPH_CUT 22 +#define BTN_HYPH_CANCEL 23 +#define BTN_HYPH_HELP 24 + + +#endif + diff --git a/cui/source/dialogs/hyphen.src b/cui/source/dialogs/hyphen.src new file mode 100644 index 000000000000..230bdedaa22f --- /dev/null +++ b/cui/source/dialogs/hyphen.src @@ -0,0 +1,146 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: hyphen.src,v $ + * $Revision: 1.24 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + // include --------------------------------------------------------------- +#include "helpid.hrc" +#include "cuires.hrc" +#include "hyphen.hrc" + +String RID_SVXSTR_HMERR_CHECKINSTALL +{ + /* ### ACHTUNG: Neuer Text in Resource? ist für die Prüfung nicht verfügbar. \nÜberprüfen Sie bitte Ihre Installation und installieren Sie \ngegebenenfalls die gewünschte Sprache : ist f³r die Pr³fung nicht verf³gbar. \nšberpr³fen Sie bitte Ihre Installation und installieren Sie \ngegebenenfalls die gew³nschte Sprache */ + /* ### ACHTUNG: Neuer Text in Resource? ist für die Prüfung nicht verfügbar. \nÜberprüfen Sie bitte Ihre Installation und installieren Sie \ngegebenenfalls die gewünschte Sprache : ist f³r die Pr³fung nicht verf³gbar. \nšberpr³fen Sie bitte Ihre Installation und installieren Sie \ngegebenenfalls die gew³nschte Sprache */ + Text [ en-US ] = "is not available for spellchecking\nPlease check your installation and install the desired language\n" ; +}; + + // RID_SVXDLG_HYPHENATE -------------------------------------------------- +ModalDialog RID_SVXDLG_HYPHENATE +{ + HelpId = HID_HYPHENATE ; + Size = MAP_APPFONT ( 188 , 100 ) ; + OutputSize = TRUE ; + SvLook = TRUE ; + Text [ en-US ] = "Hyphenation" ; + Moveable = TRUE ; + Edit ED_WORD + { + BORDER = TRUE ; + Pos = MAP_APPFONT ( 6 , 17 ) ; + Size = MAP_APPFONT ( 120 , 12 ) ; + TABSTOP = TRUE ; + LEFT = TRUE ; + }; + ImageButton BTN_LEFT + { + Pos = MAP_APPFONT ( 6 , 33 ) ; + Size = MAP_APPFONT ( 14 , 14 ) ; + TABSTOP = TRUE ; + SYMBOL = IMAGEBUTTON_ARROW_LEFT ; + }; + ImageButton BTN_RIGHT + { + Pos = MAP_APPFONT ( 22 , 33 ) ; + Size = MAP_APPFONT ( 14 , 14 ) ; + TABSTOP = TRUE ; + Symbol = IMAGEBUTTON_ARROW_RIGHT ; + }; + FixedText FT_WORD + { + Pos = MAP_APPFONT ( 6 , 6 ) ; + Size = MAP_APPFONT ( 120 , 8 ) ; + Text [ en-US ] = "~Word" ; + }; + PushButton BTN_HYPH_CONTINUE + { + Pos = MAP_APPFONT ( 132 , 43 ) ; + Size = MAP_APPFONT ( 50 , 14 ) ; + Text [ en-US ] = "~Next" ; + TABSTOP = TRUE ; + }; + PushButton BTN_HYPH_DELETE + { + Pos = MAP_APPFONT ( 132 , 60 ) ; + Size = MAP_APPFONT ( 50 , 14 ) ; + Text [ en-US ] = "~Remove" ; + TABSTOP = TRUE ; + }; + OKButton BTN_HYPH_CUT + { + Pos = MAP_APPFONT ( 132 , 6 ) ; + Size = MAP_APPFONT ( 50 , 14 ) ; + Text [ en-US ] = "~Hyphenate" ; + TABSTOP = TRUE ; + DEFBUTTON = TRUE ; + }; + CancelButton BTN_HYPH_CANCEL + { + Pos = MAP_APPFONT ( 132 , 23 ) ; + Size = MAP_APPFONT ( 50 , 14 ) ; + TABSTOP = TRUE ; + }; + HelpButton BTN_HYPH_HELP + { + Pos = MAP_APPFONT ( 132 , 80 ) ; + Size = MAP_APPFONT ( 50 , 14 ) ; + TABSTOP = TRUE ; + }; +}; + // ******************************************************************* EOF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cui/source/dialogs/makefile.mk b/cui/source/dialogs/makefile.mk index f7d597a219a1..43cf1c18c0f8 100755 --- a/cui/source/dialogs/makefile.mk +++ b/cui/source/dialogs/makefile.mk @@ -54,6 +54,7 @@ SRC1FILES = \ gallery.src \ grfflt.src \ hangulhanjadlg.src \ + hyphen.src \ hlmarkwn.src \ hyperdlg.src \ iconcdlg.src \ @@ -69,6 +70,7 @@ SRC1FILES = \ srchxtra.src \ svuidlg.src \ tbxform.src \ + thesdlg.src \ zoom.src \ @@ -89,6 +91,7 @@ SLOFILES+=\ $(SLO)$/hlmailtp.obj \ $(SLO)$/hlmarkwn.obj \ $(SLO)$/hltpbase.obj \ + $(SLO)$/hyphen.obj \ $(SLO)$/iconcdlg.obj \ $(SLO)$/insdlg.obj \ $(SLO)$/insrc.obj \ @@ -106,6 +109,7 @@ SLOFILES+=\ $(SLO)$/SpellDialog.obj \ $(SLO)$/splitcelldlg.obj \ $(SLO)$/srchxtra.obj \ + $(SLO)$/thesdlg.obj \ $(SLO)$/zoom.obj \ diff --git a/cui/source/dialogs/thesdlg.cxx b/cui/source/dialogs/thesdlg.cxx new file mode 100644 index 000000000000..5cd53e5521c6 --- /dev/null +++ b/cui/source/dialogs/thesdlg.cxx @@ -0,0 +1,494 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: thesdlg.cxx,v $ + * $Revision: 1.21 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_cui.hxx" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "cuires.hrc" +#include "thesdlg.hrc" +#include +#include +#include +#include "dialmgr.hxx" +#include + +using namespace ::com::sun::star; +using namespace ::com::sun::star::lang; +using namespace ::com::sun::star::uno; +using namespace ::com::sun::star::beans; +using namespace ::com::sun::star::linguistic2; + +#undef S2U +#undef U2S +//#define S2U(s) StringToOUString(s, CHARSET_SYSTEM) +//#define U2S(s) OUStringToString(s, CHARSET_SYSTEM) + + +// GetReplaceEditString ------------------------------- + +static void GetReplaceEditString( String &rText ) +{ + // The strings returned by the thesaurus saometimes have some + // explanation text put in between '(' and ')' or a trailing '*'. + // These parts should not be put in the ReplaceEdit Text that may get + // inserted into the document. Thus we strip them from the text. + + xub_StrLen nPos = rText.Search( sal_Unicode('(') ); + while (STRING_NOTFOUND != nPos) + { + xub_StrLen nEnd = rText.Search( sal_Unicode(')'), nPos ); + if (STRING_NOTFOUND != nEnd) + rText.Erase( nPos, nEnd-nPos+1 ); + else + break; + nPos = rText.Search( sal_Unicode('(') ); + } + + nPos = rText.Search( sal_Unicode('*') ); + if (STRING_NOTFOUND != nPos) + rText.Erase( nPos ); + + // remove any possible remaining ' ' that may confuse the thesaurus + // when it gets called with the text + rText.EraseLeadingAndTrailingChars( sal_Unicode(' ') ); +} + +// struct ThesDlg_Impl --------------------------------------------------- + +struct ThesDlg_Impl +{ + Reference< XThesaurus > xThesaurus; + ::rtl::OUString aLookUpText; + sal_Int16 nLookUpLanguage; + + ThesDlg_Impl( Reference< XThesaurus > & xThes ); + SfxErrorContext* pErrContext; // ErrorContext, + // w"ahrend der Dialog oben ist +}; + +ThesDlg_Impl::ThesDlg_Impl(Reference< XThesaurus > & xThes) : + xThesaurus (xThes) +{ + pErrContext = NULL; + nLookUpLanguage = LANGUAGE_NONE; +} + + +// class SvxThesaurusLanguageDlg_Impl ------------------------------------ + +class SvxThesaurusLanguageDlg_Impl : public ModalDialog +{ +private: + SvxLanguageBox aLangLB; + FixedLine aLangFL; + OKButton aOKBtn; + CancelButton aCancelBtn; + HelpButton aHelpBtn; + + DECL_LINK( DoubleClickHdl_Impl, ListBox * ); + +public: + SvxThesaurusLanguageDlg_Impl( Window* pParent ); + + sal_uInt16 GetLanguage() const; + void SetLanguage( sal_uInt16 nLang ); +}; + +// ----------------------------------------------------------------------- + + +SvxThesaurusLanguageDlg_Impl::SvxThesaurusLanguageDlg_Impl( Window* pParent ) : + + ModalDialog( pParent, CUI_RES( RID_SVXDLG_THES_LANGUAGE ) ), + + aLangLB ( this, CUI_RES( LB_THES_LANGUAGE ) ), + aLangFL ( this, CUI_RES( FL_THES_LANGUAGE ) ), + aOKBtn ( this, CUI_RES( BTN_LANG_OK ) ), + aCancelBtn ( this, CUI_RES( BTN_LANG_CANCEL ) ), + aHelpBtn ( this, CUI_RES( BTN_LANG_HELP ) ) +{ + FreeResource(); + + aLangLB.SetLanguageList( LANG_LIST_THES_USED, FALSE, FALSE ); + aLangLB.SetDoubleClickHdl( + LINK( this, SvxThesaurusLanguageDlg_Impl, DoubleClickHdl_Impl ) ); +} + + +// ----------------------------------------------------------------------- + +sal_uInt16 SvxThesaurusLanguageDlg_Impl::GetLanguage() const +{ + sal_uInt16 nLang = aLangLB.GetSelectLanguage(); + return nLang; +} + +// ----------------------------------------------------------------------- + +void SvxThesaurusLanguageDlg_Impl::SetLanguage( sal_uInt16 nLang ) +{ + aLangLB.SelectLanguage( nLang ); +} + +// ----------------------------------------------------------------------- + +IMPL_LINK_INLINE_START( SvxThesaurusLanguageDlg_Impl, DoubleClickHdl_Impl, ListBox *, EMPTYARG ) +{ + EndDialog( RET_OK ); + return 0; +} +IMPL_LINK_INLINE_END( SvxThesaurusLanguageDlg_Impl, DoubleClickHdl_Impl, ListBox *, EMPTYARG ) + +// class SvxThesaurusDialog ---------------------------------------------- + + +// ----------------------------------------------------------------------- + + +SvxThesaurusDialog::SvxThesaurusDialog( Window* pParent, Reference< XThesaurus > xThes, + const String &rWord, sal_Int16 nLanguage) : + + SvxStandardDialog( pParent, CUI_RES( RID_SVXDLG_THESAURUS ) ), + + aWordText ( this, CUI_RES( FT_WORD ) ), + aWordLB ( this, CUI_RES( LB_WORD ) ), + aReplaceText( this, CUI_RES( FT_REPL ) ), + aReplaceEdit( this, CUI_RES( ED_REPL ) ), + aMeanText ( this, CUI_RES( FT_MEAN ) ), + aMeanLB ( this, CUI_RES( LB_MEAN ) ), + aSynonymText( this, CUI_RES( FT_SYNON ) ), + aSynonymLB ( this, CUI_RES( LB_SYNON ) ), + aVarFL ( this, CUI_RES( FL_VAR ) ), + aOkBtn ( this, CUI_RES( BTN_THES_OK ) ), + aCancelBtn ( this, CUI_RES( BTN_THES_CANCEL ) ), + aLookUpBtn ( this, CUI_RES( BTN_LOOKUP ) ), + aLangBtn ( this, CUI_RES( BTN_LANGUAGE ) ), + aHelpBtn ( this, CUI_RES( BTN_THES_HELP ) ), + aErrStr ( CUI_RES( STR_ERR_WORDNOTFOUND ) ) +{ + pImpl = new ThesDlg_Impl( xThes ); + pImpl->aLookUpText = ::rtl::OUString( rWord ); + pImpl->nLookUpLanguage = nLanguage; + pImpl->pErrContext = + new SfxErrorContext( ERRCTX_SVX_LINGU_THESAURUS, String(), this, + RID_SVXERRCTX, &DIALOG_MGR() ); + + aLangBtn.SetClickHdl( LINK( this, SvxThesaurusDialog, LanguageHdl_Impl ) ); + aLookUpBtn.SetClickHdl( LINK( this, SvxThesaurusDialog, LookUpHdl_Impl ) ); + aMeanLB.SetSelectHdl( LINK( this, SvxThesaurusDialog, EntryHdl_Impl ) ); + aSynonymLB.SetSelectHdl( LINK( this, SvxThesaurusDialog, SynonymHdl_Impl ) ); + Link aLink = LINK( this, SvxThesaurusDialog, SelectHdl_Impl ); + aMeanLB.SetDoubleClickHdl( aLink ); + aSynonymLB.SetDoubleClickHdl( aLink ); + aWordLB.SetSelectHdl( aLink ); + + FreeResource(); + + ::rtl::OUString aTmp( rWord ); + linguistic::RemoveHyphens( aTmp ); + linguistic::ReplaceControlChars( aTmp ); + aReplaceEdit.SetText( aTmp ); + aWordLB.InsertEntry( aTmp ); + aWordLB.SelectEntry( aTmp ); + + Init_Impl( nLanguage ); + + // disable controls if service is missing + if (!pImpl->xThesaurus.is()) + Enable( sal_False ); +} + + +// ----------------------------------------------------------------------- + +SvxThesaurusDialog::~SvxThesaurusDialog() +{ + delete pImpl->pErrContext; + delete pImpl; +} + +// ----------------------------------------------------------------------- + +uno::Sequence< Reference< XMeaning > > SAL_CALL + SvxThesaurusDialog::queryMeanings_Impl( + ::rtl::OUString& rTerm, + const Locale& rLocale, + const beans::PropertyValues& rProperties ) + throw(lang::IllegalArgumentException, uno::RuntimeException) +{ + uno::Sequence< Reference< XMeaning > > aMeanings( + pImpl->xThesaurus->queryMeanings( rTerm, rLocale, rProperties ) ); + + // text with '.' at the end? + if (0 == aMeanings.getLength() && rTerm.getLength() && + rTerm.getStr()[ rTerm.getLength() - 1 ] == '.') + { + // try again without trailing '.' chars. It may be a word at the + // end of a sentence and not an abbreviation... + String aTxt( rTerm ); + aTxt.EraseTrailingChars( '.' ); + aMeanings = pImpl->xThesaurus->queryMeanings( aTxt, rLocale, rProperties ); + if (aMeanings.getLength()) + { + rTerm = aTxt; + } + } + + return aMeanings; +} + +// ----------------------------------------------------------------------- + +sal_uInt16 SvxThesaurusDialog::GetLanguage() const +{ + return pImpl->nLookUpLanguage; +} + +// ----------------------------------------------------------------------- + +void SvxThesaurusDialog::UpdateMeaningBox_Impl( uno::Sequence< Reference< XMeaning > > *pMeaningSeq ) +{ + // create temporary meaning list if not supplied from somewhere else + sal_Bool bTmpSeq = sal_False; + if (!pMeaningSeq && pImpl->xThesaurus.is()) + { + bTmpSeq = sal_True; + lang::Locale aLocale( SvxCreateLocale( pImpl->nLookUpLanguage ) ); + uno::Sequence< Reference< XMeaning > > aTmpMean = queryMeanings_Impl( + pImpl->aLookUpText, aLocale, Sequence< PropertyValue >() ); + + pMeaningSeq = new Sequence< Reference< XMeaning > > ( aTmpMean ); + + // set new replace edit text if a different look up text was used + // see: queryMeanings_Impl + aReplaceEdit.SetText( pImpl->aLookUpText ); + } + + sal_Int32 nMeaningCount = pMeaningSeq ? pMeaningSeq->getLength() : 0; + const Reference< XMeaning > *pMeaning = pMeaningSeq ? pMeaningSeq->getConstArray() : NULL; + aMeanLB.Clear(); + for ( sal_Int32 i = 0; i < nMeaningCount; ++i ) + aMeanLB.InsertEntry( pMeaning[i]->getMeaning() ); + + // remove temporary meaning list + if (bTmpSeq) + delete pMeaningSeq; + + if (aMeanLB.GetEntryCount() > 0) + aMeanLB.SelectEntryPos(0); + UpdateSynonymBox_Impl(); +} + + +// ----------------------------------------------------------------------- +void SvxThesaurusDialog::UpdateSynonymBox_Impl() +{ + + aSynonymLB.Clear(); + + sal_uInt16 nPos = aMeanLB.GetSelectEntryPos(); // active meaning pos + if (nPos != LISTBOX_ENTRY_NOTFOUND && pImpl->xThesaurus.is()) + { + // get Reference< XMeaning > for selected meaning + lang::Locale aLocale( SvxCreateLocale( pImpl->nLookUpLanguage ) ); + Reference< XMeaning > xMeaning = queryMeanings_Impl( + pImpl->aLookUpText, aLocale, Sequence< PropertyValue >() ) + .getConstArray()[ nPos ]; + + uno::Sequence< ::rtl::OUString > aSynonyms; + if (xMeaning.is()) + aSynonyms = xMeaning->querySynonyms(); + + sal_Int32 nSynonymCount = aSynonyms.getLength(); + const ::rtl::OUString *pSynonym = aSynonyms.getConstArray(); + for ( sal_Int32 i=0; i < nSynonymCount; ++i ) + aSynonymLB.InsertEntry( pSynonym[i] ); + } + +} + +// ----------------------------------------------------------------------- + +void SvxThesaurusDialog::Apply() +{ +} + +// ----------------------------------------------------------------------- +void SvxThesaurusDialog::Init_Impl(sal_Int16 nLanguage) +{ + // Sprache anpassen + String aStr( GetText() ); + aStr.Erase( aStr.Search( sal_Unicode( '(' ) ) - 1 ); + aStr.Append( UniString::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( " (" ) ) ); + //aStr += GetLanguageString( (LanguageType)pImpl->pThesaurus->GetLanguage() ); + aStr += SvtLanguageTable::GetLanguageString( (LanguageType) nLanguage ); + aStr.Append( sal_Unicode( ')' ) ); + SetText( aStr ); // Text der Window-Leiste setzen (Wort + Sprache) + + // adapt meanings according to (new) language + UpdateMeaningBox_Impl(); +} + +// ----------------------------------------------------------------------- + +IMPL_LINK( SvxThesaurusDialog, LookUpHdl_Impl, Button *, pBtn ) +{ + + EnterWait(); + + String aText( aReplaceEdit.GetText() ); + + ::rtl::OUString aOldLookUpText = pImpl->aLookUpText; + pImpl->aLookUpText = ::rtl::OUString( aText ); + + uno::Sequence< Reference< XMeaning > > aMeanings; + if (pImpl->xThesaurus.is()) + aMeanings = queryMeanings_Impl( + pImpl->aLookUpText, + SvxCreateLocale( pImpl->nLookUpLanguage ), + Sequence< PropertyValue >() ); + + LeaveWait(); + if ( aMeanings.getLength() == 0 ) + { + if( pBtn == &aCancelBtn ) // called via double click + { + pImpl->aLookUpText = aOldLookUpText; + } + else + { + UpdateMeaningBox_Impl( &aMeanings ); + if( pBtn == &aLookUpBtn ) + InfoBox( this, aErrStr ).Execute(); + } + return 0; + } + + UpdateMeaningBox_Impl( &aMeanings ); + + if ( aWordLB.GetEntryPos( aText ) == LISTBOX_ENTRY_NOTFOUND ) + aWordLB.InsertEntry( aText ); + + aWordLB.SelectEntry( aText ); + aMeanLB.SelectEntryPos( 0 ); + + String aStr( aMeanLB.GetSelectEntry() ); + GetReplaceEditString( aStr ); + aReplaceEdit.SetText( aStr ); + aSynonymLB.SetNoSelection(); + + return 0; +} + +// ----------------------------------------------------------------------- + +IMPL_LINK( SvxThesaurusDialog, LanguageHdl_Impl, Button *, EMPTYARG ) +{ + if (!pImpl->xThesaurus.is()) + return 0; + + SvxThesaurusLanguageDlg_Impl aDlg( this ); + sal_uInt16 nLang = pImpl->nLookUpLanguage; + aDlg.SetLanguage( nLang ); + + if ( aDlg.Execute() == RET_OK ) + { + nLang = aDlg.GetLanguage(); + if (pImpl->xThesaurus->hasLocale( SvxCreateLocale( nLang ) )) + pImpl->nLookUpLanguage = nLang; + UpdateMeaningBox_Impl(); + Init_Impl( nLang ); + } + + return 0; +} + +// ----------------------------------------------------------------------- + +IMPL_LINK( SvxThesaurusDialog, SynonymHdl_Impl, ListBox *, EMPTYARG ) +{ + if ( aSynonymLB.GetSelectEntryPos() != LISTBOX_ENTRY_NOTFOUND ) + { + String aStr( aSynonymLB.GetSelectEntry() ); + GetReplaceEditString( aStr ); + aReplaceEdit.SetText( aStr ); + } + return 0; +} + +// ----------------------------------------------------------------------- + +IMPL_LINK( SvxThesaurusDialog, SelectHdl_Impl, ListBox *, pBox ) +{ + String aStr( pBox->GetSelectEntry() ); + GetReplaceEditString( aStr ); + aReplaceEdit.SetText( aStr ); + + //! 'aCancelBtn' is used to indicate that the handler is called as result + //! of a double click action. + LookUpHdl_Impl( &aCancelBtn /* ??? &aLookUpBtn */ ); + + return 0; +} + +// ----------------------------------------------------------------------- + +IMPL_LINK( SvxThesaurusDialog, EntryHdl_Impl, ListBox *, EMPTYARG ) +{ + + UpdateSynonymBox_Impl(); + + return 0; +} + +// ----------------------------------------------------------------------- + +IMPL_LINK( SvxThesaurusDialog, SpellErrorHdl_Impl, void *, pError ) +{ + // Der "ubergebene Pointer pError ist die falsche Sprachen-Nummer + LanguageType eLang = (LanguageType)(sal_uIntPtr)pError; + String aErr( SvtLanguageTable::GetLanguageString( eLang ) ); + // Fehlermeldung ausgeben + ErrorHandler::HandleError( + *new StringErrorInfo( ERRCODE_SVX_LINGU_LANGUAGENOTEXISTS, aErr ) ); + return 0; +} + diff --git a/cui/source/dialogs/thesdlg.hrc b/cui/source/dialogs/thesdlg.hrc new file mode 100644 index 000000000000..4292de929236 --- /dev/null +++ b/cui/source/dialogs/thesdlg.hrc @@ -0,0 +1,62 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: thesdlg.hrc,v $ + * $Revision: 1.4 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ +#ifndef _SVX_THESDLG_HRC +#define _SVX_THESDLG_HRC + +// defines --------------------------------------------------------------- + +#define BTN_THES_OK 10 +#define BTN_THES_CANCEL 11 +#define BTN_LANGUAGE 12 +#define BTN_THES_HELP 13 +#define BTN_LOOKUP 14 +#define FT_WORD 15 +#define LB_WORD 16 +#define FT_MEAN 17 +#define LB_MEAN 18 +#define FT_SYNON 19 +#define LB_SYNON 20 +#define FT_REPL 21 +#define ED_REPL 22 +#define FL_VAR 23 + +#define STR_ERR_WORDNOTFOUND 30 + +// LanguageDialog -------------------------------------------------------- + +#define LB_THES_LANGUAGE 10 +#define FL_THES_LANGUAGE 11 +#define BTN_LANG_OK 12 +#define BTN_LANG_CANCEL 12 +#define BTN_LANG_HELP 13 + + +#endif + diff --git a/cui/source/dialogs/thesdlg.src b/cui/source/dialogs/thesdlg.src new file mode 100644 index 000000000000..5e13fad9da49 --- /dev/null +++ b/cui/source/dialogs/thesdlg.src @@ -0,0 +1,211 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: thesdlg.src,v $ + * $Revision: 1.23 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + // include --------------------------------------------------------------- +#include "cuires.hrc" +#include "thesdlg.hrc" +#include "helpid.hrc" +#include // SID_THESAURUS + +// pragma ---------------------------------------------------------------- + + // RID_SVXDLG_THES ------------------------------------------------------- +ModalDialog RID_SVXDLG_THESAURUS +{ + HelpId = SID_THESAURUS ; + OutputSize = TRUE ; + Size = MAP_APPFONT ( 285 , 116 ) ; + Text [ en-US ] = "Thesaurus" ; + Moveable = TRUE ; + SvLook = TRUE ; + OkButton BTN_THES_OK + { + Pos = MAP_APPFONT ( 219 , 6 ) ; + Size = MAP_APPFONT ( 60 , 14 ) ; + DefButton = TRUE ; + }; + CancelButton BTN_THES_CANCEL + { + Pos = MAP_APPFONT ( 219 , 23 ) ; + Size = MAP_APPFONT ( 60 , 14 ) ; + }; + PushButton BTN_LOOKUP + { + Pos = MAP_APPFONT ( 219 , 40 ) ; + Size = MAP_APPFONT ( 60 , 14 ) ; + Text [ en-US ] = "~Search" ; + }; + PushButton BTN_LANGUAGE + { + Pos = MAP_APPFONT ( 219 , 57 ) ; + Size = MAP_APPFONT ( 60 , 14 ) ; + Text [ en-US ] = "~Language..." ; + }; + HelpButton BTN_THES_HELP + { + Pos = MAP_APPFONT ( 219 , 77 ) ; + Size = MAP_APPFONT ( 60 , 14 ) ; + }; + FixedText FT_WORD + { + Pos = MAP_APPFONT ( 12 , 14 ) ; + Size = MAP_APPFONT ( 96 , 8 ) ; + Text [ en-US ] = "~Word" ; + LEFT = TRUE ; + }; + ListBox LB_WORD + { + DropDown = TRUE ; + Pos = MAP_APPFONT ( 12 , 25 ) ; + Size = MAP_APPFONT ( 96 , 65 ) ; + }; + FixedText FT_MEAN + { + Pos = MAP_APPFONT ( 12 , 43 ) ; + Size = MAP_APPFONT ( 96 , 8 ) ; + Text [ en-US ] = "~Meaning " ; + LEFT = TRUE ; + }; + ListBox LB_MEAN + { + BORDER = TRUE ; + Pos = MAP_APPFONT ( 12 , 55 ) ; + Size = MAP_APPFONT ( 96 , 50 ) ; + AutoHScroll = TRUE ; + }; + FixedText FT_SYNON + { + Pos = MAP_APPFONT ( 111 , 43 ) ; + Size = MAP_APPFONT ( 96 , 8 ) ; + Text [ en-US ] = "Sy~nonym" ; + LEFT = TRUE ; + }; + ListBox LB_SYNON + { + BORDER = TRUE ; + Pos = MAP_APPFONT ( 111 , 55 ) ; + Size = MAP_APPFONT ( 96 , 50 ) ; + AutoHScroll = TRUE ; + }; + FixedText FT_REPL + { + Pos = MAP_APPFONT ( 111 , 14 ) ; + Size = MAP_APPFONT ( 96 , 8 ) ; + Text [ en-US ] = "~Replace" ; + LEFT = TRUE ; + }; + Edit ED_REPL + { + BORDER = TRUE ; + Pos = MAP_APPFONT ( 111 , 25 ) ; + Size = MAP_APPFONT ( 96 , 12 ) ; + LEFT = TRUE ; + }; + FixedLine FL_VAR + { + Pos = MAP_APPFONT ( 6 , 3 ) ; + Size = MAP_APPFONT ( 207 , 8 ) ; + Text [ en-US ] = "Variations" ; + }; + String STR_ERR_WORDNOTFOUND + { + Text [ en-US ] = "Word not found in thesaurus" ; + }; +}; + // RID_SVXDLG_THES_LANGUAGE ---------------------------------------------- +ModalDialog RID_SVXDLG_THES_LANGUAGE +{ + HelpId = HID_THES_LANGUAGE ; + OutputSize = TRUE ; + SVLook = TRUE ; + Size = MAP_APPFONT ( 170 , 86 ) ; + /* ### ACHTUNG: Neuer Text in Resource? Sprache auswählen : Sprache auswõhlen */ + /* ### ACHTUNG: Neuer Text in Resource? Sprache auswählen : Sprache auswõhlen */ + Text [ en-US ] = "Select Language" ; + Moveable = TRUE ; + ListBox LB_THES_LANGUAGE + { + Border = TRUE ; + Pos = MAP_APPFONT ( 12 , 14 ) ; + Size = MAP_APPFONT ( 90 , 60 ) ; + Sort = TRUE ; + }; + FixedLine FL_THES_LANGUAGE + { + Pos = MAP_APPFONT ( 6 , 3 ) ; + Size = MAP_APPFONT ( 102 , 8 ) ; + Text [ en-US ] = "Selection" ; + }; + OKButton BTN_LANG_OK + { + Pos = MAP_APPFONT ( 114 , 6 ) ; + Size = MAP_APPFONT ( 50 , 14 ) ; + DefButton = TRUE ; + }; + CancelButton BTN_LANG_CANCEL + { + Pos = MAP_APPFONT ( 114 , 23 ) ; + Size = MAP_APPFONT ( 50 , 14 ) ; + }; + HelpButton BTN_LANG_HELP + { + Pos = MAP_APPFONT ( 114 , 43 ) ; + Size = MAP_APPFONT ( 50 , 14 ) ; + }; +}; + // ********************************************************************** EOF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 10095922f523..d781333f9d47 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -103,6 +103,8 @@ #include "macroass.hxx" #include "acccfg.hxx" #include "insrc.hxx" +#include "hyphen.hxx" +#include "thesdlg.hxx" using namespace ::com::sun::star; using namespace ::com::sun::star::frame; @@ -119,6 +121,8 @@ IMPL_ABSTDLG_BASE(AbstractTabDialog_Impl); IMPL_ABSTDLG_BASE(AbstractSvxDistributeDialog_Impl); IMPL_ABSTDLG_BASE(AbstractHangulHanjaConversionDialog_Impl); IMPL_ABSTDLG_BASE(AbstractFmShowColsDialog_Impl); +IMPL_ABSTDLG_BASE(AbstractHyphenWordDialog_Impl) +IMPL_ABSTDLG_BASE(AbstractThesaurusDialog_Impl) AbstractSvxZoomDialog_Impl::~AbstractSvxZoomDialog_Impl() \ { @@ -356,6 +360,36 @@ String AbstractHangulHanjaConversionDialog_Impl::GetCurrentSuggestion( ) const return pDlg->GetCurrentSuggestion(); } +String AbstractThesaurusDialog_Impl::GetWord() +{ + return pDlg->GetWord(); +}; + +sal_uInt16 AbstractThesaurusDialog_Impl::GetLanguage() const +{ + return pDlg->GetLanguage(); +}; + +Window* AbstractThesaurusDialog_Impl::GetWindow() +{ + return pDlg; +} + +void AbstractHyphenWordDialog_Impl::SelLeft() +{ + pDlg->SelLeft(); +} + +void AbstractHyphenWordDialog_Impl::SelRight() +{ + pDlg->SelRight(); +} + +Window* AbstractHyphenWordDialog_Impl::GetWindow() +{ + return pDlg; +} + Reference < com::sun::star::embed::XEmbeddedObject > AbstractInsertObjectDialog_Impl::GetObject() { return pDlg->GetObject(); @@ -1107,6 +1141,23 @@ AbstractHangulHanjaConversionDialog* AbstractDialogFactory_Impl::CreateHangulHan return new AbstractHangulHanjaConversionDialog_Impl( pDlg ); } +AbstractThesaurusDialog* AbstractDialogFactory_Impl::CreateThesaurusDialog( Window* pParent, + ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XThesaurus > xThesaurus, + const String &rWord, sal_Int16 nLanguage ) +{ + SvxThesaurusDialog* pDlg = new SvxThesaurusDialog( pParent, xThesaurus, rWord, nLanguage ); + return new AbstractThesaurusDialog_Impl( pDlg ); +} + +AbstractHyphenWordDialog* AbstractDialogFactory_Impl::CreateHyphenWordDialog( Window* pParent, + const String &rWord, LanguageType nLang, + ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XHyphenator > &xHyphen, + SvxSpellWrapper* pWrapper ) +{ + SvxHyphenWordDialog* pDlg = new SvxHyphenWordDialog( rWord, nLang, pParent, xHyphen, pWrapper ); + return new AbstractHyphenWordDialog_Impl( pDlg ); +} + AbstractFmShowColsDialog * AbstractDialogFactory_Impl::CreateFmShowColsDialog( Window* pParent ) { FmShowColsDialog* pDlg = new FmShowColsDialog( pParent); diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index eb3c7b932597..5773cb8292dd 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -66,6 +66,8 @@ class SvPasteObjectDialog; class SvBaseLinksDlg; class SvxTransformTabDialog; class SvxCaptionTabDialog; +class SvxThesaurusDialog; +class SvxHyphenWordDialog; namespace svx{ class HangulHanjaConversionDialog; @@ -184,7 +186,22 @@ class AbstractHangulHanjaConversionDialog_Impl: public AbstractHangulHanjaConver virtual String GetCurrentSuggestion( ) const; }; -// for HangulHanjaConversionDialog end +class AbstractThesaurusDialog_Impl : public AbstractThesaurusDialog +{ + DECL_ABSTDLG_BASE(AbstractThesaurusDialog_Impl,SvxThesaurusDialog) + virtual String GetWord(); + virtual sal_uInt16 GetLanguage() const; + virtual Window* GetWindow(); +}; + + +class AbstractHyphenWordDialog_Impl: public AbstractHyphenWordDialog +{ + DECL_ABSTDLG_BASE(AbstractHyphenWordDialog_Impl,SvxHyphenWordDialog) + virtual void SelLeft(); + virtual void SelRight(); + virtual Window* GetWindow(); +}; // for FmShowColsDialog begin class FmShowColsDialog; @@ -633,6 +650,13 @@ public: virtual AbstractHangulHanjaConversionDialog * CreateHangulHanjaConversionDialog( Window* _pParent, //add for HangulHanjaConversionDialog CHINA001 HangulHanjaConversion::ConversionDirection _ePrimaryDirection ); + virtual AbstractThesaurusDialog* CreateThesaurusDialog( Window*, ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XThesaurus > xThesaurus, + const String &rWord, sal_Int16 nLanguage ); + + virtual AbstractHyphenWordDialog* CreateHyphenWordDialog( Window*, + const String &rWord, LanguageType nLang, + ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XHyphenator > &xHyphen, + SvxSpellWrapper* pWrapper ); virtual AbstractFmShowColsDialog * CreateFmShowColsDialog( Window* pParent ); //add for FmShowColsDialog virtual AbstractSvxZoomDialog * CreateSvxZoomDialog( Window* pParent, //add for SvxZoomDialog diff --git a/cui/source/inc/cuires.hrc b/cui/source/inc/cuires.hrc index c054d66c4645..7b3530384611 100644 --- a/cui/source/inc/cuires.hrc +++ b/cui/source/inc/cuires.hrc @@ -218,6 +218,10 @@ #define RID_SVX_WND_COMMON_LINGU ( RID_SVX_START + 0 ) #define RID_SVX_GRFFILTER_DLG_EMBOSS_TAB (RID_SVX_START + 337) #define RID_SVXDLG_SEARCHATTR (RID_SVX_START + 22) +#define RID_SVXDLG_HYPHENATE (RID_SVX_START + 30) +#define RID_SVXDLG_THESAURUS (RID_SVX_START + 31) +#define RID_SVXDLG_THES_LANGUAGE (RID_SVX_START + 38) +#define RID_SVXSTR_HMERR_CHECKINSTALL (RID_SVX_START + 94) // hyperlink dialog #define RID_SVXDLG_NEWHYPERLINK (RID_SVX_START + 227) diff --git a/cui/source/inc/helpid.hrc b/cui/source/inc/helpid.hrc index ad0f7ad12a89..74cb35e2b460 100644 --- a/cui/source/inc/helpid.hrc +++ b/cui/source/inc/helpid.hrc @@ -347,7 +347,7 @@ #define HID_PAGE_TEXTATTR (HID_CUI_START + 308) #define HID_TEXTATTR_CTL_POSITION (HID_CUI_START + 309) #define HID_TRANS_POSITION_SIZE (HID_CUI_START + 310) -// free +#define HID_HYPHENATE (HID_CUI_START + 311) #define HID_SVXPAGE_CHAR_NAME (HID_CUI_START + 312) #define HID_SVXPAGE_CHAR_EFFECTS (HID_CUI_START + 313) #define HID_SVXPAGE_CHAR_POSITION (HID_CUI_START + 314) @@ -373,6 +373,7 @@ #define HID_MACRO_HEADERTABLISTBOX (HID_CUI_START + 335) #define HID_GALLERY_ENTER_TITLE (HID_CUI_START + 336) #define HID_GALLERY_TITLE_EDIT (HID_CUI_START + 337) +#define HID_THES_LANGUAGE (HID_CUI_START + 338) // please adjust ACT_SVX_HID_END2 below if you add entries here! @@ -380,7 +381,7 @@ // Overrun check --------------------------------------------------------- // ----------------------------------------------------------------------- -#define ACT_CUI_HID_END HID_CUI_START + 337 +#define ACT_CUI_HID_END HID_CUI_START + 338 #if ACT_CUI_HID_END > HID_CUI_END #error Resource-Ueberlauf in #line, #file diff --git a/cui/source/inc/hyphen.hxx b/cui/source/inc/hyphen.hxx new file mode 100644 index 000000000000..d91b0e342230 --- /dev/null +++ b/cui/source/inc/hyphen.hxx @@ -0,0 +1,122 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: hyphen.hxx,v $ + * $Revision: 1.5 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ +#ifndef _SVX_HYPHEN_HXX +#define _SVX_HYPHEN_HXX + +// include --------------------------------------------------------------- + +#include +#include +#include +#include +#include + +// forward --------------------------------------------------------------- + +namespace com{namespace sun{namespace star{ +namespace linguistic2{ + class XHyphenator; + class XPossibleHyphens; +}}}} + +class SvxSpellWrapper; + +// class SvxHyphenEdit --------------------------------------------------- + +class SvxHyphenEdit : public Edit +{ +public: + SvxHyphenEdit( Window* pParent, const ResId& rResId ); + +protected: + virtual void KeyInput( const KeyEvent &rKEvt ); +}; + +// class SvxHyphenWordDialog --------------------------------------------- + +class SvxHyphenWordDialog : public SfxModalDialog +{ +public: + SvxHyphenWordDialog( const String &rWord, LanguageType nLang, + Window* pParent, + ::com::sun::star::uno::Reference< + ::com::sun::star::linguistic2::XHyphenator > &xHyphen, + SvxSpellWrapper* pWrapper ); + + void SelLeft(); + void SelRight(); + +private: + FixedText aWordFT; + SvxHyphenEdit aWordEdit; + ImageButton aLeftBtn; + ImageButton aRightBtn; + OKButton aOkBtn; + CancelButton aCancelBtn; + PushButton aContBtn; + PushButton aDelBtn; + HelpButton aHelpBtn; + String aLabel; + SvxSpellWrapper* pHyphWrapper; + ::com::sun::star::uno::Reference< + ::com::sun::star::linguistic2::XHyphenator > xHyphenator; + ::com::sun::star::uno::Reference< + ::com::sun::star::linguistic2::XPossibleHyphens > xPossHyph; + String aActWord; // actual (to be displayed) word + LanguageType nActLanguage; // and language + sal_uInt16 nMaxHyphenationPos; // right most valid hyphenation pos + sal_uInt16 nHyphPos; + sal_uInt16 nOldPos; + sal_Bool bBusy; + + void EnableLRBtn_Impl(); + void SetLabel_Impl( LanguageType nLang ); + String EraseUnusableHyphens_Impl( + ::com::sun::star::uno::Reference< + ::com::sun::star::linguistic2::XPossibleHyphens > &rxPossHyph, + sal_uInt16 nMaxHyphenationPos ); + + void InitControls_Impl(); + void ContinueHyph_Impl( sal_uInt16 nInsPos = 0 ); + sal_uInt16 GetHyphIndex_Impl(); + + DECL_LINK( CutHdl_Impl, Button* ); + DECL_LINK( DeleteHdl_Impl, Button* ); + DECL_LINK( ContinueHdl_Impl, Button* ); + DECL_LINK( CancelHdl_Impl, Button* ); + DECL_LINK( Left_Impl, Button* ); + DECL_LINK( Right_Impl, Button* ); + DECL_LINK( GetFocusHdl_Impl, Edit* ); + DECL_LINK( LangError_Impl, void* ); +}; + + +#endif + diff --git a/cui/source/inc/thesdlg.hxx b/cui/source/inc/thesdlg.hxx new file mode 100644 index 000000000000..bf5fb812946b --- /dev/null +++ b/cui/source/inc/thesdlg.hxx @@ -0,0 +1,124 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: thesdlg.hxx,v $ + * $Revision: 1.3 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ +#ifndef _SVX_THESDLG_HXX +#define _SVX_THESDLG_HXX + +// include --------------------------------------------------------------- + +#include +#include +#include +#include +#include +#include +#include +#include + +// forward --------------------------------------------------------------- + +struct ThesDlg_Impl; + +class SvxThesaurusLanguageDlg_Impl; + +namespace com { namespace sun { namespace star { + namespace linguistic2 { + class XThesaurus; + class XMeaning; + } + namespace lang { + struct Locale; + } +}}} + +// class SvxThesaurusDialog ---------------------------------------------- + +class SvxThesaurusDialog : public SvxStandardDialog +{ +public: + friend class SvxThesaurusLanguageDlg_Impl; + + SvxThesaurusDialog( Window* pParent, + ::com::sun::star::uno::Reference< + ::com::sun::star::linguistic2::XThesaurus > xThesaurus, + const String &rWord, sal_Int16 nLanguage ); + ~SvxThesaurusDialog(); + + String GetWord() { return aReplaceEdit.GetText(); } + + sal_uInt16 GetLanguage() const; + +private: + FixedText aWordText; + ListBox aWordLB; + FixedText aReplaceText; + Edit aReplaceEdit; + FixedText aMeanText; + ListBox aMeanLB; + FixedText aSynonymText; + ListBox aSynonymLB; + FixedLine aVarFL; + + OKButton aOkBtn; + CancelButton aCancelBtn; + PushButton aLookUpBtn; + PushButton aLangBtn; + HelpButton aHelpBtn; + + String aErrStr; + + ThesDlg_Impl* pImpl; // always != NULL + + virtual void Apply(); + + void UpdateSynonymBox_Impl(); + void UpdateMeaningBox_Impl( + ::com::sun::star::uno::Sequence< + ::com::sun::star::uno::Reference< + ::com::sun::star::linguistic2::XMeaning > > *pMeaningSeq = NULL ); + void Init_Impl(sal_Int16 nLanguage); + + ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XMeaning > > + SAL_CALL queryMeanings_Impl( + ::rtl::OUString& rTerm, + const ::com::sun::star::lang::Locale& rLocale, + const ::com::sun::star::beans::PropertyValues& rProperties ) + throw(::com::sun::star::lang::IllegalArgumentException, + ::com::sun::star::uno::RuntimeException); + // Handler + DECL_LINK( SelectHdl_Impl, ListBox * ); + DECL_LINK( SynonymHdl_Impl, ListBox * ); + DECL_LINK( LookUpHdl_Impl, Button * ); + DECL_LINK( LanguageHdl_Impl, Button * ); + DECL_LINK( EntryHdl_Impl, ListBox * ); + DECL_LINK( SpellErrorHdl_Impl, void * ); +}; + +#endif + From d153d2bab7c1f8342438e1dc3ab47344502cf29e Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Thu, 10 Dec 2009 23:06:35 +0100 Subject: [PATCH 21/45] #i107450#: move SvxSearchIten to svl --- basctl/inc/pch/precompiled_basctl.hxx | 2 +- basctl/source/basicide/ide_pch.hxx | 2 +- basctl/source/basicide/iderdll.cxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/basctl/inc/pch/precompiled_basctl.hxx b/basctl/inc/pch/precompiled_basctl.hxx index be1612ea7429..b29702a42489 100644 --- a/basctl/inc/pch/precompiled_basctl.hxx +++ b/basctl/inc/pch/precompiled_basctl.hxx @@ -163,7 +163,7 @@ #define ITEMID_LINE 0 #define ITEMID_BRUSH 0 -#include "svx/srchitem.hxx" +#include "svl/srchitem.hxx" #include "svx/flstitem.hxx" #include "svx/fontitem.hxx" #include "svx/postitem.hxx" diff --git a/basctl/source/basicide/ide_pch.hxx b/basctl/source/basicide/ide_pch.hxx index 9f294b87577d..60432ef4745f 100644 --- a/basctl/source/basicide/ide_pch.hxx +++ b/basctl/source/basicide/ide_pch.hxx @@ -106,7 +106,7 @@ #define ITEMID_LINE 0 #define ITEMID_BRUSH 0 -#include +#include #include #include #include diff --git a/basctl/source/basicide/iderdll.cxx b/basctl/source/basicide/iderdll.cxx index 5f2ed2301758..4ed67919c504 100644 --- a/basctl/source/basicide/iderdll.cxx +++ b/basctl/source/basicide/iderdll.cxx @@ -56,7 +56,7 @@ #define ITEMID_SEARCH 0 -#include +#include #include using ::rtl::OUString; From 084414f1db812898d5ccb476d637c47f3d6dd0c4 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Thu, 10 Dec 2009 23:58:52 +0100 Subject: [PATCH 22/45] SvxBrushItem does not use sfx code anymore --- cui/source/tabpages/backgrnd.cxx | 5 ++--- cui/source/tabpages/tpline.cxx | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/cui/source/tabpages/backgrnd.cxx b/cui/source/tabpages/backgrnd.cxx index 004b79817b32..58393bfb674b 100644 --- a/cui/source/tabpages/backgrnd.cxx +++ b/cui/source/tabpages/backgrnd.cxx @@ -1883,7 +1883,7 @@ void SvxBackgroundTabPage::FillControls_Impl( const SvxBrushItem& rBgdAttr, if(bGraphTransparency) { - const GraphicObject* pObject = rBgdAttr.GetGraphicObject(SfxObjectShell::Current()); + const GraphicObject* pObject = rBgdAttr.GetGraphicObject(); if(pObject) aGraphTransMF.SetValue(lcl_TransparencyToPercent(pObject->GetAttr().GetTransparency())); else @@ -1903,8 +1903,7 @@ void SvxBackgroundTabPage::FillControls_Impl( const SvxBrushItem& rBgdAttr, // Grafik ist im Item vorhanden und muss nicht // geladen werden: - const Graphic* pGraphic = - rBgdAttr.GetGraphic( SfxObjectShell::Current() ); + const Graphic* pGraphic = rBgdAttr.GetGraphic(); if ( !pGraphic && aBtnPreview.IsChecked() ) bIsGraphicValid = LoadLinkedGraphic_Impl(); diff --git a/cui/source/tabpages/tpline.cxx b/cui/source/tabpages/tpline.cxx index 2b42b27fa02b..84410641305f 100644 --- a/cui/source/tabpages/tpline.cxx +++ b/cui/source/tabpages/tpline.cxx @@ -1555,7 +1555,6 @@ IMPL_LINK( SvxLineTabPage, MenuCreateHdl_Impl, MenuButton *, pButton ) PopupMenu* pPopup = new PopupMenu; String aEmptyStr; - SfxObjectShell *pDocSh = SfxObjectShell::Current(); nNumMenuGalleryItems=aGrfNames.Count(); for(long i = 0; i < nNumMenuGalleryItems; i++) @@ -1575,7 +1574,7 @@ IMPL_LINK( SvxLineTabPage, MenuCreateHdl_Impl, MenuButton *, pButton ) pInfo->pBrushItem = pBrushItem; pInfo->nItemId = (UINT16)(MN_GALLERY_ENTRY + i); aGrfBrushItems.Insert(pInfo, i); - const Graphic* pGraphic = pBrushItem->GetGraphic(pDocSh); + const Graphic* pGraphic = pBrushItem->GetGraphic(); if(pGraphic) { From a06a5334506a80d18c1b1fe72dcbd6ea54abce22 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Fri, 11 Dec 2009 11:14:40 +0100 Subject: [PATCH 23/45] remove superfluous resource --- cui/source/options/treeopt.src | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/cui/source/options/treeopt.src b/cui/source/options/treeopt.src index 05a67948da04..481eed4e0944 100644 --- a/cui/source/options/treeopt.src +++ b/cui/source/options/treeopt.src @@ -308,39 +308,6 @@ String RID_RIDER_SLL_PERSONAL Text [ en-US ] = "Personal certificates" ; }; -// RID_OFADLG_OPTIONS_TREE_WARNING --------------------------------------- - -ModalDialog RID_OFADLG_OPTIONS_TREE_HINT -{ - OutputSize = TRUE; - Size = MAP_APPFONT( 240, 105 ); - Moveable = TRUE; - Closeable = TRUE; - FixedImage IMG_HINT - { - Pos = MAP_APPFONT( 6, 6 ); - Size = MAP_APPFONT( 30, 30 ); - }; - FixedText FT_HINT - { - Pos = MAP_APPFONT( 39, 6 ); - Size = MAP_APPFONT( 195, 60 ); - WordBreak = TRUE; - Text [ en-US ] = "Please note: the settings displayed refer to the internal browser of %PRODUCTNAME (%PRODUCTNAME Writer/Web). In \"Tools - Options - Browser - External Browser\" the use of a different browser has been activated. In order to be able to use the same settings in other browsers you need to define these in the external browser settings."; - }; - CheckBox CB_DISABLE - { - Pos = MAP_APPFONT( 39, 69 ); - Size = MAP_APPFONT( 195, 12 ); - Text [ en-US ] = "~Do not show information again"; - }; - OKButton BTN_HINT - { - Pos = MAP_APPFONT( 95, 85 ); - Size = MAP_APPFONT( 50, 14 ); - }; -}; - // ******************************************************************* EOF From 053a20463d051b3b6caae759ff60851c6ec2d629 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Fri, 11 Dec 2009 12:50:06 +0100 Subject: [PATCH 24/45] some forgotten code cleanup --- cui/source/dialogs/winpluginlib.cpp | 4 ---- cui/source/inc/optimprove.hxx | 2 -- cui/source/inc/optlingu.hxx | 15 +++++++-------- cui/source/inc/radiobtnbox.hxx | 3 +-- cui/source/options/connpooloptions.cxx | 6 ------ cui/source/options/connpoolsettings.cxx | 3 --- cui/util/makefile.pmk | 3 --- 7 files changed, 8 insertions(+), 28 deletions(-) diff --git a/cui/source/dialogs/winpluginlib.cpp b/cui/source/dialogs/winpluginlib.cpp index 0b1fced85b40..6f9104bfc29f 100644 --- a/cui/source/dialogs/winpluginlib.cpp +++ b/cui/source/dialogs/winpluginlib.cpp @@ -28,10 +28,6 @@ * ************************************************************************/ -#ifdef SVX_DLLIMPLEMENTATION -#undef SVX_DLLIMPLEMENTATION -#endif - #if defined _MSC_VER #pragma warning(push, 1) #endif diff --git a/cui/source/inc/optimprove.hxx b/cui/source/inc/optimprove.hxx index 61f184239e88..16ea0de5b78c 100644 --- a/cui/source/inc/optimprove.hxx +++ b/cui/source/inc/optimprove.hxx @@ -32,8 +32,6 @@ // include --------------------------------------------------------------- -#include "svx/svxdllapi.h" - #include #include #include diff --git a/cui/source/inc/optlingu.hxx b/cui/source/inc/optlingu.hxx index 6c2a0a7ac528..72e147fa9f69 100644 --- a/cui/source/inc/optlingu.hxx +++ b/cui/source/inc/optlingu.hxx @@ -43,7 +43,6 @@ #include #include #include -#include "svx/svxdllapi.h" namespace com{namespace sun{namespace star{ namespace beans{ @@ -110,7 +109,7 @@ public: // class SvxLinguTabPage ------------------------------------------------- -class SVX_DLLPUBLIC SvxLinguTabPage : public SfxTabPage +class SvxLinguTabPage : public SfxTabPage { private: FixedLine aLinguisticFL; @@ -152,11 +151,11 @@ private: SvxLinguData_Impl* pLinguData; - SVX_DLLPRIVATE SvxLinguTabPage( Window* pParent, const SfxItemSet& rCoreSet ); - SVX_DLLPRIVATE SvLBoxEntry* CreateEntry(String& rTxt, USHORT nCol); + SvxLinguTabPage( Window* pParent, const SfxItemSet& rCoreSet ); + SvLBoxEntry* CreateEntry(String& rTxt, USHORT nCol); - SVX_DLLPRIVATE void AddDicBoxEntry( const com::sun::star::uno::Reference< com::sun::star::linguistic2::XDictionary > &rxDic, USHORT nIdx ); - SVX_DLLPRIVATE ULONG GetDicUserData( const com::sun::star::uno::Reference< com::sun::star::linguistic2::XDictionary > &rxDic, USHORT nIdx ); + void AddDicBoxEntry( const com::sun::star::uno::Reference< com::sun::star::linguistic2::XDictionary > &rxDic, USHORT nIdx ); + ULONG GetDicUserData( const com::sun::star::uno::Reference< com::sun::star::linguistic2::XDictionary > &rxDic, USHORT nIdx ); #ifdef _SVX_OPTLINGU_CXX DECL_LINK( SelectHdl_Impl, SvxCheckListBox * ); @@ -166,8 +165,8 @@ private: DECL_LINK( PostDblClickHdl_Impl, SvTreeListBox * ); DECL_LINK( OpenURLHdl_Impl, svt::FixedHyperlink* ); - SVX_DLLPRIVATE void UpdateModulesBox_Impl(); - SVX_DLLPRIVATE void UpdateDicBox_Impl(); + void UpdateModulesBox_Impl(); + void UpdateDicBox_Impl(); #endif public: diff --git a/cui/source/inc/radiobtnbox.hxx b/cui/source/inc/radiobtnbox.hxx index a0477d25b262..fb1fc582f09e 100644 --- a/cui/source/inc/radiobtnbox.hxx +++ b/cui/source/inc/radiobtnbox.hxx @@ -33,13 +33,12 @@ // include --------------------------------------------------------------- #include -#include "svx/svxdllapi.h" namespace svx { // class SvxRadioButtonListBox ------------------------------------------- -class SVX_DLLPUBLIC SvxRadioButtonListBox : public SvxSimpleTable +class SvxRadioButtonListBox : public SvxSimpleTable { using SvxSimpleTable::SetTabs; diff --git a/cui/source/options/connpooloptions.cxx b/cui/source/options/connpooloptions.cxx index fd195b18a7e3..3d6b4280cefc 100644 --- a/cui/source/options/connpooloptions.cxx +++ b/cui/source/options/connpooloptions.cxx @@ -31,18 +31,12 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_cui.hxx" -#ifdef SVX_DLLIMPLEMENTATION -#undef SVX_DLLIMPLEMENTATION -#endif #include "connpooloptions.hxx" -#ifndef _OFFAPP_CONNPOOLOPTIONS_HRC_ #include "connpooloptions.hrc" -#endif #include #include #include "connpoolsettings.hxx" #include - #include #include "helpid.hrc" #include diff --git a/cui/source/options/connpoolsettings.cxx b/cui/source/options/connpoolsettings.cxx index 03951a4ee271..3d18e50795c3 100644 --- a/cui/source/options/connpoolsettings.cxx +++ b/cui/source/options/connpoolsettings.cxx @@ -31,9 +31,6 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_cui.hxx" -#ifdef SVX_DLLIMPLEMENTATION -#undef SVX_DLLIMPLEMENTATION -#endif #include "connpoolsettings.hxx" //........................................................................ diff --git a/cui/util/makefile.pmk b/cui/util/makefile.pmk index b2aae3329111..f9e5c100671a 100644 --- a/cui/util/makefile.pmk +++ b/cui/util/makefile.pmk @@ -29,9 +29,6 @@ # #************************************************************************* -# define SVX_DLLIMPLEMENTATION (see @ svxdllapi.h) -CDEFS += -DSVX_DLLIMPLEMENTATION - .IF "$(ENABLE_GTK)" != "" CFLAGS+=-DENABLE_GTK .ENDIF From 0e23b240daf1a41f0d2887e5a3892332c7577980 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Sat, 12 Dec 2009 14:50:57 +0100 Subject: [PATCH 25/45] #i107450#: two errors found when rebuilding from scratch --- cui/source/inc/cuisrchdlg.hxx | 16 +--------------- cui/source/options/cuisrchdlg.cxx | 2 +- forms/source/richtext/richtextunowrapper.cxx | 1 + 3 files changed, 3 insertions(+), 16 deletions(-) diff --git a/cui/source/inc/cuisrchdlg.hxx b/cui/source/inc/cuisrchdlg.hxx index 93c7779d0ee9..22f4d6e9007a 100644 --- a/cui/source/inc/cuisrchdlg.hxx +++ b/cui/source/inc/cuisrchdlg.hxx @@ -34,34 +34,20 @@ #include -#ifndef _COMBOBOX_HXX //autogen #include -#endif -#ifndef _EDIT_HXX //autogen #include -#endif -#ifndef _LSTBOX_HXX //autogen #include -#endif -#ifndef _BUTTON_HXX //autogen #include -#endif -#ifndef _GROUP_HXX //autogen #include -#endif -#ifndef _FIXED_HXX //autogen #include -#endif -#ifndef _DIALOG_HXX //autogen #include -#endif #include #include #include #define _SVSTDARR_STRINGSDTOR #include #include -#include +#include class SvxJSearchOptionsPage; diff --git a/cui/source/options/cuisrchdlg.cxx b/cui/source/options/cuisrchdlg.cxx index c958204fe3c4..caddf1b729dc 100644 --- a/cui/source/options/cuisrchdlg.cxx +++ b/cui/source/options/cuisrchdlg.cxx @@ -54,7 +54,7 @@ #define ITEMID_SETITEM 0 -#include +#include #include #include #include diff --git a/forms/source/richtext/richtextunowrapper.cxx b/forms/source/richtext/richtextunowrapper.cxx index fa5733ef488c..527fc034903c 100644 --- a/forms/source/richtext/richtextunowrapper.cxx +++ b/forms/source/richtext/richtextunowrapper.cxx @@ -40,6 +40,7 @@ #include #include #include +#include //........................................................................ namespace frm From 3b340d02f87a34b573c416410ba4734e75cd10c3 Mon Sep 17 00:00:00 2001 From: Andreas Bregas Date: Tue, 15 Dec 2009 10:22:25 +0000 Subject: [PATCH 26/45] #i102261# Removed warnings, added project dependencies --- forms/prj/build.lst | 2 +- forms/source/misc/InterfaceContainer.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/forms/prj/build.lst b/forms/prj/build.lst index 3a4182b82c99..393399dc5e0a 100644 --- a/forms/prj/build.lst +++ b/forms/prj/build.lst @@ -1,4 +1,4 @@ -fm forms : l10n svx sfx2 ucb configmgr fileaccess QADEVOOO:qadevOOo NULL +fm forms : l10n oovbaapi svx sfx2 ucb configmgr fileaccess QADEVOOO:qadevOOo NULL fm forms usr1 - all fm_mkofrm NULL fm forms\inc nmake - all fm_inc NULL fm forms\source\inc get - all fm_sinc NULL diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx index 813b1873b786..6789354b6c54 100644 --- a/forms/source/misc/InterfaceContainer.cxx +++ b/forms/source/misc/InterfaceContainer.cxx @@ -163,12 +163,12 @@ OInterfaceContainer::fakeVbaEventsHack( sal_Int32 _nIndex ) if ( m_xEventAttacher.is() ) m_xEventAttacher->registerScriptEvents( _nIndex, vbaEvents ); } - catch( Exception& e ){ OSL_TRACE("lcl_fakevbaevents - Caught Exception trying to create control eventstuff "); } + catch( Exception& ){ OSL_TRACE("lcl_fakevbaevents - Caught Exception trying to create control eventstuff "); } } } } - catch( Exception& e ) + catch( Exception& ) { } From 06c61003faf8a61f38f7985b58d27e4fb38ef0c6 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Tue, 15 Dec 2009 21:55:40 +0100 Subject: [PATCH 27/45] #i107706#: liquidate goodies module --- cui/source/inc/cuigaldlg.hxx | 2 +- cui/source/inc/cuigrfflt.hxx | 2 +- cui/source/options/optgdlg.cxx | 2 +- cui/source/options/optmemory.cxx | 2 +- cui/util/makefile.mk | 1 - 5 files changed, 4 insertions(+), 5 deletions(-) diff --git a/cui/source/inc/cuigaldlg.hxx b/cui/source/inc/cuigaldlg.hxx index ef285bb85448..2c62f6b56f7b 100644 --- a/cui/source/inc/cuigaldlg.hxx +++ b/cui/source/inc/cuigaldlg.hxx @@ -42,7 +42,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/cui/source/inc/cuigrfflt.hxx b/cui/source/inc/cuigrfflt.hxx index 061ada2568d1..1f9442a22c68 100644 --- a/cui/source/inc/cuigrfflt.hxx +++ b/cui/source/inc/cuigrfflt.hxx @@ -40,7 +40,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx index 2c069130c40d..7e389c4b3d15 100644 --- a/cui/source/options/optgdlg.cxx +++ b/cui/source/options/optgdlg.cxx @@ -31,7 +31,7 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_cui.hxx" #include -#include +#include #include #include #include diff --git a/cui/source/options/optmemory.cxx b/cui/source/options/optmemory.cxx index a72660ba2e0f..3d0f4d82a68d 100644 --- a/cui/source/options/optmemory.cxx +++ b/cui/source/options/optmemory.cxx @@ -32,7 +32,7 @@ #include "precompiled_cui.hxx" #include #include -#include +#include #include #include #include diff --git a/cui/util/makefile.mk b/cui/util/makefile.mk index bedd1cee6407..120b74098cce 100644 --- a/cui/util/makefile.mk +++ b/cui/util/makefile.mk @@ -64,7 +64,6 @@ SHL1STDLIBS= \ $(SVXLIB) \ $(AVMEDIALIB) \ $(SFX2LIB) \ - $(GOODIESLIB) \ $(BASEGFXLIB) \ $(BASICLIB) \ $(LNGLIB) \ From e7ba25b2347cceb3b1ec90e4abe118e6657d8763 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Thu, 7 Jan 2010 09:13:35 -0500 Subject: [PATCH 28/45] kohei03: reverted changes in the cws that were not intended. --- extensions/source/config/ldap/ldapaccess.cxx | 15 +++++++++------ extensions/source/config/ldap/wrapldapinclude.hxx | 6 ++++++ 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/extensions/source/config/ldap/ldapaccess.cxx b/extensions/source/config/ldap/ldapaccess.cxx index a850a441c5fe..ee7505c8a518 100644 --- a/extensions/source/config/ldap/ldapaccess.cxx +++ b/extensions/source/config/ldap/ldapaccess.cxx @@ -315,14 +315,17 @@ void LdapConnection::loadModule() if ( !s_Ldap_Module ) { #if defined(WIN) || defined(WNT) - const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("nsldap32v50.dll")); +# define LIBLDAP "nsldap32v50.dll" #else -#ifdef WITH_OPENLDAP - const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("libldap.so")); -#else - const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM("libldap50.so")); -#endif +# ifdef WITH_OPENLDAP +# define xstr(s) str(s) +# define str(s) #s +# define LIBLDAP "libldap-" xstr(LDAP_VENDOR_VERSION_MAJOR) "." xstr(LDAP_VENDOR_VERSION_MINOR) ".so." xstr(LDAP_VENDOR_VERSION_MAJOR) +# else +# define LIBLDAP "libldap50.so" +# endif #endif + const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM(LIBLDAP)); // load the dbtools library s_Ldap_Module = osl_loadModuleRelative(&thisModule, sModuleName.pData, 0); diff --git a/extensions/source/config/ldap/wrapldapinclude.hxx b/extensions/source/config/ldap/wrapldapinclude.hxx index 4c1bbdc350f8..b3b8d45e94d7 100644 --- a/extensions/source/config/ldap/wrapldapinclude.hxx +++ b/extensions/source/config/ldap/wrapldapinclude.hxx @@ -35,6 +35,12 @@ #ifdef WITH_OPENLDAP #include +#ifndef LDAP_API +# define LDAP_API(rt) rt +#endif +#ifndef LDAP_CALL +# define LDAP_CALL +#endif #else #ifndef LDAP_INCLUDED #define LDAP_INCLUDED From 062389b010a139129682709876e3d092de234af5 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Fri, 8 Jan 2010 18:32:51 +0100 Subject: [PATCH 29/45] #i107450#: build all other modules with new editeng lib --- basctl/inc/pch/precompiled_basctl.hxx | 74 ++++++++-------- basctl/sdi/basslots.hrc | 2 +- basctl/source/basicide/basdoc.cxx | 2 +- basctl/source/basicide/basicbox.cxx | 2 +- basctl/source/basicide/baside3.cxx | 2 +- basctl/source/basicide/ide_pch.hxx | 87 ++----------------- basctl/source/dlged/managelang.cxx | 2 +- basctl/util/makefile.mk | 1 + cui/source/dialogs/SpellDialog.cxx | 9 +- cui/source/dialogs/commonlingui.hxx | 2 +- cui/source/dialogs/cuicharmap.cxx | 2 +- cui/source/dialogs/cuigaldlg.cxx | 4 +- cui/source/dialogs/hangulhanjadlg.cxx | 4 +- cui/source/dialogs/hyphen.cxx | 6 +- cui/source/dialogs/srchxtra.cxx | 2 +- cui/source/dialogs/thesdlg.cxx | 3 +- cui/source/factory/dlgfact.cxx | 10 +-- cui/source/factory/dlgfact.hxx | 10 +-- cui/source/inc/SpellDialog.hxx | 4 +- cui/source/inc/hangulhanjadlg.hxx | 14 +-- cui/source/inc/numpages.hxx | 2 +- cui/source/inc/optpath.hxx | 2 +- cui/source/inc/page.hxx | 2 +- cui/source/inc/tabstpge.hxx | 2 +- cui/source/options/cuisrchdlg.cxx | 2 +- cui/source/options/optasian.cxx | 4 +- cui/source/options/optdict.cxx | 2 +- cui/source/options/optgdlg.cxx | 9 +- cui/source/options/optgenrl.cxx | 1 + cui/source/options/optlingu.cxx | 2 +- cui/source/options/optmemory.cxx | 4 +- cui/source/options/optpath.cxx | 4 +- cui/source/options/treeopt.cxx | 4 +- cui/source/tabpages/align.cxx | 4 +- cui/source/tabpages/autocdlg.cxx | 6 +- cui/source/tabpages/backgrnd.cxx | 11 +-- cui/source/tabpages/border.cxx | 4 +- cui/source/tabpages/borderconn.cxx | 6 +- cui/source/tabpages/chardlg.cxx | 53 +++++------ cui/source/tabpages/grfpage.cxx | 4 +- cui/source/tabpages/numpages.cxx | 8 +- cui/source/tabpages/page.cxx | 30 ++++--- cui/source/tabpages/paragrph.cxx | 30 +++---- cui/source/tabpages/tabstpge.cxx | 2 +- cui/source/tabpages/textattr.cxx | 2 +- cui/source/tabpages/tpline.cxx | 8 +- cui/source/tabpages/transfrm.cxx | 4 +- cui/util/makefile.mk | 1 + extensions/source/propctrlr/fontdialog.cxx | 32 +++---- extensions/source/propctrlr/makefile.mk | 1 + forms/inc/pch/precompiled_forms.hxx | 22 ++--- forms/source/richtext/attributedispatcher.cxx | 2 +- forms/source/richtext/clipboarddispatcher.cxx | 2 +- .../parametrizedattributedispatcher.cxx | 2 +- forms/source/richtext/richtextcontrol.cxx | 2 +- forms/source/richtext/richtextengine.cxx | 10 +-- forms/source/richtext/richtextengine.hxx | 2 +- forms/source/richtext/richtextimplcontrol.cxx | 12 +-- forms/source/richtext/richtextimplcontrol.hxx | 2 +- forms/source/richtext/richtextmodel.cxx | 2 +- forms/source/richtext/richtextunowrapper.cxx | 8 +- forms/source/richtext/richtextunowrapper.hxx | 4 +- forms/source/richtext/richtextvclcontrol.cxx | 15 ++-- forms/source/richtext/richtextviewport.cxx | 2 +- forms/source/richtext/rtattributehandler.cxx | 16 ++-- forms/source/richtext/rtattributehandler.hxx | 4 +- forms/source/richtext/specialdispatchers.cxx | 6 +- forms/util/makefile.mk | 1 + 68 files changed, 269 insertions(+), 333 deletions(-) diff --git a/basctl/inc/pch/precompiled_basctl.hxx b/basctl/inc/pch/precompiled_basctl.hxx index b29702a42489..82999fa71e4b 100644 --- a/basctl/inc/pch/precompiled_basctl.hxx +++ b/basctl/inc/pch/precompiled_basctl.hxx @@ -164,46 +164,46 @@ #define ITEMID_BRUSH 0 #include "svl/srchitem.hxx" -#include "svx/flstitem.hxx" -#include "svx/fontitem.hxx" -#include "svx/postitem.hxx" -#include "svx/wghtitem.hxx" -#include "svx/fhgtitem.hxx" -#include "svx/fwdtitem.hxx" -#include "svx/udlnitem.hxx" -#include "svx/crsditem.hxx" -#include "svx/shdditem.hxx" -#include "svx/akrnitem.hxx" -#include "svx/wrlmitem.hxx" -#include "svx/cntritem.hxx" -#include "svx/prszitem.hxx" -#include "svx/colritem.hxx" -#include "svx/cscoitem.hxx" -#include "svx/kernitem.hxx" +#include "editeng/flstitem.hxx" +#include "editeng/fontitem.hxx" +#include "editeng/postitem.hxx" +#include "editeng/wghtitem.hxx" +#include "editeng/fhgtitem.hxx" +#include "editeng/fwdtitem.hxx" +#include "editeng/udlnitem.hxx" +#include "editeng/crsditem.hxx" +#include "editeng/shdditem.hxx" +#include "editeng/akrnitem.hxx" +#include "editeng/wrlmitem.hxx" +#include "editeng/cntritem.hxx" +#include "editeng/prszitem.hxx" +#include "editeng/colritem.hxx" +#include "editeng/cscoitem.hxx" +#include "editeng/kernitem.hxx" -#include "svx/cmapitem.hxx" -#include "svx/escpitem.hxx" -#include "svx/langitem.hxx" -#include "svx/nlbkitem.hxx" -#include "svx/nhypitem.hxx" -#include "svx/lcolitem.hxx" -#include "svx/blnkitem.hxx" +#include "editeng/cmapitem.hxx" +#include "editeng/escpitem.hxx" +#include "editeng/langitem.hxx" +#include "editeng/nlbkitem.hxx" +#include "editeng/nhypitem.hxx" +#include "editeng/lcolitem.hxx" +#include "editeng/blnkitem.hxx" -#include "svx/pbinitem.hxx" -#include "svx/sizeitem.hxx" -#include "svx/lrspitem.hxx" -#include "svx/ulspitem.hxx" -#include "svx/prntitem.hxx" -#include "svx/opaqitem.hxx" -#include "svx/protitem.hxx" -#include "svx/shaditem.hxx" -#include "svx/boxitem.hxx" -#include "svx/brkitem.hxx" -#include "svx/keepitem.hxx" -#include "svx/bolnitem.hxx" -#include "svx/brshitem.hxx" +#include "editeng/pbinitem.hxx" +#include "editeng/sizeitem.hxx" +#include "editeng/lrspitem.hxx" +#include "editeng/ulspitem.hxx" +#include "editeng/prntitem.hxx" +#include "editeng/opaqitem.hxx" +#include "editeng/protitem.hxx" +#include "editeng/shaditem.hxx" +#include "editeng/boxitem.hxx" +#include "editeng/brkitem.hxx" +#include "editeng/keepitem.hxx" +#include "editeng/bolnitem.hxx" +#include "editeng/brshitem.hxx" #include "svx/xmlsecctrl.hxx" -#include "svx/unolingu.hxx" +#include "editeng/unolingu.hxx" #include "xmlscript/xmldlg_imexp.hxx" diff --git a/basctl/sdi/basslots.hrc b/basctl/sdi/basslots.hrc index ca42723efeff..5fc716399614 100644 --- a/basctl/sdi/basslots.hrc +++ b/basctl/sdi/basslots.hrc @@ -29,4 +29,4 @@ ************************************************************************/ #include - +#include diff --git a/basctl/source/basicide/basdoc.cxx b/basctl/source/basicide/basdoc.cxx index 4dd0dbd2aeca..c2c89e12c048 100644 --- a/basctl/source/basicide/basdoc.cxx +++ b/basctl/source/basicide/basdoc.cxx @@ -33,7 +33,7 @@ #include - +#include #define GLOBALOVERFLOW2 diff --git a/basctl/source/basicide/basicbox.cxx b/basctl/source/basicide/basicbox.cxx index fb73babe54a5..c2e954a26319 100644 --- a/basctl/source/basicide/basicbox.cxx +++ b/basctl/source/basicide/basicbox.cxx @@ -48,7 +48,7 @@ #include "localizationmgr.hxx" #include "managelang.hxx" #include "dlgresid.hrc" -#include +#include #include diff --git a/basctl/source/basicide/baside3.cxx b/basctl/source/basicide/baside3.cxx index d33310b6e339..92682768337e 100644 --- a/basctl/source/basicide/baside3.cxx +++ b/basctl/source/basicide/baside3.cxx @@ -64,7 +64,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/basctl/source/basicide/ide_pch.hxx b/basctl/source/basicide/ide_pch.hxx index 60432ef4745f..f1029890f550 100644 --- a/basctl/source/basicide/ide_pch.hxx +++ b/basctl/source/basicide/ide_pch.hxx @@ -29,6 +29,9 @@ ************************************************************************/ #include +#define ITEMID_SEARCH 0 +#define ITEMID_SIZE 0 + #include #include #include @@ -38,6 +41,8 @@ #include #include #include +#include +#include #define _BASIC_TEXTPORTIONS #include @@ -63,86 +68,6 @@ #include #include #include +#include -#define ITEMID_FONT 0 -#define ITEMID_POSTURE 0 -#define ITEMID_WEIGHT 0 -#define ITEMID_SHADOWED 0 -#define ITEMID_CONTOUR 0 -#define ITEMID_CROSSEDOUT 0 -#define ITEMID_UNDERLINE 0 -#define ITEMID_FONTHEIGHT 0 -#define ITEMID_COLOR 0 -#define ITEMID_ADJUST 0 -#define ITEMID_LINESPACING 0 -#define ITEMID_TABSTOP 0 -#define ITEMID_LRSPACE 0 -#define ITEMID_ULSPACE 0 -#define ITEMID_SEARCH 0 -#define ITEMID_SEARCH 0 -#define ITEMID_SIZE 0 -#define ITEMID_FONTLIST 0 -#define ITEMID_AUTOKERN 0 -#define ITEMID_WORDLINEMODE 0 -#define ITEMID_PROPSIZE 0 -#define ITEMID_CHARSETCOLOR 0 -#define ITEMID_KERNING 0 -#define ITEMID_CASEMAP 0 -#define ITEMID_ESCAPEMENT 0 -#define ITEMID_LANGUAGE 0 -#define ITEMID_NOLINEBREAK 0 -#define ITEMID_NOHYPHENHERE 0 -#define ITEMID_BLINK 0 -#define ITEMID_PAPERBIN 0 -#define ITEMID_PRINT 0 -#define ITEMID_OPAQUE 0 -#define ITEMID_PROTECT 0 -#define ITEMID_SHADOW 0 -#define ITEMID_BOX 0 -#define ITEMID_BOXINFO 0 -#define ITEMID_FMTBREAK 0 -#define ITEMID_FMTKEEP 0 -#define ITEMID_LINE 0 -#define ITEMID_BRUSH 0 - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - diff --git a/basctl/source/dlged/managelang.cxx b/basctl/source/dlged/managelang.cxx index d1ba13209147..8f797c87bdeb 100644 --- a/basctl/source/dlged/managelang.cxx +++ b/basctl/source/dlged/managelang.cxx @@ -56,7 +56,7 @@ #include #include #include -#include +#include #include diff --git a/basctl/util/makefile.mk b/basctl/util/makefile.mk index 0f2a919ff655..de2514e0ff78 100644 --- a/basctl/util/makefile.mk +++ b/basctl/util/makefile.mk @@ -54,6 +54,7 @@ SHL1TARGET= basctl$(DLLPOSTFIX) SHL1IMPLIB= basctl SHL1BASE = 0x1d800000 SHL1STDLIBS= \ + $(EDITENGLIB) \ $(SVXCORELIB) \ $(SVXLIB) \ $(SFX2LIB) \ diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx index a583a708c8b0..ae82dde312ea 100644 --- a/cui/source/dialogs/SpellDialog.cxx +++ b/cui/source/dialogs/SpellDialog.cxx @@ -46,8 +46,8 @@ #include #include #include -#include -#include +#include +#include #include #include #include @@ -60,12 +60,11 @@ #include #include #include -#include #include #include #include "SpellDialog.hrc" #include -#include +#include #include #include "SpellDialog.hxx" #include @@ -888,7 +887,7 @@ static Image lcl_GetImageFromPngUrl( const ::rtl::OUString &rFileUrl ) osl::FileBase::getSystemPathFromFileURL( rFileUrl, aTmp ); Graphic aGraphic; const String aFilterName( RTL_CONSTASCII_USTRINGPARAM( IMP_PNG ) ); - if( GRFILTER_OK == LoadGraphic( aTmp, aFilterName, aGraphic ) ) + if( GRFILTER_OK == GraphicFilter::LoadGraphic( aTmp, aFilterName, aGraphic ) ) { aRes = Image( aGraphic.GetBitmapEx() ); } diff --git a/cui/source/dialogs/commonlingui.hxx b/cui/source/dialogs/commonlingui.hxx index d1781e83348f..a2fb122f8169 100644 --- a/cui/source/dialogs/commonlingui.hxx +++ b/cui/source/dialogs/commonlingui.hxx @@ -34,7 +34,7 @@ #include #include #include -#include +#include #ifndef _SV_BUTTON_HXX #include #endif diff --git a/cui/source/dialogs/cuicharmap.cxx b/cui/source/dialogs/cuicharmap.cxx index 83dc06e606a3..ac312730a30d 100644 --- a/cui/source/dialogs/cuicharmap.cxx +++ b/cui/source/dialogs/cuicharmap.cxx @@ -53,7 +53,7 @@ #include #include #include -#include +#include #include "charmap.hrc" #include "macroass.hxx" diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx index 426d6fef86ea..5f6ced04de8e 100644 --- a/cui/source/dialogs/cuigaldlg.cxx +++ b/cui/source/dialogs/cuigaldlg.cxx @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include #include "cuigaldlg.hxx" @@ -856,7 +856,7 @@ SfxTabPage* TPGalleryThemeProperties::Create( Window* pParent, const SfxItemSet& void TPGalleryThemeProperties::FillFilterList() { - GraphicFilter* pFilter = GetGrfFilter(); + GraphicFilter* pFilter = GraphicFilter::GetGraphicFilter(); String aExt; String aName; FilterEntry* pFilterEntry; diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx index afef3c1edb5f..018184cc46f9 100644 --- a/cui/source/dialogs/hangulhanjadlg.cxx +++ b/cui/source/dialogs/hangulhanjadlg.cxx @@ -53,7 +53,7 @@ #include -#define HHC HangulHanjaConversion +#define HHC editeng::HangulHanjaConversion #define LINE_CNT static_cast< USHORT >(2) //............................................................................. @@ -604,7 +604,7 @@ namespace svx m_pPlayground->GetButton( SvxCommonLinguisticControl::eOptions )->Show(); // m_pPlayground->EnableButton( SvxCommonLinguisticControl::eOptions, true ); - if ( HangulHanjaConversion::eHangulToHanja == _ePrimaryDirection ) + if ( editeng::HangulHanjaConversion::eHangulToHanja == _ePrimaryDirection ) { // m_aHanjaOnly.Enable( sal_False ); m_pIgnoreNonPrimary = &m_aHangulOnly; diff --git a/cui/source/dialogs/hyphen.cxx b/cui/source/dialogs/hyphen.cxx index dca6c2ff6dcd..b3c3e85b6f10 100644 --- a/cui/source/dialogs/hyphen.cxx +++ b/cui/source/dialogs/hyphen.cxx @@ -38,12 +38,12 @@ #include #include "cuires.hrc" #include "hyphen.hrc" -#include +#include #include "hyphen.hxx" -#include +#include #include #include -#include +#include #include #include "dialmgr.hxx" diff --git a/cui/source/dialogs/srchxtra.cxx b/cui/source/dialogs/srchxtra.cxx index 5b28029920cc..6b9f01fb9976 100644 --- a/cui/source/dialogs/srchxtra.cxx +++ b/cui/source/dialogs/srchxtra.cxx @@ -43,7 +43,7 @@ #include "srchxtra.hrc" #include // RID_ATTR_BEGIN #include // item resources -#include +#include #include "chardlg.hxx" #include "paragrph.hxx" #include diff --git a/cui/source/dialogs/thesdlg.cxx b/cui/source/dialogs/thesdlg.cxx index 5cd53e5521c6..6ac180501947 100644 --- a/cui/source/dialogs/thesdlg.cxx +++ b/cui/source/dialogs/thesdlg.cxx @@ -44,11 +44,12 @@ #include #include "cuires.hrc" #include "thesdlg.hrc" -#include +#include #include #include #include "dialmgr.hxx" #include +#include using namespace ::com::sun::star; using namespace ::com::sun::star::lang; diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index d781333f9d47..2be763439401 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -274,12 +274,12 @@ void AbstractHangulHanjaConversionDialog_Impl::SetByCharacter( sal_Bool _bByChar pDlg->SetByCharacter(_bByCharacter); } -void AbstractHangulHanjaConversionDialog_Impl::SetConversionDirectionState( sal_Bool _bTryBothDirections, HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ) +void AbstractHangulHanjaConversionDialog_Impl::SetConversionDirectionState( sal_Bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ) { pDlg->SetConversionDirectionState(_bTryBothDirections, _ePrimaryConversionDirection); } -void AbstractHangulHanjaConversionDialog_Impl::SetConversionFormat( HangulHanjaConversion::ConversionFormat _eType ) +void AbstractHangulHanjaConversionDialog_Impl::SetConversionFormat( editeng::HangulHanjaConversion::ConversionFormat _eType ) { pDlg->SetConversionFormat(_eType); } @@ -328,7 +328,7 @@ sal_Bool AbstractHangulHanjaConversionDialog_Impl::GetUseBothDirections( ) const return pDlg->GetUseBothDirections(); } -HangulHanjaConversion::ConversionDirection AbstractHangulHanjaConversionDialog_Impl::GetDirection( HangulHanjaConversion::ConversionDirection _eDefaultDirection ) const +editeng::HangulHanjaConversion::ConversionDirection AbstractHangulHanjaConversionDialog_Impl::GetDirection( editeng::HangulHanjaConversion::ConversionDirection _eDefaultDirection ) const { return pDlg->GetDirection( _eDefaultDirection ); } @@ -345,7 +345,7 @@ String AbstractHangulHanjaConversionDialog_Impl::GetCurrentString( ) const { return pDlg->GetCurrentString(); } -HangulHanjaConversion::ConversionFormat AbstractHangulHanjaConversionDialog_Impl::GetConversionFormat( ) const +editeng::HangulHanjaConversion::ConversionFormat AbstractHangulHanjaConversionDialog_Impl::GetConversionFormat( ) const { return pDlg->GetConversionFormat(); } @@ -1135,7 +1135,7 @@ AbstractSvxDistributeDialog* AbstractDialogFactory_Impl::CreateSvxDistributeD } AbstractHangulHanjaConversionDialog* AbstractDialogFactory_Impl::CreateHangulHanjaConversionDialog(Window* pParent, - HangulHanjaConversion::ConversionDirection _ePrimaryDirection ) + editeng::HangulHanjaConversion::ConversionDirection _ePrimaryDirection ) { HangulHanjaConversionDialog* pDlg = new HangulHanjaConversionDialog( pParent, _ePrimaryDirection); return new AbstractHangulHanjaConversionDialog_Impl( pDlg ); diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index 5773cb8292dd..f6189c9b486f 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -163,8 +163,8 @@ class AbstractHangulHanjaConversionDialog_Impl: public AbstractHangulHanjaConver virtual void EndDialog(long nResult = 0); virtual void EnableRubySupport( sal_Bool _bVal ); virtual void SetByCharacter( sal_Bool _bByCharacter ) ; - virtual void SetConversionDirectionState( sal_Bool _bTryBothDirections, HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ); - virtual void SetConversionFormat( HangulHanjaConversion::ConversionFormat _eType ); + virtual void SetConversionDirectionState( sal_Bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ); + virtual void SetConversionFormat( editeng::HangulHanjaConversion::ConversionFormat _eType ); virtual void SetOptionsChangedHdl( const Link& _rHdl ); virtual void SetIgnoreHdl( const Link& _rHdl ); virtual void SetIgnoreAllHdl( const Link& _rHdl ) ; @@ -174,14 +174,14 @@ class AbstractHangulHanjaConversionDialog_Impl: public AbstractHangulHanjaConver virtual void SetConversionFormatChangedHdl( const Link& _rHdl ) ; virtual void SetFindHdl( const Link& _rHdl ); virtual sal_Bool GetUseBothDirections( ) const; - virtual HangulHanjaConversion::ConversionDirection GetDirection( HangulHanjaConversion::ConversionDirection _eDefaultDirection ) const; + virtual editeng::HangulHanjaConversion::ConversionDirection GetDirection( editeng::HangulHanjaConversion::ConversionDirection _eDefaultDirection ) const; virtual void SetCurrentString( const String& _rNewString, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& _rSuggestions, bool _bOriginatesFromDocument = true ); virtual String GetCurrentString( ) const ; - virtual HangulHanjaConversion::ConversionFormat GetConversionFormat( ) const ; + virtual editeng::HangulHanjaConversion::ConversionFormat GetConversionFormat( ) const ; virtual void FocusSuggestion( ); virtual String GetCurrentSuggestion( ) const; }; @@ -649,7 +649,7 @@ public: virtual SfxAbstractLinksDialog* CreateLinksDialog( Window* pParent, sfx2::SvLinkManager* pMgr, BOOL bHTML, sfx2::SvBaseLink* p=0 ); virtual AbstractHangulHanjaConversionDialog * CreateHangulHanjaConversionDialog( Window* _pParent, //add for HangulHanjaConversionDialog CHINA001 - HangulHanjaConversion::ConversionDirection _ePrimaryDirection ); + editeng::HangulHanjaConversion::ConversionDirection _ePrimaryDirection ); virtual AbstractThesaurusDialog* CreateThesaurusDialog( Window*, ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XThesaurus > xThesaurus, const String &rWord, sal_Int16 nLanguage ); diff --git a/cui/source/inc/SpellDialog.hxx b/cui/source/inc/SpellDialog.hxx index 86c41d17452e..dd352fcab91e 100644 --- a/cui/source/inc/SpellDialog.hxx +++ b/cui/source/inc/SpellDialog.hxx @@ -45,13 +45,13 @@ #include -#include +#include #include #include #include #include #include -#include +#include class ScrollBar; class TextEngine; diff --git a/cui/source/inc/hangulhanjadlg.hxx b/cui/source/inc/hangulhanjadlg.hxx index 6c87b8003479..3d9875e43e47 100644 --- a/cui/source/inc/hangulhanjadlg.hxx +++ b/cui/source/inc/hangulhanjadlg.hxx @@ -37,9 +37,9 @@ #include #include #include -#include +#include #include -#include +#include #include #include @@ -146,7 +146,7 @@ namespace svx public: HangulHanjaConversionDialog( Window* _pParent, - HangulHanjaConversion::ConversionDirection _ePrimaryDirection ); + editeng::HangulHanjaConversion::ConversionDirection _ePrimaryDirection ); ~HangulHanjaConversionDialog( ); public: @@ -173,20 +173,20 @@ namespace svx // retrieves the current suggestion String GetCurrentSuggestion( ) const; - void SetConversionFormat( HangulHanjaConversion::ConversionFormat _eType ); - HangulHanjaConversion::ConversionFormat GetConversionFormat( ) const; + void SetConversionFormat( editeng::HangulHanjaConversion::ConversionFormat _eType ); + editeng::HangulHanjaConversion::ConversionFormat GetConversionFormat( ) const; void SetByCharacter( sal_Bool _bByCharacter ); sal_Bool GetByCharacter( ) const; - void SetConversionDirectionState( sal_Bool _bTryBothDirections, HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ); + void SetConversionDirectionState( sal_Bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ); // should text which does not match the primary conversion direction be ignored? sal_Bool GetUseBothDirections( ) const; // get current conversion direction to use // (return argument if GetUseBothDirections is true) - HangulHanjaConversion::ConversionDirection GetDirection( HangulHanjaConversion::ConversionDirection eDefaultDirection ) const; + editeng::HangulHanjaConversion::ConversionDirection GetDirection( editeng::HangulHanjaConversion::ConversionDirection eDefaultDirection ) const; // enables or disbales the checkboxes for ruby formatted replacements void EnableRubySupport( sal_Bool bVal ); diff --git a/cui/source/inc/numpages.hxx b/cui/source/inc/numpages.hxx index a5d8a212d48e..342a7ee6609a 100644 --- a/cui/source/inc/numpages.hxx +++ b/cui/source/inc/numpages.hxx @@ -40,7 +40,7 @@ #include #include #ifndef _SVX_NUMDEF_HXX -#include +#include #endif #include #include diff --git a/cui/source/inc/optpath.hxx b/cui/source/inc/optpath.hxx index c05b0b778c58..cc469c539416 100644 --- a/cui/source/inc/optpath.hxx +++ b/cui/source/inc/optpath.hxx @@ -91,7 +91,7 @@ private: DECL_LINK( PathHdl_Impl, PushButton * ); DECL_LINK( StandardHdl_Impl, PushButton * ); - DECL_LINK( PathSelect_Impl, OptHeaderTabListBox * ); + DECL_LINK( PathSelect_Impl, svx::OptHeaderTabListBox * ); DECL_LINK( HeaderSelect_Impl, HeaderBar * ); DECL_LINK( HeaderEndDrag_Impl, HeaderBar * ); diff --git a/cui/source/inc/page.hxx b/cui/source/inc/page.hxx index 1b716aedfd46..c83f8e634f7e 100644 --- a/cui/source/inc/page.hxx +++ b/cui/source/inc/page.hxx @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include diff --git a/cui/source/inc/tabstpge.hxx b/cui/source/inc/tabstpge.hxx index 66d432ea37b4..d22416ad915c 100644 --- a/cui/source/inc/tabstpge.hxx +++ b/cui/source/inc/tabstpge.hxx @@ -38,7 +38,7 @@ #include #include -#include +#include #include // forward --------------------------------------------------------------- diff --git a/cui/source/options/cuisrchdlg.cxx b/cui/source/options/cuisrchdlg.cxx index caddf1b729dc..b2da78b05199 100644 --- a/cui/source/options/cuisrchdlg.cxx +++ b/cui/source/options/cuisrchdlg.cxx @@ -59,7 +59,7 @@ #include #include #include -#include +#include #include "backgrnd.hxx" diff --git a/cui/source/options/optasian.cxx b/cui/source/options/optasian.cxx index 0bbf0ac287bd..8a6057416773 100644 --- a/cui/source/options/optasian.cxx +++ b/cui/source/options/optasian.cxx @@ -32,8 +32,8 @@ #include "precompiled_cui.hxx" #include -#include -#include +#include +#include #include #include #include diff --git a/cui/source/options/optdict.cxx b/cui/source/options/optdict.cxx index e56089dd351e..edfbface5aba 100644 --- a/cui/source/options/optdict.cxx +++ b/cui/source/options/optdict.cxx @@ -33,7 +33,7 @@ // include --------------------------------------------------------------- #include -#include +#include #include #include #include diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx index cb9da902c050..0205539a86c6 100644 --- a/cui/source/options/optgdlg.cxx +++ b/cui/source/options/optgdlg.cxx @@ -69,12 +69,13 @@ #include #include "cuitabarea.hxx" #include -#include -#include +#include +#include #include #include - - +#include +#include +#include #include #include #include diff --git a/cui/source/options/optgenrl.cxx b/cui/source/options/optgenrl.cxx index 85c0d450cc47..6f62f0962db4 100644 --- a/cui/source/options/optgenrl.cxx +++ b/cui/source/options/optgenrl.cxx @@ -36,6 +36,7 @@ #include #include #include +#include #define _SVX_OPTGENRL_CXX diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx index 7ca67a553278..1dee201213ba 100644 --- a/cui/source/options/optlingu.cxx +++ b/cui/source/options/optlingu.cxx @@ -40,7 +40,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/cui/source/options/optmemory.cxx b/cui/source/options/optmemory.cxx index 3d0f4d82a68d..cd813216ab28 100644 --- a/cui/source/options/optmemory.cxx +++ b/cui/source/options/optmemory.cxx @@ -55,8 +55,8 @@ #include #include #include -#include -#include +#include +#include #include "cuioptgenrl.hxx" #include "optpath.hxx" #include "optsave.hxx" diff --git a/cui/source/options/optpath.cxx b/cui/source/options/optpath.cxx index 8e004b54b018..b9bd1c52d549 100644 --- a/cui/source/options/optpath.cxx +++ b/cui/source/options/optpath.cxx @@ -256,7 +256,7 @@ SvxPathTabPage::SvxPathTabPage( Window* pParent, const SfxItemSet& rSet ) : Size aHeadSize = pHeaderBar->GetSizePixel(); WinBits nBits = WB_SORT | WB_HSCROLL | WB_CLIPCHILDREN | WB_TABSTOP; - pPathBox = new OptHeaderTabListBox( &aPathCtrl, nBits ); + pPathBox = new svx::OptHeaderTabListBox( &aPathCtrl, nBits ); aPathCtrl.SetFocusControl( pPathBox ); pPathBox->SetWindowBits( nBits ); pPathBox->SetDoubleClickHdl( aLink ); @@ -409,7 +409,7 @@ void SvxPathTabPage::FillUserData() // ----------------------------------------------------------------------- -IMPL_LINK( SvxPathTabPage, PathSelect_Impl, OptHeaderTabListBox *, EMPTYARG ) +IMPL_LINK( SvxPathTabPage, PathSelect_Impl, svx::OptHeaderTabListBox *, EMPTYARG ) /* [Beschreibung] diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx index b45a19af4a70..c35738807ee7 100644 --- a/cui/source/options/treeopt.cxx +++ b/cui/source/options/treeopt.cxx @@ -113,7 +113,7 @@ #include "treeopt.hxx" #include "treeopt.hrc" #include "fontsubs.hxx" -#include +#include #include #include "connpoolconfig.hxx" #include "dbregister.hxx" @@ -123,7 +123,7 @@ #ifndef _SVX_LANGITEM_HXX #define ITEMID_LANGUAGE SID_ATTR_CHAR_LANGUAGE -#include +#include #endif diff --git a/cui/source/tabpages/align.cxx b/cui/source/tabpages/align.cxx index f275cc084877..dcef5e9fa9e7 100644 --- a/cui/source/tabpages/align.cxx +++ b/cui/source/tabpages/align.cxx @@ -35,14 +35,14 @@ #include "align.hxx" -#include +#include #include #include #include "align.hrc" #include #include -#include +#include #include #include #include diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index 764a5e0b163e..fcf05709b7cd 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -61,10 +61,10 @@ #include "autocdlg.hxx" #include "autocdlg.hrc" #include "helpid.hrc" -#include -#include +#include +#include #include "cuicharmap.hxx" -#include +#include #include #include // SID_OPEN_SMARTTAGSOPTIONS diff --git a/cui/source/tabpages/backgrnd.cxx b/cui/source/tabpages/backgrnd.cxx index 58393bfb674b..4cff912e5fd5 100644 --- a/cui/source/tabpages/backgrnd.cxx +++ b/cui/source/tabpages/backgrnd.cxx @@ -47,20 +47,21 @@ #include #include "backgrnd.hrc" -#include // RID_SVXITEM_COL_WHITE #include +#include +#include +#include // Tabellenhintergrund #define TBL_DEST_CELL 0 #define TBL_DEST_ROW 1 #define TBL_DEST_TBL 2 -#include +#include #include "backgrnd.hxx" #include #include -#include #include #include #include @@ -1171,7 +1172,7 @@ BOOL SvxBackgroundTabPage::LoadLinkedGraphic_Impl() { BOOL bResult = ( aBgdGraphicPath.Len() > 0 ) && - ( GRFILTER_OK == LoadGraphic( aBgdGraphicPath, + ( GRFILTER_OK == GraphicFilter::LoadGraphic( aBgdGraphicPath, aBgdGraphicFilter, aBgdGraphic ) ); return bResult; @@ -1209,7 +1210,7 @@ void SvxBackgroundTabPage::FillColorValueSets_Impl() long nCount = pColorTable->Count(); XColorEntry* pEntry = NULL; Color aColWhite( COL_WHITE ); - String aStrWhite( SVX_RES( RID_SVXITEMS_COLOR_WHITE ) ); + String aStrWhite( EditResId( RID_SVXITEMS_COLOR_WHITE ) ); WinBits nBits = ( aBackgroundColorSet.GetStyle() | WB_ITEMBORDER | WB_NAMEFIELD | WB_NONEFIELD ); aBackgroundColorSet.SetText( SVX_RESSTR( RID_SVXSTR_TRANSPARENT ) ); aBackgroundColorSet.SetStyle( nBits ); diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx index 955e297f6515..f25ebf1e2f70 100644 --- a/cui/source/tabpages/border.cxx +++ b/cui/source/tabpages/border.cxx @@ -47,8 +47,8 @@ #include // XColorTable #include -#include -#include +#include +#include #include "border.hxx" #include #include diff --git a/cui/source/tabpages/borderconn.cxx b/cui/source/tabpages/borderconn.cxx index c117e631abbd..35d3c9a69985 100644 --- a/cui/source/tabpages/borderconn.cxx +++ b/cui/source/tabpages/borderconn.cxx @@ -33,10 +33,10 @@ #include "borderconn.hxx" #include -#include "svx/bolnitem.hxx" -#include +#include "editeng/bolnitem.hxx" +#include #include -#include +#include namespace svx { diff --git a/cui/source/tabpages/chardlg.cxx b/cui/source/tabpages/chardlg.cxx index 6028fdf97ab9..ba4efe732afe 100644 --- a/cui/source/tabpages/chardlg.cxx +++ b/cui/source/tabpages/chardlg.cxx @@ -32,7 +32,7 @@ #include "precompiled_cui.hxx" // include --------------------------------------------------------------- -#include +#include #include #include #include @@ -45,6 +45,7 @@ #include #include #include +#include #define _SVX_CHARDLG_CXX #include @@ -54,38 +55,38 @@ #include // XColorTable #include "chardlg.hxx" -#include "svx/fontitem.hxx" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "svx/flstitem.hxx" -#include -#include -#include +#include "editeng/fontitem.hxx" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "editeng/flstitem.hxx" +#include +#include +#include #include "svx/drawitem.hxx" #include "svx/dlgutil.hxx" #include #include "svx/htmlmode.hxx" #include "cuicharmap.hxx" #include "chardlg.h" -#include -#include -#include -#include +#include +#include +#include +#include #include -#include -#include +#include +#include #include //CHINA001 #include //CHINA001 #include //CHINA001 diff --git a/cui/source/tabpages/grfpage.cxx b/cui/source/tabpages/grfpage.cxx index d32b264c3715..13f98fa0e9a9 100644 --- a/cui/source/tabpages/grfpage.cxx +++ b/cui/source/tabpages/grfpage.cxx @@ -38,8 +38,8 @@ #include #include #include -#include -#include +#include +#include #include #include #include diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx index 22c13efa37ab..01fae6d60adc 100644 --- a/cui/source/tabpages/numpages.cxx +++ b/cui/source/tabpages/numpages.cxx @@ -43,18 +43,18 @@ #include #include #include -#include +#include #include #include #include #include -#include +#include #include #include #include #include #include "cuicharmap.hxx" -#include +#include #include #include #include @@ -62,7 +62,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/cui/source/tabpages/page.cxx b/cui/source/tabpages/page.cxx index 2b9a508e060c..94b72612666a 100644 --- a/cui/source/tabpages/page.cxx +++ b/cui/source/tabpages/page.cxx @@ -50,22 +50,24 @@ #include "helpid.hrc" #include "page.hxx" #include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include #include "svx/dlgutil.hxx" #include -#include +#include #include #include #include -#include // for RID_SVXSTR_PAPERBIN... -#include // for RID_SVXSTR_PAPERBIN..., RID_SVXPAGE_PAGE +#include // for RID_SVXPAGE_PAGE +#include +#include // for RID_SVXSTR_PAPERBIN..., +#include // #i4219# #include @@ -547,7 +549,7 @@ void SvxPageDescPage::Reset( const SfxItemSet& rSet ) String aBinName; if ( PAPERBIN_PRINTER_SETTINGS == nPaperBin ) - aBinName = SVX_RESSTR( RID_SVXSTR_PAPERBIN_SETTINGS ); + aBinName = EE_RESSTR( RID_SVXSTR_PAPERBIN_SETTINGS ); else aBinName = pImpl->mpDefPrinter->GetPaperBinName( (USHORT)nPaperBin ); @@ -1000,10 +1002,10 @@ IMPL_LINK( SvxPageDescPage, PaperBinHdl_Impl, ListBox *, EMPTYARG ) aPaperTrayBox.SetUpdateMode( FALSE ); aPaperTrayBox.Clear(); USHORT nEntryPos = aPaperTrayBox.InsertEntry( - SVX_RESSTR( RID_SVXSTR_PAPERBIN_SETTINGS ) ); + EE_RESSTR( RID_SVXSTR_PAPERBIN_SETTINGS ) ); aPaperTrayBox.SetEntryData( nEntryPos, (void*)(ULONG)PAPERBIN_PRINTER_SETTINGS ); - String aPaperBin( SVX_RES( RID_SVXSTR_PAPERBIN ) ); + String aPaperBin( EditResId( RID_SVXSTR_PAPERBIN ) ); USHORT nBinCount = pImpl->mpDefPrinter->GetPaperBinCount(); for ( USHORT i = 0; i < nBinCount; ++i ) diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx index 5722f2e9d279..d82af221450f 100644 --- a/cui/source/tabpages/paragrph.cxx +++ b/cui/source/tabpages/paragrph.cxx @@ -41,27 +41,27 @@ #define _SVX_PARAGRPH_CXX 0 #include -#include +#include #include #include "paragrph.hrc" #include "paragrph.hxx" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include "svx/dlgutil.hxx" #include #include "svx/htmlmode.hxx" -#include +#include #include //add CHINA001 #include //add CHINA001 #include //add CHINA001 diff --git a/cui/source/tabpages/tabstpge.cxx b/cui/source/tabpages/tabstpge.cxx index a00a697eaae3..52e26830fc3b 100644 --- a/cui/source/tabpages/tabstpge.cxx +++ b/cui/source/tabpages/tabstpge.cxx @@ -43,7 +43,7 @@ #include #include "tabstpge.hrc" -#include +#include #include "tabstpge.hxx" #include #include "svx/dlgutil.hxx" diff --git a/cui/source/tabpages/textattr.cxx b/cui/source/tabpages/textattr.cxx index b008fbe5b625..2bf4b6a4f359 100644 --- a/cui/source/tabpages/textattr.cxx +++ b/cui/source/tabpages/textattr.cxx @@ -57,7 +57,7 @@ #include "svx/dlgutil.hxx" #include //add CHINA001 #include //add CHINA001 -#include +#include static USHORT pRanges[] = { diff --git a/cui/source/tabpages/tpline.cxx b/cui/source/tabpages/tpline.cxx index 84410641305f..75dcfe28dab1 100644 --- a/cui/source/tabpages/tpline.cxx +++ b/cui/source/tabpages/tpline.cxx @@ -35,7 +35,7 @@ #ifndef _SVX_SIZEITEM_HXX //autogen -#include +#include #endif #include #include @@ -64,10 +64,10 @@ #include #include #include -#include -#include +#include +#include #include -#include +#include #include #include #include diff --git a/cui/source/tabpages/transfrm.cxx b/cui/source/tabpages/transfrm.cxx index 298b12b207f1..b71fe2b2af56 100644 --- a/cui/source/tabpages/transfrm.cxx +++ b/cui/source/tabpages/transfrm.cxx @@ -43,12 +43,12 @@ #include #include #include "transfrm.hrc" -#include +#include #include "transfrm.hxx" #include #include "svx/dlgutil.hxx" -#include +#include #include "svx/anchorid.hxx" #include #include diff --git a/cui/util/makefile.mk b/cui/util/makefile.mk index 120b74098cce..715a138e2012 100644 --- a/cui/util/makefile.mk +++ b/cui/util/makefile.mk @@ -60,6 +60,7 @@ SHL1LIBS= \ SHL1STDLIBS= \ + $(EDITENGLIB) \ $(SVXCORELIB) \ $(SVXLIB) \ $(AVMEDIALIB) \ diff --git a/extensions/source/propctrlr/fontdialog.cxx b/extensions/source/propctrlr/fontdialog.cxx index c5675c3daa40..22575f404247 100644 --- a/extensions/source/propctrlr/fontdialog.cxx +++ b/extensions/source/propctrlr/fontdialog.cxx @@ -54,24 +54,24 @@ #include #include "formstrings.hxx" #include "fontitemids.hxx" -#include +#include #ifndef _SVX_EMPHITEM_HXX -#include +#include #endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #include diff --git a/extensions/source/propctrlr/makefile.mk b/extensions/source/propctrlr/makefile.mk index 9b9ffe47aa15..c70db079ae8f 100644 --- a/extensions/source/propctrlr/makefile.mk +++ b/extensions/source/propctrlr/makefile.mk @@ -120,6 +120,7 @@ SHL1TARGET= $(TARGET)$(DLLPOSTFIX) SHL1VERSIONMAP= $(TARGET).map SHL1STDLIBS= \ + $(EDITENGLIB) \ $(SVXCORELIB) \ $(SVXLIB) \ $(SFXLIB) \ diff --git a/forms/inc/pch/precompiled_forms.hxx b/forms/inc/pch/precompiled_forms.hxx index 402323630361..a04c6fea88da 100644 --- a/forms/inc/pch/precompiled_forms.hxx +++ b/forms/inc/pch/precompiled_forms.hxx @@ -346,18 +346,18 @@ #include "svl/solar.hrc" #include "svtools/transfer.hxx" -#include "svx/editdata.hxx" -#include "svx/editeng.hxx" -#include "svx/editobj.hxx" -#include "svx/editstat.hxx" -#include "svx/editview.hxx" -#include "svx/eeitem.hxx" -#include "svx/frmdir.hxx" -#include "svx/scripttypeitem.hxx" -#include "svx/svxenum.hxx" +#include "editeng/editdata.hxx" +#include "editeng/editeng.hxx" +#include "editeng/editobj.hxx" +#include "editeng/editstat.hxx" +#include "editeng/editview.hxx" +#include "editeng/eeitem.hxx" +#include "editeng/frmdir.hxx" +#include "editeng/scripttypeitem.hxx" +#include "editeng/svxenum.hxx" #include "svx/svxids.hrc" -#include "svx/unoedsrc.hxx" -#include "svx/unofored.hxx" +#include "editeng/unoedsrc.hxx" +#include "editeng/unofored.hxx" #include "toolkit/helper/emptyfontdescriptor.hxx" diff --git a/forms/source/richtext/attributedispatcher.cxx b/forms/source/richtext/attributedispatcher.cxx index e7fd029a86bd..9610bf84b10c 100644 --- a/forms/source/richtext/attributedispatcher.cxx +++ b/forms/source/richtext/attributedispatcher.cxx @@ -34,7 +34,7 @@ /** === begin UNO includes === **/ /** === end UNO includes === **/ -#include +#include //........................................................................ namespace frm diff --git a/forms/source/richtext/clipboarddispatcher.cxx b/forms/source/richtext/clipboarddispatcher.cxx index eca90f30ddc2..3a6199abf013 100644 --- a/forms/source/richtext/clipboarddispatcher.cxx +++ b/forms/source/richtext/clipboarddispatcher.cxx @@ -31,7 +31,7 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_forms.hxx" #include "clipboarddispatcher.hxx" -#include +#include /** === begin UNO includes === **/ #include diff --git a/forms/source/richtext/parametrizedattributedispatcher.cxx b/forms/source/richtext/parametrizedattributedispatcher.cxx index 9f6c4c15ed68..10309a986fa5 100644 --- a/forms/source/richtext/parametrizedattributedispatcher.cxx +++ b/forms/source/richtext/parametrizedattributedispatcher.cxx @@ -31,7 +31,7 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_forms.hxx" #include "parametrizedattributedispatcher.hxx" -#include +#include #include #include diff --git a/forms/source/richtext/richtextcontrol.cxx b/forms/source/richtext/richtextcontrol.cxx index 9150eac63e17..8cb7fb7ba0bf 100644 --- a/forms/source/richtext/richtextcontrol.cxx +++ b/forms/source/richtext/richtextcontrol.cxx @@ -52,7 +52,7 @@ #include #include -#include +#include #include #include #include diff --git a/forms/source/richtext/richtextengine.cxx b/forms/source/richtext/richtextengine.cxx index b87d6260b723..d40396c59356 100644 --- a/forms/source/richtext/richtextengine.cxx +++ b/forms/source/richtext/richtextengine.cxx @@ -32,14 +32,14 @@ #include "precompiled_forms.hxx" #include "richtextengine.hxx" #include -#include -#include +#include +#include #define ITEMID_FONTHEIGHT EE_CHAR_FONTHEIGHT -#include +#include #define ITEMID_FONT EE_CHAR_FONTHEIGHT -#include +#include #define ITEMID_LANGUAGE EE_CHAR_LANGUAGE -#include +#include #include #include #include diff --git a/forms/source/richtext/richtextengine.hxx b/forms/source/richtext/richtextengine.hxx index 6e0052a26da7..f7231d663bc4 100644 --- a/forms/source/richtext/richtextengine.hxx +++ b/forms/source/richtext/richtextengine.hxx @@ -30,7 +30,7 @@ #ifndef FORMS_SOURCE_RICHTEXT_RICHTEXTENGINE_HXX #define FORMS_SOURCE_RICHTEXT_RICHTEXTENGINE_HXX -#include +#include #include #include diff --git a/forms/source/richtext/richtextimplcontrol.cxx b/forms/source/richtext/richtextimplcontrol.cxx index 259197ac71d1..f2c560e51d50 100644 --- a/forms/source/richtext/richtextimplcontrol.cxx +++ b/forms/source/richtext/richtextimplcontrol.cxx @@ -33,16 +33,16 @@ #include "richtextimplcontrol.hxx" #include "textattributelistener.hxx" #include "richtextengine.hxx" -#include -#include -#include -#include +#include +#include +#include +#include #ifndef _SVX_SVXIDS_HRC #include #endif -#include +#include -#include +#include #include #include #include diff --git a/forms/source/richtext/richtextimplcontrol.hxx b/forms/source/richtext/richtextimplcontrol.hxx index 65e138b4f093..c162c977c1b2 100644 --- a/forms/source/richtext/richtextimplcontrol.hxx +++ b/forms/source/richtext/richtextimplcontrol.hxx @@ -34,7 +34,7 @@ #include "richtextviewport.hxx" #include "richtextengine.hxx" #include -#include +#include #include diff --git a/forms/source/richtext/richtextmodel.cxx b/forms/source/richtext/richtextmodel.cxx index d38b350ada32..066f083c735d 100644 --- a/forms/source/richtext/richtextmodel.cxx +++ b/forms/source/richtext/richtextmodel.cxx @@ -45,7 +45,7 @@ #include #include #include -#include +#include #include #include diff --git a/forms/source/richtext/richtextunowrapper.cxx b/forms/source/richtext/richtextunowrapper.cxx index 527fc034903c..84eac6ce544c 100644 --- a/forms/source/richtext/richtextunowrapper.cxx +++ b/forms/source/richtext/richtextunowrapper.cxx @@ -35,12 +35,12 @@ /** === begin UNO includes === **/ #include /** === end UNO includes === **/ -#include -#include -#include +#include +#include +#include #include #include -#include +#include //........................................................................ namespace frm diff --git a/forms/source/richtext/richtextunowrapper.hxx b/forms/source/richtext/richtextunowrapper.hxx index 3a0e1a4aec47..af8ccde76d87 100644 --- a/forms/source/richtext/richtextunowrapper.hxx +++ b/forms/source/richtext/richtextunowrapper.hxx @@ -31,8 +31,8 @@ #ifndef FORMS_SOURCE_RICHTEXT_RICHTEXTUNOWRAPPER_HXX #define FORMS_SOURCE_RICHTEXT_RICHTEXTUNOWRAPPER_HXX -#include -#include +#include +#include //........................................................................ namespace frm diff --git a/forms/source/richtext/richtextvclcontrol.cxx b/forms/source/richtext/richtextvclcontrol.cxx index 495a85c02162..f1648f08e905 100644 --- a/forms/source/richtext/richtextvclcontrol.cxx +++ b/forms/source/richtext/richtextvclcontrol.cxx @@ -53,13 +53,14 @@ #endif #include "com/sun/star/ui/dialogs/TemplateDescription.hpp" #endif -#include -#include -#include -#include -#include -#include - +#include +#include +#include +#include +#include +#include +#include +#include #include //........................................................................ diff --git a/forms/source/richtext/richtextviewport.cxx b/forms/source/richtext/richtextviewport.cxx index e85a8cf26035..c5e23b2cc607 100644 --- a/forms/source/richtext/richtextviewport.cxx +++ b/forms/source/richtext/richtextviewport.cxx @@ -31,7 +31,7 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_forms.hxx" #include "richtextviewport.hxx" -#include +#include //........................................................................ namespace frm diff --git a/forms/source/richtext/rtattributehandler.cxx b/forms/source/richtext/rtattributehandler.cxx index d1090b82d914..2ebbbbd6bb4a 100644 --- a/forms/source/richtext/rtattributehandler.cxx +++ b/forms/source/richtext/rtattributehandler.cxx @@ -35,7 +35,7 @@ #ifndef _SVX_SVXIDS_HRC #include #endif -#include +#include #include #include #include @@ -43,18 +43,18 @@ #include #define ITEMID_ADJUST EE_PARA_JUST -#include +#include #define ITEMID_WEIGHT EE_CHAR_WEIGHT -#include +#include #define ITEMID_ESCAPEMENT EE_CHAR_ESCAPEMENT -#include +#include #define ITEMID_LINESPACING EE_PARA_SBL -#include +#include #define ITEMID_FONTHEIGHT EE_CHAR_FONTHEIGHT -#include +#include #define ITEMID_FRAMEDIR EE_PARA_WRITINGDIR -#include -#include +#include +#include //........................................................................ namespace frm diff --git a/forms/source/richtext/rtattributehandler.hxx b/forms/source/richtext/rtattributehandler.hxx index cca6723d5f7a..41db86982e4c 100644 --- a/forms/source/richtext/rtattributehandler.hxx +++ b/forms/source/richtext/rtattributehandler.hxx @@ -33,8 +33,8 @@ #include "rtattributes.hxx" #include -#include -#include +#include +#include class SfxItemSet; class SfxPoolItem; diff --git a/forms/source/richtext/specialdispatchers.cxx b/forms/source/richtext/specialdispatchers.cxx index a9176b8d3350..c9e7be22aea3 100644 --- a/forms/source/richtext/specialdispatchers.cxx +++ b/forms/source/richtext/specialdispatchers.cxx @@ -31,13 +31,13 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_forms.hxx" #include "specialdispatchers.hxx" -#include -#include +#include +#include #ifndef _SVX_SVXIDS_HRC #include #endif #define ITEMID_SCRIPTSPACE SID_ATTR_PARA_SCRIPTSPACE -#include +#include //........................................................................ namespace frm diff --git a/forms/util/makefile.mk b/forms/util/makefile.mk index 1c454b1383db..a7a649473aad 100644 --- a/forms/util/makefile.mk +++ b/forms/util/makefile.mk @@ -58,6 +58,7 @@ LIB1FILES=\ SHL1TARGET=$(TARGET)$(DLLPOSTFIX) SHL1STDLIBS= \ + $(EDITENGLIB) \ $(SALLIB) \ $(CPPULIB) \ $(CPPUHELPERLIB) \ From 7af39a112d754e86ad368a979c337d0190647bd0 Mon Sep 17 00:00:00 2001 From: Ingo Schmidt Date: Wed, 13 Jan 2010 12:44:09 +0100 Subject: [PATCH 30/45] native278: #i107880# white spaces in pathes --- setup_native/scripts/javaloader.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup_native/scripts/javaloader.sh b/setup_native/scripts/javaloader.sh index 22b1eb927625..e23505f586b0 100644 --- a/setup_native/scripts/javaloader.sh +++ b/setup_native/scripts/javaloader.sh @@ -242,7 +242,7 @@ install_linux_rpm() # start to install jre echo "Extracting ..." olddir=`pwd` - cd $tempdir + cd "$tempdir" rpm2cpio $tempjrefile | cpio -i --make-directories rm -f $tempjrefile # we do not need it anymore, so conserve discspace @@ -330,7 +330,7 @@ install_linux_rpm() fi echo "Done." - cd $olddir + cd "$olddir" } find_rpm2cpio() From 47b07b31e8710f0be5b24cfad78034330158fa48 Mon Sep 17 00:00:00 2001 From: Ingo Schmidt Date: Wed, 13 Jan 2010 12:49:28 +0100 Subject: [PATCH 31/45] native278: #i105537# correct string for mac language packs --- setup_native/source/mac/macinstall.ulf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_native/source/mac/macinstall.ulf b/setup_native/source/mac/macinstall.ulf index 4651d93e03ab..2d92e8c260fb 100644 --- a/setup_native/source/mac/macinstall.ulf +++ b/setup_native/source/mac/macinstall.ulf @@ -62,7 +62,7 @@ en-US = "Installation failed." en-US = "Installation of [PRODUCTNAME] language pack completed." [InstallCompleteText2] -en-US = "Call 'Tools-Options-Language Settings' to change the user interface language." +en-US = "Call '[PRODUCTNAME]-Preferences-Language Settings-Languages' to change the user interface language." [InstallCompleteTextPatch] en-US = "Installation of [FULLPRODUCTNAME] completed" From cd7c2747e0d9f8827f81165f4ef0a8672b980377 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Wed, 13 Jan 2010 22:25:07 +0100 Subject: [PATCH 32/45] #i107450#: move more code out of svx --- cui/source/dialogs/SpellDialog.cxx | 2 +- cui/source/dialogs/linkdlg.cxx | 12 ++++++------ cui/source/factory/dlgfact.cxx | 2 +- cui/source/factory/dlgfact.hxx | 2 +- cui/source/inc/linkdlg.hxx | 8 ++++---- cui/source/options/optasian.cxx | 2 +- cui/source/options/opthtml.cxx | 3 +-- cui/source/options/optinet2.hxx | 2 +- cui/source/options/optlingu.cxx | 2 +- cui/source/options/treeopt.cxx | 2 +- 10 files changed, 18 insertions(+), 19 deletions(-) diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx index ae82dde312ea..7f21c48a3212 100644 --- a/cui/source/dialogs/SpellDialog.cxx +++ b/cui/source/dialogs/SpellDialog.cxx @@ -63,7 +63,7 @@ #include #include #include "SpellDialog.hrc" -#include +#include #include #include #include "SpellDialog.hxx" diff --git a/cui/source/dialogs/linkdlg.cxx b/cui/source/dialogs/linkdlg.cxx index 106e3b898243..2fd234b3f02e 100644 --- a/cui/source/dialogs/linkdlg.cxx +++ b/cui/source/dialogs/linkdlg.cxx @@ -77,7 +77,7 @@ static long nTabs[] = }; -SvBaseLinksDlg::SvBaseLinksDlg( Window * pParent, SvLinkManager* pMgr, BOOL bHtml ) +SvBaseLinksDlg::SvBaseLinksDlg( Window * pParent, LinkManager* pMgr, BOOL bHtml ) : ModalDialog( pParent, CUI_RES( MD_UPDATE_BASELINKS ) ), aFtFiles( this, CUI_RES( FT_FILES ) ), aFtLinks( this, CUI_RES( FT_LINKS ) ), @@ -304,7 +304,7 @@ IMPL_LINK( SvBaseLinksDlg, UpdateNowClickHdl, PushButton *, EMPTYARG ) } // falls jemand der Meinung ist, seine Links auszutauschen (SD) - SvLinkManager* pNewMgr = pLinkMgr; + LinkManager* pNewMgr = pLinkMgr; pLinkMgr = 0; SetManager( pNewMgr ); @@ -391,7 +391,7 @@ IMPL_LINK( SvBaseLinksDlg, ChangeSourceClickHdl, PushButton *, pPushButton ) } if( pLinkMgr->GetPersist() ) pLinkMgr->GetPersist()->SetModified(); - SvLinkManager* pNewMgr = pLinkMgr; + LinkManager* pNewMgr = pLinkMgr; pLinkMgr = 0; SetManager( pNewMgr ); } @@ -436,7 +436,7 @@ IMPL_LINK( SvBaseLinksDlg, BreakLinkClickHdl, PushButton *, pPushButton ) if( bNewLnkMgr ) { - SvLinkManager* pNewMgr = pLinkMgr; + LinkManager* pNewMgr = pLinkMgr; pLinkMgr = 0; SetManager( pNewMgr ); @@ -554,7 +554,7 @@ IMPL_LINK( SvBaseLinksDlg, EndEditHdl, sfx2::SvBaseLink*, _pLink ) } else { - SvLinkManager* pNewMgr = pLinkMgr; + LinkManager* pNewMgr = pLinkMgr; pLinkMgr = 0; SetManager( pNewMgr ); } @@ -582,7 +582,7 @@ String SvBaseLinksDlg::ImplGetStateStr( const SvBaseLink& rLnk ) return sRet; } -void SvBaseLinksDlg::SetManager( SvLinkManager* pNewMgr ) +void SvBaseLinksDlg::SetManager( LinkManager* pNewMgr ) { if( pLinkMgr == pNewMgr ) return; diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 2be763439401..083a7d1d0936 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -1922,7 +1922,7 @@ SfxAbstractPasteDialog* AbstractDialogFactory_Impl::CreatePasteDialog( Window* p return new AbstractPasteDialog_Impl( new SvPasteObjectDialog( pParent ) ); } -SfxAbstractLinksDialog* AbstractDialogFactory_Impl::CreateLinksDialog( Window* pParent, sfx2::SvLinkManager* pMgr, BOOL bHTML, sfx2::SvBaseLink* p) +SfxAbstractLinksDialog* AbstractDialogFactory_Impl::CreateLinksDialog( Window* pParent, sfx2::LinkManager* pMgr, BOOL bHTML, sfx2::SvBaseLink* p) { SvBaseLinksDlg* pLinkDlg = new SvBaseLinksDlg( pParent, pMgr, bHTML ); if ( p ) diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index f6189c9b486f..daa6cbc9ac0b 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -646,7 +646,7 @@ public: virtual VclAbstractDialog* CreateEditObjectDialog( Window* pParent, USHORT nSlotId, const com::sun::star::uno::Reference < com::sun::star::embed::XEmbeddedObject >& xObj ); virtual SfxAbstractPasteDialog* CreatePasteDialog( Window* pParent ); - virtual SfxAbstractLinksDialog* CreateLinksDialog( Window* pParent, sfx2::SvLinkManager* pMgr, BOOL bHTML, sfx2::SvBaseLink* p=0 ); + virtual SfxAbstractLinksDialog* CreateLinksDialog( Window* pParent, sfx2::LinkManager* pMgr, BOOL bHTML, sfx2::SvBaseLink* p=0 ); virtual AbstractHangulHanjaConversionDialog * CreateHangulHanjaConversionDialog( Window* _pParent, //add for HangulHanjaConversionDialog CHINA001 editeng::HangulHanjaConversion::ConversionDirection _ePrimaryDirection ); diff --git a/cui/source/inc/linkdlg.hxx b/cui/source/inc/linkdlg.hxx index 4703079c9420..2234fce13281 100644 --- a/cui/source/inc/linkdlg.hxx +++ b/cui/source/inc/linkdlg.hxx @@ -48,7 +48,7 @@ *************************************************************************/ namespace sfx2 { - class SvLinkManager; + class LinkManager; class SvBaseLink; } @@ -83,7 +83,7 @@ class SvBaseLinksDlg : public ModalDialog String aStrCloselinkmsg; String aStrCloselinkmsgMulti; String aStrWaitinglink; - sfx2::SvLinkManager* pLinkMgr; + sfx2::LinkManager* pLinkMgr; BOOL bHtmlMode; SvTabListBox aTbLinks; Timer aUpdateTimer; @@ -126,10 +126,10 @@ class SvBaseLinksDlg : public ModalDialog String& Closelinkmsg() { return aStrCloselinkmsg; } String& CloselinkmsgMulti() { return aStrCloselinkmsgMulti; } String& Waitinglink() { return aStrWaitinglink; } - void SetManager( sfx2::SvLinkManager* ); + void SetManager( sfx2::LinkManager* ); public: - SvBaseLinksDlg( Window * pParent, sfx2::SvLinkManager*, BOOL bHtml = FALSE ); + SvBaseLinksDlg( Window * pParent, sfx2::LinkManager*, BOOL bHtml = FALSE ); ~SvBaseLinksDlg(); void SetActLink( sfx2::SvBaseLink * pLink ); }; diff --git a/cui/source/options/optasian.cxx b/cui/source/options/optasian.cxx index 8a6057416773..2a663a0d440a 100644 --- a/cui/source/options/optasian.cxx +++ b/cui/source/options/optasian.cxx @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/cui/source/options/opthtml.cxx b/cui/source/options/opthtml.cxx index bddcd4a9e182..47167a474db5 100644 --- a/cui/source/options/opthtml.cxx +++ b/cui/source/options/opthtml.cxx @@ -34,8 +34,7 @@ // include --------------------------------------------------------------- #include - -#include +#include #include "opthtml.hxx" #include "opthtml.hrc" #include diff --git a/cui/source/options/optinet2.hxx b/cui/source/options/optinet2.hxx index 00d1aaadc4fc..5664a71b1bbd 100644 --- a/cui/source/options/optinet2.hxx +++ b/cui/source/options/optinet2.hxx @@ -38,7 +38,7 @@ #include #include #include -#include +#include #ifdef _SVX_OPTINET2_CXX #include diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx index 1dee201213ba..3193ec48e99f 100644 --- a/cui/source/options/optlingu.cxx +++ b/cui/source/options/optlingu.cxx @@ -73,7 +73,7 @@ #include "optlingu.hrc" #include -#include +#include #include "optlingu.hxx" #include #include diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx index c35738807ee7..8d28994b7a30 100644 --- a/cui/source/options/treeopt.cxx +++ b/cui/source/options/treeopt.cxx @@ -127,7 +127,7 @@ #endif -#include +#include #include #include From edd01418d9b6650f6d923e84f335c90b7f001bb0 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Thu, 14 Jan 2010 18:08:36 +0100 Subject: [PATCH 33/45] #i107450#: more files moved out of svx --- cui/source/dialogs/cuigaldlg.cxx | 2 +- cui/source/tabpages/backgrnd.cxx | 2 +- cui/source/tabpages/numpages.cxx | 2 +- cui/source/tabpages/tpbitmap.cxx | 2 +- cui/source/tabpages/tpline.cxx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx index 5f6ced04de8e..228fafd29758 100644 --- a/cui/source/dialogs/cuigaldlg.cxx +++ b/cui/source/dialogs/cuigaldlg.cxx @@ -38,7 +38,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/cui/source/tabpages/backgrnd.cxx b/cui/source/tabpages/backgrnd.cxx index 4cff912e5fd5..3add36afda6a 100644 --- a/cui/source/tabpages/backgrnd.cxx +++ b/cui/source/tabpages/backgrnd.cxx @@ -61,7 +61,7 @@ #include "backgrnd.hxx" #include -#include +#include #include #include #include diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx index 01fae6d60adc..a051189fcffe 100644 --- a/cui/source/tabpages/numpages.cxx +++ b/cui/source/tabpages/numpages.cxx @@ -76,7 +76,7 @@ #include #include -#include "svx/opengrf.hxx" +#include "sfx2/opengrf.hxx" #include //CHINA001 #include //CHINA001 diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx index f34afb49a823..3719f260a7fa 100644 --- a/cui/source/tabpages/tpbitmap.cxx +++ b/cui/source/tabpages/tpbitmap.cxx @@ -73,7 +73,7 @@ //#include "dlgname.hrc" #include //CHINA001 #include -#include "svx/opengrf.hxx" +#include "sfx2/opengrf.hxx" #define DLGWIN this->GetParent()->GetParent() diff --git a/cui/source/tabpages/tpline.cxx b/cui/source/tabpages/tpline.cxx index 75dcfe28dab1..e63657ea6e35 100644 --- a/cui/source/tabpages/tpline.cxx +++ b/cui/source/tabpages/tpline.cxx @@ -71,7 +71,7 @@ #include #include #include -#include "svx/opengrf.hxx" +#include "sfx2/opengrf.hxx" #include #include From 7b1769607040ed359600d892f68baabaeff11296 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bosdonnat?= Date: Fri, 15 Jan 2010 11:55:56 +0100 Subject: [PATCH 34/45] cbosdo01: Removed remaining code for the Fraction autocorrection --- cui/source/tabpages/autocdlg.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index 0d0114559a5f..1f5ab972965f 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -270,7 +270,7 @@ BOOL OfaAutocorrOptionsPage::FillItemSet( SfxItemSet& ) pAutoCorrect->SetAutoCorrFlag(ChgWeightUnderl, aCheckLB.IsChecked(nPos++)); pAutoCorrect->SetAutoCorrFlag(SetINetAttr, aCheckLB.IsChecked(nPos++)); pAutoCorrect->SetAutoCorrFlag(ChgToEnEmDash, aCheckLB.IsChecked(nPos++)); - pAutoCorrect->SetAutoCorrFlag(IngnoreDoubleSpace, aCheckLB.IsChecked(nPos++)); + pAutoCorrect->SetAutoCorrFlag(IgnoreDoubleSpace, aCheckLB.IsChecked(nPos++)); BOOL bReturn = nFlags != pAutoCorrect->GetFlags(); if(bReturn ) @@ -318,7 +318,7 @@ void OfaAutocorrOptionsPage::Reset( const SfxItemSet& ) aCheckLB.CheckEntryPos( nPos++, 0 != (nFlags & ChgWeightUnderl) ); aCheckLB.CheckEntryPos( nPos++, 0 != (nFlags & SetINetAttr) ); aCheckLB.CheckEntryPos( nPos++, 0 != (nFlags & ChgToEnEmDash) ); - aCheckLB.CheckEntryPos( nPos++, 0 != (nFlags & IngnoreDoubleSpace) ); + aCheckLB.CheckEntryPos( nPos++, 0 != (nFlags & IgnoreDoubleSpace) ); aCheckLB.SetUpdateMode(TRUE); } @@ -613,7 +613,7 @@ BOOL OfaSwAutoFmtOptionsPage::FillItemSet( SfxItemSet& ) pAutoCorrect->SetAutoCorrFlag(ChgWeightUnderl, aCheckLB.IsChecked(BOLD_UNDERLINE, CBCOL_SECOND)); - pAutoCorrect->SetAutoCorrFlag(IngnoreDoubleSpace, + pAutoCorrect->SetAutoCorrFlag(IgnoreDoubleSpace, aCheckLB.IsChecked(IGNORE_DBLSPACE, CBCOL_SECOND)); bCheck = aCheckLB.IsChecked(DETECT_URL, CBCOL_FIRST); @@ -751,7 +751,7 @@ void OfaSwAutoFmtOptionsPage::Reset( const SfxItemSet& ) aCheckLB.CheckEntryPos( BEGIN_UPPER, CBCOL_SECOND, 0 != (nFlags & CptlSttSntnc) ); aCheckLB.CheckEntryPos( BOLD_UNDERLINE, CBCOL_FIRST, pOpt->bChgWeightUnderl ); aCheckLB.CheckEntryPos( BOLD_UNDERLINE, CBCOL_SECOND, 0 != (nFlags & ChgWeightUnderl) ); - aCheckLB.CheckEntryPos( IGNORE_DBLSPACE, CBCOL_SECOND, 0 != (nFlags & IngnoreDoubleSpace) ); + aCheckLB.CheckEntryPos( IGNORE_DBLSPACE, CBCOL_SECOND, 0 != (nFlags & IgnoreDoubleSpace) ); aCheckLB.CheckEntryPos( DETECT_URL, CBCOL_FIRST, pOpt->bSetINetAttr ); aCheckLB.CheckEntryPos( DETECT_URL, CBCOL_SECOND, 0 != (nFlags & SetINetAttr) ); aCheckLB.CheckEntryPos( REPLACE_DASHES, CBCOL_FIRST, pOpt->bChgToEnEmDash ); From f4858770015bdc7f1faa5a64a8eca6e3c1cf5531 Mon Sep 17 00:00:00 2001 From: sb Date: Mon, 18 Jan 2010 11:59:59 +0100 Subject: [PATCH 35/45] sb119: #i108102# clened up --enable-crashdump and crashrep/ --- crashrep/prj/build.lst | 1 - crashrep/scripts/makefile.mk | 47 -- .../{scripts => source/unx}/crash_report.sh | 0 crashrep/source/unx/interface.cxx | 718 ------------------ crashrep/source/unx/interface.hxx | 192 ----- crashrep/source/unx/makefile.mk | 5 +- crashrep/source/unx/res.cxx | 133 ---- crashrep/source/unx/res/makefile.mk | 63 -- crashrep/source/unx/res/unxcrashres.cxx | 104 --- 9 files changed, 2 insertions(+), 1261 deletions(-) delete mode 100755 crashrep/scripts/makefile.mk rename crashrep/{scripts => source/unx}/crash_report.sh (100%) delete mode 100755 crashrep/source/unx/interface.cxx delete mode 100755 crashrep/source/unx/interface.hxx delete mode 100755 crashrep/source/unx/res.cxx delete mode 100755 crashrep/source/unx/res/makefile.mk delete mode 100755 crashrep/source/unx/res/unxcrashres.cxx diff --git a/crashrep/prj/build.lst b/crashrep/prj/build.lst index 3315b843ed8d..ef1c85cc1c62 100755 --- a/crashrep/prj/build.lst +++ b/crashrep/prj/build.lst @@ -1,6 +1,5 @@ cr crashrep : l10n sal sysui SO:tools shell NULL cr crashrep usr1 - all cr_mkout NULL -cr crashrep\scripts nmake - all cr_suscript NULL cr crashrep\source\all nmake - all cr_sresource NULL cr crashrep\source\unx nmake - u cr_sunx NULL cr crashrep\source\win32 nmake - n cr_swin32 cr_sresource NULL diff --git a/crashrep/scripts/makefile.mk b/crashrep/scripts/makefile.mk deleted file mode 100755 index 95b2bcb23562..000000000000 --- a/crashrep/scripts/makefile.mk +++ /dev/null @@ -1,47 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# -# This file is part of OpenOffice.org. -# -# OpenOffice.org is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License version 3 -# only, as published by the Free Software Foundation. -# -# OpenOffice.org is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License version 3 for more details -# (a copy is included in the LICENSE file that accompanied this code). -# -# You should have received a copy of the GNU Lesser General Public License -# version 3 along with OpenOffice.org. If not, see -# -# for a copy of the LGPLv3 License. -# -#************************************************************************* - -PRJ=.. - -PRJNAME=crashrep -TARGET=scripts - -# --- Settings ----------------------------------------------------------- - -.INCLUDE : settings.mk - -# --- Targets ------------------------------------------------------------- - -UNIXTEXT= \ - $(MISC)$/crash_report.sh - -.INCLUDE : target.mk - diff --git a/crashrep/scripts/crash_report.sh b/crashrep/source/unx/crash_report.sh similarity index 100% rename from crashrep/scripts/crash_report.sh rename to crashrep/source/unx/crash_report.sh diff --git a/crashrep/source/unx/interface.cxx b/crashrep/source/unx/interface.cxx deleted file mode 100755 index f9768ed4a5de..000000000000 --- a/crashrep/source/unx/interface.cxx +++ /dev/null @@ -1,718 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: interface.cxx,v $ - * $Revision: 1.6 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -#include -#include - -using namespace std; - -/* - * WizardPage - */ -WizardPage::~WizardPage() -{ -} - -/* - * WizardDialog - */ - -WizardDialog::WizardDialog() -{ - m_pStatusDialog = NULL; - m_pTopLevel = gtk_window_new( GTK_WINDOW_TOPLEVEL ); - gtk_window_set_title( GTK_WINDOW(m_pTopLevel), StringResource::get( "%WELCOME_CAPTION%" ) ); - - m_pVBox = gtk_vbox_new( FALSE, 5 ); - gtk_widget_show( m_pVBox ); - gtk_container_add( GTK_CONTAINER(m_pTopLevel), m_pVBox ); - - m_pViewPort = gtk_viewport_new( NULL, NULL ); - gtk_widget_show( m_pViewPort ); - - // set wizard title style - gtk_widget_ensure_style( m_pViewPort ); - GtkStyle* pStyle = gtk_style_copy( gtk_widget_get_style( m_pViewPort ) ); - for( int i = 0; i < 5; i++ ) - { - pStyle->bg[i] = pStyle->white; - pStyle->text[i] = pStyle->black; - pStyle->bg_gc[i] = pStyle->white_gc; - pStyle->text_gc[i] = pStyle->black_gc; - } - gint nFontSize = pango_font_description_get_size( pStyle->font_desc ); - nFontSize = nFontSize * 3 / 2; - pango_font_description_set_size( pStyle->font_desc, nFontSize ); - gtk_widget_set_style( m_pViewPort, pStyle ); - gtk_viewport_set_shadow_type( GTK_VIEWPORT(m_pViewPort), GTK_SHADOW_NONE ); - gtk_box_pack_start( GTK_BOX(m_pVBox), m_pViewPort, FALSE, FALSE, 0 ); - - m_pWizardTitle = gtk_label_new( "Wizard" ); // to be replaced by resp. page titles - gtk_widget_show( m_pWizardTitle ); - gtk_label_set_justify( GTK_LABEL(m_pWizardTitle), GTK_JUSTIFY_LEFT ); - gtk_misc_set_alignment( GTK_MISC(m_pWizardTitle), 0, 1 ); - gtk_misc_set_padding( GTK_MISC(m_pWizardTitle), 10, 10 ); - gtk_widget_set_style( m_pWizardTitle, pStyle ); - gtk_container_add( GTK_CONTAINER(m_pViewPort), m_pWizardTitle ); - - // prepare the area for the single pages - m_pPageArea = gtk_vbox_new( FALSE, 1); - gtk_widget_show( m_pPageArea ); - gtk_box_pack_start( GTK_BOX(m_pVBox), m_pPageArea, TRUE, TRUE, 0 ); - - m_pSeparator = gtk_hseparator_new(); - gtk_widget_show( m_pSeparator ); - gtk_box_pack_start( GTK_BOX(m_pVBox), m_pSeparator, FALSE, FALSE, 0 ); - - m_pButtonBox = gtk_hbutton_box_new(); - gtk_widget_show( m_pButtonBox ); - gtk_box_pack_start( GTK_BOX(m_pVBox), m_pButtonBox, FALSE, FALSE, 0 ); - gtk_button_box_set_layout( GTK_BUTTON_BOX(m_pButtonBox), GTK_BUTTONBOX_END ); - gtk_button_box_set_spacing( GTK_BUTTON_BOX(m_pButtonBox), 0 ); - - m_pBackButton = gtk_button_new_with_mnemonic( StringResource::get( "%BACK_BUTTON%" ) ); - gtk_widget_show( m_pBackButton ); - gtk_container_add( GTK_CONTAINER(m_pButtonBox), m_pBackButton ); - gtk_container_set_border_width( GTK_CONTAINER(m_pBackButton), 5 ); - GTK_WIDGET_SET_FLAGS( m_pBackButton, GTK_CAN_DEFAULT ); - - m_pNextButton = gtk_button_new_with_mnemonic( StringResource::get( "%NEXT_BUTTON%" ) ); - gtk_widget_show( m_pNextButton ); - gtk_container_add( GTK_CONTAINER(m_pButtonBox), m_pNextButton ); - gtk_container_set_border_width( GTK_CONTAINER(m_pNextButton), 5 ); - GTK_WIDGET_SET_FLAGS( m_pNextButton, GTK_CAN_DEFAULT ); - - m_pSendButton = gtk_button_new_with_mnemonic( StringResource::get( "%SEND_BUTTON%" ) ); - gtk_widget_show( m_pSendButton ); - gtk_container_add( GTK_CONTAINER(m_pButtonBox), m_pSendButton ); - gtk_container_set_border_width( GTK_CONTAINER(m_pSendButton), 5 ); - GTK_WIDGET_SET_FLAGS( m_pSendButton, GTK_CAN_DEFAULT ); - - m_pCancelButton = gtk_button_new_with_mnemonic( StringResource::get( "%DONOT_SEND_BUTTON%" ) ); - gtk_widget_show( m_pCancelButton ); - gtk_container_add( GTK_CONTAINER(m_pButtonBox), m_pCancelButton ); - gtk_container_set_border_width( GTK_CONTAINER(m_pCancelButton), 5 ); - GTK_WIDGET_SET_FLAGS( m_pCancelButton, GTK_CAN_DEFAULT ); - - gtk_signal_connect( GTK_OBJECT(m_pTopLevel), "delete-event", G_CALLBACK(gtk_main_quit), NULL ); - gtk_signal_connect( GTK_OBJECT(m_pCancelButton), "clicked", G_CALLBACK(gtk_main_quit), NULL ); - gtk_signal_connect( GTK_OBJECT(m_pNextButton), "clicked", G_CALLBACK(button_clicked), this ); - gtk_signal_connect( GTK_OBJECT(m_pBackButton), "clicked", G_CALLBACK(button_clicked), this ); - gtk_signal_connect( GTK_OBJECT(m_pSendButton), "clicked", G_CALLBACK(button_clicked), this ); - gtk_widget_set_sensitive( m_pSendButton, FALSE ); - - m_nCurrentPage = -1; -} - -WizardDialog::~WizardDialog() -{ - int nPages = m_aPages.size(); - while( nPages-- ) - delete m_aPages[nPages]; -} - -void WizardDialog::show_messagebox( const std::string& rMessage ) -{ - GtkWidget* messagebox = NULL; - GtkMessageType eType = GTK_MESSAGE_ERROR; - - messagebox = gtk_message_dialog_new( NULL, - (GtkDialogFlags)0, - eType, - GTK_BUTTONS_OK, - rMessage.c_str(), - NULL - ); - - gtk_dialog_run( GTK_DIALOG(messagebox) ); - gtk_widget_destroy( GTK_WIDGET(messagebox) ); -} - - - -// bInProgress: true=sending, false=finished -gint WizardDialog::show_sendingstatus( bool bInProgress ) -{ - m_pStatusDialog = gtk_dialog_new_with_buttons( StringResource::get( "%SENDING_REPORT_HEADER%" ), - getTopLevel(), - GTK_DIALOG_MODAL, - bInProgress ? GTK_STOCK_CANCEL : GTK_STOCK_OK, - bInProgress ? GTK_RESPONSE_REJECT : GTK_RESPONSE_OK, - NULL ); - - gtk_window_set_default_size( GTK_WINDOW(m_pStatusDialog), 350, 130 ); - - GtkWidget *pLabel = gtk_label_new( bInProgress ? StringResource::get( "%SENDING_REPORT_STATUS%" ) : - StringResource::get( "%SENDING_REPORT_STATUS_FINISHED%" ) ); - gtk_widget_show( pLabel ); - gtk_label_set_justify( GTK_LABEL(pLabel), GTK_JUSTIFY_CENTER); - gtk_misc_set_alignment( GTK_MISC(pLabel), 0, 0 ); - - gtk_container_add( GTK_CONTAINER(GTK_DIALOG(m_pStatusDialog)->vbox), pLabel ); - - gint ret = gtk_dialog_run( GTK_DIALOG(m_pStatusDialog) ); - gtk_widget_destroy( m_pStatusDialog ); - m_pStatusDialog = NULL; - - return ret; -} - -void WizardDialog::hide_sendingstatus() -{ - if( m_pStatusDialog ) - { - gtk_dialog_response( GTK_DIALOG(m_pStatusDialog), GTK_RESPONSE_OK ); - - XEvent event; - - memset( &event, 0, sizeof(event) ); - - event.xexpose.type = Expose; - event.xexpose.display = GDK_DISPLAY(); - event.xexpose.window = GDK_WINDOW_XWINDOW( m_pStatusDialog->window ); - event.xexpose.width = event.xexpose.height = 10; - - XSendEvent( - GDK_DISPLAY(), - GDK_WINDOW_XWINDOW( m_pStatusDialog->window ), - True, - ExposureMask, - &event ); - - XFlush( GDK_DISPLAY() ); - } -} - - -gint WizardDialog::button_clicked( GtkWidget* pButton, WizardDialog* pThis ) -{ - if( pButton == pThis->m_pNextButton ) - pThis->nextPage(); - else if( pButton == pThis->m_pBackButton ) - pThis->lastPage(); - else if( pButton == pThis->m_pSendButton ) - { - if( pThis->m_nCurrentPage != -1 ) - pThis->m_aPages[pThis->m_nCurrentPage]->update(); - - if( send_crash_report( pThis, pThis->getSettings() ) ) - gtk_main_quit(); - } - - return 0; -} - -void WizardDialog::insertPage( WizardPage* pPage ) -{ - m_aPages.push_back( pPage ); - if( m_nCurrentPage == -1 ) - { - m_nCurrentPage = 0; - gtk_label_set_text( GTK_LABEL(m_pWizardTitle), pPage->getTitle() ); - gtk_box_pack_start( GTK_BOX(m_pPageArea), pPage->getContents(), TRUE, TRUE, 0 ); - gtk_widget_set_sensitive( m_pNextButton, FALSE ); - gtk_widget_set_sensitive( m_pBackButton, FALSE ); - } - else - { - gtk_widget_set_sensitive( m_pNextButton, TRUE ); - } -} - -void WizardDialog::nextPage() -{ - if( m_aPages.empty() || m_nCurrentPage >= (int)m_aPages.size()-1 ) - return; - - m_aPages[m_nCurrentPage]->update(); - - gtk_container_remove( GTK_CONTAINER(m_pPageArea), m_aPages[m_nCurrentPage]->getContents() ); - m_nCurrentPage++; - gtk_label_set_text( GTK_LABEL(m_pWizardTitle), m_aPages[m_nCurrentPage]->getTitle() ); - gtk_box_pack_start( GTK_BOX(m_pPageArea), m_aPages[m_nCurrentPage]->getContents(), TRUE, TRUE, 0 ); - - if( m_nCurrentPage == (int)m_aPages.size()-1 ) - { - gtk_widget_set_sensitive( m_pNextButton, FALSE ); - gtk_widget_set_sensitive( m_pSendButton, TRUE ); - } - if( m_aPages.size() > 1 ) - gtk_widget_set_sensitive( m_pBackButton, TRUE ); -} - -void WizardDialog::lastPage() -{ - if( m_aPages.empty() || m_nCurrentPage <= 0 ) - return; - - m_aPages[m_nCurrentPage]->update(); - - gtk_container_remove( GTK_CONTAINER(m_pPageArea), m_aPages[m_nCurrentPage]->getContents() ); - m_nCurrentPage--; - gtk_label_set_text( GTK_LABEL(m_pWizardTitle), m_aPages[m_nCurrentPage]->getTitle() ); - gtk_box_pack_start( GTK_BOX(m_pPageArea), m_aPages[m_nCurrentPage]->getContents(), TRUE, TRUE, 0 ); - - if( m_nCurrentPage == 0 ) - gtk_widget_set_sensitive( m_pBackButton, FALSE ); - if( m_aPages.size() > 1 ) - gtk_widget_set_sensitive( m_pNextButton, TRUE ); -} - -void WizardDialog::show( bool bShow ) -{ - if( bShow ) - gtk_widget_show( m_pTopLevel ); - else - gtk_widget_hide( m_pTopLevel ); -} - -/* - * MainPage - */ - -MainPage::MainPage( WizardDialog* pParent ) : WizardPage( pParent ) -{ - hash_map< string, string >& rSettings = m_pDialog->getSettings(); - m_aWizardTitle = StringResource::get( "%REPORT_HEADER%" ); - - m_pPageContents = gtk_vbox_new( FALSE, 0 ); - gtk_widget_show( m_pPageContents ); - - m_pInfo = gtk_label_new( StringResource::get( "%REPORT_BODY%" ) ); - gtk_widget_show( m_pInfo ); - gtk_label_set_line_wrap( GTK_LABEL(m_pInfo), TRUE ); - gtk_label_set_justify( GTK_LABEL(m_pInfo), GTK_JUSTIFY_LEFT); - gtk_misc_set_alignment( GTK_MISC(m_pInfo), 0, 1 ); - gtk_misc_set_padding( GTK_MISC(m_pInfo ), 5, 5); - gtk_box_pack_start( GTK_BOX(m_pPageContents), m_pInfo, FALSE, FALSE, 0 ); - - m_pHBox = gtk_hbox_new( FALSE, 0 ); - gtk_widget_show( m_pHBox ); - gtk_box_pack_start( GTK_BOX(m_pPageContents), m_pHBox, TRUE, TRUE, 0 ); - - m_pLeftColumn = gtk_vbox_new( FALSE, 5 ); - gtk_widget_show( m_pLeftColumn ); - gtk_container_set_border_width( GTK_CONTAINER(m_pLeftColumn), 5 ); - gtk_box_pack_start( GTK_BOX(m_pHBox), m_pLeftColumn, TRUE, TRUE, 0 ); - - m_pRightColumn = gtk_vbutton_box_new(); - gtk_widget_show( m_pRightColumn ); - gtk_button_box_set_layout( GTK_BUTTON_BOX(m_pRightColumn), GTK_BUTTONBOX_END ); - gtk_box_pack_start( GTK_BOX(m_pHBox), m_pRightColumn, FALSE, FALSE, 0 ); - - m_pEditLabel = gtk_label_new_with_mnemonic( StringResource::get( "%ENTER_TITLE%" ) ); - gtk_widget_show( m_pEditLabel ); - gtk_label_set_justify( GTK_LABEL(m_pEditLabel), GTK_JUSTIFY_LEFT); - gtk_misc_set_alignment( GTK_MISC(m_pEditLabel), 0, 1 ); - gtk_box_pack_start( GTK_BOX(m_pLeftColumn), m_pEditLabel, FALSE, FALSE, 0 ); - - m_pEdit = gtk_entry_new(); - gtk_widget_show( m_pEdit ); - gtk_box_pack_start( GTK_BOX(m_pLeftColumn), m_pEdit, FALSE, FALSE, 0 ); - - gtk_label_set_mnemonic_widget( GTK_LABEL(m_pEditLabel), m_pEdit ); - - hash_map::iterator aIter; - aIter = rSettings.find( "TITLE" ); - if( aIter != rSettings.end() ) - gtk_entry_set_text( GTK_ENTRY(m_pEdit), aIter->second.c_str() ); - - m_pEntryVBox = gtk_vbox_new( FALSE, 5 ); - gtk_widget_show( m_pEntryVBox ); - gtk_box_pack_start( GTK_BOX(m_pLeftColumn), m_pEntryVBox, TRUE, TRUE, 0 ); - - m_pEntryLabel = gtk_label_new_with_mnemonic( StringResource::get( "%ENTER_DESCRIPTION%" ) ); - gtk_widget_show( m_pEntryLabel ); - gtk_label_set_justify( GTK_LABEL(m_pEntryLabel), GTK_JUSTIFY_LEFT); - gtk_misc_set_alignment( GTK_MISC(m_pEntryLabel), 0, 1 ); - gtk_box_pack_start( GTK_BOX(m_pEntryVBox), m_pEntryLabel, FALSE, FALSE, 0 ); - - m_pScrolledEntry = gtk_scrolled_window_new( NULL, NULL ); - gtk_widget_show( m_pScrolledEntry ); - gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_pScrolledEntry), GTK_SHADOW_IN ); - gtk_box_pack_start( GTK_BOX(m_pEntryVBox), m_pScrolledEntry, TRUE, TRUE, 0 ); - - m_pEntry = gtk_text_view_new(); - gtk_widget_show( m_pEntry ); - gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW(m_pEntry), GTK_WRAP_WORD ); - gtk_container_add( GTK_CONTAINER(m_pScrolledEntry), m_pEntry ); - - aIter = rSettings.find( "DESCRIPTION" ); - if( aIter != rSettings.end() ) - { - GtkTextBuffer* pBuffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_pEntry) ); - gtk_text_buffer_set_text( pBuffer, aIter->second.c_str(), -1 ); - } - - - gtk_label_set_mnemonic_widget( GTK_LABEL(m_pEntryLabel), m_pEntry ); - - m_pDetails = gtk_button_new_with_mnemonic( StringResource::get( "%SHOW_REPORT_BUTTON%" ) ); - gtk_widget_show(m_pDetails); - gtk_container_set_border_width( GTK_CONTAINER(m_pDetails), 5 ); - gtk_container_add( GTK_CONTAINER(m_pRightColumn), m_pDetails ); - - m_pOptions = gtk_button_new_with_mnemonic( StringResource::get( "%OPTIONS_BUTTON%" ) ); - gtk_widget_show(m_pOptions); - gtk_container_set_border_width( GTK_CONTAINER(m_pOptions), 5 ); - gtk_container_add( GTK_CONTAINER(m_pRightColumn), m_pOptions ); - - // check env var for save button - const char *szUserType = getenv( "STAROFFICE_USERTYPE" ); - if( szUserType && *szUserType ) - { - m_pSave = gtk_button_new_with_mnemonic( StringResource::get( "%SAVE_REPORT_BUTTON%" ) ); - gtk_widget_show(m_pSave); - gtk_container_set_border_width( GTK_CONTAINER(m_pSave), 5 ); - gtk_container_add( GTK_CONTAINER(m_pRightColumn), m_pSave ); - } - else - m_pSave = NULL; - - - m_pCheck = gtk_check_button_new_with_mnemonic( StringResource::get( "%ALLOW_CONTACT%" ) ); - gtk_widget_show( m_pCheck ); - gtk_container_set_border_width( GTK_CONTAINER(m_pCheck), 5 ); - //gtk_box_pack_start( GTK_BOX(m_pPageContents), m_pCheck, FALSE, FALSE, 5 ); - gtk_box_pack_start( GTK_BOX(m_pLeftColumn), m_pCheck, FALSE, FALSE, 5 ); - - aIter = rSettings.find( "CONTACT" ); - if( aIter != rSettings.end() ) - { - const char *str = aIter->second.c_str(); - if( str && !strcasecmp(str, "true") ) - gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(m_pCheck), TRUE ); - } - - m_pAddressLabel = gtk_label_new_with_mnemonic( StringResource::get( "%ENTER_EMAIL%" ) ); - gtk_widget_show( m_pAddressLabel ); - gtk_label_set_justify( GTK_LABEL(m_pAddressLabel), GTK_JUSTIFY_LEFT); - gtk_misc_set_alignment( GTK_MISC(m_pAddressLabel), 0, 1 ); - gtk_box_pack_start( GTK_BOX(m_pLeftColumn), m_pAddressLabel, FALSE, FALSE, 5 ); - - m_pAddress = gtk_entry_new(); - gtk_widget_show( m_pAddress ); - gtk_box_pack_start( GTK_BOX(m_pLeftColumn), m_pAddress, FALSE, FALSE, 5 ); - - aIter = rSettings.find( "EMAIL" ); - if( aIter != rSettings.end() ) - gtk_entry_set_text( GTK_ENTRY(m_pAddress), aIter->second.c_str() ); - - gtk_signal_connect( GTK_OBJECT(m_pDetails), "clicked", G_CALLBACK(button_clicked), this ); - gtk_signal_connect( GTK_OBJECT(m_pOptions), "clicked", G_CALLBACK(button_clicked), this ); - if(m_pSave) // optional - gtk_signal_connect( GTK_OBJECT(m_pSave), "clicked", G_CALLBACK(button_clicked), this ); - - gtk_signal_connect( GTK_OBJECT(m_pCheck), "toggled", G_CALLBACK(button_toggled), this ); - button_toggled( m_pCheck, this ); - - g_object_ref( G_OBJECT(m_pPageContents) ); -} - -MainPage::~MainPage() -{ - g_object_unref( G_OBJECT(m_pPageContents) ); -} - -void MainPage::update() -{ - hash_map< string, string >& rSettings = m_pDialog->getSettings(); - - GtkTextIter start, end; - GtkTextBuffer* pTextBuffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_pEntry) ); - gtk_text_buffer_get_bounds( pTextBuffer, &start, &end ); - rSettings[ "DESCRIPTION" ] = gtk_text_buffer_get_text( pTextBuffer, &start, &end, 1 ); - rSettings[ "TITLE" ] = gtk_entry_get_text( GTK_ENTRY(m_pEdit) ); - rSettings[ "CONTACT" ] = gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON(m_pCheck) ) ? "true" : "false"; - rSettings[ "EMAIL" ] = gtk_entry_get_text( GTK_ENTRY(m_pAddress) ); -} - -gint MainPage::button_toggled( GtkWidget* pButton, MainPage* pThis ) -{ - if ( GTK_TOGGLE_BUTTON (pThis->m_pCheck)->active ) - { - gtk_widget_set_sensitive( pThis->m_pAddressLabel, TRUE); - gtk_widget_set_sensitive( pThis->m_pAddress, TRUE); - } - else - { - gtk_widget_set_sensitive( pThis->m_pAddressLabel, FALSE); - gtk_widget_set_sensitive( pThis->m_pAddress, FALSE); - } - return 0; -} - -gint MainPage::button_clicked( GtkWidget* pButton, MainPage* pThis ) -{ - if( pButton == pThis->m_pSave ) - { - GtkWidget* pFile = gtk_file_selection_new( StringResource::get( "%SAVE_REPORT_TITLE%" ) ); - gint nRet = gtk_dialog_run( GTK_DIALOG(pFile) ); - if( nRet == GTK_RESPONSE_OK ) - { - string aFile = gtk_file_selection_get_filename( GTK_FILE_SELECTION(pFile) ); - pThis->update(); - if( save_crash_report( aFile, pThis->m_pDialog->getSettings() ) ) - { - // gtk_main_quit(); - } - } - gtk_widget_destroy( pFile ); - } - else if( pButton == pThis->m_pDetails ) - { - pThis->update(); - - GtkWidget* pDialog = gtk_dialog_new_with_buttons( StringResource::get( "%REPORT_CAPTION%" ), - pThis->m_pDialog->getTopLevel(), - GTK_DIALOG_MODAL, - GTK_STOCK_OK, - GTK_RESPONSE_OK, - NULL ); - - gtk_window_set_default_size( GTK_WINDOW(pDialog), 500, 300 ); - GtkWidget* pScroll = gtk_scrolled_window_new( NULL, NULL ); - gtk_widget_show( pScroll ); - gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(pScroll), GTK_SHADOW_IN ); - gtk_container_add( GTK_CONTAINER(GTK_DIALOG(pDialog)->vbox), pScroll ); - - string aText = crash_get_details( pThis->m_pDialog->getSettings() ); - GtkWidget* pView = gtk_text_view_new(); - gtk_widget_show( pView ); - gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW(pView), GTK_WRAP_WORD ); - gtk_text_view_set_editable( GTK_TEXT_VIEW(pView), FALSE ); - GtkTextBuffer* pBuffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(pView) ); - gtk_text_buffer_set_text( pBuffer, aText.data(), aText.size() ); - gtk_container_add( GTK_CONTAINER(pScroll), pView ); - - gtk_dialog_run( GTK_DIALOG(pDialog) ); - gtk_widget_destroy( pDialog ); - } - else if( pButton == pThis->m_pOptions ) - { - OptionsDialog aOptions( pThis->m_pDialog->getTopLevel(), pThis->m_pDialog->getSettings() ); - //pThis->m_pDialog->show_sendingstatus( true ); - //pThis->m_pDialog->show_sendingstatus( false ); - //sleep(5); - //pThis->m_pDialog->hide_sendingstatus(); - } - - return 0; -} - -/* - * OptionsDialog (Proxy-Settings) - */ - -OptionsDialog::OptionsDialog( GtkWindow *pParent ,hash_map< string, string >& rSettings ) -{ - m_pDialog = gtk_dialog_new_with_buttons( StringResource::get( "%OPTIONS_TITLE%" ), - pParent, - GTK_DIALOG_MODAL, - GTK_STOCK_OK, GTK_RESPONSE_OK, - GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT, - NULL ); - - gtk_window_set_default_size( GTK_WINDOW(m_pDialog), 500, 300 ); - - m_pPage = gtk_vbox_new( FALSE, 0 ); - m_pLeftColumn = gtk_vbox_new( FALSE, 5 ); - - gtk_widget_show( m_pPage ); - gtk_widget_show( m_pLeftColumn ); - - gtk_container_add( GTK_CONTAINER(GTK_DIALOG(m_pDialog)->vbox), m_pPage ); - - gtk_container_set_border_width( GTK_CONTAINER(m_pLeftColumn), 5 ); - gtk_box_pack_start( GTK_BOX(m_pPage), m_pLeftColumn, FALSE, FALSE, 5 ); - - // frame for proxy settings - m_pFrame = gtk_frame_new(StringResource::get( "%PROXY_SETTINGS_HEADER%" )); - gtk_frame_set_shadow_type( GTK_FRAME(m_pFrame), GTK_SHADOW_ETCHED_IN ); - gtk_widget_show(m_pFrame); - gtk_box_pack_start(GTK_BOX (m_pLeftColumn), m_pFrame, TRUE, TRUE, 0); - - m_pVBox = gtk_vbox_new( FALSE, 0 ); - gtk_widget_show( m_pVBox ); - gtk_container_add( GTK_CONTAINER( m_pFrame ), m_pVBox ); - - // the radio buttons - m_pDirect = gtk_radio_button_new_with_mnemonic( NULL, - StringResource::get( "%PROXY_SETTINGS_DIRECT%" ) ); - gtk_widget_show(m_pDirect); - gtk_box_pack_start(GTK_BOX (m_pVBox), m_pDirect, FALSE, FALSE, 0); - - m_pManual = gtk_radio_button_new_with_mnemonic( gtk_radio_button_group( GTK_RADIO_BUTTON(m_pDirect) ), - StringResource::get( "%PROXY_SETTINGS_MANUAL%" ) ); - gtk_widget_show(m_pManual); - gtk_box_pack_start(GTK_BOX (m_pVBox), m_pManual, FALSE, FALSE, 0); - - hash_map::iterator aIter; - const char *str = NULL; - aIter = rSettings.find( "USEPROXY" ); - if( aIter != rSettings.end() ) - str = aIter->second.c_str(); - if( str && !strcasecmp(str, "true") ) - gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(m_pManual), TRUE ); - else - gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(m_pDirect), TRUE ); - - // the server and port edit controls - m_pHBox = gtk_hbox_new( FALSE, 0 ); - gtk_widget_show( m_pHBox ); - gtk_box_pack_start(GTK_BOX (m_pVBox), m_pHBox, FALSE, FALSE, 10); - - m_pVBoxServer = gtk_vbox_new( FALSE, 5 ); - gtk_widget_show( m_pVBoxServer ); - gtk_box_pack_start(GTK_BOX (m_pHBox), m_pVBoxServer, TRUE, TRUE, 10); - - m_pVBoxPort = gtk_vbox_new( FALSE, 5 ); - gtk_widget_show( m_pVBoxPort ); - gtk_box_pack_start(GTK_BOX (m_pHBox), m_pVBoxPort, FALSE, FALSE, 10); - - m_pServerLabel = gtk_label_new_with_mnemonic( StringResource::get( "%PROXY_SETTINGS_ADDRESS%" ) ); - gtk_widget_show( m_pServerLabel ); - gtk_label_set_justify( GTK_LABEL(m_pServerLabel), GTK_JUSTIFY_LEFT); - gtk_misc_set_alignment( GTK_MISC(m_pServerLabel), 0, 1 ); - gtk_box_pack_start( GTK_BOX(m_pVBoxServer), m_pServerLabel, FALSE, FALSE, 0 ); - - m_pServer = gtk_entry_new(); - gtk_widget_show( m_pServer ); - gtk_box_pack_start( GTK_BOX(m_pVBoxServer), m_pServer, FALSE, FALSE, 0 ); - gtk_label_set_mnemonic_widget( GTK_LABEL(m_pServerLabel), m_pServer ); - aIter = rSettings.find( "SERVER" ); - if( aIter != rSettings.end() ) - gtk_entry_set_text( GTK_ENTRY(m_pServer), aIter->second.c_str() ); - - m_pPortLabel = gtk_label_new_with_mnemonic( StringResource::get( "%PROXY_SETTINGS_PORT%" ) ); - gtk_widget_show( m_pPortLabel ); - gtk_label_set_justify( GTK_LABEL(m_pPortLabel), GTK_JUSTIFY_LEFT); - gtk_misc_set_alignment( GTK_MISC(m_pPortLabel), 0, 1 ); - gtk_box_pack_start( GTK_BOX(m_pVBoxPort), m_pPortLabel, FALSE, FALSE, 0 ); - - m_pPort = gtk_entry_new(); - gtk_widget_show( m_pPort ); - gtk_box_pack_start( GTK_BOX(m_pVBoxPort), m_pPort, FALSE, FALSE, 0 ); - gtk_label_set_mnemonic_widget( GTK_LABEL(m_pPortLabel), m_pPort ); - aIter = rSettings.find( "PORT" ); - if( aIter != rSettings.end() ) - gtk_entry_set_text( GTK_ENTRY(m_pPort), aIter->second.c_str() ); - - // help text - m_pNote = gtk_label_new( StringResource::get( "%PROXY_SETTINGS_DESCRIPTION%" ) ); - gtk_widget_show( m_pNote ); - gtk_label_set_justify( GTK_LABEL(m_pNote), GTK_JUSTIFY_LEFT); - gtk_misc_set_alignment( GTK_MISC(m_pNote), 0, 1 ); - gtk_box_pack_start(GTK_BOX (m_pLeftColumn), m_pNote, FALSE, FALSE, 5); - gtk_label_set_line_wrap (GTK_LABEL (m_pNote), TRUE); - - - gtk_signal_connect( GTK_OBJECT(m_pDirect), "toggled", G_CALLBACK(button_toggled), this ); - gtk_signal_connect( GTK_OBJECT(m_pManual), "toggled", G_CALLBACK(button_toggled), this ); - - button_toggled( m_pDirect, this ); - - if( gtk_dialog_run( GTK_DIALOG(m_pDialog) ) == GTK_RESPONSE_OK ) - { - rSettings[ "SERVER" ] = getServer(); - rSettings[ "PORT" ] = getPort(); - rSettings[ "USEPROXY" ] = getUseProxy(); - } - g_object_ref( G_OBJECT(m_pDialog) ); -} - -OptionsDialog::~OptionsDialog() -{ - gtk_widget_destroy( m_pDialog ); - g_object_unref( G_OBJECT(m_pDialog) ); -} - -gint OptionsDialog::button_toggled( GtkWidget* pButton, OptionsDialog* pThis ) -{ - if ( GTK_TOGGLE_BUTTON (pThis->m_pManual)->active ) - { - gtk_widget_set_sensitive( pThis->m_pServerLabel, TRUE); - gtk_widget_set_sensitive( pThis->m_pServer, TRUE); - gtk_widget_set_sensitive( pThis->m_pPortLabel, TRUE); - gtk_widget_set_sensitive( pThis->m_pPort, TRUE); - } - else - { - gtk_widget_set_sensitive( pThis->m_pServerLabel, FALSE); - gtk_widget_set_sensitive( pThis->m_pServer, FALSE); - gtk_widget_set_sensitive( pThis->m_pPortLabel, FALSE); - gtk_widget_set_sensitive( pThis->m_pPort, FALSE); - } - - return 0; -} - -string OptionsDialog::getUseProxy() -{ - return gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON(m_pDirect) ) ? "false" : "true"; -} -string OptionsDialog::getServer() -{ - return gtk_entry_get_text( GTK_ENTRY(m_pServer) ); -} -string OptionsDialog::getPort() -{ - return gtk_entry_get_text( GTK_ENTRY(m_pPort) ); -} - -/* - * WelcomePage - */ -WelcomePage::WelcomePage( WizardDialog* pParent ) : WizardPage( pParent ) -{ - m_aWizardTitle = StringResource::get( "%WELCOME_HEADER%" ); - - string aBody = StringResource::get( "%WELCOME_BODY1%" ); - aBody += StringResource::get( "%WELCOME_BODY2%" ); - aBody += StringResource::get( "%WELCOME_BODY3%" ); - aBody += "\n\n"; - aBody += StringResource::get( "%PRIVACY_URL%" ); - m_pPageContents = gtk_label_new( aBody.c_str() ); - gtk_widget_show( m_pPageContents ); - gtk_label_set_line_wrap( GTK_LABEL(m_pPageContents), TRUE ); - gtk_label_set_justify( GTK_LABEL(m_pPageContents), GTK_JUSTIFY_LEFT); - gtk_misc_set_alignment( GTK_MISC(m_pPageContents), 0, 1 ); - gtk_misc_set_padding( GTK_MISC(m_pPageContents ), 5, 5); - - g_object_ref( G_OBJECT(m_pPageContents) ); -} - -WelcomePage::~WelcomePage() -{ - g_object_unref( G_OBJECT(m_pPageContents) ); -} - -void WelcomePage::update() -{ -} diff --git a/crashrep/source/unx/interface.hxx b/crashrep/source/unx/interface.hxx deleted file mode 100755 index ad80c218fa65..000000000000 --- a/crashrep/source/unx/interface.hxx +++ /dev/null @@ -1,192 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: interface.hxx,v $ - * $Revision: 1.6 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#include -#include -#include -#include -#include - -#include -#include -#include -#include - -#include - -#include -#include -#include - -class WizardDialog; - -// returns success, on true application will quit -bool save_crash_report( const std::string& rFileName, const std::hash_map< std::string, std::string >& rSettings ); -// returns success, on true application will quit -bool send_crash_report( WizardDialog *pDialog, const std::hash_map< std::string, std::string >& rSettings ); -// must return a valid UTF8 string containing the message that will be sent -std::string crash_get_details( const std::hash_map< std::string, std::string >& rSettings ); - -class StringResource -{ -public: - static void init( int argc, char** argv ); - static const char* get( const char* pKey ); -}; - -class WizardPage -{ -protected: - std::string m_aWizardTitle; - GtkWidget* m_pPageContents; - WizardDialog* m_pDialog; -public: - WizardPage( WizardDialog* pDialog ) : m_pDialog( pDialog ) {} - virtual ~WizardPage(); - - const char* getTitle() const { return m_aWizardTitle.c_str(); } - GtkWidget* getContents() const { return m_pPageContents; } - - virtual void update() = 0; -}; - -class WizardDialog -{ - std::vector< WizardPage* > m_aPages; - int m_nCurrentPage; - - GtkWidget* m_pTopLevel; - GtkWidget* m_pVBox; - GtkWidget* m_pViewPort; - GtkWidget* m_pWizardTitle; - GtkWidget* m_pPageArea; - GtkWidget* m_pSeparator; - GtkWidget* m_pButtonBox; - GtkWidget* m_pBackButton; - GtkWidget* m_pNextButton; - GtkWidget* m_pSendButton; - GtkWidget* m_pCancelButton; - - GtkWidget* m_pStatusDialog; - - std::hash_map< std::string, std::string > m_aSettings; - - static gint button_clicked( GtkWidget* pButton, WizardDialog* pThis ); - - void nextPage(); - void lastPage(); -public: - WizardDialog(); - ~WizardDialog(); - - // takes ownership of page - void insertPage( WizardPage* pPage ); - - void show( bool bShow = true ); - void show_messagebox( const std::string& rMessage ); - gint show_sendingstatus( bool bInProgress ); - void hide_sendingstatus(); - - std::hash_map< std::string, std::string >& getSettings() { return m_aSettings; } - GtkWindow* getTopLevel() const { return GTK_WINDOW(m_pTopLevel); } -}; - -class MainPage : public WizardPage -{ - GtkWidget* m_pInfo; - GtkWidget* m_pEditLabel; - GtkWidget* m_pEdit; - GtkWidget* m_pEntryLabel; - GtkWidget* m_pEntryVBox; - GtkWidget* m_pScrolledEntry; - GtkWidget* m_pEntry; - GtkWidget* m_pHBox; - GtkWidget* m_pRightColumn; - GtkWidget* m_pLeftColumn; - GtkWidget* m_pDetails; - GtkWidget* m_pSave; - GtkWidget* m_pCheck; - GtkWidget* m_pOptions; - GtkWidget* m_pAddressLabel; - GtkWidget* m_pAddress; - - static gint button_clicked( GtkWidget* pButton, MainPage* pThis ); - static gint button_toggled( GtkWidget* pButton, MainPage* pThis ); - -public: - MainPage( WizardDialog* ); - virtual ~MainPage(); - - virtual void update(); -}; - -class WelcomePage : public WizardPage -{ -public: - WelcomePage( WizardDialog* ); - virtual ~WelcomePage(); - - virtual void update(); -}; - -class OptionsDialog -{ - GtkWidget* m_pDialog; - GtkWidget* m_pPage; - GtkWidget* m_pLeftColumn; - GtkWidget* m_pFrame; - GtkWidget* m_pDirect; - GtkWidget* m_pManual; - GtkWidget* m_pServerLabel; - GtkWidget* m_pServer; - GtkWidget* m_pColon; - GtkWidget* m_pPortLabel; - GtkWidget* m_pPort; - GtkWidget* m_pNote; - GtkWidget* m_pOkButton; - GtkWidget* m_pCancelButton; - GtkWidget* m_pButtonBox; - GtkWidget* m_pVBox; - GtkWidget* m_pHBox; - GtkWidget* m_pVBoxServer; - GtkWidget* m_pVBoxPort; - - static gint button_toggled( GtkWidget* pButton, OptionsDialog* pThis ); - -public: - OptionsDialog( GtkWindow* pParent, - std::hash_map< std::string, std::string >& rSettings ); - virtual ~OptionsDialog(); - - std::string getUseProxy(); - std::string getServer(); - std::string getPort(); - -}; diff --git a/crashrep/source/unx/makefile.mk b/crashrep/source/unx/makefile.mk index 2f8be8f96a76..54ffb7137cb9 100755 --- a/crashrep/source/unx/makefile.mk +++ b/crashrep/source/unx/makefile.mk @@ -60,9 +60,6 @@ APP1TARGET=$(TARGET) APP1OBJS=$(OBJFILES) APP1RPATH=BRAND -.IF "$(OS)" != "MACOSX" -APP1STDLIBS=$(DYNAMIC) -lXext -lX11 -.ENDIF .IF "$(OS)" != "FREEBSD" && "$(OS)" != "MACOSX" && "$(OS)"!="NETBSD" APP1STDLIBS+=-ldl -lnsl .ENDIF @@ -70,6 +67,8 @@ APP1STDLIBS+=-ldl -lnsl APP1STDLIBS+=-lsocket .ENDIF +UNIXTEXT = $(MISC)/crash_report.sh + .ENDIF # "$(ENABLE_CRASHDUMP)" != "" || "$(PRODUCT)" == "" # --- Targets ------------------------------------------------------ diff --git a/crashrep/source/unx/res.cxx b/crashrep/source/unx/res.cxx deleted file mode 100755 index 54968bb2259d..000000000000 --- a/crashrep/source/unx/res.cxx +++ /dev/null @@ -1,133 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: res.cxx,v $ - * $Revision: 1.5 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#include -#include -#include -#include - -using namespace std; - -static hash_map< string, string >* pStringResources = NULL; - -static string getResFileName( const char* progname ) -{ - string aRet = progname; - size_t pos = aRet.rfind( '/' ); - // FIXME: search PATH if necessary - OSL_ASSERT( pos != string::npos ); - aRet.erase( pos ); - aRet.append( "/resource/crash_dump.res" ); - - return aRet; -} - -static void filterString( string& rString ) -{ - static const char* pProductName = getenv( "PRODUCTNAME" ); - static int nProductLen = pProductName ? strlen( pProductName ) : 0; - static const char* pProductVersion = getenv( "PRODUCTVERSION" ); - static int nVersionLen = pProductVersion ? strlen( pProductVersion ) : 0; - - // fill in eventually escaped characters - string::size_type pos = 0; - while( (pos = rString.find( '\\' ) ) != string::npos ) - { - char cRep = 0; - switch( rString[pos+1] ) - { - case 't': cRep = '\t';break; - case 'n': cRep = '\n';break; - case 'r': cRep = '\r';break; - case 'f': cRep = '\f';break; - default: cRep = rString[pos+1]; - } - if( cRep ) - rString.replace( pos, 2, &cRep, 1 ); - } - while( (pos = rString.find( '~' ) ) != string::npos ) - { - // replace mnemonic marker - rString.replace( pos, 1, "_", 1 ); - } - while( (pos = rString.find( "%PRODUCTNAME%" ) ) != string::npos ) - { - rString.replace( pos, 13, pProductName ? pProductName : "OpenOffice" ); - } - while( (pos = rString.find( "%PRODUCTVERSION%" ) ) != string::npos ) - { - rString.replace( pos, 16, pProductVersion ? pProductVersion : "" ); - } - // remove whitespace at end - pos = rString.find_last_not_of( "\r\n\t\f " ); - if( pos != string::npos ) - rString.erase( pos+1 ); -} - -void StringResource::init( int argc, char** argv ) -{ - pStringResources = new hash_map< string, string >(); - - string aResFile = getResFileName( argv[0] ); - - FILE* fp = fopen( aResFile.c_str(), "r" ); - if( fp ) - { - char buf[4096]; - string aKey; - string aValue; - while( ! feof( fp ) ) - { - if( ! fgets( buf, sizeof(buf), fp ) ) - break; - - char* pEq = strchr( buf, '=' ); - if( ! pEq || *(pEq+1) == 0 ) // invalid line - continue; - aKey = string(buf, pEq-buf); - aValue = pEq+1; - while( (aValue.empty() || aValue[ aValue.size()-1 ] != '\n') && ! feof( fp ) ) - { - if( fgets( buf, sizeof( buf ), fp ) ) - aValue.append( buf ); - } - filterString( aValue ); - (*pStringResources)[aKey] = aValue; - } - fclose( fp ); - } -} - -const char* StringResource::get( const char* pKey ) -{ - hash_map< string, string >::const_iterator it = pStringResources->find( pKey ); - return (it == pStringResources->end()) ? "" : it->second.c_str(); -} - diff --git a/crashrep/source/unx/res/makefile.mk b/crashrep/source/unx/res/makefile.mk deleted file mode 100755 index 4e6d733e2d37..000000000000 --- a/crashrep/source/unx/res/makefile.mk +++ /dev/null @@ -1,63 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# -# This file is part of OpenOffice.org. -# -# OpenOffice.org is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License version 3 -# only, as published by the Free Software Foundation. -# -# OpenOffice.org is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License version 3 for more details -# (a copy is included in the LICENSE file that accompanied this code). -# -# You should have received a copy of the GNU Lesser General Public License -# version 3 along with OpenOffice.org. If not, see -# -# for a copy of the LGPLv3 License. -# -#************************************************************************* - -PRJ=..$/..$/.. - -PRJNAME=crashrep -TARGET=unxcrashres -LIBTARGET=NO -TARGETTYPE=CUI - -# --- Settings ----------------------------------------------------- - -.INCLUDE : settings.mk - -.IF "$(OS)"=="MACOSX" - -dummy: - @echo "Nothing to build for OS $(OS)" - -.ELSE # "$(OS)"=="MACOSX" - -# --- Files -------------------------------------------------------- - -SOLARLIB!:=$(SOLARLIB:s/jre/jnore/) - -APP1TARGET=$(TARGET) -APP1OBJS=$(OBJ)$/unxcrashres.obj -APP1STDLIBS=$(TOOLSLIB) $(SALLIB) - -.ENDIF "$(OS)"=="MACOSX" - -# --- Targets ------------------------------------------------------ - -.INCLUDE : target.mk - diff --git a/crashrep/source/unx/res/unxcrashres.cxx b/crashrep/source/unx/res/unxcrashres.cxx deleted file mode 100755 index 4bfd34f58ba0..000000000000 --- a/crashrep/source/unx/res/unxcrashres.cxx +++ /dev/null @@ -1,104 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: unxcrashres.cxx,v $ - * $Revision: 1.5 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/#include -#include -#include - -#include -#include -#include -#include - -using namespace std; -using namespace rtl; - -void filterValue( ByteString& rValue, const OString& rGroup, const ByteString& rKey ) -{ - USHORT nStartPos = rValue.Search( '"' ); - USHORT nStopPos = rValue.SearchBackward( '"' ); - if( nStartPos == STRING_NOTFOUND || nStopPos == STRING_NOTFOUND ) - { - fprintf( stderr, "Error: invalid key in [%s] in key \"%s\"\n", - rGroup.getStr(), - rKey.GetBuffer() ); - exit( 1 ); - } - rValue.Erase( nStopPos ); - rValue.Erase( 0, nStartPos+1 ); -} - -int main( int argc, char** argv ) -{ - if( argc != 3 ) - { - fprintf( stderr, "USAGE: unxcrashres \n" ); - exit( 1 ); - } - - ByteString tmp_argv1( argv[1] ); - Config aConfig( String( tmp_argv1, osl_getThreadTextEncoding() ) ); - hash_map< ByteString, hash_map< OString, OString, OStringHash >, OStringHash > aFiles; - - for( USHORT i = 0; i < aConfig.GetGroupCount(); i++ ) - { - aConfig.SetGroup( aConfig.GetGroupName( i ) ); - OString aGroup = aConfig.GetGroupName( i ); - USHORT nKeys = aConfig.GetKeyCount(); - for( USHORT n = 0; n < nKeys; n++ ) - { - ByteString aKey = aConfig.GetKeyName( n ); - ByteString aValue = aConfig.ReadKey( aKey ); - // tailor key - filterValue( aValue, aGroup, aKey ); - - aFiles[aKey][aGroup] = ByteString( aValue ); - } - } - - for( hash_map< ByteString, hash_map< OString, OString, OStringHash >, OStringHash >::const_iterator lang_it = aFiles.begin(); lang_it != aFiles.end(); ++lang_it ) - { - ByteString aFile( argv[2] ); - aFile.Append( '.' ); - aFile.Append( lang_it->first ); - FILE* fp = fopen( aFile.GetBuffer(), "w" ); - if( ! fp ) - { - fprintf( stderr, "Error: could not open \"%s\" for writing: %s\n", - aFile.GetBuffer(), strerror( errno ) ); - exit(1); - } - for( hash_map< OString, OString, OStringHash >::const_iterator line_it = lang_it->second.begin(); line_it != lang_it->second.end(); ++line_it ) - { - fprintf( fp, "%s=%s\n", line_it->first.getStr(), line_it->second.getStr() ); - } - fclose( fp ); - } - - return 0; -} From aa2a9c2c4a94bf12b723bb55aec1895309555ca4 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Tue, 19 Jan 2010 08:02:04 +0100 Subject: [PATCH 36/45] #i107450#: use reliable way to access attribute name strings --- cui/source/dialogs/srchxtra.cxx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/cui/source/dialogs/srchxtra.cxx b/cui/source/dialogs/srchxtra.cxx index 6b9f01fb9976..1daecd2d39bc 100644 --- a/cui/source/dialogs/srchxtra.cxx +++ b/cui/source/dialogs/srchxtra.cxx @@ -49,6 +49,7 @@ #include #include "backgrnd.hxx" #include // RID_SVXPAGE_... +#include // class SvxSearchFormatDialog ------------------------------------------- @@ -161,6 +162,7 @@ SvxSearchAttributeDialog::SvxSearchAttributeDialog( Window* pParent, SfxObjectShell* pSh = SfxObjectShell::Current(); DBG_ASSERT( pSh, "No DocShell" ); + ResStringArray aAttrNames( SVX_RES( RID_ATTR_NAMES ) ); SfxItemPool& rPool = pSh->GetPool(); SfxItemSet aSet( rPool, pWhRanges ); SfxWhichIter aIter( aSet ); @@ -183,18 +185,14 @@ SvxSearchAttributeDialog::SvxSearchAttributeDialog( Window* pParent, } // item resources are in svx - USHORT nResId = nSlot - SID_SVX_START + RID_ATTR_BEGIN; + sal_uInt32 nId = aAttrNames.FindIndex( nSlot ); SvLBoxEntry* pEntry = NULL; - ResId aId( nResId, DIALOG_MGR() ); - aId.SetRT( RSC_STRING ); - if ( DIALOG_MGR().IsAvailable( aId ) ) - pEntry = aAttrLB.SvTreeListBox::InsertEntry( CUI_RESSTR( nResId ) ); + if ( RESARRAY_INDEX_NOTFOUND != nId ) + pEntry = aAttrLB.SvTreeListBox::InsertEntry( aAttrNames.GetString(nId) ); else { ByteString sError( "no resource for slot id\nslot = " ); sError += ByteString::CreateFromInt32( nSlot ); - sError += ByteString( "\nresid = " ); - sError += ByteString::CreateFromInt32( nResId ); DBG_ERRORFILE( sError.GetBuffer() ); } From 2d0ed664c378d9f38a24f9631bcda6b8b363ebed Mon Sep 17 00:00:00 2001 From: Joachim Lingner Date: Tue, 19 Jan 2010 15:45:31 +0100 Subject: [PATCH 37/45] jl145: #i108452# tests for digital signatures --- xmlsecurity/test_docs/CAs/README.txt | 383 ++++++++++ .../test_docs/CAs/Root_1/demoCA/cacert.pem | 19 + .../CAs/Root_1/demoCA/crl/DO_NOT_CREATE_A_CRL | 0 .../test_docs/CAs/Root_1/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_1/demoCA/index.txt | 1 + .../CAs/Root_1/demoCA/index.txt.attr | 1 + .../CAs/Root_1/demoCA/newcerts/1000.pem | 62 ++ .../CAs/Root_1/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_1/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_1/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Root_10/demoCA/cacert.pem | 19 + .../test_docs/CAs/Root_10/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_10/demoCA/index.txt | 1 + .../CAs/Root_10/demoCA/index.txt.attr | 1 + .../CAs/Root_10/demoCA/newcerts/1000.pem | 62 ++ .../CAs/Root_10/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_10/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_10/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Root_11/demoCA/cacert.pem | 19 + .../test_docs/CAs/Root_11/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_11/demoCA/index.txt | 34 + .../CAs/Root_11/demoCA/index.txt.attr | 1 + .../CAs/Root_11/demoCA/newcerts/1000.pem | 57 ++ .../CAs/Root_11/demoCA/newcerts/1002.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1003.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1004.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1005.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1006.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1007.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1008.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1009.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/100A.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/100B.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/100C.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/100D.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/100E.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/100F.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1010.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1011.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1012.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1013.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1014.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1015.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1016.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1017.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1018.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1019.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/101A.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/101B.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/101C.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/101D.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/101E.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/101F.pem | 60 ++ .../CAs/Root_11/demoCA/newcerts/1020.pem | 61 ++ .../CAs/Root_11/demoCA/newcerts/1021.pem | 61 ++ .../CAs/Root_11/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_11/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_11/openssl.cfg | 295 ++++++++ .../test_docs/CAs/Root_2/demoCA/cacert.pem | 19 + .../CAs/Root_2/demoCA/crl/DO_NOT_CREATE_A_CRL | 0 .../test_docs/CAs/Root_2/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_2/demoCA/index.txt | 1 + .../CAs/Root_2/demoCA/index.txt.attr | 1 + .../CAs/Root_2/demoCA/newcerts/1000.pem | 62 ++ .../CAs/Root_2/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_2/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_2/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Root_3/demoCA/cacert.pem | 19 + .../test_docs/CAs/Root_3/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_3/demoCA/index.txt | 1 + .../CAs/Root_3/demoCA/index.txt.attr | 1 + .../CAs/Root_3/demoCA/newcerts/1000.pem | 62 ++ .../CAs/Root_3/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_3/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_3/openssl.cfg | 292 ++++++++ xmlsecurity/test_docs/CAs/Root_4/README.txt | 4 + .../test_docs/CAs/Root_4/demoCA/cacert.pem | 19 + .../test_docs/CAs/Root_4/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_4/demoCA/index.txt | 2 + .../CAs/Root_4/demoCA/index.txt.attr | 1 + .../CAs/Root_4/demoCA/newcerts/1000.pem | 62 ++ .../CAs/Root_4/demoCA/newcerts/1001.pem | 62 ++ .../CAs/Root_4/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_4/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_4/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Root_5/demoCA/cacert.pem | 19 + .../CAs/Root_5/demoCA/crl/DO_NOT_CREATE_A_CRL | 0 .../test_docs/CAs/Root_5/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_5/demoCA/index.txt | 1 + .../CAs/Root_5/demoCA/index.txt.attr | 1 + .../CAs/Root_5/demoCA/newcerts/1001.pem | 66 ++ .../CAs/Root_5/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_5/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_5/openssl.cfg | 292 ++++++++ xmlsecurity/test_docs/CAs/Root_6/README.txt | 5 + .../test_docs/CAs/Root_6/demoCA/cacert.pem | 19 + .../Root_6/demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../CAs/Root_6/demoCA/crl/Root_6.crl | Bin 0 -> 316 bytes .../test_docs/CAs/Root_6/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_6/demoCA/index.txt | 1 + .../CAs/Root_6/demoCA/index.txt.attr | 1 + .../CAs/Root_6/demoCA/newcerts/1001.pem | 66 ++ .../CAs/Root_6/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_6/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_6/openssl.cfg | 292 ++++++++ xmlsecurity/test_docs/CAs/Root_7/README.txt | 10 + .../test_docs/CAs/Root_7/demoCA/cacert.pem | 19 + .../Root_7/demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../CAs/Root_7/demoCA/crl/Root_7.crl | Bin 0 -> 353 bytes .../test_docs/CAs/Root_7/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_7/demoCA/index.txt | 2 + .../CAs/Root_7/demoCA/index.txt.attr | 1 + .../CAs/Root_7/demoCA/newcerts/1000.pem | 66 ++ .../CAs/Root_7/demoCA/newcerts/1001.pem | 66 ++ .../CAs/Root_7/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_7/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_7/openssl.cfg | 292 ++++++++ xmlsecurity/test_docs/CAs/Root_8/README.txt | 9 + .../test_docs/CAs/Root_8/demoCA/cacert.pem | 19 + .../Root_8/demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../CAs/Root_8/demoCA/crl/Root_8.crl | Bin 0 -> 353 bytes .../test_docs/CAs/Root_8/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_8/demoCA/index.txt | 2 + .../CAs/Root_8/demoCA/index.txt.attr | 1 + .../CAs/Root_8/demoCA/newcerts/1000.pem | 66 ++ .../CAs/Root_8/demoCA/newcerts/1001.pem | 66 ++ .../CAs/Root_8/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_8/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_8/openssl.cfg | 292 ++++++++ .../Root_9/DO_NOT_INSTALL_THIS_ROOT_CERT.txt | 1 + .../DO_NO_INSTALL_THIS_ROOT_CERTIFICATE | 0 .../test_docs/CAs/Root_9/demoCA/Root_9.crt | Bin 0 -> 776 bytes .../test_docs/CAs/Root_9/demoCA/cacert.pem | 19 + .../test_docs/CAs/Root_9/demoCA/crlnumber | 1 + .../test_docs/CAs/Root_9/demoCA/index.txt | 1 + .../CAs/Root_9/demoCA/index.txt.attr | 1 + .../CAs/Root_9/demoCA/newcerts/1000.pem | 62 ++ .../CAs/Root_9/demoCA/private/cakey.pem | 18 + .../test_docs/CAs/Root_9/demoCA/serial | 1 + xmlsecurity/test_docs/CAs/Root_9/openssl.cfg | 292 ++++++++ .../CAs/Sub_CA_1_Root_1/demoCA/cacert.pem | 62 ++ .../demoCA/crl/DO_NOT_CREATE_A_CRL | 0 .../CAs/Sub_CA_1_Root_1/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_1/demoCA/index.txt | 1 + .../CAs/Sub_CA_1_Root_1/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_1/demoCA/newcerts/1000.pem | 58 ++ .../Sub_CA_1_Root_1/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_1/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_1/openssl.cfg | 292 ++++++++ .../DO_NOT_INSTALL_THIS_CERTIFICATE | 0 .../test_docs/CAs/Sub_CA_1_Root_10/README.txt | 19 + .../demoCA/DO_NOT_INSTALL_THIS_CERTIFICATE | 0 .../demoCA/Sub_CA_1_Root_10.crt | Bin 0 -> 781 bytes .../CAs/Sub_CA_1_Root_10/demoCA/cacert.pem | 62 ++ .../demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../demoCA/crl/Sub_CA_1_Root_10.crl | Bin 0 -> 326 bytes .../CAs/Sub_CA_1_Root_10/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_10/demoCA/index.txt | 1 + .../Sub_CA_1_Root_10/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_10/demoCA/newcerts/1000.pem | 67 ++ .../Sub_CA_1_Root_10/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_10/demoCA/serial | 1 + .../CAs/Sub_CA_1_Root_10/openssl.cfg | 293 ++++++++ .../CAs/Sub_CA_1_Root_2/demoCA/cacert.pem | 62 ++ .../CAs/Sub_CA_1_Root_2/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_2/demoCA/index.txt | 1 + .../CAs/Sub_CA_1_Root_2/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_2/demoCA/newcerts/1000.pem | 60 ++ .../Sub_CA_1_Root_2/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_2/demoCA/req.pem | 11 + .../CAs/Sub_CA_1_Root_2/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_2/openssl.cfg | 292 ++++++++ .../CAs/Sub_CA_1_Root_3/demoCA/cacert.pem | 62 ++ .../demoCA/crl/DO_NOT_CREATE_A_CRL | 0 .../CAs/Sub_CA_1_Root_3/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_3/demoCA/index.txt | 1 + .../CAs/Sub_CA_1_Root_3/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_3/demoCA/newcerts/1000.pem | 60 ++ .../Sub_CA_1_Root_3/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_3/demoCA/req.pem | 11 + .../CAs/Sub_CA_1_Root_3/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_3/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Sub_CA_1_Root_4/README.txt | 4 + .../CAs/Sub_CA_1_Root_4/demoCA/cacert.pem | 62 ++ .../CAs/Sub_CA_1_Root_4/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_4/demoCA/index.txt | 2 + .../CAs/Sub_CA_1_Root_4/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_4/demoCA/newcerts/1000.pem | 60 ++ .../Sub_CA_1_Root_4/demoCA/newcerts/1001.pem | 60 ++ .../Sub_CA_1_Root_4/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_4/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_4/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Sub_CA_1_Root_5/README.txt | 5 + .../CAs/Sub_CA_1_Root_5/demoCA/cacert.pem | 66 ++ .../demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../demoCA/crl/Sub_CA_1_Root_5.crl | Bin 0 -> 325 bytes .../CAs/Sub_CA_1_Root_5/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_5/demoCA/index.txt | 1 + .../CAs/Sub_CA_1_Root_5/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_5/demoCA/newcerts/1002.pem | 62 ++ .../Sub_CA_1_Root_5/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_5/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_5/openssl.cfg | 292 ++++++++ .../CAs/Sub_CA_1_Root_6/demoCA/cacert.pem | 66 ++ .../demoCA/crl/DO_NOT_CREATE_A_CRL | 0 .../CAs/Sub_CA_1_Root_6/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_6/demoCA/index.txt | 1 + .../CAs/Sub_CA_1_Root_6/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_6/demoCA/newcerts/1000.pem | 62 ++ .../Sub_CA_1_Root_6/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_6/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_6/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Sub_CA_1_Root_7/README.txt | 3 + .../CAs/Sub_CA_1_Root_7/demoCA/cacert.pem | 66 ++ .../demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../demoCA/crl/Sub_CA_1_Root_7.crl | Bin 0 -> 362 bytes .../CAs/Sub_CA_1_Root_7/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_7/demoCA/index.txt | 2 + .../CAs/Sub_CA_1_Root_7/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_7/demoCA/newcerts/1000.pem | 62 ++ .../Sub_CA_1_Root_7/demoCA/newcerts/1001.pem | 62 ++ .../Sub_CA_1_Root_7/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_7/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_7/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Sub_CA_1_Root_8/README.txt | 13 + .../CAs/Sub_CA_1_Root_8/demoCA/cacert.pem | 66 ++ .../demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../demoCA/crl/Sub_CA_1_Root_8.crl | Bin 0 -> 362 bytes .../CAs/Sub_CA_1_Root_8/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_8/demoCA/index.txt | 2 + .../CAs/Sub_CA_1_Root_8/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_8/demoCA/newcerts/1000.pem | 62 ++ .../Sub_CA_1_Root_8/demoCA/newcerts/1001.pem | 62 ++ .../Sub_CA_1_Root_8/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_8/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_8/openssl.cfg | 292 ++++++++ .../CAs/Sub_CA_1_Root_9/demoCA/cacert.pem | 62 ++ .../CAs/Sub_CA_1_Root_9/demoCA/crlnumber | 1 + .../CAs/Sub_CA_1_Root_9/demoCA/index.txt | 1 + .../CAs/Sub_CA_1_Root_9/demoCA/index.txt.attr | 1 + .../Sub_CA_1_Root_9/demoCA/newcerts/1000.pem | 58 ++ .../Sub_CA_1_Root_9/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_1_Root_9/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_1_Root_9/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Sub_CA_2_Root_4/README.txt | 4 + .../CAs/Sub_CA_2_Root_4/demoCA/cacert.pem | 62 ++ .../CAs/Sub_CA_2_Root_4/demoCA/crlnumber | 1 + .../CAs/Sub_CA_2_Root_4/demoCA/index.txt | 2 + .../CAs/Sub_CA_2_Root_4/demoCA/index.txt.attr | 1 + .../Sub_CA_2_Root_4/demoCA/newcerts/1001.pem | 60 ++ .../Sub_CA_2_Root_4/demoCA/newcerts/1002.pem | 60 ++ .../Sub_CA_2_Root_4/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_2_Root_4/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_2_Root_4/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Sub_CA_2_Root_7/README.txt | 12 + .../CAs/Sub_CA_2_Root_7/demoCA/cacert.pem | 66 ++ .../demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../demoCA/crl/Sub_CA_2_Root_7.crl | Bin 0 -> 362 bytes .../CAs/Sub_CA_2_Root_7/demoCA/crlnumber | 1 + .../CAs/Sub_CA_2_Root_7/demoCA/index.txt | 2 + .../CAs/Sub_CA_2_Root_7/demoCA/index.txt.attr | 1 + .../Sub_CA_2_Root_7/demoCA/newcerts/1000.pem | 62 ++ .../Sub_CA_2_Root_7/demoCA/newcerts/1001.pem | 62 ++ .../Sub_CA_2_Root_7/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_2_Root_7/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_2_Root_7/openssl.cfg | 292 ++++++++ .../test_docs/CAs/Sub_CA_2_Root_8/README.txt | 13 + .../CAs/Sub_CA_2_Root_8/demoCA/cacert.pem | 66 ++ .../demoCA/crl/DO_NOT_INSTALL_THIS_CRL | 0 .../demoCA/crl/Sub_CA_2_Root_8.crl | Bin 0 -> 362 bytes .../CAs/Sub_CA_2_Root_8/demoCA/crlnumber | 1 + .../CAs/Sub_CA_2_Root_8/demoCA/index.txt | 2 + .../CAs/Sub_CA_2_Root_8/demoCA/index.txt.attr | 1 + .../Sub_CA_2_Root_8/demoCA/newcerts/1002.pem | 62 ++ .../Sub_CA_2_Root_8/demoCA/newcerts/1003.pem | 62 ++ .../Sub_CA_2_Root_8/demoCA/private/cakey.pem | 18 + .../CAs/Sub_CA_2_Root_8/demoCA/serial | 1 + .../test_docs/CAs/Sub_CA_2_Root_8/openssl.cfg | 292 ++++++++ .../test_docs/certs/ca_certs/Root_1.crt | Bin 0 -> 776 bytes .../test_docs/certs/ca_certs/Root_10.crt | Bin 0 -> 779 bytes .../test_docs/certs/ca_certs/Root_11.crt | Bin 0 -> 779 bytes .../test_docs/certs/ca_certs/Root_2.crt | Bin 0 -> 776 bytes .../test_docs/certs/ca_certs/Root_3.crt | Bin 0 -> 776 bytes .../test_docs/certs/ca_certs/Root_4.crt | Bin 0 -> 776 bytes .../test_docs/certs/ca_certs/Root_5.crt | Bin 0 -> 776 bytes .../test_docs/certs/ca_certs/Root_6.crt | Bin 0 -> 776 bytes .../test_docs/certs/ca_certs/Root_7.crt | Bin 0 -> 776 bytes .../test_docs/certs/ca_certs/Root_8.crt | Bin 0 -> 776 bytes .../certs/ca_certs/Sub_CA_1_Root_1.crt | Bin 0 -> 778 bytes .../certs/ca_certs/Sub_CA_1_Root_2.crt | Bin 0 -> 778 bytes .../certs/ca_certs/Sub_CA_1_Root_3.crt | Bin 0 -> 778 bytes .../certs/ca_certs/Sub_CA_1_Root_4.crt | Bin 0 -> 778 bytes .../certs/ca_certs/Sub_CA_1_Root_5.crt | Bin 0 -> 842 bytes .../certs/ca_certs/Sub_CA_1_Root_6.crt | Bin 0 -> 842 bytes .../certs/ca_certs/Sub_CA_1_Root_7.crt | Bin 0 -> 842 bytes .../certs/ca_certs/Sub_CA_1_Root_8.crt | Bin 0 -> 829 bytes .../certs/ca_certs/Sub_CA_1_Root_9.crt | Bin 0 -> 778 bytes .../certs/ca_certs/Sub_CA_2_Root_4.crt | Bin 0 -> 778 bytes .../certs/ca_certs/Sub_CA_2_Root_7.crt | Bin 0 -> 842 bytes .../certs/ca_certs/Sub_CA_2_Root_8.crt | Bin 0 -> 829 bytes xmlsecurity/test_docs/certs/crl/Root_10.crl | Bin 0 -> 317 bytes xmlsecurity/test_docs/certs/crl/Root_11.crl | Bin 0 -> 317 bytes xmlsecurity/test_docs/certs/crl/Root_3.crl | Bin 0 -> 316 bytes xmlsecurity/test_docs/certs/crl/Root_4.crl | Bin 0 -> 353 bytes xmlsecurity/test_docs/certs/crl/Root_9.crl | Bin 0 -> 316 bytes .../test_docs/certs/crl/Sub_CA_1_Root_2.crl | Bin 0 -> 325 bytes .../test_docs/certs/crl/Sub_CA_1_Root_4.crl | Bin 0 -> 362 bytes .../test_docs/certs/crl/Sub_CA_1_Root_9.crl | Bin 0 -> 325 bytes .../test_docs/certs/crl/Sub_CA_2_Root_4.crl | Bin 0 -> 362 bytes .../certs/end_certs/User_10_Root_11.crt | Bin 0 -> 739 bytes .../certs/end_certs/User_11_Root_11.crt | Bin 0 -> 733 bytes .../certs/end_certs/User_12_Root_11.crt | Bin 0 -> 729 bytes .../certs/end_certs/User_13_Root_11.crt | Bin 0 -> 739 bytes .../certs/end_certs/User_14_Root_11.crt | Bin 0 -> 729 bytes .../certs/end_certs/User_15_Root_11.crt | Bin 0 -> 720 bytes .../certs/end_certs/User_16_Root_11.crt | Bin 0 -> 739 bytes .../certs/end_certs/User_17_Root_11.crt | Bin 0 -> 749 bytes .../certs/end_certs/User_18_Root_11.crt | Bin 0 -> 714 bytes .../certs/end_certs/User_19_Root_11.crt | Bin 0 -> 710 bytes .../certs/end_certs/User_1_Root_11.crt | Bin 0 -> 699 bytes .../end_certs/User_1_Sub_CA_1_Root_1.crt | Bin 0 -> 706 bytes .../end_certs/User_1_Sub_CA_1_Root_10.crt | Bin 0 -> 828 bytes .../end_certs/User_1_Sub_CA_1_Root_2.crt | Bin 0 -> 719 bytes .../end_certs/User_1_Sub_CA_1_Root_3.crt | Bin 0 -> 719 bytes .../end_certs/User_1_Sub_CA_1_Root_4.crt | Bin 0 -> 719 bytes .../end_certs/User_1_Sub_CA_1_Root_5.crt | Bin 0 -> 746 bytes .../end_certs/User_1_Sub_CA_1_Root_6.crt | Bin 0 -> 746 bytes .../end_certs/User_1_Sub_CA_1_Root_7.crt | Bin 0 -> 746 bytes .../end_certs/User_1_Sub_CA_1_Root_8.crt | Bin 0 -> 726 bytes .../end_certs/User_1_Sub_CA_1_Root_9.crt | Bin 0 -> 673 bytes .../end_certs/User_1_Sub_CA_2_Root_4.crt | Bin 0 -> 719 bytes .../end_certs/User_1_Sub_CA_2_Root_7.crt | Bin 0 -> 746 bytes .../end_certs/User_1_Sub_CA_2_Root_8.crt | Bin 0 -> 726 bytes .../certs/end_certs/User_20_Root_11.crt | Bin 0 -> 710 bytes .../certs/end_certs/User_21_Root_11.crt | Bin 0 -> 727 bytes .../certs/end_certs/User_22_Root_11.crt | Bin 0 -> 739 bytes .../certs/end_certs/User_23_Root_11.crt | Bin 0 -> 733 bytes .../certs/end_certs/User_24_Root_11.crt | Bin 0 -> 729 bytes .../certs/end_certs/User_25_Root_11.crt | Bin 0 -> 737 bytes .../certs/end_certs/User_26_Root_11.crt | Bin 0 -> 729 bytes .../certs/end_certs/User_27_Root_11.crt | Bin 0 -> 705 bytes .../certs/end_certs/User_28_Root_11.crt | Bin 0 -> 700 bytes .../certs/end_certs/User_29_Root_11.crt | Bin 0 -> 698 bytes .../certs/end_certs/User_2_Root_11.crt | Bin 0 -> 695 bytes .../end_certs/User_2_Sub_CA_1_Root_4.crt | Bin 0 -> 719 bytes .../end_certs/User_2_Sub_CA_1_Root_7.crt | Bin 0 -> 746 bytes .../end_certs/User_2_Sub_CA_1_Root_8.crt | Bin 0 -> 726 bytes .../end_certs/User_2_Sub_CA_2_Root_4.crt | Bin 0 -> 719 bytes .../end_certs/User_2_Sub_CA_2_Root_7.crt | Bin 0 -> 746 bytes .../end_certs/User_2_Sub_CA_2_Root_8.crt | Bin 0 -> 726 bytes .../certs/end_certs/User_30_Root_11.crt | Bin 0 -> 716 bytes .../certs/end_certs/User_31_Root_11.crt | Bin 0 -> 745 bytes .../certs/end_certs/User_3_Root_11.crt | Bin 0 -> 719 bytes .../certs/end_certs/User_4_Root_11.crt | Bin 0 -> 738 bytes .../certs/end_certs/User_5_Root_11.crt | Bin 0 -> 748 bytes .../certs/end_certs/User_6_Root_11.crt | Bin 0 -> 713 bytes .../certs/end_certs/User_7_Root_11.crt | Bin 0 -> 709 bytes .../certs/end_certs/User_8_Root_11.crt | Bin 0 -> 709 bytes .../certs/end_certs/User_9_Root_11.crt | Bin 0 -> 726 bytes .../test_docs/certs/p12/User_10_Root_11.p12 | Bin 0 -> 1757 bytes .../test_docs/certs/p12/User_11_Root_11.p12 | Bin 0 -> 1749 bytes .../test_docs/certs/p12/User_12_Root_11.p12 | Bin 0 -> 1749 bytes .../test_docs/certs/p12/User_13_Root_11.p12 | Bin 0 -> 1757 bytes .../test_docs/certs/p12/User_14_Root_11.p12 | Bin 0 -> 1749 bytes .../test_docs/certs/p12/User_15_Root_11.p12 | Bin 0 -> 1741 bytes .../test_docs/certs/p12/User_16_Root_11.p12 | Bin 0 -> 1757 bytes .../test_docs/certs/p12/User_17_Root_11.p12 | Bin 0 -> 1765 bytes .../test_docs/certs/p12/User_18_Root_11.p12 | Bin 0 -> 1733 bytes .../test_docs/certs/p12/User_19_Root_11.p12 | Bin 0 -> 1725 bytes .../test_docs/certs/p12/User_1_Root_11.p12 | Bin 0 -> 1717 bytes .../certs/p12/User_1_Sub_CA_1_Root_1.p12 | Bin 0 -> 1725 bytes .../certs/p12/User_1_Sub_CA_1_Root_10.p12 | Bin 0 -> 1845 bytes .../certs/p12/User_1_Sub_CA_1_Root_2.p12 | Bin 0 -> 1733 bytes .../certs/p12/User_1_Sub_CA_1_Root_3.p12 | Bin 0 -> 1733 bytes .../certs/p12/User_1_Sub_CA_1_Root_4.p12 | Bin 0 -> 1733 bytes .../certs/p12/User_1_Sub_CA_1_Root_5.p12 | Bin 0 -> 1765 bytes .../certs/p12/User_1_Sub_CA_1_Root_6.p12 | Bin 0 -> 1765 bytes .../certs/p12/User_1_Sub_CA_1_Root_7.p12 | Bin 0 -> 1765 bytes .../certs/p12/User_1_Sub_CA_1_Root_8.p12 | Bin 0 -> 1741 bytes .../certs/p12/User_1_Sub_CA_1_Root_9.p12 | Bin 0 -> 1693 bytes .../certs/p12/User_1_Sub_CA_2_Root_4.p12 | Bin 0 -> 1733 bytes .../certs/p12/User_1_Sub_CA_2_Root_7.p12 | Bin 0 -> 1765 bytes .../certs/p12/User_1_Sub_CA_2_Root_8.p12 | Bin 0 -> 1741 bytes .../test_docs/certs/p12/User_20_Root_11.p12 | Bin 0 -> 1725 bytes .../test_docs/certs/p12/User_21_Root_11.p12 | Bin 0 -> 1741 bytes .../test_docs/certs/p12/User_22_Root_11.p12 | Bin 0 -> 1757 bytes .../test_docs/certs/p12/User_23_Root_11.p12 | Bin 0 -> 1749 bytes .../test_docs/certs/p12/User_24_Root_11.p12 | Bin 0 -> 1749 bytes .../test_docs/certs/p12/User_25_Root_11.p12 | Bin 0 -> 1757 bytes .../test_docs/certs/p12/User_26_Root_11.p12 | Bin 0 -> 1749 bytes .../test_docs/certs/p12/User_27_Root_11.p12 | Bin 0 -> 1725 bytes .../test_docs/certs/p12/User_28_Root_11.p12 | Bin 0 -> 1717 bytes .../test_docs/certs/p12/User_29_Root_11.p12 | Bin 0 -> 1717 bytes .../test_docs/certs/p12/User_2_Root_11.p12 | Bin 0 -> 1709 bytes .../certs/p12/User_2_Sub_CA_1_Root_4.p12 | Bin 0 -> 1733 bytes .../certs/p12/User_2_Sub_CA_1_Root_7.p12 | Bin 0 -> 1765 bytes .../certs/p12/User_2_Sub_CA_1_Root_8.p12 | Bin 0 -> 1741 bytes .../certs/p12/User_2_Sub_CA_2_Root_4.p12 | Bin 0 -> 1733 bytes .../certs/p12/User_2_Sub_CA_2_Root_7.p12 | Bin 0 -> 1765 bytes .../certs/p12/User_2_Sub_CA_2_Root_8.p12 | Bin 0 -> 1741 bytes .../test_docs/certs/p12/User_30_Root_11.p12 | Bin 0 -> 1733 bytes .../test_docs/certs/p12/User_31_Root_11.p12 | Bin 0 -> 1765 bytes .../test_docs/certs/p12/User_3_Root_11.p12 | Bin 0 -> 1733 bytes .../test_docs/certs/p12/User_4_Root_11.p12 | Bin 0 -> 1757 bytes .../test_docs/certs/p12/User_5_Root_11.p12 | Bin 0 -> 1765 bytes .../test_docs/certs/p12/User_6_Root_11.p12 | Bin 0 -> 1733 bytes .../test_docs/certs/p12/User_7_Root_11.p12 | Bin 0 -> 1725 bytes .../test_docs/certs/p12/User_8_Root_11.p12 | Bin 0 -> 1725 bytes .../test_docs/certs/p12/User_9_Root_11.p12 | Bin 0 -> 1741 bytes .../test_docs/documents/aia_ca_issuers.odt | Bin 0 -> 9511 bytes xmlsecurity/test_docs/documents/aia_ocsp.odt | Bin 0 -> 9376 bytes .../documents/aia_ocsp_revoked_chain.odt | Bin 0 -> 9370 bytes .../documents/aia_ocsp_revoked_leaf.odt | Bin 0 -> 9379 bytes .../documents/aia_ocsp_revoked_leaf_chain.odt | Bin 0 -> 9378 bytes xmlsecurity/test_docs/documents/crl.odt | Bin 0 -> 9354 bytes .../test_docs/documents/crl_revoked_chain.odt | Bin 0 -> 9352 bytes .../test_docs/documents/crl_revoked_leaf.odt | Bin 0 -> 9363 bytes .../documents/crl_revoked_leaf_chain.odt | Bin 0 -> 9351 bytes xmlsecurity/test_docs/documents/crldp.odt | Bin 0 -> 9379 bytes ...ldp_no_intermediate_ca_revocation_info.odt | Bin 0 -> 9382 bytes .../crldp_no_root_revocation_info.odt | Bin 0 -> 9379 bytes .../documents/crldp_revoked_chain.odt | Bin 0 -> 9381 bytes .../documents/crldp_revoked_leaf.odt | Bin 0 -> 9380 bytes .../documents/crldp_revoked_leaf_chain.odt | Bin 0 -> 9383 bytes .../documents/dn_cyrillic_bmpstring.odt | Bin 0 -> 9392 bytes .../dn_latin_ext_greak_bmpstring.odt | Bin 0 -> 9388 bytes .../test_docs/documents/dn_quoting.odt | Bin 0 -> 28429 bytes .../test_docs/documents/incomplete_path.odt | Bin 0 -> 9308 bytes .../documents/invalid_ooo2_x_doc1.odt | Bin 0 -> 9550 bytes .../documents/invalid_ooo2_x_doc2.odt | Bin 0 -> 6989 bytes .../documents/invalid_ooo2_x_macro1.odt | Bin 0 -> 12911 bytes .../documents/invalid_ooo2_x_macro2.odt | Bin 0 -> 12929 bytes .../documents/invalid_ooo2_x_macro3.odt | Bin 0 -> 13043 bytes .../documents/invalid_ooo2_x_macro4.odt | Bin 0 -> 13079 bytes .../documents/invalid_ooo2_x_macro5.odt | Bin 0 -> 20336 bytes .../documents/invalid_ooo3_2_doc1.odt | Bin 0 -> 9200 bytes .../documents/invalid_ooo3_2_doc3.odt | Bin 0 -> 8908 bytes .../documents/invalid_ooo3_2_doc4.odt | Bin 0 -> 8997 bytes .../documents/invalid_ooo_3_2_doc2.odt | Bin 0 -> 9199 bytes xmlsecurity/test_docs/documents/ocsp_crl.odt | Bin 0 -> 9444 bytes .../documents/ocsp_crl_revoked_leaf.odt | Bin 0 -> 9447 bytes .../documents/stateOrProvinceName.odt | Bin 0 -> 10534 bytes .../documents/valid_no_revocation.odt | Bin 0 -> 9341 bytes .../valid_no_root_revocation_info.odt | Bin 0 -> 9349 bytes .../valid_no_sub_ca_revocation_info.odt | Bin 0 -> 9352 bytes .../test_docs/documents/valid_ooo2_x_doc1.odt | Bin 0 -> 9880 bytes .../documents/valid_ooo2_x_doc_macro.odt | Bin 0 -> 12425 bytes .../valid_ooo2_x_doc_unsigned_macro.odt | Bin 0 -> 10821 bytes .../test_docs/documents/valid_ooo3_0_doc1.odt | Bin 0 -> 12565 bytes .../documents/valid_ooo3_0_doc_macro.odt | Bin 0 -> 15656 bytes .../valid_ooo3_0_doc_unsigned_macro.odt | Bin 0 -> 13975 bytes .../test_docs/documents/valid_ooo3_2_doc1.odt | Bin 0 -> 12514 bytes .../documents/valid_ooo3_2_doc_macro.odt | Bin 0 -> 15579 bytes .../valid_ooo3_2_doc_unsigned_macro.odt | Bin 0 -> 13929 bytes xmlsecurity/test_docs/test_description.odt | Bin 0 -> 24746 bytes xmlsecurity/test_docs/tools/README.txt | 23 + .../test_docs/tools/httpserv/build.xml | 74 ++ .../test_docs/tools/httpserv/dist/README.TXT | 33 + .../tools/httpserv/dist/httpserv.jar | Bin 0 -> 6994 bytes .../test_docs/tools/httpserv/manifest.mf | 3 + .../tools/httpserv/nbproject/build-impl.xml | 700 ++++++++++++++++++ .../httpserv/nbproject/genfiles.properties | 8 + .../httpserv/nbproject/project.properties | 64 ++ .../tools/httpserv/nbproject/project.xml | 15 + .../tools/httpserv/src/httpserv/Main.java | 213 ++++++ 465 files changed, 14249 insertions(+) create mode 100755 xmlsecurity/test_docs/CAs/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_1/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_1/demoCA/crl/DO_NOT_CREATE_A_CRL create mode 100755 xmlsecurity/test_docs/CAs/Root_1/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_1/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_1/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_1/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_1/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_1/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_1/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_10/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_10/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_10/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_10/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_10/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_10/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_10/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_10/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1002.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1003.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1004.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1005.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1006.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1007.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1008.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1009.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100A.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100B.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100C.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100D.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100E.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100F.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1010.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1011.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1012.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1013.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1014.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1015.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1016.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1017.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1018.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1019.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101A.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101B.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101C.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101D.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101E.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101F.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1020.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1021.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_11/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_11/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_2/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_2/demoCA/crl/DO_NOT_CREATE_A_CRL create mode 100755 xmlsecurity/test_docs/CAs/Root_2/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_2/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_2/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_2/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_2/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_2/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_2/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_3/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_3/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_3/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_3/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_3/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_3/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_3/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_3/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_4/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_4/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_4/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_4/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_4/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_4/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_4/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_4/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_4/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_4/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_5/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_5/demoCA/crl/DO_NOT_CREATE_A_CRL create mode 100755 xmlsecurity/test_docs/CAs/Root_5/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_5/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_5/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_5/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_5/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_5/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_5/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_6/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/crl/Root_6.crl create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_6/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_6/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_7/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/crl/Root_7.crl create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_7/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_7/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_8/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/crl/Root_8.crl create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_8/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_8/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Root_9/DO_NOT_INSTALL_THIS_ROOT_CERT.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/DO_NO_INSTALL_THIS_ROOT_CERTIFICATE create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/Root_9.crt create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Root_9/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Root_9/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/crl/DO_NOT_CREATE_A_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/DO_NOT_INSTALL_THIS_CERTIFICATE create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/DO_NOT_INSTALL_THIS_CERTIFICATE create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/Sub_CA_1_Root_10.crt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crl/Sub_CA_1_Root_10.crl create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/req.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/crl/DO_NOT_CREATE_A_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/req.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crl/Sub_CA_1_Root_5.crl create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/newcerts/1002.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/crl/DO_NOT_CREATE_A_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/crl/Sub_CA_1_Root_7.crl create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/crl/Sub_CA_1_Root_8.crl create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/demoCA/newcerts/1002.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/crl/Sub_CA_2_Root_7.crl create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/newcerts/1000.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/newcerts/1001.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/openssl.cfg create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/README.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/cacert.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/crl/DO_NOT_INSTALL_THIS_CRL create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/crl/Sub_CA_2_Root_8.crl create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/crlnumber create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/index.txt create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/index.txt.attr create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/newcerts/1002.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/newcerts/1003.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/private/cakey.pem create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/demoCA/serial create mode 100755 xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/openssl.cfg create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_1.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_10.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_2.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_3.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_4.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_5.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_6.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_7.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Root_8.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_1.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_2.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_3.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_4.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_5.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_6.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_7.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_8.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_9.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_4.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_7.crt create mode 100755 xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_8.crt create mode 100755 xmlsecurity/test_docs/certs/crl/Root_10.crl create mode 100755 xmlsecurity/test_docs/certs/crl/Root_11.crl create mode 100755 xmlsecurity/test_docs/certs/crl/Root_3.crl create mode 100755 xmlsecurity/test_docs/certs/crl/Root_4.crl create mode 100755 xmlsecurity/test_docs/certs/crl/Root_9.crl create mode 100755 xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_2.crl create mode 100755 xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_4.crl create mode 100755 xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_9.crl create mode 100755 xmlsecurity/test_docs/certs/crl/Sub_CA_2_Root_4.crl create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_10_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_11_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_12_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_13_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_14_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_15_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_16_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_17_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_18_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_19_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_1.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_10.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_2.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_3.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_4.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_5.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_6.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_7.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_8.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_9.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_2_Root_4.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_2_Root_7.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_2_Root_8.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_20_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_21_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_22_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_23_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_24_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_25_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_26_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_27_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_28_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_29_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_2_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_4.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_7.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_8.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_2_Root_4.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_2_Root_7.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_2_Root_8.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_30_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_31_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_3_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_4_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_5_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_6_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_7_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_8_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/end_certs/User_9_Root_11.crt create mode 100755 xmlsecurity/test_docs/certs/p12/User_10_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_11_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_12_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_13_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_14_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_15_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_16_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_17_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_18_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_19_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_1.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_10.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_2.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_3.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_4.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_5.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_6.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_7.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_8.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_9.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_4.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_7.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_8.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_20_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_21_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_22_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_23_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_24_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_25_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_26_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_27_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_28_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_29_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_2_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_1_Root_4.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_1_Root_7.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_1_Root_8.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_2_Root_4.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_2_Root_7.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_2_Root_8.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_30_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_31_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_3_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_4_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_5_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_6_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_7_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_8_Root_11.p12 create mode 100755 xmlsecurity/test_docs/certs/p12/User_9_Root_11.p12 create mode 100755 xmlsecurity/test_docs/documents/aia_ca_issuers.odt create mode 100755 xmlsecurity/test_docs/documents/aia_ocsp.odt create mode 100755 xmlsecurity/test_docs/documents/aia_ocsp_revoked_chain.odt create mode 100755 xmlsecurity/test_docs/documents/aia_ocsp_revoked_leaf.odt create mode 100755 xmlsecurity/test_docs/documents/aia_ocsp_revoked_leaf_chain.odt create mode 100755 xmlsecurity/test_docs/documents/crl.odt create mode 100755 xmlsecurity/test_docs/documents/crl_revoked_chain.odt create mode 100755 xmlsecurity/test_docs/documents/crl_revoked_leaf.odt create mode 100755 xmlsecurity/test_docs/documents/crl_revoked_leaf_chain.odt create mode 100755 xmlsecurity/test_docs/documents/crldp.odt create mode 100755 xmlsecurity/test_docs/documents/crldp_no_intermediate_ca_revocation_info.odt create mode 100755 xmlsecurity/test_docs/documents/crldp_no_root_revocation_info.odt create mode 100755 xmlsecurity/test_docs/documents/crldp_revoked_chain.odt create mode 100755 xmlsecurity/test_docs/documents/crldp_revoked_leaf.odt create mode 100755 xmlsecurity/test_docs/documents/crldp_revoked_leaf_chain.odt create mode 100755 xmlsecurity/test_docs/documents/dn_cyrillic_bmpstring.odt create mode 100755 xmlsecurity/test_docs/documents/dn_latin_ext_greak_bmpstring.odt create mode 100755 xmlsecurity/test_docs/documents/dn_quoting.odt create mode 100755 xmlsecurity/test_docs/documents/incomplete_path.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo2_x_doc1.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo2_x_doc2.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo2_x_macro1.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo2_x_macro2.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo2_x_macro3.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo2_x_macro4.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo2_x_macro5.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo3_2_doc1.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo3_2_doc3.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo3_2_doc4.odt create mode 100755 xmlsecurity/test_docs/documents/invalid_ooo_3_2_doc2.odt create mode 100755 xmlsecurity/test_docs/documents/ocsp_crl.odt create mode 100755 xmlsecurity/test_docs/documents/ocsp_crl_revoked_leaf.odt create mode 100755 xmlsecurity/test_docs/documents/stateOrProvinceName.odt create mode 100755 xmlsecurity/test_docs/documents/valid_no_revocation.odt create mode 100755 xmlsecurity/test_docs/documents/valid_no_root_revocation_info.odt create mode 100755 xmlsecurity/test_docs/documents/valid_no_sub_ca_revocation_info.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo2_x_doc1.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo2_x_doc_macro.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo2_x_doc_unsigned_macro.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo3_0_doc1.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo3_0_doc_macro.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo3_0_doc_unsigned_macro.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo3_2_doc1.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo3_2_doc_macro.odt create mode 100755 xmlsecurity/test_docs/documents/valid_ooo3_2_doc_unsigned_macro.odt create mode 100755 xmlsecurity/test_docs/test_description.odt create mode 100755 xmlsecurity/test_docs/tools/README.txt create mode 100755 xmlsecurity/test_docs/tools/httpserv/build.xml create mode 100755 xmlsecurity/test_docs/tools/httpserv/dist/README.TXT create mode 100755 xmlsecurity/test_docs/tools/httpserv/dist/httpserv.jar create mode 100755 xmlsecurity/test_docs/tools/httpserv/manifest.mf create mode 100755 xmlsecurity/test_docs/tools/httpserv/nbproject/build-impl.xml create mode 100755 xmlsecurity/test_docs/tools/httpserv/nbproject/genfiles.properties create mode 100755 xmlsecurity/test_docs/tools/httpserv/nbproject/project.properties create mode 100755 xmlsecurity/test_docs/tools/httpserv/nbproject/project.xml create mode 100755 xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java diff --git a/xmlsecurity/test_docs/CAs/README.txt b/xmlsecurity/test_docs/CAs/README.txt new file mode 100755 index 000000000000..b454f1fafdd8 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/README.txt @@ -0,0 +1,383 @@ +This folder contains the directory structures needed by openssl to create +and manager certificates. + + + +################################################################################ + +Root 1 +====== +Valid root CA certificate. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = NO + +Sub CA 1 Root 1 +=============== +Valid intermediate CA certificate. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = NO +CRLDP = NO +AIA = NO + +User 1 Sub CA 1 Root 1 +====================== +Valid end certificate. +CRLDP = NO +AIA = NO + +################################################################################ + +Root 2 +====== +Valid root CA certificate. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = NO + +Sub CA 1 Root 2 +=============== +Valid intermediate CA certificate. +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO +CRLDP = NO +AIA = NO + +User 1 Sub CA 1 Root 2 +====================== +Valid end certificate. +CRLDP = NO +AIA = NO + +################################################################################ + +Root 3 +====== +Valid root CA certificate. +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO + +Sub CA 1 Root 3 +=============== +Valid intermediate CA certificate. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = NO +CRLDP = NO +AIA = NO + +User 1 Sub CA 1 Root 3 +====================== +Valid end certificate. +CRLDP = NO +AIA = NO + +################################################################################ + +Root 4 +====== +Valid root CA certificate. +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO + +Revoked certificates: + +- Sub CA 2 Root 4 + + +Sub CA 1 Root 4 +=============== +Valid intermediate CA certificate. +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO +CRLDP = NO +AIA = NO + +Revoked certificates: + +- User 2 Sub CA 1 Root 4 + + +User 1 Sub CA 1 Root 4 +====================== +Valid end certificate. +CRLDP = NO +AIA = NO + +User 2 Sub CA 1 Root 4 +====================== +Revoked end certificate. +CRLDP = NO +AIA = NO + +Sub CA 2 Root 4 +=============== +Revoked intermediate CA certificate. Reason = keyCompromise +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO +CRLDP = NO +AIA = NO + +Revoked certificates: + +- User 2 Sub CA 2 Root 4 + +User 1 Sub CA 2 Root 4 +====================== +Valid end certificate. Issuer is revoked. +CRLDP = NO +AIA = NO + +User 2 Sub CA 2 Root 4 +====================== +Revoked end certificate. Reason = keyCompromise. Issuer is revoked. +CRLDP = NO +AIA = NO + +################################################################################ + +Root 5 +====== +Valid root CA certificate. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = NO + +Sub CA 1 Root 5 +=============== +Valid intermediate CA certificate. +Provides CRL = NO +Provides CRL via HTTP = YES +Provides OCSP = NO +CRLDP = URL=http://localhost:8901/demoCA/crl/Root_5.crl +AIA = NO + +User 1 Sub CA 1 Root 5 +====================== +Valid end certificate. +CRLDP = URL=http://localhost:8902/demoCA/crl/Sub_CA_1_Root_5.crl +AIA = NO + + +################################################################################ + +Root 6 +====== +Valid root CA certificate. +Provides CRL = NO +Provides CRL via HTTP = YES +Provides OCSP = NO + +Sub CA 1 Root 6 +=============== +Valid intermediate CA certificate. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = NO +CRLDP = URL=http://localhost:8901/demoCA/crl/Root_6.crl +AIA = NO + +User 1 Sub CA 1 Root 6 +====================== +Valid end certificate. +CRLDP = URL=http://localhost:8902/demoCA/crl/Sub_CA_1_Root_6.crl +AIA = NO + +################################################################################ + +Root 7 +====== +Valid root CA certificate. +Provides CRL = NO +Provides CRL via HTTP = YES +Provides OCSP = NO + +Revoked certificates: + +- Sub CA 2 Root 7 + + +Sub CA 1 Root 7 +=============== +Valid intermediate CA certificate. +Provides CRL = NO +Provides CRL via HTTP = YES +Provides OCSP = NO +CRLDP = URL=http://localhost:8901/demoCA/crl/Root_7.crl +AIA = NO + +Revoked certificates: + +- User 2 Sub CA 1 Root 7 + + +User 1 Sub CA 1 Root 7 +====================== +Valid end certificate. +CRLDP = URL=http://localhost:8902/demoCA/crl/Sub_CA_1_Root_7.crl +AIA = NO + +User 2 Sub CA 1 Root 7 +====================== +Revoked end certificate. Reason = CACompromise. +CRLDP = URL=http://localhost:8902/demoCA/crl/Sub_CA_1_Root_7.crl +AIA = NO + +Sub CA 2 Root 7 +=============== +Revoked intermediate CA certificate. Reason = keyCompromise +Provides CRL = NO +Provides CRL via HTTP = YES +Provides OCSP = NO +CRLDP = URL=http://localhost:8901/demoCA/crl/Root_7.crl +AIA = NO + +Revoked certificates: + +- User 2 Sub CA 2 Root 7 + +User 1 Sub CA 2 Root 7 +====================== +Valid end certificate. Issuer is revoked. +CRLDP = URL=http://localhost:8902/demoCA/crl/Sub_CA_2_Root_7.crl +AIA = NO + +User 2 Sub CA 2 Root 7 +====================== +Revoked end certificate. Reason = CACompromise. Issuer is revoked. +CRLDP = URL=http://localhost:8902/demoCA/crl/Sub_CA_2_Root_7.crl +AIA = NO + +################################################################################ + +Root 8 +====== +Valid root CA certificate. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = YES + +Revoked certificates: + +- Sub CA 2 Root 8 + + +Sub CA 1 Root 8 +=============== +Valid intermediate CA certificate. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = YES +CRLDP = +AIA = OCSP;URI:http://localhost:8888 + +Revoked certificates: + +- User 2 Sub CA 1 Root 8 + + +User 1 Sub CA 1 Root 8 +====================== +Valid end certificate. +CRLDP = NO +AIA = OCSP;URI:http://localhost:8889 + +User 2 Sub CA 1 Root 8 +====================== +Revoked end certificate. Reason = superseded. +CRLDP = NO +AIA = OCSP;URI:http://localhost:8889 + +Sub CA 2 Root 8 +=============== +Revoked intermediate CA certificate. Reason = superseded. +Provides CRL = NO +Provides CRL via HTTP = NO +Provides OCSP = YES +CRLDP = NO +AIA = OCSP;URI:http://localhost:8888 + +Revoked certificates: + +- User 2 Sub CA 2 Root 8 + +User 1 Sub CA 2 Root 8 +====================== +Valid end certificate. Issuer is revoked. +CRLDP = NO +AIA = OCSP;URI:http://localhost:8889 + +User 2 Sub CA 2 Root 8 +====================== +Revoked end certificate. Reason = superseded. Issuer is revoked. +CRLDP = NO +AIA = OCSP;URI:http://localhost:8889 + +################################################################################ + +Root 9 +====== +Valid root CA certificate. (Not installed.) +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO + +Sub CA 1 Root 9 +=============== +Valid intermediate CA certificate. +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO +CRLDP = NO +AIA = NO + +User 1 Sub CA 1 Root 9 +====================== +Valid end certificate. +CRLDP = NO +AIA = NO + +################################################################################ + +Root 10 +====== +Valid root CA certificate. +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO + +Sub CA 1 Root 10 +=============== +Valid intermediate CA certificate. (Not installed.) +Provides CRL = NO +Provides CRL via HTTP = YES +Provides OCSP = NO +CRLDP = NO +AIA = NO + +User 1 Sub CA 1 Root 10 +====================== +Valid end certificate. +CRLDP = URI:http://localhost:8902/demoCA/crl/Sub_CA_1_Root_10.crl +AIA = caIssuers;URI:http://localhost:8910/demoCA/Sub_CA_1_Root_10.crt + +################################################################################ + +Root 11 +====== +Valid root CA certificate. +Provides CRL = YES +Provides CRL via HTTP = NO +Provides OCSP = NO + +User x Root 11 +====================== +All certificate issues by Root 11 are valid end certificate. Currently there are +31 certificates. + diff --git a/xmlsecurity/test_docs/CAs/Root_1/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_1/demoCA/cacert.pem new file mode 100755 index 000000000000..091052e3ab93 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_1/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAm2gAwIBAgIJAJWwBSvtwjktMA0GCSqGSIb3DQEBBQUAMF8xCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgMTAeFw0wOTEx +MTgxNDU1NDFaFw0zNDExMTIxNDU1NDFaMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgMTCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEAvrD6NFWcOQQVxIuXw5Pzpy667PZbBP80ow2Bbnj+RFCI/LbgfQTsC8Bw +eSlQGX7IqMHkCTuWNJw7CoNeOLFhRMtm0DEKnEkZlM0t6kpFshbs12jZu9okcnII +F5uIoKxx/thbD5AbC1Q74vZr6XOXY5Sc+k9Ic6Jwhe9ZyEt6SUsCAwEAAaOBxzCB +xDAdBgNVHQ4EFgQUD/rG69/OuLuzqT5Cprrs0pPKR6QwgZEGA1UdIwSBiTCBhoAU +D/rG69/OuLuzqT5Cprrs0pPKR6ShY6RhMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgMYIJAJWwBSvtwjktMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAqORur4HQGdQOQCaiyZR5u0+9mM/0w79y +r8Cmt+H8WB5BBeDgCyOcmaZjF0eEoRBF/ZhtlO54i4CH/yb/Pl6gGlxfGZL9iLu0 +tv4HRIIibnoi0N7Z0r/dhJcrTHo4Ha8EARhAqxoNUSlGVBsaKUfjW9RyCjv4Akyi +WUSwsmtd/sY= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_1/demoCA/crl/DO_NOT_CREATE_A_CRL b/xmlsecurity/test_docs/CAs/Root_1/demoCA/crl/DO_NOT_CREATE_A_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Root_1/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_1/demoCA/crlnumber new file mode 100755 index 000000000000..83b33d238dab --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_1/demoCA/crlnumber @@ -0,0 +1 @@ +1000 diff --git a/xmlsecurity/test_docs/CAs/Root_1/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_1/demoCA/index.txt new file mode 100755 index 000000000000..9a6e64301b43 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_1/demoCA/index.txt @@ -0,0 +1 @@ +V 341112150713Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 1 diff --git a/xmlsecurity/test_docs/CAs/Root_1/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_1/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_1/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_1/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_1/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..be26aa5d8f4b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_1/demoCA/newcerts/1000.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 1 + Validity + Not Before: Nov 18 15:07:13 2009 GMT + Not After : Nov 12 15:07:13 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:d9:3a:8d:64:95:87:76:76:e8:61:c3:e9:65:f4: + a6:b7:0c:77:0e:4b:10:e8:14:a3:e1:84:69:7c:8e: + 97:d2:7d:01:ad:b2:dc:5c:cd:c6:91:a1:f3:93:7c: + 54:36:64:e3:ca:22:ca:00:cb:c6:91:ab:6b:26:88: + 69:60:9a:61:d7:59:17:db:93:7d:09:36:da:28:cb: + ec:2d:a4:26:bb:1a:42:20:b8:08:b2:0f:b9:77:a6: + 80:71:cf:13:f5:37:a2:90:4d:ab:e8:97:49:d2:80: + 94:8f:b1:9d:5a:b4:9f:de:ff:fa:b6:d6:e0:45:5f: + cc:d4:10:1e:32:46:7b:ba:55 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 37:71:74:81:44:DD:1E:B1:60:96:41:B7:4B:38:C4:B7:79:1B:CF:8A + X509v3 Authority Key Identifier: + keyid:0F:FA:C6:EB:DF:CE:B8:BB:B3:A9:3E:42:A6:BA:EC:D2:93:CA:47:A4 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 1 + serial:95:B0:05:2B:ED:C2:39:2D + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 18:f6:02:5e:75:04:5f:eb:3b:07:41:85:c0:9e:08:29:58:3d: + b5:6f:c2:aa:24:0d:93:1d:17:fc:be:d6:43:ac:43:d7:4d:a0: + 2c:40:fd:3d:d5:7e:91:46:25:49:62:ba:e9:7f:67:c2:fc:8a: + c3:a0:37:bf:ec:f9:54:bf:61:10:35:dd:5b:bb:da:7c:70:54: + 32:13:b9:ae:7d:ea:a5:7d:aa:55:3e:ef:0a:ef:12:fd:c3:f6: + e5:25:98:97:34:02:64:fd:88:79:b3:e2:f4:fc:ff:e7:d3:98: + f1:d9:d5:18:d9:b4:62:ae:99:88:61:2e:ff:02:6a:13:35:fe: + 37:c7 +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAxMB4XDTA5MTExODE1MDcx +M1oXDTM0MTExMjE1MDcxM1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAxMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDZOo1klYd2duhhw+ll9Ka3DHcOSxDoFKPhhGl8jpfSfQGtstxczcaR +ofOTfFQ2ZOPKIsoAy8aRq2smiGlgmmHXWRfbk30JNtooy+wtpCa7GkIguAiyD7l3 +poBxzxP1N6KQTavol0nSgJSPsZ1atJ/e//q21uBFX8zUEB4yRnu6VQIDAQABo4HH +MIHEMB0GA1UdDgQWBBQ3cXSBRN0esWCWQbdLOMS3eRvPijCBkQYDVR0jBIGJMIGG +gBQP+sbr3864u7OpPkKmuuzSk8pHpKFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAxggkAlbAFK+3COS0wDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQAY9gJedQRf6zsHQYXAnggpWD21b8Kq +JA2THRf8vtZDrEPXTaAsQP091X6RRiVJYrrpf2fC/IrDoDe/7PlUv2EQNd1bu9p8 +cFQyE7mufeqlfapVPu8K7xL9w/blJZiXNAJk/Yh5s+L0/P/n05jx2dUY2bRirpmI +YS7/AmoTNf43xw== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_1/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_1/demoCA/private/cakey.pem new file mode 100755 index 000000000000..6d38b24e6fe9 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_1/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,2D2CC3782F59A842 + +901JcMMdeCfHjfY05bkyLIsgMxwu4SFJPXZH75ebFtJQpkQQf5WNhSlo3sgKJ5MF +GZeqQw4w9CmN+CNqQENZOOGrVKxT+sFtWIgSLVk4hrLzPtsT7domHc1yUKfpBH/w +xo/bsL5wZPqcsxSdlmd4FA0PKzW/rhyYvRxF0oKQx2PVnJKT29WbhwlYurI3+2gG +pS+N6f7awWjmgyqYvFuFo7DWhERDDL/Bi/sJ7qFinijtfp1CkVG1XWFZ8Tu9ij+t +KPT3fpWbh4sV0V1ZGng7EPb4c+p/+GHvKsGM9N5kuyxufllNzAeIy6hfTR3mxn0i +Ep4CoufMi0JwNEfgwBB+o47k1hVoBTn0ofXc2iP6iQWsoC5ZoPPGLLklWK3Tur7P +kpng8UECTxV2s6J3nYkAoHfy+TzK+nssFPpE8zDmaprpeTj9oh3KrPTn0IdoPHcx +oI3yqWqDK9uErJBBCAjLF0SPJWAsmp0HsJaGnj5ErVe0yy3jBxVWogVDSWkoWU0W ++umK1pSQrS1A/oKErsnbhPi8XAD/gd4etEaKdcY538QKgE2tdPvhLoAeXxslyOfG +UiPohtmcm2Mva7vT0Iu1MGKplw76DxmmM1Rpf3+u7Kwf/+K6bMOSBGZQJhjE2AuZ +aPyHX8gCNlZfqB6eeuWdbqIHhTN5dS2Bba3QquvS84Vgb3O2ck+vdjmdPEeetvA7 +7S4WZYHBRmz1ZHwdfSvwyBkdTRP5YrUhrIthbqy2NjcP9TkpQmJaDIlWXsGY738q +zTsjCkcnS06x0/JvHe1I8IAib+MFsmGI7Dw25fzgY3ReS4wZRZdU0A== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_1/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_1/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_1/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_1/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_1/openssl.cfg new file mode 100755 index 000000000000..bf73e3549d66 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_1/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_10/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_10/demoCA/cacert.pem new file mode 100755 index 000000000000..72e6c66e2eb3 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_10/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBzCCAnCgAwIBAgIJAL/ID7vZoDprMA0GCSqGSIb3DQEBBQUAMGAxCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxEDAOBgNVBAMTB1Jvb3QgMTAwHhcNMDkx +MTIzMTUwNzA0WhcNMzQxMTE3MTUwNzA0WjBgMQswCQYDVQQGEwJERTEQMA4GA1UE +CBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0Rl +dmVsb3BtZW50MRAwDgYDVQQDEwdSb290IDEwMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQC5qE1pk/tI2i60IrVhlwS77j7jAyktxRuwKJqBECd2ZD2/goO8wcwD +R/wfrh+zuLWRwFb57PF1O7ig+WNhQk3GDhXhMbuB82Bwjb/n5phKDWHsAIqDRbH4 +vpl/7sWYXvE46zf41PpQPgudOtqpeL1ENFoHKZOJthkBc4Yx6HTUSQIDAQABo4HI +MIHFMB0GA1UdDgQWBBTIp6OAIHRsb+wReva+JhA3MYewejCBkgYDVR0jBIGKMIGH +gBTIp6OAIHRsb+wReva+JhA3MYeweqFkpGIwYDELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMIIJAL/ID7vZoDprMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAroDDzqZQL+7NeQuePohejcGfFR/0 +vtbQ3AYViQ2JS42gQpaNaMNcVCvO0nUwLHldLNVdQsn9P0ultu6KcUKkBbY4/2Xp +er6RMQWsrKVLnszgIi2gk1NiNwZ+N9RISJvElaQuIciZs+8sM6LOPybVTArMjxEo +U3VqHTViFfOvWC0= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_10/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_10/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_10/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_10/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_10/demoCA/index.txt new file mode 100755 index 000000000000..2db3924cea70 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_10/demoCA/index.txt @@ -0,0 +1 @@ +V 341117151448Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 10 diff --git a/xmlsecurity/test_docs/CAs/Root_10/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_10/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_10/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_10/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_10/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..1f27b97b3d17 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_10/demoCA/newcerts/1000.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 10 + Validity + Not Before: Nov 23 15:14:48 2009 GMT + Not After : Nov 17 15:14:48 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 10 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e4:d5:66:14:88:9f:79:41:50:b0:d1:a0:1b:98: + bf:b0:21:34:30:36:70:58:6f:8b:58:f1:b9:58:3a: + ce:29:6b:65:b6:11:f7:0d:c8:a6:c3:be:db:0f:2a: + 4e:c7:42:df:c9:0e:13:c0:00:0f:af:b5:71:c4:bc: + dd:82:fc:4a:27:c0:ee:af:ba:e1:7b:67:de:6b:bb: + ac:4c:fe:88:01:1a:73:4e:f5:32:15:3a:d0:cb:6b: + 97:84:1b:6c:d0:d6:91:a8:a4:5a:87:2a:69:61:36: + 1d:42:cc:16:d0:03:9c:c6:90:5c:61:20:8b:b1:be: + b6:54:24:5b:6f:1f:a9:5a:6f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 11:63:A1:BE:8B:E3:56:07:E6:A3:9F:23:39:72:7D:E3:22:B6:53:39 + X509v3 Authority Key Identifier: + keyid:C8:A7:A3:80:20:74:6C:6F:EC:11:7A:F6:BE:26:10:37:31:87:B0:7A + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 10 + serial:BF:C8:0F:BB:D9:A0:3A:6B + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 6b:0f:75:6d:56:b0:4e:45:19:65:ad:50:ef:4e:87:6c:95:5d: + 05:39:5a:43:5c:b4:51:25:9a:ec:f4:93:d1:f0:f6:91:dd:a3: + 77:95:0c:74:3c:a9:7c:c2:f6:62:ce:bf:58:5f:66:1f:d0:55: + ca:d8:2d:c4:1e:29:3a:ad:55:2c:9d:2c:8f:8e:9e:ce:ac:17: + 7e:1b:d1:16:d9:12:76:5c:2d:3f:9d:70:66:aa:39:34:f0:ec: + 31:4b:4b:5a:14:0c:c5:5b:3c:c8:47:02:90:cb:77:d7:4f:88: + 10:a7:80:3d:ca:19:5c:b5:04:c9:f0:e1:1b:5a:5f:fb:61:b2: + 14:b5 +-----BEGIN CERTIFICATE----- +MIIDCTCCAnKgAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMDAeFw0wOTExMjMxNTE0 +NDhaFw0zNDExMTcxNTE0NDhaMGkxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxGTAXBgNVBAMTEFN1YiBDQSAxIFJvb3QgMTAwgZ8wDQYJKoZIhvcNAQEBBQAD +gY0AMIGJAoGBAOTVZhSIn3lBULDRoBuYv7AhNDA2cFhvi1jxuVg6zilrZbYR9w3I +psO+2w8qTsdC38kOE8AAD6+1ccS83YL8SifA7q+64Xtn3mu7rEz+iAEac071MhU6 +0Mtrl4QbbNDWkaikWocqaWE2HULMFtADnMaQXGEgi7G+tlQkW28fqVpvAgMBAAGj +gcgwgcUwHQYDVR0OBBYEFBFjob6L41YH5qOfIzlyfeMitlM5MIGSBgNVHSMEgYow +gYeAFMino4AgdGxv7BF69r4mEDcxh7B6oWSkYjBgMQswCQYDVQQGEwJERTEQMA4G +A1UECBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsT +C0RldmVsb3BtZW50MRAwDgYDVQQDEwdSb290IDEwggkAv8gPu9mgOmswDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBrD3VtVrBORRllrVDvTodslV0F +OVpDXLRRJZrs9JPR8PaR3aN3lQx0PKl8wvZizr9YX2Yf0FXK2C3EHik6rVUsnSyP +jp7OrBd+G9EW2RJ2XC0/nXBmqjk08OwxS0taFAzFWzzIRwKQy3fXT4gQp4A9yhlc +tQTJ8OEbWl/7YbIUtQ== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_10/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_10/demoCA/private/cakey.pem new file mode 100755 index 000000000000..f75ccc08ef67 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_10/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,78CCF9A24E7B5044 + +ppKSX6K7DHnU4EvbmBAIzWDJ35yGppjzNdWRKpB7rkGW60dW0Cw0Jmbxf1dfbUC+ +UTWtxE+i0x159jF7jGobPvLFQnAg1ZPUUIgeXJt+fqf/OghY4i8x82BdSlaKJ293 +GgwR9m1N1I2/6ydob+9KwzJhOPhmylyUyRJVAx/OF86E9G4nxtuJA1c1nzSBgwR5 +7uHU0LiY5A42iTDiMmu7Jw4vj6Cy81P88hmyoVzo4JQG8YFuJyLz2ei+DJ3/572z +BCefqDKmlmI2vvayZW1jgpLDlTwmqiIGUDBBipN4vDmqZAdEbv/9BjLkS4Svy3PU +xaFs1tFQzv8ivGpyPWU5naoTKhmMhOEAKpEi6YqWbcD/qKn1pRrYSyVyD9zNXHEK +QrXjTP+D/DMSHNJTo5WI4kxvwSZtPI97vaCTmxkrjnIXDPD5L4v9dJUdejnngsqn +cHB/C/05dR0RLEp5CHrl0hwGiIY1IgQXmGHY2HEUyQYttyJ5jdY0pdnn9n0eQxHr +9Mg3WneWC42XHw0pyqEsgiMmr8SjaF42MSrMB6y4WEVtBstn03LTdFnRIFTgZ5Mj +l/O2mSk+YUBR4CYTUTRaWpzCAZmFVy98I8KQgrhi8t96wrRe0+9tB1uC5PoDNR5P +CcgsmiEPeqolPZwOmnDdij+DcIiT43Sx2vDYGfDtqc+kur/O6noYyX8Kf7wzcpan +V4gHTCEOrlcRiEcVIxAQFDpB8CERG9fJvnBdZE9Gjepz6OatRpE/2kDZMelwRcEx +V5zeE1qNS51gdq2dE0qYkdyU1yfbNUouqtFy/z1sXU6Q5nR1r21jFQ== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_10/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_10/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_10/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_10/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_10/openssl.cfg new file mode 100755 index 000000000000..cc9663bbd5c5 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_10/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Root_7.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/cacert.pem new file mode 100755 index 000000000000..8cfffd9a6c35 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBzCCAnCgAwIBAgIJAI3gSU2IIGPLMA0GCSqGSIb3DQEBBQUAMGAxCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxEDAOBgNVBAMTB1Jvb3QgMTEwHhcNMTAw +MTE0MTEzNzA1WhcNMzUwMTA4MTEzNzA2WjBgMQswCQYDVQQGEwJERTEQMA4GA1UE +CBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0Rl +dmVsb3BtZW50MRAwDgYDVQQDEwdSb290IDExMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDKGrq6yC3tyctcBo+iz31MF2yvDiQ7YFgez8TswNvb3USOPOUPsCaB +ufVN6ULSqmGi5BzFIW7CVAj5L+iCrrwMtPyG86fKbvgdWmLepz5a4S1y+vydnQ0B +rJCNdxmLdQK+l/P7jzrH5xhcR62DPQ2lLabvmixvylHv4H6cFjJ98wIDAQABo4HI +MIHFMB0GA1UdDgQWBBToarvCkOpscCI+9vZIGwPmvremVTCBkgYDVR0jBIGKMIGH +gBToarvCkOpscCI+9vZIGwPmvremVaFkpGIwYDELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMYIJAI3gSU2IIGPLMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAZRXdBfSqhY+xELs28/gjsZ4/mUvu +LKL3PruRCNqUgIOznEdxsQXsmLIQhEPZ4a4jd31srFD2j5gJmZ8KdeFXII9NRvIX +RpRcrl2uclHXWbIC7s6xiATDWumrL2nXB5bU4qYMZ0ybytXprIwkzqRFXUrEHcYm +OXJCSKayIviQ6G0= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_11/demoCA/crlnumber new file mode 100755 index 000000000000..83b33d238dab --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/crlnumber @@ -0,0 +1 @@ +1000 diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_11/demoCA/index.txt new file mode 100755 index 000000000000..7061a98fa15f --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/index.txt @@ -0,0 +1,34 @@ +V 350108161110Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\xC5\xB9\xC5\xBA\xC5\xBB\xC5\xBC\xC5\xBD\xC5\xBE \xEF\xAC\xB3 j\xCE\xAC\xCE\xAD\xCE\xAE +V 350108161614Z 1001 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\xC5\xB9\xC5\xBA\xC5\xBB\xC5\xBC\xC5\xBD\xC5\xBE \xEF\xAD\x86 j\xCE\xAC\xCE\xAD\xCE\xAE +V 350112144417Z 1002 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x04\x0F\x04\x10\x04\x11\x04\x12\x04\x13\x04\x14 +V 350112153942Z 1003 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x01y\x01z\x01{\x00 \x03\xA6\x03\xA7\x03\xA8\x03\xA9 +V 350112160038Z 1004 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00"\x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00" +V 350112160547Z 1005 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00"\x00"\x00d\x00o\x00u\x00b\x00l\x00e\x00 \x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00"\x00" +V 350112160921Z 1006 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00"\x00"\x00t\x00w\x00o\x00 \x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00o\x00n\x00e\x00 \x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00" +V 350112161153Z 1007 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00"\x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e +V 350112161405Z 1008 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00" +V 350112161631Z 1009 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00"\x00q\x00u\x00o\x00t\x00e +V 350112161857Z 100A unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00d\x00o\x00u\x00b\x00l\x00e\x00 \x00"\x00"\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e +V 350113090237Z 100B unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00p\x00a\x00r\x00t\x00i\x00a\x00l\x00l\x00y\x00 \x00"\x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00" +V 350113094852Z 100C unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00"\x00U\x00s\x00e\x00r\x00 \x001\x001\x00,\x00 \x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e +V 350113095110Z 100D unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00U\x00s\x00e\x00r\x00 \x001\x002\x00,\x00 \x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00" +V 350113095308Z 100E unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00"\x00U\x00s\x00e\x00r\x00 \x001\x003\x00,\x00 \x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00" +V 350113095502Z 100F unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00U\x00s\x00e\x00r\x00 \x001\x004\x00 \x00"\x00,\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e\x00" +V 350113095752Z 1010 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00\\x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00\ +V 350113095922Z 1011 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00\\x00\\x00d\x00o\x00u\x00b\x00l\x00e\x00 \x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00\\x00\ +V 350113100207Z 1012 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00\\x00\\x00t\x00w\x00o\x00 \x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00o\x00n\x00e\x00 \x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ +V 350113100436Z 1013 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00\\x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e +V 350113100550Z 1014 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ +V 350113100707Z 1015 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00\\x00q\x00u\x00o\x00t\x00e +V 350113100950Z 1016 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00d\x00o\x00u\x00b\x00l\x00e\x00 \x00\\x00\\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e +V 350113101153Z 1017 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00p\x00a\x00r\x00t\x00i\x00a\x00l\x00l\x00y\x00 \x00\\x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ +V 350113101338Z 1018 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00\\x00U\x00s\x00e\x00r\x00 \x002\x003\x00,\x00 \x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e +V 350113101450Z 1019 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00U\x00s\x00e\x00r\x00 \x002\x004\x00,\x00 \x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ +V 350113101610Z 101A unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00\\x00U\x00s\x00e\x00r\x00 \x002\x005\x00,\x00 \x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ +V 350113101745Z 101B unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00U\x00s\x00e\x00r\x00 \x002\x006\x00\\x00,\x00 \x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e +V 350113101913Z 101C unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=comma, comma, comma , +V 350113102047Z 101D unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=equal CN=User 28 +V 350113102213Z 101E unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 29+OU=ooo +V 350113102601Z 101F unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00U\x00s\x00e\x00r\x00 \x003\x000\x00<\x00 \x00>\x00#\x00;\x00 \x00"\x00+\x00" +V 350113102847Z 1020 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00U\x00s\x00e\x00r\x00 \x003\x001\x00 \x00\\x00"\x00a\x00,\x00b\x00"\x00+\x00C\x00N\x00=\x00U\x00S\x00,\x00 \x00>\x00 \x00\\x00\\x00d\x00e\x00 \x00< +V 350113104059Z 1021 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=\x00U\x00s\x00e\x00r\x00 \x001\x004\x00 \x00"\x00,\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_11/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..6efde26f7e69 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1000.pem @@ -0,0 +1,57 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 14 16:11:10 2010 GMT + Not After : Jan 8 16:11:10 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\xC5\xB9\xC5\xBA\xC5\xBB\xC5\xBC\xC5\xBD\xC5\xBE \xEF\xAC\xB3 j\xCE\xAC\xCE\xAD\xCE\xAE + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:c5:8e:23:dc:00:60:ab:13:ac:00:15:c8:2f:13: + 04:4a:05:15:38:1e:ea:43:cb:68:8e:e3:08:cc:a4: + bb:ef:78:3e:4a:d3:3c:89:50:95:c4:16:6f:a4:89: + 97:4a:07:ad:17:b4:96:1e:54:87:82:ed:22:a4:15: + f7:cf:09:83:b7:4d:ee:75:70:8c:71:5a:b8:e7:4d: + 27:b4:f8:eb:19:67:8f:58:3f:4c:5f:b3:ca:aa:bd: + 5b:95:d7:b4:ba:d4:bc:0e:69:01:52:b9:8a:2d:55: + 83:9e:4d:3f:01:0c:f1:d7:bd:c9:82:54:d2:71:d6: + 51:9c:55:4c:a3:82:43:35:2f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + CA:DF:DA:1A:F7:9C:D8:41:19:34:69:EA:67:74:68:CA:A3:24:0F:9F + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + Signature Algorithm: sha1WithRSAEncryption + 28:3a:db:4b:fd:15:4c:bb:ea:74:b4:53:4f:75:2a:92:3c:78: + b6:86:aa:39:bc:b0:67:3a:5a:00:f1:1e:74:5c:c7:2b:19:4f: + f4:c0:4d:ff:01:4c:b2:0f:b5:49:14:c3:9a:96:ce:61:b6:c7: + 37:82:44:75:76:fc:bd:5d:74:f9:22:ae:f2:36:cb:20:b7:e3: + c8:c8:01:ae:d5:01:f6:5e:b4:cb:ca:76:fe:72:98:f3:0a:c3: + ac:76:fa:41:67:b4:5c:92:67:fa:ca:17:02:80:00:d8:b6:d5: + 01:03:89:25:97:96:60:86:0c:0b:d8:64:94:c9:77:43:28:06: + f9:4e +-----BEGIN CERTIFICATE----- +MIIClzCCAgCgAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTQxNjEx +MTBaFw0zNTAxMDgxNjExMTBaMHExCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxITAfBgNVBAMUGMW5xbrFu8W8xb3FviDvrLMgas6szq3OrjCBnzANBgkqhkiG +9w0BAQEFAAOBjQAwgYkCgYEAxY4j3ABgqxOsABXILxMESgUVOB7qQ8tojuMIzKS7 +73g+StM8iVCVxBZvpImXSgetF7SWHlSHgu0ipBX3zwmDt03udXCMcVq4500ntPjr +GWePWD9MX7PKqr1blde0utS8DmkBUrmKLVWDnk0/AQzx173JglTScdZRnFVMo4JD +NS8CAwEAAaNPME0wCwYDVR0PBAQDAgXgMB0GA1UdDgQWBBTK39oa95zYQRk0aepn +dGjKoyQPnzAfBgNVHSMEGDAWgBToarvCkOpscCI+9vZIGwPmvremVTANBgkqhkiG +9w0BAQUFAAOBgQAoOttL/RVMu+p0tFNPdSqSPHi2hqo5vLBnOloA8R50XMcrGU/0 +wE3/AUyyD7VJFMOals5htsc3gkR1dvy9XXT5Iq7yNssgt+PIyAGu1QH2XrTLynb+ +cpjzCsOsdvpBZ7Rckmf6yhcCgADYttUBA4kll5ZghgwL2GSUyXdDKAb5Tg== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1002.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1002.pem new file mode 100755 index 000000000000..037410ad798b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1002.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4098 (0x1002) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 14:44:17 2010 GMT + Not After : Jan 12 14:44:17 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x04\x0F\x04\x10\x04\x11\x04\x12\x04\x13\x04\x14 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:b4:d3:fd:a0:56:2b:d9:72:66:e3:fc:4b:5b:70: + fb:9c:23:10:0b:b9:8a:c4:d1:dd:1d:37:cd:20:f4: + 9d:52:c3:8f:80:14:26:c4:3e:dc:3d:af:38:86:70: + 2f:e1:54:1c:a6:5e:b6:6a:2d:73:b4:2d:88:7c:ed: + eb:63:34:bf:ef:d0:a8:e0:00:ea:f0:24:50:68:3b: + ff:03:4a:22:e0:eb:5c:a4:e8:65:e4:c7:e7:38:e9: + ce:0c:44:3e:36:08:fe:82:d8:50:b9:13:43:3b:17: + 77:09:ef:7b:cc:9f:b4:7d:5d:f7:ab:8e:ab:c0:11: + bc:7a:07:ea:98:51:c0:27:1f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 49:1F:9A:43:D9:43:B9:89:0C:00:D9:90:C8:BC:9C:67:CD:8D:3E:C6 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 2 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 03:bc:24:ba:71:8b:4f:cc:3a:60:5a:04:13:15:4e:b0:79:e7: + 94:6c:9b:3b:4c:5d:d8:26:75:f5:94:04:71:5a:3e:b9:8c:5f: + b5:3d:e0:bb:8b:64:71:8f:0d:9a:99:b8:ff:ec:14:c0:c0:ca: + 63:5a:4e:1d:75:77:7a:2f:fb:12:90:25:44:ba:d8:2f:03:39: + 86:ef:88:4a:cc:69:79:0b:ff:a6:66:83:45:08:17:0b:0c:05: + f9:25:7c:6a:30:05:b3:61:df:1a:fe:2c:ca:49:e9:73:bd:b3: + 11:6b:bf:04:b0:a6:46:76:21:40:95:5c:78:b3:aa:4b:fd:03: + ee:51 +-----BEGIN CERTIFICATE----- +MIICszCCAhygAwIBAgICEAIwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNDQ0 +MTdaFw0zNTAxMTIxNDQ0MTdaMGUxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxFTATBgNVBAMeDAQPBBAEEQQSBBMEFDCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEAtNP9oFYr2XJm4/xLW3D7nCMQC7mKxNHdHTfNIPSdUsOPgBQmxD7cPa84 +hnAv4VQcpl62ai1ztC2IfO3rYzS/79Co4ADq8CRQaDv/A0oi4OtcpOhl5MfnOOnO +DEQ+Ngj+gthQuRNDOxd3Ce97zJ+0fV33q46rwBG8egfqmFHAJx8CAwEAAaN3MHUw +CwYDVR0PBAQDAgXgMB0GA1UdDgQWBBRJH5pD2UO5iQwA2ZDIvJxnzY0+xjAfBgNV +HSMEGDAWgBToarvCkOpscCI+9vZIGwPmvremVTAmBgNVHREEHzAdpBswGTEXMBUG +A1UEAxMOVXNlciAyIFJvb3QgMTEwDQYJKoZIhvcNAQEFBQADgYEAA7wkunGLT8w6 +YFoEExVOsHnnlGybO0xd2CZ19ZQEcVo+uYxftT3gu4tkcY8Nmpm4/+wUwMDKY1pO +HXV3ei/7EpAlRLrYLwM5hu+ISsxpeQv/pmaDRQgXCwwF+SV8ajAFs2HfGv4syknp +c72zEWu/BLCmRnYhQJVceLOqS/0D7lE= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1003.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1003.pem new file mode 100755 index 000000000000..95589b227122 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1003.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4099 (0x1003) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 15:39:42 2010 GMT + Not After : Jan 12 15:39:42 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x01y\x01z\x01{\x00 \x03\xA6\x03\xA7\x03\xA8\x03\xA9 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:d6:d8:62:3c:69:c9:dd:93:b3:e9:65:63:89:03: + 4e:f8:8a:e1:8b:9d:92:c6:43:ca:8e:af:fd:6e:9c: + c7:66:31:48:f4:ce:5e:be:38:c5:6c:1b:48:c9:61: + f5:78:8a:e9:74:ac:a8:98:9c:83:f9:b0:74:e3:25: + 7c:5a:bb:df:5f:73:ef:fc:a0:dc:6a:ac:07:a2:b8: + 52:ea:7a:42:ba:9f:74:3c:00:cc:26:46:ba:90:5d: + 45:78:02:57:e7:47:9f:8e:94:9c:5a:31:ab:f3:ff: + bc:9f:7f:d9:b0:a6:f6:86:70:a6:9d:52:ff:c8:19: + 47:88:75:78:6a:73:d5:97:e9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + E3:01:F6:1E:51:6D:FC:DB:BF:82:A9:12:21:4B:E2:46:FF:E8:EE:FF + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 1 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 68:f0:88:18:d5:98:63:da:42:39:47:bf:51:22:f6:0b:8e:46: + b0:8c:83:b0:4d:07:a4:e3:a9:66:76:4d:41:23:1a:6b:dc:d8: + d1:85:b1:bf:4f:f9:e6:01:4a:36:a9:a3:26:2d:0b:33:cc:36: + 97:c6:40:b6:77:26:1c:06:f2:1b:fa:0a:ef:5c:61:8d:0d:9c: + 3c:d3:0f:db:dd:60:69:8c:24:c6:70:bc:f8:3b:38:19:90:7a: + f3:4f:7e:7c:b7:69:b6:0f:55:e1:4b:da:77:cd:b1:fe:5f:f1: + c1:8a:f8:3d:26:10:3d:40:6f:83:17:0a:d8:dd:da:a1:27:10: + a1:73 +-----BEGIN CERTIFICATE----- +MIICtzCCAiCgAwIBAgICEAMwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNTM5 +NDJaFw0zNTAxMTIxNTM5NDJaMGkxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxGTAXBgNVBAMeEAF5AXoBewAgA6YDpwOoA6kwgZ8wDQYJKoZIhvcNAQEBBQAD +gY0AMIGJAoGBANbYYjxpyd2Ts+llY4kDTviK4YudksZDyo6v/W6cx2YxSPTOXr44 +xWwbSMlh9XiK6XSsqJicg/mwdOMlfFq7319z7/yg3GqsB6K4Uup6QrqfdDwAzCZG +upBdRXgCV+dHn46UnFoxq/P/vJ9/2bCm9oZwpp1S/8gZR4h1eGpz1ZfpAgMBAAGj +dzB1MAsGA1UdDwQEAwIF4DAdBgNVHQ4EFgQU4wH2HlFt/Nu/gqkSIUviRv/o7v8w +HwYDVR0jBBgwFoAU6Gq7wpDqbHAiPvb2SBsD5r63plUwJgYDVR0RBB8wHaQbMBkx +FzAVBgNVBAMTDlVzZXIgMSBSb290IDExMA0GCSqGSIb3DQEBBQUAA4GBAGjwiBjV +mGPaQjlHv1Ei9guORrCMg7BNB6TjqWZ2TUEjGmvc2NGFsb9P+eYBSjapoyYtCzPM +NpfGQLZ3JhwG8hv6Cu9cYY0NnDzTD9vdYGmMJMZwvPg7OBmQevNPfny3abYPVeFL +2nfNsf5f8cGK+D0mED1Ab4MXCtjd2qEnEKFz +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1004.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1004.pem new file mode 100755 index 000000000000..6f57ca684532 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1004.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4100 (0x1004) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 16:00:38 2010 GMT + Not After : Jan 12 16:00:38 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00"\x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:c9:ff:37:16:4d:7a:ad:59:bd:f2:c4:dc:4f:79: + 6a:f6:21:c7:ef:cd:af:f1:39:34:24:92:f4:46:d3: + 8b:43:31:55:11:3e:22:2b:85:19:38:ed:0b:35:3c: + 73:fc:b9:17:e8:73:99:21:a2:20:30:b4:e9:11:c6: + 7a:61:fa:fa:fe:eb:c8:30:c4:73:5f:77:f2:fc:42: + b7:10:29:ac:9e:8a:c2:df:25:9b:44:17:05:a3:39: + d9:1b:58:62:fb:2c:86:07:f7:f0:28:7b:5a:38:1b: + 6a:de:88:fb:ad:32:f4:53:e2:a1:c5:0f:68:db:64: + ae:39:2a:5e:02:d0:b5:38:07 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 86:2F:46:D0:A9:F9:3F:22:BD:57:83:51:35:F9:67:11:A2:00:AB:33 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 3 Root 11 + Signature Algorithm: sha1WithRSAEncryption + bb:f6:61:ae:30:94:3a:4a:d6:d5:cb:b5:50:bb:ca:0e:ab:9f: + 09:e9:78:d4:2f:20:fe:18:4e:d8:61:db:97:28:a9:d9:dc:e5: + 06:f8:6c:41:c2:5a:95:53:47:7e:a7:73:c9:45:4f:6b:30:fc: + fd:17:9a:7b:a9:d8:27:57:a9:fd:8d:e7:7e:4b:3e:98:11:42: + 00:39:1a:55:4b:3d:a5:de:75:3c:43:5a:33:10:d3:cf:4e:04: + 0a:71:d4:93:2b:0b:2b:15:82:7b:04:46:9b:50:da:18:84:66: + 31:75:36:5b:09:eb:82:5d:7d:e1:35:a3:a4:6c:b2:ac:c8:fa: + bd:5f +-----BEGIN CERTIFICATE----- +MIICyzCCAjSgAwIBAgICEAQwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNjAw +MzhaFw0zNTAxMTIxNjAwMzhaMH0xCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxLTArBgNVBAMeJAAiAGUAbgBjAGwAbwBzAGkAbgBnACAAcQB1AG8AdABlAHMA +IjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAyf83Fk16rVm98sTcT3lq9iHH +782v8Tk0JJL0RtOLQzFVET4iK4UZOO0LNTxz/LkX6HOZIaIgMLTpEcZ6Yfr6/uvI +MMRzX3fy/EK3ECmsnorC3yWbRBcFoznZG1hi+yyGB/fwKHtaOBtq3oj7rTL0U+Kh +xQ9o22SuOSpeAtC1OAcCAwEAAaN3MHUwCwYDVR0PBAQDAgXgMB0GA1UdDgQWBBSG +L0bQqfk/Ir1Xg1E1+WcRogCrMzAfBgNVHSMEGDAWgBToarvCkOpscCI+9vZIGwPm +vremVTAmBgNVHREEHzAdpBswGTEXMBUGA1UEAxMOVXNlciAzIFJvb3QgMTEwDQYJ +KoZIhvcNAQEFBQADgYEAu/ZhrjCUOkrW1cu1ULvKDqufCel41C8g/hhO2GHblyip +2dzlBvhsQcJalVNHfqdzyUVPazD8/Reae6nYJ1ep/Y3nfks+mBFCADkaVUs9pd51 +PENaMxDTz04ECnHUkysLKxWCewRGm1DaGIRmMXU2Wwnrgl194TWjpGyyrMj6vV8= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1005.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1005.pem new file mode 100755 index 000000000000..3a2f7522d19d --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1005.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4101 (0x1005) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 16:05:47 2010 GMT + Not After : Jan 12 16:05:47 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00"\x00"\x00d\x00o\x00u\x00b\x00l\x00e\x00 \x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00"\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:de:4d:31:93:c5:1b:7c:2b:85:86:da:89:3d:06: + 6f:6d:44:a5:de:6c:6a:06:28:b0:96:7b:40:34:01: + af:e4:b1:f4:93:f1:25:78:b0:43:ea:92:2a:87:60: + e8:be:7e:c9:b6:02:f8:14:93:1b:b8:5f:cb:2c:24: + e2:80:24:f0:5c:6d:77:f2:dc:ef:90:d6:d1:78:22: + 53:f0:7f:45:ad:f2:1a:9d:25:08:13:c8:62:6b:9e: + 88:79:3d:9e:b4:0a:05:11:79:7d:a1:b2:46:89:f3: + 45:ce:f3:22:2e:17:ab:e1:a9:b1:04:93:3b:f3:ca: + e6:60:c0:fd:91:7f:34:80:65 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + C1:6E:6A:FB:5A:B1:0C:67:07:C8:7E:F1:8D:86:F6:D0:27:56:6D:73 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 4 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 61:72:4b:33:1d:60:91:08:19:4f:ff:ec:8e:9e:83:71:d7:00: + 96:0a:b5:82:b7:8c:a6:3f:70:64:36:ac:25:a7:f1:a9:83:f1: + 63:f8:29:06:fa:58:86:8a:fd:25:9e:77:38:dd:c7:3b:cd:68: + 91:8e:f4:57:42:c9:6b:88:87:ec:24:57:38:84:fb:c0:d9:bc: + 6c:1c:6e:9d:9d:b9:da:cc:7e:fe:f9:bd:29:be:14:26:6f:63: + 1f:6f:6a:f1:dd:fd:d2:03:69:f2:36:e1:35:e0:57:72:d5:e3: + 09:ee:6a:08:45:b4:73:e9:d1:18:c2:38:1d:86:53:53:6d:bf: + f0:1e +-----BEGIN CERTIFICATE----- +MIIC3jCCAkegAwIBAgICEAUwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNjA1 +NDdaFw0zNTAxMTIxNjA1NDdaMIGPMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MT8wPQYDVQQDHjYAIgAiAGQAbwB1AGIAbABlACAAZQBuAGMAbABvAHMAaQBu +AGcAIABxAHUAbwB0AGUAcwAiACIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGB +AN5NMZPFG3wrhYbaiT0Gb21Epd5sagYosJZ7QDQBr+Sx9JPxJXiwQ+qSKodg6L5+ +ybYC+BSTG7hfyywk4oAk8Fxtd/Lc75DW0XgiU/B/Ra3yGp0lCBPIYmueiHk9nrQK +BRF5faGyRonzRc7zIi4Xq+GpsQSTO/PK5mDA/ZF/NIBlAgMBAAGjdzB1MAsGA1Ud +DwQEAwIF4DAdBgNVHQ4EFgQUwW5q+1qxDGcHyH7xjYb20CdWbXMwHwYDVR0jBBgw +FoAU6Gq7wpDqbHAiPvb2SBsD5r63plUwJgYDVR0RBB8wHaQbMBkxFzAVBgNVBAMT +DlVzZXIgNCBSb290IDExMA0GCSqGSIb3DQEBBQUAA4GBAGFySzMdYJEIGU//7I6e +g3HXAJYKtYK3jKY/cGQ2rCWn8amD8WP4KQb6WIaK/SWedzjdxzvNaJGO9FdCyWuI +h+wkVziE+8DZvGwcbp2dudrMfv75vSm+FCZvYx9vavHd/dIDafI24TXgV3LV4wnu +aghFtHPp0RjCOB2GU1Ntv/Ae +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1006.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1006.pem new file mode 100755 index 000000000000..cb72b8d1610a --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1006.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4102 (0x1006) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 16:09:21 2010 GMT + Not After : Jan 12 16:09:21 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00"\x00"\x00t\x00w\x00o\x00 \x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00o\x00n\x00e\x00 \x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:d1:a4:91:c7:28:84:f8:54:63:09:1f:bc:2e:4e: + a3:be:54:01:42:2e:f7:ef:4f:b8:46:a9:35:b1:b3: + 29:0e:8b:f7:b5:fa:b7:71:5b:33:03:ac:e6:b5:f6: + ba:f5:ba:21:72:ed:7d:ea:f0:f1:2c:55:2a:a9:c6: + d8:54:ef:12:f0:f5:37:ca:57:b2:3c:ce:7c:5a:57: + 86:68:a2:51:82:80:bd:58:a5:04:1c:e8:cf:f6:5b: + 4e:d2:6a:79:63:eb:ac:52:7c:61:8c:fe:0a:6b:b2: + f6:16:9c:94:ae:a6:f6:69:b9:d5:0b:26:0d:01:7f: + 62:d2:58:c2:02:53:25:63:0d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 45:DF:D7:35:D1:13:E4:8F:E3:0D:E3:7E:A9:9A:5D:56:00:64:4E:43 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 5 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 9d:bd:dc:dc:8e:a8:e8:e4:15:cb:14:c1:6a:ab:d8:ab:e6:e5: + 4f:f5:a8:8b:2c:ab:80:e2:31:f9:89:d8:12:ba:9c:4f:b3:f5: + bb:7e:ee:8b:df:58:d3:b2:ee:f8:c5:46:c3:5d:2e:a9:35:d0: + 7a:1e:80:18:14:4d:78:6e:f1:c8:9a:51:db:86:3e:2c:04:4a: + 0a:2f:f1:7a:01:e3:1b:31:d7:1d:f1:32:c4:04:db:b9:7e:c4: + fd:b0:c1:41:3f:8a:b3:88:4f:4a:9c:a6:38:11:2a:4a:0f:8b: + d0:9a:8a:2c:33:fe:7f:42:b5:93:8d:54:df:de:2b:b1:08:5c: + d9:0d +-----BEGIN CERTIFICATE----- +MIIC6DCCAlGgAwIBAgICEAYwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNjA5 +MjFaFw0zNTAxMTIxNjA5MjFaMIGZMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MUkwRwYDVQQDHkAAIgAiAHQAdwBvACAAcwB0AGEAcgB0AGkAbgBnACAAbwBu +AGUAIABlAG4AZABpAG4AZwAgAHEAdQBvAHQAZQAiMIGfMA0GCSqGSIb3DQEBAQUA +A4GNADCBiQKBgQDRpJHHKIT4VGMJH7wuTqO+VAFCLvfvT7hGqTWxsykOi/e1+rdx +WzMDrOa19rr1uiFy7X3q8PEsVSqpxthU7xLw9TfKV7I8znxaV4ZoolGCgL1YpQQc +6M/2W07Sanlj66xSfGGM/gprsvYWnJSupvZpudULJg0Bf2LSWMICUyVjDQIDAQAB +o3cwdTALBgNVHQ8EBAMCBeAwHQYDVR0OBBYEFEXf1zXRE+SP4w3jfqmaXVYAZE5D +MB8GA1UdIwQYMBaAFOhqu8KQ6mxwIj729kgbA+a+t6ZVMCYGA1UdEQQfMB2kGzAZ +MRcwFQYDVQQDEw5Vc2VyIDUgUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQCdvdzc +jqjo5BXLFMFqq9ir5uVP9aiLLKuA4jH5idgSupxPs/W7fu6L31jTsu74xUbDXS6p +NdB6HoAYFE14bvHImlHbhj4sBEoKL/F6AeMbMdcd8TLEBNu5fsT9sMFBP4qziE9K +nKY4ESpKD4vQmoosM/5/QrWTjVTf3iuxCFzZDQ== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1007.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1007.pem new file mode 100755 index 000000000000..ce9b36d12d7a --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1007.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4103 (0x1007) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 16:11:53 2010 GMT + Not After : Jan 12 16:11:53 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00"\x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:d1:99:9c:20:2e:65:ee:0f:ce:cb:8a:d8:70:c8: + 04:3c:ac:2f:14:7c:6c:8f:5e:95:36:f8:53:74:5b: + 88:bf:a1:43:73:04:ab:3a:42:b4:7c:2c:3c:3b:63: + 7e:ef:82:c5:bb:b1:28:9b:8b:b7:29:72:3d:30:08: + e9:a2:d7:4b:08:e2:2e:e6:d4:9f:75:29:31:23:be: + b4:30:5d:94:30:41:38:a1:d5:34:bc:69:f5:d8:8d: + c6:08:cc:28:4a:92:22:2b:19:89:f5:ad:7c:49:89: + b3:63:c6:e5:6c:86:d7:62:05:1b:97:db:2d:fb:c2: + 47:e5:51:a6:f0:50:6f:e3:53 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 5F:DA:34:F6:6F:BA:9E:12:99:DC:02:2A:4C:3E:8C:0D:14:A1:9B:2B + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 6 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 24:af:11:b6:1a:5c:d1:bf:70:93:85:c0:2e:10:96:4d:b7:ad: + 4e:d7:c4:7e:87:a1:3b:20:d7:bf:04:07:cc:91:13:0c:ad:66: + 08:d6:2e:b6:d0:aa:d0:45:0e:c0:92:3d:7c:a6:82:19:04:3c: + 9a:b3:5e:e8:fe:9e:5c:d6:17:75:73:e3:3c:64:0c:ae:5d:92: + 2a:eb:0e:ef:04:f5:ce:a5:7f:1f:2f:1d:05:a0:70:f4:24:80: + c3:38:35:2d:e5:ac:a7:11:4a:3e:a2:b2:d1:14:91:ba:b0:d8: + 5f:be:80:8a:34:2c:72:fb:00:47:88:47:9e:34:65:12:ad:9f: + ff:99 +-----BEGIN CERTIFICATE----- +MIICxTCCAi6gAwIBAgICEAcwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNjEx +NTNaFw0zNTAxMTIxNjExNTNaMHcxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxJzAlBgNVBAMeHgAiAHMAdABhAHIAdABpAG4AZwAgAHEAdQBvAHQAZTCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0ZmcIC5l7g/Oy4rYcMgEPKwvFHxsj16V +NvhTdFuIv6FDcwSrOkK0fCw8O2N+74LFu7Eom4u3KXI9MAjpotdLCOIu5tSfdSkx +I760MF2UMEE4odU0vGn12I3GCMwoSpIiKxmJ9a18SYmzY8blbIbXYgUbl9st+8JH +5VGm8FBv41MCAwEAAaN3MHUwCwYDVR0PBAQDAgXgMB0GA1UdDgQWBBRf2jT2b7qe +EpncAipMPowNFKGbKzAfBgNVHSMEGDAWgBToarvCkOpscCI+9vZIGwPmvremVTAm +BgNVHREEHzAdpBswGTEXMBUGA1UEAxMOVXNlciA2IFJvb3QgMTEwDQYJKoZIhvcN +AQEFBQADgYEAJK8Rthpc0b9wk4XALhCWTbetTtfEfoehOyDXvwQHzJETDK1mCNYu +ttCq0EUOwJI9fKaCGQQ8mrNe6P6eXNYXdXPjPGQMrl2SKusO7wT1zqV/Hy8dBaBw +9CSAwzg1LeWspxFKPqKy0RSRurDYX76AijQscvsAR4hHnjRlEq2f/5k= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1008.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1008.pem new file mode 100755 index 000000000000..8d6f2bd25c05 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1008.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4104 (0x1008) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 16:14:05 2010 GMT + Not After : Jan 12 16:14:05 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:a6:a8:3f:60:a7:9a:3b:20:c9:2c:8c:4f:cd:11: + 1f:0d:a9:2a:2c:eb:12:80:0c:55:8a:4d:06:ef:b2: + 5f:2e:47:be:0d:10:22:8a:15:57:29:4a:90:63:f9: + 1c:13:85:47:c7:c9:b9:76:09:10:a9:b1:94:5c:8d: + c9:f4:01:26:43:e4:d4:98:d6:00:1a:d4:cd:2a:d1: + cd:7e:4c:4e:ab:18:78:5a:fb:b2:ec:a3:87:a1:0e: + 84:3f:70:cf:ca:02:24:c8:d7:1b:83:a3:ac:a5:f0: + 10:c5:de:b7:a2:6c:0b:0c:9d:ab:32:a3:1a:c9:ae: + 9b:48:a8:65:cd:50:db:0b:cf + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 91:32:56:26:62:63:A1:32:B0:BC:D0:91:F1:D8:F2:94:CB:10:F1:91 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 7 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 4c:d5:2f:ab:fb:83:f8:11:c9:d2:df:aa:dc:e9:b8:38:2e:53: + e1:3a:5b:bb:0a:bf:72:f7:47:b5:57:de:82:8a:e6:bb:7d:62: + af:1b:9c:8e:4a:f5:cf:0b:ac:e9:06:16:ca:59:f1:7f:d7:45: + c0:88:84:ee:f4:c7:8b:e0:39:aa:c7:b7:95:b9:fe:a2:4a:3a: + 41:df:d0:02:bf:6f:54:30:9a:9a:0a:a6:04:5f:f4:17:52:d6: + c2:39:43:5e:b9:a3:86:0f:3d:ad:eb:a3:81:f4:cc:90:29:17: + dc:46:5e:6b:9c:f6:70:0f:b2:0f:dc:0f:9c:9f:09:6c:fa:31: + 6c:01 +-----BEGIN CERTIFICATE----- +MIICwTCCAiqgAwIBAgICEAgwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNjE0 +MDVaFw0zNTAxMTIxNjE0MDVaMHMxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxIzAhBgNVBAMeGgBlAG4AZABpAG4AZwAgAHEAdQBvAHQAZQAiMIGfMA0GCSqG +SIb3DQEBAQUAA4GNADCBiQKBgQCmqD9gp5o7IMksjE/NER8NqSos6xKADFWKTQbv +sl8uR74NECKKFVcpSpBj+RwThUfHybl2CRCpsZRcjcn0ASZD5NSY1gAa1M0q0c1+ +TE6rGHha+7Lso4ehDoQ/cM/KAiTI1xuDo6yl8BDF3reibAsMnasyoxrJrptIqGXN +UNsLzwIDAQABo3cwdTALBgNVHQ8EBAMCBeAwHQYDVR0OBBYEFJEyViZiY6EysLzQ +kfHY8pTLEPGRMB8GA1UdIwQYMBaAFOhqu8KQ6mxwIj729kgbA+a+t6ZVMCYGA1Ud +EQQfMB2kGzAZMRcwFQYDVQQDEw5Vc2VyIDcgUm9vdCAxMTANBgkqhkiG9w0BAQUF +AAOBgQBM1S+r+4P4EcnS36rc6bg4LlPhOlu7Cr9y90e1V96Ciua7fWKvG5yOSvXP +C6zpBhbKWfF/10XAiITu9MeL4Dmqx7eVuf6iSjpB39ACv29UMJqaCqYEX/QXUtbC +OUNeuaOGDz2t66OB9MyQKRfcRl5rnPZwD7IP3A+cnwls+jFsAQ== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1009.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1009.pem new file mode 100755 index 000000000000..c1a94dae5d59 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1009.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4105 (0x1009) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 16:16:31 2010 GMT + Not After : Jan 12 16:16:31 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00"\x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:b4:3b:c7:b0:6c:b5:f2:b3:a5:79:89:54:de:af: + 03:3c:0e:c9:57:15:8e:73:2a:48:83:18:59:ce:b4: + 12:fb:5c:92:28:69:75:18:f9:0f:24:15:95:38:b2: + 4c:81:07:90:97:3b:d7:3a:ab:a6:92:5a:9f:5a:1f: + fe:14:ac:4d:b5:5e:6a:a6:0f:98:55:08:07:09:07: + a5:fb:79:9e:a0:2d:73:99:92:ad:6e:bc:75:36:d0: + b5:f1:1c:91:3a:d4:49:8a:60:1e:a7:01:2f:bc:d9: + cd:b4:f4:70:b4:38:d1:3c:d3:ee:00:df:b3:83:45: + 63:5c:5d:28:47:bc:b1:b9:57 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + D6:18:38:7B:14:4B:D6:72:42:A9:53:E2:1D:BE:81:88:26:DB:0A:06 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 8 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 98:f3:ac:db:7b:a0:00:d2:58:be:74:21:ff:09:29:4c:0c:1a: + 7a:1f:dd:e2:f3:f4:9a:52:5d:da:ac:10:30:f9:b8:93:10:60: + 46:bf:48:47:bd:af:87:a1:d9:c6:46:81:b3:0d:a4:f8:ba:ca: + 17:7c:f2:f9:46:03:62:7f:32:6b:f0:7c:75:a4:05:44:cb:10: + 42:36:ce:12:c0:b9:e5:5f:e0:7b:c6:c8:39:5c:0c:50:30:a0: + f6:fe:e1:a2:e6:00:b3:fc:86:56:11:66:d8:41:81:e3:4e:15: + e5:68:9d:1c:b0:c4:4f:ab:86:75:55:fa:39:58:3f:7c:68:03: + e0:76 +-----BEGIN CERTIFICATE----- +MIICwTCCAiqgAwIBAgICEAkwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNjE2 +MzFaFw0zNTAxMTIxNjE2MzFaMHMxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxIzAhBgNVBAMeGgBtAGkAZABkAGwAZQAgACIAcQB1AG8AdABlMIGfMA0GCSqG +SIb3DQEBAQUAA4GNADCBiQKBgQC0O8ewbLXys6V5iVTerwM8DslXFY5zKkiDGFnO +tBL7XJIoaXUY+Q8kFZU4skyBB5CXO9c6q6aSWp9aH/4UrE21XmqmD5hVCAcJB6X7 +eZ6gLXOZkq1uvHU20LXxHJE61EmKYB6nAS+82c209HC0ONE80+4A37ODRWNcXShH +vLG5VwIDAQABo3cwdTALBgNVHQ8EBAMCBeAwHQYDVR0OBBYEFNYYOHsUS9ZyQqlT +4h2+gYgm2woGMB8GA1UdIwQYMBaAFOhqu8KQ6mxwIj729kgbA+a+t6ZVMCYGA1Ud +EQQfMB2kGzAZMRcwFQYDVQQDEw5Vc2VyIDggUm9vdCAxMTANBgkqhkiG9w0BAQUF +AAOBgQCY86zbe6AA0li+dCH/CSlMDBp6H93i8/SaUl3arBAw+biTEGBGv0hHva+H +odnGRoGzDaT4usoXfPL5RgNifzJr8Hx1pAVEyxBCNs4SwLnlX+B7xsg5XAxQMKD2 +/uGi5gCz/IZWEWbYQYHjThXlaJ0csMRPq4Z1Vfo5WD98aAPgdg== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100A.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100A.pem new file mode 100755 index 000000000000..a3a79bf83111 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100A.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4106 (0x100a) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 18 16:18:57 2010 GMT + Not After : Jan 12 16:18:57 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00d\x00o\x00u\x00b\x00l\x00e\x00 \x00"\x00"\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e5:3f:d4:e1:d6:26:2a:c9:40:1d:34:3c:1e:e8: + f4:54:67:6b:6c:a5:b7:fe:04:bb:cb:0e:c0:2d:26: + 61:c1:81:80:9d:da:1b:fd:d3:7a:7a:57:78:c5:f6: + e6:4b:ad:2d:a2:8d:49:b3:ac:18:ca:1c:25:67:44: + 7c:8e:b5:ab:ec:f7:a8:da:b7:37:ed:77:76:b2:8f: + bb:15:b2:e3:45:5f:b2:2a:aa:27:b7:f1:bc:37:8f: + b7:b4:c5:ff:45:fd:67:04:25:47:2c:1a:a7:63:1e: + 97:f6:ac:d7:39:cf:ef:24:63:a1:87:9b:36:97:92: + fa:d9:4d:a9:fa:dd:c9:fb:75 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 62:F1:43:E3:B1:7B:98:0D:69:A4:8F:CF:32:F7:6D:E6:88:D6:23:90 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 9 Root 11 + Signature Algorithm: sha1WithRSAEncryption + ab:46:88:13:e8:02:63:4e:f2:a0:5a:48:7e:35:a4:c2:f8:55: + 33:cb:ef:45:55:30:81:a1:9e:c2:c7:43:cd:19:23:1f:df:3f: + 8b:b8:7e:69:5e:98:06:b1:47:dd:e5:05:e2:3a:19:cf:af:e3: + dd:7b:75:e5:53:b0:bc:4e:58:40:bf:3b:d2:9c:7f:9e:b1:66: + f8:3f:58:c4:5f:ab:be:1f:03:fb:89:47:a4:25:8a:1e:10:e0: + 20:33:70:07:13:92:32:e1:bf:92:6a:d5:89:03:2c:ad:e1:85: + 8c:b3:1d:ee:0c:35:70:2f:aa:e5:e0:77:97:b0:9b:a3:0d:22: + 6f:dc +-----BEGIN CERTIFICATE----- +MIIC0jCCAjugAwIBAgICEAowDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTgxNjE4 +NTdaFw0zNTAxMTIxNjE4NTdaMIGDMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTMwMQYDVQQDHioAZABvAHUAYgBsAGUAIAAiACIAbQBpAGQAZABsAGUAIABx +AHUAbwB0AGUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOU/1OHWJirJQB00 +PB7o9FRna2ylt/4Eu8sOwC0mYcGBgJ3aG/3TenpXeMX25kutLaKNSbOsGMocJWdE +fI61q+z3qNq3N+13drKPuxWy40VfsiqqJ7fxvDePt7TF/0X9ZwQlRywap2Mel/as +1znP7yRjoYebNpeS+tlNqfrdyft1AgMBAAGjdzB1MAsGA1UdDwQEAwIF4DAdBgNV +HQ4EFgQUYvFD47F7mA1ppI/PMvdt5ojWI5AwHwYDVR0jBBgwFoAU6Gq7wpDqbHAi +Pvb2SBsD5r63plUwJgYDVR0RBB8wHaQbMBkxFzAVBgNVBAMTDlVzZXIgOSBSb290 +IDExMA0GCSqGSIb3DQEBBQUAA4GBAKtGiBPoAmNO8qBaSH41pML4VTPL70VVMIGh +nsLHQ80ZIx/fP4u4fmlemAaxR93lBeI6Gc+v4917deVTsLxOWEC/O9Kcf56xZvg/ +WMRfq74fA/uJR6Qlih4Q4CAzcAcTkjLhv5Jq1YkDLK3hhYyzHe4MNXAvquXgd5ew +m6MNIm/c +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100B.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100B.pem new file mode 100755 index 000000000000..75684732d762 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100B.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4107 (0x100b) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 09:02:37 2010 GMT + Not After : Jan 13 09:02:37 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00p\x00a\x00r\x00t\x00i\x00a\x00l\x00l\x00y\x00 \x00"\x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ae:9f:8e:b8:88:8e:ed:53:aa:2a:2c:ed:f1:6c: + 99:47:9f:ab:8b:4e:8e:d8:2e:c2:78:2c:54:f9:29: + 14:27:b9:6a:3c:33:3f:06:51:ba:76:15:0a:16:60: + db:f2:f0:db:af:5b:38:be:18:42:b4:31:02:ba:6f: + 19:00:57:be:d0:f3:7c:6b:34:36:e8:7c:45:77:0d: + f5:d0:7c:0e:23:64:7c:59:02:5c:54:15:71:82:be: + 98:3f:c9:2d:f0:9e:d5:f0:32:02:44:61:5b:2f:71: + 16:13:9a:b3:2b:28:ff:d5:d8:3d:00:9c:eb:ec:b7: + 04:e2:b6:15:42:45:e5:ef:3f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 8C:2C:B6:8B:82:43:DC:41:EC:AC:D4:75:E8:DA:D8:3F:A9:A0:F5:31 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 10 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 48:a6:51:46:5b:44:a5:be:18:ed:8f:d4:c6:d2:3c:86:8f:e7: + e5:f4:a2:5d:51:aa:00:9b:bc:d8:b1:d3:f4:24:a0:a1:0d:80: + 2e:7e:62:26:ee:8c:4b:bd:79:0c:39:bd:6e:af:db:92:b6:03: + b1:b0:49:95:a7:59:28:54:30:33:fc:7e:2f:0f:a2:ce:90:27: + 29:b9:d8:3f:99:36:e9:81:9f:f5:fa:cb:f9:f2:05:b5:48:60: + 4d:50:4d:1e:ba:45:fd:f1:99:84:a6:79:0b:6b:76:eb:73:9d: + 5c:47:27:be:0d:23:0b:97:cc:9d:5a:80:fa:9b:ff:66:e7:37: + 60:a4 +-----BEGIN CERTIFICATE----- +MIIC3zCCAkigAwIBAgICEAswDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkwOTAy +MzdaFw0zNTAxMTMwOTAyMzdaMIGPMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MT8wPQYDVQQDHjYAcABhAHIAdABpAGEAbABsAHkAIAAiAGUAbgBjAGwAbwBz +AGkAbgBnACAAcQB1AG8AdABlACIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGB +AK6fjriIju1Tqios7fFsmUefq4tOjtguwngsVPkpFCe5ajwzPwZRunYVChZg2/Lw +269bOL4YQrQxArpvGQBXvtDzfGs0Nuh8RXcN9dB8DiNkfFkCXFQVcYK+mD/JLfCe +1fAyAkRhWy9xFhOasyso/9XYPQCc6+y3BOK2FUJF5e8/AgMBAAGjeDB2MAsGA1Ud +DwQEAwIF4DAdBgNVHQ4EFgQUjCy2i4JD3EHsrNR16NrYP6mg9TEwHwYDVR0jBBgw +FoAU6Gq7wpDqbHAiPvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBoxGDAWBgNVBAMT +D1VzZXIgMTAgUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQBIplFGW0Slvhjtj9TG +0jyGj+fl9KJdUaoAm7zYsdP0JKChDYAufmIm7oxLvXkMOb1ur9uStgOxsEmVp1ko +VDAz/H4vD6LOkCcpudg/mTbpgZ/1+sv58gW1SGBNUE0eukX98ZmEpnkLa3brc51c +Rye+DSMLl8ydWoD6m/9m5zdgpA== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100C.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100C.pem new file mode 100755 index 000000000000..115190ca6780 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100C.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4108 (0x100c) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 09:48:52 2010 GMT + Not After : Jan 13 09:48:52 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00"\x00U\x00s\x00e\x00r\x00 \x001\x001\x00,\x00 \x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e2:8b:a9:94:06:b0:cb:e7:1b:a3:fd:7c:70:d1: + 66:e6:2d:aa:c7:ec:2e:e3:08:c3:39:3f:48:47:fd: + 09:67:2d:16:17:87:c0:e3:4d:c1:cc:6b:3f:c4:7b: + 74:d5:71:70:d6:74:8a:a2:17:fd:39:78:f8:c7:b3: + 42:54:ac:f7:07:d7:6f:55:da:03:15:11:e0:c2:d8: + 95:d2:87:c3:9c:3d:94:96:9d:01:81:5d:61:43:aa: + 4c:92:d5:68:aa:6c:73:88:52:7b:ee:9b:76:65:0d: + 2a:ae:3d:83:71:41:44:8b:23:7d:a6:f9:3c:81:56: + 6c:9b:52:96:87:c8:97:18:8d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 48:89:BE:3C:AA:C9:5A:38:6B:CA:FA:C8:B2:BB:F7:E1:44:4B:7B:08 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 11 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 23:c9:5b:f5:9f:59:ff:97:0b:79:35:2d:32:db:b7:4b:b1:c9: + 2b:1e:cf:88:7b:b4:4e:f0:ed:13:a3:64:85:8f:d6:70:b5:ed: + 2a:57:92:a0:b4:14:96:48:7a:aa:a4:19:59:df:d9:a9:0f:86: + a3:e5:ec:b5:67:ef:c3:ee:23:dd:c3:3e:24:86:6c:09:03:59: + ab:93:d6:c7:0a:4c:ef:c5:4a:be:d6:ff:0f:2e:81:8e:18:d5: + 44:21:3a:0e:86:04:aa:86:8a:38:1e:d6:07:75:d0:08:be:ef: + 29:7d:d2:fc:85:8d:0c:d3:bd:ea:47:be:40:bb:fa:2f:29:fc: + c6:d8 +-----BEGIN CERTIFICATE----- +MIIC2TCCAkKgAwIBAgICEAwwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkwOTQ4 +NTJaFw0zNTAxMTMwOTQ4NTJaMIGJMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTkwNwYDVQQDHjAAIgBVAHMAZQByACAAMQAxACwAIABzAHQAYQByAHQAaQBu +AGcAIABxAHUAbwB0AGUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOKLqZQG +sMvnG6P9fHDRZuYtqsfsLuMIwzk/SEf9CWctFheHwONNwcxrP8R7dNVxcNZ0iqIX +/Tl4+MezQlSs9wfXb1XaAxUR4MLYldKHw5w9lJadAYFdYUOqTJLVaKpsc4hSe+6b +dmUNKq49g3FBRIsjfab5PIFWbJtSlofIlxiNAgMBAAGjeDB2MAsGA1UdDwQEAwIF +4DAdBgNVHQ4EFgQUSIm+PKrJWjhryvrIsrv34URLewgwHwYDVR0jBBgwFoAU6Gq7 +wpDqbHAiPvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBoxGDAWBgNVBAMTD1VzZXIg +MTEgUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQAjyVv1n1n/lwt5NS0y27dLsckr +Hs+Ie7RO8O0To2SFj9Zwte0qV5KgtBSWSHqqpBlZ39mpD4aj5ey1Z+/D7iPdwz4k +hmwJA1mrk9bHCkzvxUq+1v8PLoGOGNVEIToOhgSqhoo4HtYHddAIvu8pfdL8hY0M +073qR75Au/ovKfzG2A== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100D.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100D.pem new file mode 100755 index 000000000000..95e419a174a3 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100D.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4109 (0x100d) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 09:51:10 2010 GMT + Not After : Jan 13 09:51:10 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00U\x00s\x00e\x00r\x00 \x001\x002\x00,\x00 \x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:bf:4f:93:6b:6b:86:76:30:31:3b:0e:eb:b7:a6: + b9:a3:3e:84:ea:d5:31:50:5a:df:f4:3f:67:11:5a: + a5:28:23:58:37:67:a5:5c:72:6d:f2:fc:80:81:55: + 78:86:28:e9:60:c2:0a:d0:17:3c:3a:e9:a8:01:71: + 64:b8:27:f4:42:e0:d7:69:f5:4e:ef:14:07:69:fd: + de:7b:af:c8:a4:0c:9c:56:00:8b:76:67:d1:ba:a9: + e7:40:63:77:da:44:d3:89:5c:a7:5a:ea:d5:f3:9b: + 15:43:f3:08:2d:bc:8a:bf:4a:5b:57:01:f0:c7:97: + fe:b0:93:b2:1b:79:a0:4e:ad + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 0A:A2:A6:09:88:23:56:82:9E:60:8B:79:23:61:CA:BF:D4:F7:ED:A9 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 12 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 64:3e:b6:a6:5e:0d:6f:b3:e7:f6:c7:1f:4a:48:96:4c:fe:13: + 3c:4a:7b:e7:46:51:56:45:66:02:e4:79:1a:7f:15:a4:e9:5b: + f7:4c:68:cf:cf:b0:7b:e2:ba:57:37:23:c6:cd:ba:75:85:e8: + eb:d5:ca:a2:6d:9a:75:84:4b:7b:47:38:58:bc:0a:4b:cc:2c: + 2a:0d:eb:7e:ac:36:6f:0b:a5:26:b7:d3:0b:0f:e7:cc:26:db: + bb:01:48:5b:38:49:f5:3e:2d:75:c0:d6:11:ad:3e:a0:b6:8a: + 8e:7f:4d:10:2c:7b:d7:03:0d:de:da:6b:e0:07:06:90:73:1f: + dd:f1 +-----BEGIN CERTIFICATE----- +MIIC1TCCAj6gAwIBAgICEA0wDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkwOTUx +MTBaFw0zNTAxMTMwOTUxMTBaMIGFMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTUwMwYDVQQDHiwAVQBzAGUAcgAgADEAMgAsACAAZQBuAGQAaQBuAGcAIABx +AHUAbwB0AGUAIjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAv0+Ta2uGdjAx +Ow7rt6a5oz6E6tUxUFrf9D9nEVqlKCNYN2elXHJt8vyAgVV4hijpYMIK0Bc8Oumo +AXFkuCf0QuDXafVO7xQHaf3ee6/IpAycVgCLdmfRuqnnQGN32kTTiVynWurV85sV +Q/MILbyKv0pbVwHwx5f+sJOyG3mgTq0CAwEAAaN4MHYwCwYDVR0PBAQDAgXgMB0G +A1UdDgQWBBQKoqYJiCNWgp5gi3kjYcq/1PftqTAfBgNVHSMEGDAWgBToarvCkOps +cCI+9vZIGwPmvremVTAnBgNVHREEIDAepBwwGjEYMBYGA1UEAxMPVXNlciAxMiBS +b290IDExMA0GCSqGSIb3DQEBBQUAA4GBAGQ+tqZeDW+z5/bHH0pIlkz+EzxKe+dG +UVZFZgLkeRp/FaTpW/dMaM/PsHviulc3I8bNunWF6OvVyqJtmnWES3tHOFi8CkvM +LCoN636sNm8LpSa30wsP58wm27sBSFs4SfU+LXXA1hGtPqC2io5/TRAse9cDDd7a +a+AHBpBzH93x +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100E.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100E.pem new file mode 100755 index 000000000000..f91766a0a8f1 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100E.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4110 (0x100e) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 09:53:08 2010 GMT + Not After : Jan 13 09:53:08 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00"\x00U\x00s\x00e\x00r\x00 \x001\x003\x00,\x00 \x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e0:b2:b3:77:34:32:23:3c:45:ce:1f:5f:9a:60: + c5:59:af:2f:bf:73:8e:be:3d:88:8d:97:4f:fe:8a: + 00:b9:71:7f:07:3a:1e:6a:5b:37:8a:ff:58:8f:f1: + b3:e5:0b:9d:35:58:57:6d:da:d1:15:cd:52:7f:e2: + 15:25:16:d4:d6:1e:71:a6:f3:f7:c5:6d:01:64:fc: + 20:d4:4e:6a:f2:f9:b9:2a:36:f8:ae:e6:17:a8:f9: + 8e:7c:bb:75:e5:24:39:ad:4c:18:c8:bb:07:22:cd: + d1:a6:52:93:7f:24:5f:90:dd:0f:64:07:70:42:67: + 39:9b:1f:ea:5e:bb:cd:df:ab + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 75:49:D0:1F:A0:B3:A2:C6:F2:7F:CF:16:A3:4C:4B:DF:D6:4C:07:9D + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 13 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 5d:60:60:06:aa:8a:2d:ee:20:2a:ee:fb:b5:99:8c:ed:d8:67: + 28:30:d8:26:a7:e0:1c:6e:5d:e1:4c:5e:c8:f9:02:e2:2e:c4: + 1e:58:e9:84:bc:d7:79:4e:d5:c5:ea:ba:74:aa:4e:30:9d:2b: + 98:c8:0b:fe:7f:eb:fb:e9:24:5f:f8:17:27:a9:ce:7c:ff:4b: + 88:15:3e:25:18:71:73:bf:b6:bf:c5:51:6b:1d:db:32:1d:ae: + 00:bf:ed:a5:65:99:16:43:8d:d2:6d:27:53:fc:65:9a:91:94: + 7b:44:c8:58:a1:f1:2b:95:86:0b:2d:2d:94:10:6f:5e:be:f8: + 7b:8e +-----BEGIN CERTIFICATE----- +MIIC3zCCAkigAwIBAgICEA4wDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkwOTUz +MDhaFw0zNTAxMTMwOTUzMDhaMIGPMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MT8wPQYDVQQDHjYAIgBVAHMAZQByACAAMQAzACwAIABlAG4AYwBsAG8AcwBp +AG4AZwAgAHEAdQBvAHQAZQBzACIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGB +AOCys3c0MiM8Rc4fX5pgxVmvL79zjr49iI2XT/6KALlxfwc6HmpbN4r/WI/xs+UL +nTVYV23a0RXNUn/iFSUW1NYecabz98VtAWT8INROavL5uSo2+K7mF6j5jny7deUk +Oa1MGMi7ByLN0aZSk38kX5DdD2QHcEJnOZsf6l67zd+rAgMBAAGjeDB2MAsGA1Ud +DwQEAwIF4DAdBgNVHQ4EFgQUdUnQH6Czosbyf88Wo0xL39ZMB50wHwYDVR0jBBgw +FoAU6Gq7wpDqbHAiPvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBoxGDAWBgNVBAMT +D1VzZXIgMTMgUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQBdYGAGqoot7iAq7vu1 +mYzt2GcoMNgmp+Acbl3hTF7I+QLiLsQeWOmEvNd5TtXF6rp0qk4wnSuYyAv+f+v7 +6SRf+Bcnqc58/0uIFT4lGHFzv7a/xVFrHdsyHa4Av+2lZZkWQ43SbSdT/GWakZR7 +RMhYofErlYYLLS2UEG9evvh7jg== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100F.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100F.pem new file mode 100755 index 000000000000..34a9b97c5f60 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/100F.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4111 (0x100f) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 09:55:02 2010 GMT + Not After : Jan 13 09:55:02 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00U\x00s\x00e\x00r\x00 \x001\x004\x00 \x00"\x00,\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:d7:b7:68:39:6e:80:18:83:2e:d7:0a:e5:f1:3f: + 27:80:68:59:a8:05:ac:7f:d9:6e:5d:7f:1c:58:86: + b7:74:b5:51:3d:64:09:4a:a0:ff:e7:10:0e:bc:8a: + f0:d1:54:18:0a:ed:68:0a:a2:33:e5:9f:f0:3d:7f: + 24:9c:46:34:ba:45:8f:05:59:51:2d:fb:32:1d:79: + 51:37:1a:4b:f8:6e:c5:49:c0:49:9e:ef:2b:ae:aa: + 03:fa:ff:55:08:69:85:0d:b4:06:53:ee:20:4e:74: + 6c:ca:b8:98:8d:64:8f:b5:99:a9:06:37:32:ca:ca: + eb:31:16:ce:97:e8:17:0d:9d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + A7:D8:65:FB:E9:A1:F6:A4:16:76:1C:2E:5B:F3:1B:8E:08:B1:1D:7F + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 14 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 35:54:0f:d2:d3:ec:9e:a6:ea:e6:51:69:27:a3:f1:ae:ea:ef: + f9:da:ca:2a:50:f1:9e:2a:7c:74:43:d6:7f:91:ad:5a:5c:e2: + da:f3:cb:27:a2:78:99:75:0b:9e:e9:3a:bd:3e:31:14:6a:06: + b7:3f:59:d1:0a:67:03:a4:32:63:cd:b1:b6:5c:68:bb:bb:e2: + 23:a6:ff:8e:55:e5:92:a6:a8:b3:87:3d:25:21:9c:2a:6f:ab: + 09:ad:f5:e6:e6:d8:37:62:f2:30:ac:51:da:f4:9c:1d:06:f6: + f3:73:2f:6a:3b:7f:53:0d:c0:2e:ad:cc:6e:81:fe:ce:e3:53: + 0e:23 +-----BEGIN CERTIFICATE----- +MIIC1zCCAkCgAwIBAgICEA8wDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkwOTU1 +MDJaFw0zNTAxMTMwOTU1MDJaMIGHMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTcwNQYDVQQDHi4AVQBzAGUAcgAgADEANAAgACIALABtAGkAZABkAGwAZQAg +AHEAdQBvAHQAZQAiMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDXt2g5boAY +gy7XCuXxPyeAaFmoBax/2W5dfxxYhrd0tVE9ZAlKoP/nEA68ivDRVBgK7WgKojPl +n/A9fyScRjS6RY8FWVEt+zIdeVE3Gkv4bsVJwEme7yuuqgP6/1UIaYUNtAZT7iBO +dGzKuJiNZI+1makGNzLKyusxFs6X6BcNnQIDAQABo3gwdjALBgNVHQ8EBAMCBeAw +HQYDVR0OBBYEFKfYZfvpofakFnYcLlvzG44IsR1/MB8GA1UdIwQYMBaAFOhqu8KQ +6mxwIj729kgbA+a+t6ZVMCcGA1UdEQQgMB6kHDAaMRgwFgYDVQQDEw9Vc2VyIDE0 +IFJvb3QgMTEwDQYJKoZIhvcNAQEFBQADgYEANVQP0tPsnqbq5lFpJ6Pxrurv+drK +KlDxnip8dEPWf5GtWlzi2vPLJ6J4mXULnuk6vT4xFGoGtz9Z0QpnA6QyY82xtlxo +u7viI6b/jlXlkqaos4c9JSGcKm+rCa315ubYN2LyMKxR2vScHQb283Mvajt/Uw3A +Lq3MboH+zuNTDiM= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1010.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1010.pem new file mode 100755 index 000000000000..ae0a4174738d --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1010.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4112 (0x1010) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 09:57:52 2010 GMT + Not After : Jan 13 09:57:52 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00\\x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00\ + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:a1:cc:00:2b:07:2b:e7:ac:80:29:cb:40:37:e3: + 1f:a3:c5:13:86:16:63:6b:cc:b8:c1:aa:54:fd:57: + 0f:de:4c:69:2f:e5:5f:f0:a9:bb:25:74:48:ee:36: + 77:6b:08:b5:95:a9:00:aa:15:31:9e:d8:f6:25:53: + 78:9d:bc:2b:8f:7a:19:32:12:8c:13:60:7d:76:1e: + 4e:b1:e4:51:c7:43:c0:e6:ee:d9:61:df:85:90:a0: + 95:3c:a2:81:83:3d:22:f6:8d:42:ee:69:fa:5c:ae: + 1c:b5:52:02:fb:ec:a6:12:2f:bb:fb:6c:a8:61:95: + 08:6c:d2:e5:1e:90:61:a6:27 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 2F:C9:F6:94:E6:1E:91:13:CE:75:A1:17:FD:1D:93:7E:45:CE:4D:67 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 15 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 19:d0:dc:4c:c8:59:f0:7a:14:f2:51:54:e5:9e:5a:b3:27:0b: + d7:36:0f:74:38:07:26:65:1a:b5:94:1a:1f:b2:b7:3d:ee:b1: + 90:05:83:41:6a:98:5f:25:b4:cb:5c:49:12:24:35:d6:97:cf: + 50:2e:0a:17:41:0b:75:e9:6a:a4:fb:bb:c2:cc:c1:94:64:03: + 81:c4:25:d2:3f:3e:8f:d1:29:44:db:a9:3c:7f:0c:2c:6d:48: + 38:cb:8f:56:82:9c:d3:f3:f3:20:1f:45:19:8e:ea:91:9c:c1: + 25:cf:20:1d:bb:70:7e:b9:a0:c5:34:78:93:5f:2b:d9:fd:d5: + de:ad +-----BEGIN CERTIFICATE----- +MIICzDCCAjWgAwIBAgICEBAwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkwOTU3 +NTJaFw0zNTAxMTMwOTU3NTJaMH0xCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxLTArBgNVBAMeJABcAGUAbgBjAGwAbwBzAGkAbgBnACAAcQB1AG8AdABlAHMA +XDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAocwAKwcr56yAKctAN+Mfo8UT +hhZja8y4wapU/VcP3kxpL+Vf8Km7JXRI7jZ3awi1lakAqhUxntj2JVN4nbwrj3oZ +MhKME2B9dh5OseRRx0PA5u7ZYd+FkKCVPKKBgz0i9o1C7mn6XK4ctVIC++ymEi+7 ++2yoYZUIbNLlHpBhpicCAwEAAaN4MHYwCwYDVR0PBAQDAgXgMB0GA1UdDgQWBBQv +yfaU5h6RE851oRf9HZN+Rc5NZzAfBgNVHSMEGDAWgBToarvCkOpscCI+9vZIGwPm +vremVTAnBgNVHREEIDAepBwwGjEYMBYGA1UEAxMPVXNlciAxNSBSb290IDExMA0G +CSqGSIb3DQEBBQUAA4GBABnQ3EzIWfB6FPJRVOWeWrMnC9c2D3Q4ByZlGrWUGh+y +tz3usZAFg0FqmF8ltMtcSRIkNdaXz1AuChdBC3XpaqT7u8LMwZRkA4HEJdI/Po/R +KUTbqTx/DCxtSDjLj1aCnNPz8yAfRRmO6pGcwSXPIB27cH65oMU0eJNfK9n91d6t +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1011.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1011.pem new file mode 100755 index 000000000000..21222706f476 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1011.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4113 (0x1011) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 09:59:22 2010 GMT + Not After : Jan 13 09:59:22 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00\\x00\\x00d\x00o\x00u\x00b\x00l\x00e\x00 \x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00s\x00\\x00\ + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:a4:e3:64:10:9f:0a:e4:35:bb:e3:e1:f0:28:86: + 8a:f2:6e:d3:f8:44:ac:58:7b:f5:dd:1c:71:17:bf: + 3e:14:29:55:f0:5c:c9:ed:36:c0:7f:e7:cc:7c:a3: + c4:9a:13:4f:7d:6c:b3:1e:ab:24:ba:1a:ff:48:96: + 67:a5:ca:e5:75:30:24:70:3a:94:d2:92:db:29:2b: + 69:1f:1d:a4:da:37:91:57:03:79:d7:0a:c7:a9:09: + 14:a8:70:60:b5:a3:62:4f:b8:bf:0a:22:0a:9c:83: + 3a:4d:1a:47:06:97:f1:4a:38:78:95:45:10:9e:44: + 90:fb:6e:13:ba:3a:1b:b7:4b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + A5:32:FD:E7:0D:90:82:17:34:E1:AD:2A:48:5D:78:27:2B:C9:2A:B8 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 16 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 96:ee:46:fc:41:4f:55:0d:bc:46:27:5a:3c:09:7c:17:6c:e3: + 9e:3a:85:eb:3b:e2:f7:a5:ab:b5:ae:aa:44:81:d7:b7:29:39: + b8:20:40:1e:36:da:a8:03:8b:3a:96:c3:2e:ba:cd:81:b9:af: + a0:a5:95:b0:3b:55:c1:85:9d:3d:c2:d0:7b:a4:d0:0e:16:7c: + 26:ba:85:e5:96:f0:f9:cc:28:c4:ed:83:e8:6f:30:a8:22:7a: + 7e:3b:99:d6:b2:3d:a2:90:1e:c9:9b:70:0a:af:04:d9:7c:46: + 52:e2:5a:d3:57:d6:18:a9:e9:55:ee:00:e8:10:a1:84:ed:ca: + 2b:bf +-----BEGIN CERTIFICATE----- +MIIC3zCCAkigAwIBAgICEBEwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkwOTU5 +MjJaFw0zNTAxMTMwOTU5MjJaMIGPMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MT8wPQYDVQQDHjYAXABcAGQAbwB1AGIAbABlACAAZQBuAGMAbABvAHMAaQBu +AGcAIABxAHUAbwB0AGUAcwBcAFwwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGB +AKTjZBCfCuQ1u+Ph8CiGivJu0/hErFh79d0ccRe/PhQpVfBcye02wH/nzHyjxJoT +T31ssx6rJLoa/0iWZ6XK5XUwJHA6lNKS2ykraR8dpNo3kVcDedcKx6kJFKhwYLWj +Yk+4vwoiCpyDOk0aRwaX8Uo4eJVFEJ5EkPtuE7o6G7dLAgMBAAGjeDB2MAsGA1Ud +DwQEAwIF4DAdBgNVHQ4EFgQUpTL95w2Qghc04a0qSF14JyvJKrgwHwYDVR0jBBgw +FoAU6Gq7wpDqbHAiPvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBoxGDAWBgNVBAMT +D1VzZXIgMTYgUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQCW7kb8QU9VDbxGJ1o8 +CXwXbOOeOoXrO+L3pau1rqpEgde3KTm4IEAeNtqoA4s6lsMuus2Bua+gpZWwO1XB +hZ09wtB7pNAOFnwmuoXllvD5zCjE7YPobzCoInp+O5nWsj2ikB7Jm3AKrwTZfEZS +4lrTV9YYqelV7gDoEKGE7corvw== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1012.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1012.pem new file mode 100755 index 000000000000..b75551711c37 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1012.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4114 (0x1012) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:02:07 2010 GMT + Not After : Jan 13 10:02:07 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00\\x00\\x00t\x00w\x00o\x00 \x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00o\x00n\x00e\x00 \x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e9:8c:31:90:52:8d:ef:c6:6a:10:17:7d:37:a3: + ef:00:34:19:dd:a4:1a:f6:cc:37:b0:19:c8:9d:f6: + 9f:f8:3d:15:c9:cf:73:ab:0a:42:f2:54:5b:cc:12: + fb:64:35:54:c9:50:36:18:6c:b6:b0:cf:d6:1e:30: + 0b:0d:fa:f3:25:99:d7:49:20:dd:cc:04:d7:bb:07: + 00:b9:b9:87:8c:75:e5:28:a6:74:a9:b4:96:36:b8: + 15:62:84:0c:7a:a2:f3:07:9c:5c:8f:7a:22:3d:ba: + a4:06:69:f6:ce:d2:36:a0:62:e1:ae:67:aa:23:24: + ac:1d:53:ac:bf:b6:30:74:f7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + C0:28:3E:BA:44:88:99:A0:80:67:AA:3E:B6:D4:12:A7:35:DA:A6:BB + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 17 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 06:5b:fb:65:55:34:ca:2c:1a:c2:2d:2a:97:1b:a1:68:f6:0c: + 13:18:03:44:f9:0d:37:a1:8c:b1:f7:bc:b7:74:a8:aa:c1:e7: + 36:e7:b9:e0:64:79:76:63:98:7b:1d:d8:80:8c:d9:26:61:a8: + e7:07:96:60:e9:8a:24:78:cb:9c:f3:35:15:c9:d9:0c:2e:68: + 68:48:9c:df:6b:56:3f:aa:47:34:36:b0:ef:0e:d2:e0:ee:a9: + a9:6a:27:93:60:27:5f:42:76:9c:e0:aa:74:6c:b9:aa:de:fe: + 86:98:5a:3d:73:c5:15:38:c8:ff:09:8e:ed:da:06:74:fb:67: + 92:51 +-----BEGIN CERTIFICATE----- +MIIC6TCCAlKgAwIBAgICEBIwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDAy +MDdaFw0zNTAxMTMxMDAyMDdaMIGZMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MUkwRwYDVQQDHkAAXABcAHQAdwBvACAAcwB0AGEAcgB0AGkAbgBnACAAbwBu +AGUAIABlAG4AZABpAG4AZwAgAHEAdQBvAHQAZQBcMIGfMA0GCSqGSIb3DQEBAQUA +A4GNADCBiQKBgQDpjDGQUo3vxmoQF303o+8ANBndpBr2zDewGcid9p/4PRXJz3Or +CkLyVFvMEvtkNVTJUDYYbLawz9YeMAsN+vMlmddJIN3MBNe7BwC5uYeMdeUopnSp +tJY2uBVihAx6ovMHnFyPeiI9uqQGafbO0jagYuGuZ6ojJKwdU6y/tjB09wIDAQAB +o3gwdjALBgNVHQ8EBAMCBeAwHQYDVR0OBBYEFMAoPrpEiJmggGeqPrbUEqc12qa7 +MB8GA1UdIwQYMBaAFOhqu8KQ6mxwIj729kgbA+a+t6ZVMCcGA1UdEQQgMB6kHDAa +MRgwFgYDVQQDEw9Vc2VyIDE3IFJvb3QgMTEwDQYJKoZIhvcNAQEFBQADgYEABlv7 +ZVU0yiwawi0qlxuhaPYMExgDRPkNN6GMsfe8t3SoqsHnNue54GR5dmOYex3YgIzZ +JmGo5weWYOmKJHjLnPM1FcnZDC5oaEic32tWP6pHNDaw7w7S4O6pqWonk2AnX0J2 +nOCqdGy5qt7+hphaPXPFFTjI/wmO7doGdPtnklE= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1013.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1013.pem new file mode 100755 index 000000000000..2b48a29b0efb --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1013.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4115 (0x1013) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:04:36 2010 GMT + Not After : Jan 13 10:04:36 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00\\x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:bb:73:a4:4e:45:8e:80:b1:65:b6:d8:3b:96:c8: + 3b:c4:2e:40:98:2a:a9:0d:2e:75:29:df:dd:28:8f: + dc:65:4e:2f:8b:24:55:f4:5b:95:5e:d8:29:c8:31: + aa:53:41:a6:1b:2a:cc:8d:67:b6:d8:5f:56:7d:bd: + 0e:17:88:9b:28:b8:fc:54:ff:0e:1f:d9:59:f7:6f: + 99:46:76:86:69:87:f7:07:51:f6:1a:76:91:37:40: + 96:de:5a:0e:c1:20:7f:b5:1b:79:c2:63:13:50:dc: + f0:35:11:2c:4a:30:e0:68:8f:dc:51:4c:2b:61:ba: + a5:e6:ad:72:8b:c4:e1:2d:73 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 31:AE:51:BD:37:3E:EB:D6:98:7D:BD:DF:45:0C:92:4E:73:58:35:AA + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 18 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 51:34:24:4b:78:89:95:5d:43:15:3e:62:fc:40:a0:34:a5:6e: + 83:b5:ee:f0:93:ae:8a:27:97:9c:66:54:c9:aa:f5:9b:96:88: + 43:25:76:b6:0d:06:36:6c:0e:08:5f:15:45:c6:cc:d1:62:18: + 6b:fa:cd:af:53:7c:7c:97:30:13:a7:03:ac:db:04:25:bb:22: + 7d:49:70:30:69:9f:c8:22:94:32:40:83:d3:d1:9d:1c:2a:64: + cf:a9:42:0c:ce:0c:b8:3d:63:33:bb:e1:85:45:a7:79:89:ac: + 0c:1b:b5:a4:e0:1d:4d:99:d6:68:9b:c2:67:97:9c:9d:2c:57: + 12:fe +-----BEGIN CERTIFICATE----- +MIICxjCCAi+gAwIBAgICEBMwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDA0 +MzZaFw0zNTAxMTMxMDA0MzZaMHcxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxJzAlBgNVBAMeHgBcAHMAdABhAHIAdABpAG4AZwAgAHEAdQBvAHQAZTCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAu3OkTkWOgLFlttg7lsg7xC5AmCqpDS51 +Kd/dKI/cZU4viyRV9FuVXtgpyDGqU0GmGyrMjWe22F9Wfb0OF4ibKLj8VP8OH9lZ +92+ZRnaGaYf3B1H2GnaRN0CW3loOwSB/tRt5wmMTUNzwNREsSjDgaI/cUUwrYbql +5q1yi8ThLXMCAwEAAaN4MHYwCwYDVR0PBAQDAgXgMB0GA1UdDgQWBBQxrlG9Nz7r +1ph9vd9FDJJOc1g1qjAfBgNVHSMEGDAWgBToarvCkOpscCI+9vZIGwPmvremVTAn +BgNVHREEIDAepBwwGjEYMBYGA1UEAxMPVXNlciAxOCBSb290IDExMA0GCSqGSIb3 +DQEBBQUAA4GBAFE0JEt4iZVdQxU+YvxAoDSlboO17vCTroonl5xmVMmq9ZuWiEMl +drYNBjZsDghfFUXGzNFiGGv6za9TfHyXMBOnA6zbBCW7In1JcDBpn8gilDJAg9PR +nRwqZM+pQgzODLg9YzO74YVFp3mJrAwbtaTgHU2Z1mibwmeXnJ0sVxL+ +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1014.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1014.pem new file mode 100755 index 000000000000..a2027e9d8a43 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1014.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4116 (0x1014) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:05:50 2010 GMT + Not After : Jan 13 10:05:50 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ca:cc:98:77:0c:10:dd:0e:87:a2:da:b6:e6:97: + 91:36:71:54:de:2b:f8:de:18:b7:23:eb:e5:e3:57: + ae:cf:0b:6d:86:0f:63:f0:c4:4e:2a:66:48:33:c4: + e3:0b:2c:f5:e6:e5:e5:0f:f8:e0:a1:bc:11:06:a1: + 19:16:ec:44:77:a6:db:7d:d6:78:29:1f:57:f1:9d: + 3c:b4:3a:2b:3b:94:64:6d:e3:ce:b3:fa:d8:28:e2: + ed:76:9a:97:41:64:7c:0d:48:b8:1d:6a:56:e3:f9: + 4c:88:e9:1a:3c:b8:af:7a:13:67:19:59:36:46:79: + 52:72:ea:51:80:65:be:e2:0f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + D2:D8:8D:EE:39:D7:EA:15:23:00:7C:9D:48:1C:51:17:F8:80:86:CE + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 19 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 6e:05:c4:48:32:4a:62:6f:a3:8c:23:af:47:dd:d4:c7:c1:91: + 17:7e:cd:36:73:39:a3:7b:c9:ae:da:f6:e1:bd:82:d6:72:17: + 78:20:a2:27:ad:f5:d2:3f:10:66:e0:d8:ba:10:00:c3:76:5b: + de:36:cb:2a:91:25:89:08:0e:2a:6a:81:d0:a7:49:70:42:f3: + 94:a3:bf:6c:6b:b9:fa:fd:f9:d4:1f:6f:75:27:b9:0d:d3:d2: + fd:5d:0d:dc:f5:34:29:a2:3a:2f:04:ab:48:41:6d:d7:2b:fd: + 42:02:99:3c:cf:aa:6b:98:66:17:83:39:4a:6f:47:36:ad:db: + 22:6e +-----BEGIN CERTIFICATE----- +MIICwjCCAiugAwIBAgICEBQwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDA1 +NTBaFw0zNTAxMTMxMDA1NTBaMHMxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxIzAhBgNVBAMeGgBlAG4AZABpAG4AZwAgAHEAdQBvAHQAZQBcMIGfMA0GCSqG +SIb3DQEBAQUAA4GNADCBiQKBgQDKzJh3DBDdDoei2rbml5E2cVTeK/jeGLcj6+Xj +V67PC22GD2PwxE4qZkgzxOMLLPXm5eUP+OChvBEGoRkW7ER3ptt91ngpH1fxnTy0 +Ois7lGRt486z+tgo4u12mpdBZHwNSLgdalbj+UyI6Ro8uK96E2cZWTZGeVJy6lGA +Zb7iDwIDAQABo3gwdjALBgNVHQ8EBAMCBeAwHQYDVR0OBBYEFNLYje451+oVIwB8 +nUgcURf4gIbOMB8GA1UdIwQYMBaAFOhqu8KQ6mxwIj729kgbA+a+t6ZVMCcGA1Ud +EQQgMB6kHDAaMRgwFgYDVQQDEw9Vc2VyIDE5IFJvb3QgMTEwDQYJKoZIhvcNAQEF +BQADgYEAbgXESDJKYm+jjCOvR93Ux8GRF37NNnM5o3vJrtr24b2C1nIXeCCiJ631 +0j8QZuDYuhAAw3Zb3jbLKpEliQgOKmqB0KdJcELzlKO/bGu5+v351B9vdSe5DdPS +/V0N3PU0KaI6LwSrSEFt1yv9QgKZPM+qa5hmF4M5Sm9HNq3bIm4= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1015.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1015.pem new file mode 100755 index 000000000000..d9d3f941e628 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1015.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4117 (0x1015) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:07:07 2010 GMT + Not After : Jan 13 10:07:07 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00\\x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:f0:7c:07:f6:13:52:ce:13:cf:8a:5f:7f:5f:3c: + d4:93:c8:a0:43:1f:e2:fc:3f:62:63:be:b5:17:e0: + 32:b0:d0:c2:9a:35:9e:3b:29:30:b4:13:78:18:ae: + 80:ba:fb:f3:fc:81:ad:aa:47:18:eb:fc:d1:76:de: + b6:cf:55:65:5e:3e:15:93:8e:9c:39:4e:a3:ae:1d: + c0:49:22:dc:25:09:33:95:0d:b5:62:7c:96:0b:05: + b6:10:ae:ee:f8:18:24:9f:d4:ed:b3:4c:a9:4d:f2: + be:6c:66:37:b9:17:cb:14:df:52:b4:a8:de:63:0d: + 4f:78:58:16:ab:f2:3f:f6:a9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 41:CC:3D:88:34:10:21:13:A2:34:24:B6:4E:F9:33:3C:B3:FA:56:BC + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 20 Root 11 + Signature Algorithm: sha1WithRSAEncryption + a7:17:c3:92:37:10:ee:9a:12:65:32:82:56:93:82:fa:0e:40: + 9f:ae:30:6a:b1:6f:85:18:7f:ff:9c:30:49:b7:56:bf:a3:86: + d7:dd:5d:79:d1:7f:9a:95:b6:bd:1d:43:cc:2c:aa:7a:40:c4: + de:17:02:22:74:ec:a9:cd:8d:93:f6:6c:98:7e:bb:6a:68:70: + 66:d4:a0:8f:1a:7a:8e:9e:38:35:aa:87:6a:e5:db:80:69:51: + 51:68:46:4f:3d:da:17:df:6f:22:60:77:95:55:d3:12:1b:11: + c1:6f:c1:96:78:00:47:61:af:53:c0:37:44:6b:92:67:7f:14: + 79:80 +-----BEGIN CERTIFICATE----- +MIICwjCCAiugAwIBAgICEBUwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDA3 +MDdaFw0zNTAxMTMxMDA3MDdaMHMxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxIzAhBgNVBAMeGgBtAGkAZABkAGwAZQAgAFwAcQB1AG8AdABlMIGfMA0GCSqG +SIb3DQEBAQUAA4GNADCBiQKBgQDwfAf2E1LOE8+KX39fPNSTyKBDH+L8P2JjvrUX +4DKw0MKaNZ47KTC0E3gYroC6+/P8ga2qRxjr/NF23rbPVWVePhWTjpw5TqOuHcBJ +ItwlCTOVDbVifJYLBbYQru74GCSf1O2zTKlN8r5sZje5F8sU31K0qN5jDU94WBar +8j/2qQIDAQABo3gwdjALBgNVHQ8EBAMCBeAwHQYDVR0OBBYEFEHMPYg0ECETojQk +tk75Mzyz+la8MB8GA1UdIwQYMBaAFOhqu8KQ6mxwIj729kgbA+a+t6ZVMCcGA1Ud +EQQgMB6kHDAaMRgwFgYDVQQDEw9Vc2VyIDIwIFJvb3QgMTEwDQYJKoZIhvcNAQEF +BQADgYEApxfDkjcQ7poSZTKCVpOC+g5An64warFvhRh//5wwSbdWv6OG191dedF/ +mpW2vR1DzCyqekDE3hcCInTsqc2Nk/ZsmH67amhwZtSgjxp6jp44NaqHauXbgGlR +UWhGTz3aF99vImB3lVXTEhsRwW/BlngAR2GvU8A3RGuSZ38UeYA= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1016.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1016.pem new file mode 100755 index 000000000000..9f4e006f02eb --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1016.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4118 (0x1016) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:09:50 2010 GMT + Not After : Jan 13 10:09:50 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00d\x00o\x00u\x00b\x00l\x00e\x00 \x00\\x00\\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:cd:22:93:9a:93:18:34:2f:50:e0:cc:23:f4:60: + bc:96:60:d5:a5:f9:da:45:9a:5b:a3:0a:fb:71:25: + 4c:bd:60:84:19:f5:93:28:c1:5d:b9:8d:05:05:4d: + 01:85:aa:9e:5b:08:9c:01:f8:32:90:fe:ef:7f:eb: + cb:b3:8b:b2:c8:d1:79:d6:47:a3:d8:df:f1:d0:56: + 04:04:bd:41:72:fc:98:75:10:d2:9b:b5:bc:55:a1: + fa:19:01:67:93:09:48:0a:67:ec:4d:12:47:37:6f: + c2:53:0e:c9:7a:30:ec:1d:9d:a5:e2:64:d8:92:4d: + ed:ec:b2:bb:10:96:76:28:47 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + DC:FF:9A:2B:49:51:1E:FB:A7:3A:90:94:1B:E0:3E:34:89:13:48:EE + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 21 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 16:aa:a6:b7:0e:e3:d2:ba:7e:9b:59:f6:cc:ce:5d:4d:2a:f2: + 95:60:46:24:dd:ea:e8:08:e6:60:9c:33:82:8c:34:a2:d8:38: + fb:75:fe:31:79:10:78:7d:93:44:3b:00:90:83:a4:15:52:8d: + 3a:b4:9c:c0:6f:95:2c:4f:d8:b3:3b:cf:69:ab:3c:41:3a:43: + 1b:0a:8b:b0:b4:aa:8b:bf:6f:96:e2:65:4a:00:3a:49:bc:9a: + a1:cd:13:b1:24:93:f6:44:cd:d3:71:91:da:4f:dd:75:3d:68: + 5c:6b:49:14:8a:23:b5:b6:4f:b6:41:d0:a7:16:7c:67:4c:b3: + 0a:88 +-----BEGIN CERTIFICATE----- +MIIC0zCCAjygAwIBAgICEBYwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDA5 +NTBaFw0zNTAxMTMxMDA5NTBaMIGDMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTMwMQYDVQQDHioAZABvAHUAYgBsAGUAIABcAFwAbQBpAGQAZABsAGUAIABx +AHUAbwB0AGUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM0ik5qTGDQvUODM +I/RgvJZg1aX52kWaW6MK+3ElTL1ghBn1kyjBXbmNBQVNAYWqnlsInAH4MpD+73/r +y7OLssjRedZHo9jf8dBWBAS9QXL8mHUQ0pu1vFWh+hkBZ5MJSApn7E0SRzdvwlMO +yXow7B2dpeJk2JJN7eyyuxCWdihHAgMBAAGjeDB2MAsGA1UdDwQEAwIF4DAdBgNV +HQ4EFgQU3P+aK0lRHvunOpCUG+A+NIkTSO4wHwYDVR0jBBgwFoAU6Gq7wpDqbHAi +Pvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBoxGDAWBgNVBAMTD1VzZXIgMjEgUm9v +dCAxMTANBgkqhkiG9w0BAQUFAAOBgQAWqqa3DuPSun6bWfbMzl1NKvKVYEYk3ero +COZgnDOCjDSi2Dj7df4xeRB4fZNEOwCQg6QVUo06tJzAb5UsT9izO89pqzxBOkMb +CouwtKqLv2+W4mVKADpJvJqhzROxJJP2RM3TcZHaT911PWhca0kUiiO1tk+2QdCn +FnxnTLMKiA== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1017.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1017.pem new file mode 100755 index 000000000000..7bb12fa78903 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1017.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4119 (0x1017) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:11:53 2010 GMT + Not After : Jan 13 10:11:53 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00p\x00a\x00r\x00t\x00i\x00a\x00l\x00l\x00y\x00 \x00\\x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e7:c9:bb:89:11:2f:2c:39:bc:d3:f5:d9:86:d4: + 8e:d7:20:11:81:75:30:25:7e:2b:29:70:61:83:38: + 24:d1:0f:cc:0b:88:71:29:06:05:a5:53:d2:00:2f: + 12:0c:7d:42:e6:47:33:de:cc:f8:7b:2a:5d:d9:cb: + 69:24:91:38:bf:0c:1a:12:cf:1e:f9:44:c2:1c:e8: + 6f:ea:ab:8b:92:4c:93:8c:69:61:b9:57:b3:1d:d0: + 03:3e:13:9d:30:bd:b2:b9:d9:c7:9b:4d:18:45:b0: + 19:19:15:58:4c:bd:5a:a1:59:4f:f0:1f:99:26:3b: + 4e:76:c6:bb:21:3c:94:bc:d9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 43:E4:70:39:E3:91:80:2A:C3:BC:1A:F4:A3:51:4B:99:C5:20:93:A6 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 22 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 28:ce:8c:f0:bf:56:c6:a4:02:df:dd:1d:75:dc:cf:62:a0:92: + 58:64:91:8c:bb:96:3c:52:d5:66:6c:31:7e:1c:d9:a8:e5:1c: + a6:9f:5e:26:3f:69:71:c6:d7:5d:02:4f:a7:42:a5:85:fa:38: + 01:43:36:54:75:4c:51:a2:99:5d:72:05:9a:9b:fc:5e:83:9b: + a0:ef:11:b1:a4:dd:a5:50:2f:d0:14:dd:04:0f:8b:93:7e:4b: + 3e:24:04:45:d0:98:46:49:74:9f:d7:b4:68:09:dc:b6:ac:35: + 3f:5d:f9:ee:77:a4:35:46:75:a4:6a:d6:c1:53:4f:d2:0c:38: + 3c:df +-----BEGIN CERTIFICATE----- +MIIC3zCCAkigAwIBAgICEBcwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDEx +NTNaFw0zNTAxMTMxMDExNTNaMIGPMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MT8wPQYDVQQDHjYAcABhAHIAdABpAGEAbABsAHkAIABcAGUAbgBjAGwAbwBz +AGkAbgBnACAAcQB1AG8AdABlAFwwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGB +AOfJu4kRLyw5vNP12YbUjtcgEYF1MCV+KylwYYM4JNEPzAuIcSkGBaVT0gAvEgx9 +QuZHM97M+HsqXdnLaSSROL8MGhLPHvlEwhzob+qri5JMk4xpYblXsx3QAz4TnTC9 +srnZx5tNGEWwGRkVWEy9WqFZT/AfmSY7TnbGuyE8lLzZAgMBAAGjeDB2MAsGA1Ud +DwQEAwIF4DAdBgNVHQ4EFgQUQ+RwOeORgCrDvBr0o1FLmcUgk6YwHwYDVR0jBBgw +FoAU6Gq7wpDqbHAiPvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBoxGDAWBgNVBAMT +D1VzZXIgMjIgUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQAozozwv1bGpALf3R11 +3M9ioJJYZJGMu5Y8UtVmbDF+HNmo5Rymn14mP2lxxtddAk+nQqWF+jgBQzZUdUxR +opldcgWam/xeg5ug7xGxpN2lUC/QFN0ED4uTfks+JARF0JhGSXSf17RoCdy2rDU/ +Xfnud6Q1RnWkatbBU0/SDDg83w== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1018.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1018.pem new file mode 100755 index 000000000000..d134dc5f3ea5 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1018.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4120 (0x1018) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:13:38 2010 GMT + Not After : Jan 13 10:13:38 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00\\x00U\x00s\x00e\x00r\x00 \x002\x003\x00,\x00 \x00s\x00t\x00a\x00r\x00t\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:b9:e3:64:f8:02:be:98:47:de:c6:f4:22:14:4f: + 22:fe:17:8c:14:7f:b8:27:44:51:9d:5a:79:33:b4: + d0:21:27:b0:ed:f9:9f:3d:54:ef:ba:3a:d8:89:2a: + ca:a8:8f:f3:f6:a7:6b:5f:0a:58:2d:a0:e3:05:3a: + 26:a6:1e:b6:89:a1:e1:71:11:e7:16:93:29:69:f8: + 14:a2:e3:d7:4e:e5:60:40:d7:40:c5:37:d6:95:7c: + 4f:35:fd:a8:82:7f:90:32:1d:99:e7:8a:b9:93:a4: + f3:23:0a:a5:f9:56:31:73:d8:e3:cb:d6:0e:2f:2b: + ee:8e:b5:ca:eb:63:82:1c:0b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 80:A8:F7:13:E3:E8:F8:A6:60:94:21:C1:FE:54:54:89:AC:4B:DF:45 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 23 Root 11 + Signature Algorithm: sha1WithRSAEncryption + be:31:bd:4a:56:80:64:f0:1e:ea:77:4a:f3:e3:ec:f0:ad:27: + cc:05:01:fa:d2:12:7c:8e:85:5b:37:54:9c:4f:96:2d:1c:81: + e4:21:3d:4b:d9:86:1a:6c:29:5e:88:f2:ae:04:f1:70:87:25: + b9:9a:4a:ef:dd:21:f9:17:33:ee:a1:eb:38:fb:c4:73:72:70: + 0c:67:58:96:95:8c:2c:5a:4a:31:28:50:52:64:65:5c:63:60: + de:24:df:a0:e9:0d:c0:b6:d6:4c:51:a7:5a:e8:dd:f6:ff:49: + e6:6f:7f:86:38:5d:c7:f9:eb:55:f1:b2:89:3b:cd:41:f7:5d: + a8:b0 +-----BEGIN CERTIFICATE----- +MIIC2TCCAkKgAwIBAgICEBgwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDEz +MzhaFw0zNTAxMTMxMDEzMzhaMIGJMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTkwNwYDVQQDHjAAXABVAHMAZQByACAAMgAzACwAIABzAHQAYQByAHQAaQBu +AGcAIABxAHUAbwB0AGUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALnjZPgC +vphH3sb0IhRPIv4XjBR/uCdEUZ1aeTO00CEnsO35nz1U77o62IkqyqiP8/ana18K +WC2g4wU6JqYetomh4XER5xaTKWn4FKLj107lYEDXQMU31pV8TzX9qIJ/kDIdmeeK +uZOk8yMKpflWMXPY48vWDi8r7o61yutjghwLAgMBAAGjeDB2MAsGA1UdDwQEAwIF +4DAdBgNVHQ4EFgQUgKj3E+Po+KZglCHB/lRUiaxL30UwHwYDVR0jBBgwFoAU6Gq7 +wpDqbHAiPvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBoxGDAWBgNVBAMTD1VzZXIg +MjMgUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQC+Mb1KVoBk8B7qd0rz4+zwrSfM +BQH60hJ8joVbN1ScT5YtHIHkIT1L2YYabCleiPKuBPFwhyW5mkrv3SH5FzPuoes4 ++8RzcnAMZ1iWlYwsWkoxKFBSZGVcY2DeJN+g6Q3AttZMUada6N32/0nmb3+GOF3H ++etV8bKJO81B912osA== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1019.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1019.pem new file mode 100755 index 000000000000..66c3f15bfdbf --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1019.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4121 (0x1019) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:14:50 2010 GMT + Not After : Jan 13 10:14:50 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00U\x00s\x00e\x00r\x00 \x002\x004\x00,\x00 \x00e\x00n\x00d\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:9c:cd:78:e7:11:1d:61:d4:0c:c6:87:c9:28:47: + 84:23:6b:86:c3:38:37:62:5a:9a:4b:50:fc:b7:f3: + d9:4b:1b:20:ff:06:42:bb:22:33:c5:22:12:2c:bb: + e6:c8:08:69:0e:af:e9:22:45:9f:ef:2c:26:46:d7: + 1b:36:db:70:58:32:bc:3d:d7:7d:64:27:44:54:6c: + 89:12:88:d7:31:3d:3f:5c:96:cb:69:9f:b1:a9:e0: + 9a:de:50:b7:ad:d8:29:bf:bc:3c:21:e9:a2:79:21: + 46:81:ea:90:df:44:0c:6c:bb:f8:47:c8:e9:79:d1: + 8d:40:1b:5d:d3:75:9b:e4:0b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 81:14:09:35:7F:F6:7A:83:6B:19:C2:22:24:92:E6:D4:EF:52:1C:0B + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 24 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 7c:65:0b:e2:cd:ca:00:e8:40:0f:37:70:a1:89:54:5d:03:06: + 2c:60:56:dc:2f:b7:01:ac:75:58:f6:82:8f:91:63:e2:91:d1: + 17:7b:bd:63:b9:9c:4e:46:86:3e:a6:f5:a6:56:ac:90:2a:f4: + d8:a0:6c:02:15:6e:d9:f6:2a:f8:9a:c4:48:bd:cd:54:82:55: + c6:d5:52:76:09:e3:3d:17:8d:5c:46:16:ae:9e:56:df:9f:c3: + 05:15:6f:ae:d0:b5:76:67:48:2d:5a:3c:59:da:1b:13:c3:84: + 5e:2a:57:8d:86:9a:f1:8a:5d:01:47:93:44:62:af:65:03:e1: + df:10 +-----BEGIN CERTIFICATE----- +MIIC1TCCAj6gAwIBAgICEBkwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDE0 +NTBaFw0zNTAxMTMxMDE0NTBaMIGFMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTUwMwYDVQQDHiwAVQBzAGUAcgAgADIANAAsACAAZQBuAGQAaQBuAGcAIABx +AHUAbwB0AGUAXDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAnM145xEdYdQM +xofJKEeEI2uGwzg3YlqaS1D8t/PZSxsg/wZCuyIzxSISLLvmyAhpDq/pIkWf7ywm +RtcbNttwWDK8Pdd9ZCdEVGyJEojXMT0/XJbLaZ+xqeCa3lC3rdgpv7w8IemieSFG +geqQ30QMbLv4R8jpedGNQBtd03Wb5AsCAwEAAaN4MHYwCwYDVR0PBAQDAgXgMB0G +A1UdDgQWBBSBFAk1f/Z6g2sZwiIkkubU71IcCzAfBgNVHSMEGDAWgBToarvCkOps +cCI+9vZIGwPmvremVTAnBgNVHREEIDAepBwwGjEYMBYGA1UEAxMPVXNlciAyNCBS +b290IDExMA0GCSqGSIb3DQEBBQUAA4GBAHxlC+LNygDoQA83cKGJVF0DBixgVtwv +twGsdVj2go+RY+KR0Rd7vWO5nE5Ghj6m9aZWrJAq9NigbAIVbtn2KviaxEi9zVSC +VcbVUnYJ4z0XjVxGFq6eVt+fwwUVb67QtXZnSC1aPFnaGxPDhF4qV42GmvGKXQFH +k0Rir2UD4d8Q +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101A.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101A.pem new file mode 100755 index 000000000000..ba352d83d135 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101A.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4122 (0x101a) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:16:10 2010 GMT + Not After : Jan 13 10:16:10 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00\\x00U\x00s\x00e\x00r\x00 \x002\x005\x00,\x00 \x00e\x00n\x00c\x00l\x00o\x00s\x00i\x00n\x00g\x00 \x00q\x00u\x00o\x00t\x00e\x00\ + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ad:20:4a:85:d2:a8:2a:f8:0e:4c:b5:2d:72:a5: + 1d:0e:b1:8a:76:2c:b0:bf:7a:48:b8:57:29:cb:40: + c5:8a:e8:0e:d3:f6:f9:b1:90:a6:4a:bb:82:45:fd: + c2:ff:03:fa:fc:4a:5d:93:0b:52:a2:17:10:b1:7e: + 13:1d:9d:28:26:e3:44:bd:fd:26:da:b2:7b:47:e1: + c4:35:ea:53:1b:94:76:cc:f2:f6:c1:86:f2:18:46: + e1:71:c0:5d:e5:8f:0a:10:7a:ea:61:af:d0:ba:28: + 22:13:77:0f:7d:9e:e0:0a:f0:92:ce:dd:b3:5d:a6: + df:c1:eb:a8:29:57:e6:71:65 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + C3:EE:4A:7E:AC:46:2D:BA:42:F7:33:1F:E7:49:FA:21:D3:BC:DD:49 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 25 Root 11 + Signature Algorithm: sha1WithRSAEncryption + bf:63:34:12:e3:4b:83:4e:e5:c5:08:c3:b3:ea:be:38:33:38: + 3c:99:c3:ca:08:84:05:d4:21:53:7a:7d:43:86:c2:63:e2:d3: + 7c:21:3c:72:fa:c6:f3:bf:2b:10:5e:ca:4b:2c:2c:1c:e3:10: + eb:7c:ff:b1:20:b2:47:1b:b3:3e:77:b6:74:fb:83:85:ac:b8: + c9:5b:ca:8a:14:2f:e4:81:6e:04:6f:c8:37:c0:9f:c0:41:0f: + b4:6e:21:82:69:51:e8:68:09:72:c4:8c:72:db:47:0b:a5:52: + d7:e7:b3:5d:10:9c:ed:14:af:1c:fd:0b:11:a3:fd:f9:b9:2d: + 48:b5 +-----BEGIN CERTIFICATE----- +MIIC3TCCAkagAwIBAgICEBowDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDE2 +MTBaFw0zNTAxMTMxMDE2MTBaMIGNMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MT0wOwYDVQQDHjQAXABVAHMAZQByACAAMgA1ACwAIABlAG4AYwBsAG8AcwBp +AG4AZwAgAHEAdQBvAHQAZQBcMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCt +IEqF0qgq+A5MtS1ypR0OsYp2LLC/eki4VynLQMWK6A7T9vmxkKZKu4JF/cL/A/r8 +Sl2TC1KiFxCxfhMdnSgm40S9/SbasntH4cQ16lMblHbM8vbBhvIYRuFxwF3ljwoQ +euphr9C6KCITdw99nuAK8JLO3bNdpt/B66gpV+ZxZQIDAQABo3gwdjALBgNVHQ8E +BAMCBeAwHQYDVR0OBBYEFMPuSn6sRi26QvczH+dJ+iHTvN1JMB8GA1UdIwQYMBaA +FOhqu8KQ6mxwIj729kgbA+a+t6ZVMCcGA1UdEQQgMB6kHDAaMRgwFgYDVQQDEw9V +c2VyIDI1IFJvb3QgMTEwDQYJKoZIhvcNAQEFBQADgYEAv2M0EuNLg07lxQjDs+q+ +ODM4PJnDygiEBdQhU3p9Q4bCY+LTfCE8cvrG878rEF7KSywsHOMQ63z/sSCyRxuz +Pne2dPuDhay4yVvKihQv5IFuBG/IN8CfwEEPtG4hgmlR6GgJcsSMcttHC6VS1+ez +XRCc7RSvHP0LEaP9+bktSLU= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101B.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101B.pem new file mode 100755 index 000000000000..4c03562a8ea9 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101B.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4123 (0x101b) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:17:45 2010 GMT + Not After : Jan 13 10:17:45 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00U\x00s\x00e\x00r\x00 \x002\x006\x00\\x00,\x00 \x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ec:4c:2b:ba:b1:e5:ba:83:e8:64:6c:67:fe:f9: + 84:9a:71:68:0b:10:b0:2e:2c:21:d8:6d:c8:cc:de: + 82:76:15:b8:74:a0:4b:3c:39:f0:ee:3a:08:6c:0e: + 0c:36:51:ed:44:04:ca:2b:76:30:6f:85:d4:f6:f0: + 7e:53:2b:17:90:6a:7b:79:e0:c2:00:f2:5f:dd:19: + 8f:09:7a:a2:c8:85:95:24:e0:41:39:ec:75:e1:c7: + 03:ba:6d:e9:81:48:8b:36:38:e0:99:3e:58:04:e3: + 03:8d:e4:3b:95:98:0a:23:96:f1:96:50:06:5d:71: + 6f:02:e1:c5:cd:e0:5c:c4:7b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 1D:A3:64:F0:93:51:C2:F2:1A:BB:D0:2D:20:95:5E:19:94:4C:72:BB + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 26 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 8c:c1:56:7d:d9:a8:f7:af:4b:57:4a:a5:2a:32:11:12:e0:d8: + 0e:10:39:8f:17:53:25:f5:c6:57:55:e4:f0:16:f2:11:cc:af: + cc:44:6b:23:6f:8e:2a:df:ee:ff:f0:d4:3f:0a:85:7e:19:de: + f8:cf:69:be:8b:59:ad:3c:be:3c:d7:32:ac:ba:82:91:28:23: + 71:ba:b5:29:05:e4:98:ee:2b:bb:56:04:7f:8b:69:c5:f9:4c: + 1b:0b:2e:3a:46:41:8e:da:16:68:9f:c7:57:71:8e:97:0d:b0: + a1:92:ae:7c:75:46:ef:b4:6d:8e:e7:53:07:23:a4:e1:e0:f0: + e7:3b +-----BEGIN CERTIFICATE----- +MIIC1TCCAj6gAwIBAgICEBswDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDE3 +NDVaFw0zNTAxMTMxMDE3NDVaMIGFMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTUwMwYDVQQDHiwAVQBzAGUAcgAgADIANgBcACwAIABtAGkAZABkAGwAZQAg +AHEAdQBvAHQAZTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA7EwrurHluoPo +ZGxn/vmEmnFoCxCwLiwh2G3IzN6CdhW4dKBLPDnw7joIbA4MNlHtRATKK3Ywb4XU +9vB+UysXkGp7eeDCAPJf3RmPCXqiyIWVJOBBOex14ccDum3pgUiLNjjgmT5YBOMD +jeQ7lZgKI5bxllAGXXFvAuHFzeBcxHsCAwEAAaN4MHYwCwYDVR0PBAQDAgXgMB0G +A1UdDgQWBBQdo2Twk1HC8hq70C0glV4ZlExyuzAfBgNVHSMEGDAWgBToarvCkOps +cCI+9vZIGwPmvremVTAnBgNVHREEIDAepBwwGjEYMBYGA1UEAxMPVXNlciAyNiBS +b290IDExMA0GCSqGSIb3DQEBBQUAA4GBAIzBVn3ZqPevS1dKpSoyERLg2A4QOY8X +UyX1xldV5PAW8hHMr8xEayNvjirf7v/w1D8KhX4Z3vjPab6LWa08vjzXMqy6gpEo +I3G6tSkF5JjuK7tWBH+LacX5TBsLLjpGQY7aFmifx1dxjpcNsKGSrnx1Ru+0bY7n +UwcjpOHg8Oc7 +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101C.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101C.pem new file mode 100755 index 000000000000..c403402f3dd4 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101C.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4124 (0x101c) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:19:13 2010 GMT + Not After : Jan 13 10:19:13 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=comma, comma, comma , + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:af:2e:02:1a:b8:ed:7e:6e:27:2f:6e:ca:dc:57: + 11:17:88:37:38:37:26:d0:fb:d0:ee:ad:f3:a8:ad: + f5:8a:53:04:6a:82:a7:31:b5:e6:ce:88:24:fa:22: + 75:84:1b:a8:8c:fd:7f:63:0c:fc:13:41:82:60:a3: + 19:33:3d:d3:18:6e:09:c5:c7:e7:e9:9e:49:dd:f4: + 77:ef:f1:06:91:9a:c5:57:68:e5:0f:59:19:8d:53: + ff:cb:ae:11:33:48:5c:eb:72:e8:2f:67:ae:94:42: + d3:5b:2e:31:e3:6f:a7:5e:5e:9c:ea:2c:d2:c3:af: + 66:10:34:32:e5:2d:3f:55:c1 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + A1:FB:82:9C:27:AD:83:67:5E:8C:CC:A2:BA:32:3C:30:26:74:F4:CE + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 27 Root 11 + Signature Algorithm: sha1WithRSAEncryption + c6:72:8b:f8:57:9e:b7:bf:b1:f3:99:41:1c:8c:47:a1:93:d8: + 62:8e:2d:68:6c:db:12:02:86:e0:66:65:c1:7c:c4:83:35:4c: + 16:53:fd:34:c1:3c:60:15:fc:3d:3b:90:07:68:ca:af:a1:10: + 39:c4:6b:15:a6:1a:71:51:20:ea:35:84:ef:8f:ac:51:bc:d7: + 84:d8:35:71:44:8e:8c:4f:59:76:3d:b3:5f:5c:26:9e:bc:ee: + 09:40:13:3b:38:85:02:56:7d:97:db:4d:3d:b5:a1:66:cf:df: + 19:7a:2f:71:b7:a4:12:c3:9b:df:83:f9:a8:8a:00:68:e4:3a: + ee:25 +-----BEGIN CERTIFICATE----- +MIICvTCCAiagAwIBAgICEBwwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDE5 +MTNaFw0zNTAxMTMxMDE5MTNaMG4xCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxHjAcBgNVBAMTFWNvbW1hLCBjb21tYSwgY29tbWEgLDCBnzANBgkqhkiG9w0B +AQEFAAOBjQAwgYkCgYEAry4CGrjtfm4nL27K3FcRF4g3ODcm0PvQ7q3zqK31ilME +aoKnMbXmzogk+iJ1hBuojP1/Ywz8E0GCYKMZMz3TGG4Jxcfn6Z5J3fR37/EGkZrF +V2jlD1kZjVP/y64RM0hc63LoL2eulELTWy4x42+nXl6c6izSw69mEDQy5S0/VcEC +AwEAAaN4MHYwCwYDVR0PBAQDAgXgMB0GA1UdDgQWBBSh+4KcJ62DZ16MzKK6Mjww +JnT0zjAfBgNVHSMEGDAWgBToarvCkOpscCI+9vZIGwPmvremVTAnBgNVHREEIDAe +pBwwGjEYMBYGA1UEAxMPVXNlciAyNyBSb290IDExMA0GCSqGSIb3DQEBBQUAA4GB +AMZyi/hXnre/sfOZQRyMR6GT2GKOLWhs2xIChuBmZcF8xIM1TBZT/TTBPGAV/D07 +kAdoyq+hEDnEaxWmGnFRIOo1hO+PrFG814TYNXFEjoxPWXY9s19cJp687glAEzs4 +hQJWfZfbTT21oWbP3xl6L3G3pBLDm9+D+aiKAGjkOu4l +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101D.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101D.pem new file mode 100755 index 000000000000..2790a2abd2a1 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101D.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4125 (0x101d) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:20:47 2010 GMT + Not After : Jan 13 10:20:47 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=equal CN=User 28 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ae:df:12:64:ab:d9:2f:ee:21:64:b5:08:c5:c8: + 8f:a1:ad:0e:b9:28:91:69:74:13:a5:aa:49:fe:fa: + 02:9d:37:db:0a:3b:26:6a:20:25:3d:f9:2d:b2:3b: + 39:c8:c6:e3:a7:aa:a1:0b:b2:1b:58:43:e6:3c:3f: + 67:fe:bb:bd:9b:b5:d9:de:e9:ed:76:ab:fd:f5:c8: + 15:b2:fb:a6:3f:23:ef:9f:5f:71:43:b3:be:55:1e: + 85:5f:13:b1:6b:9d:42:d7:30:a8:d2:9b:fe:71:7a: + c7:d3:60:7a:cf:e2:83:75:83:b8:1c:d3:ef:ee:94: + 3f:14:63:aa:7c:15:4e:42:1d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 3B:2D:2B:5F:2E:E6:32:23:AE:47:B7:30:25:CB:ED:B0:6D:0C:30:E4 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 28 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 5b:cf:de:92:f8:ac:39:fb:0a:81:70:5b:17:d0:0d:0d:85:5e: + 2e:7d:be:d1:1a:ad:1d:99:a4:a6:f0:48:5a:7b:04:39:e2:93: + ff:80:84:f6:a1:e6:8a:52:12:55:46:c0:57:84:d9:c3:13:92: + 61:d7:41:af:39:09:57:05:25:01:90:68:7c:7c:5c:85:c6:f2: + fe:0e:37:e3:58:68:f9:32:fc:41:2c:35:36:f4:cf:ea:55:2d: + 52:7c:fb:37:32:35:cf:82:eb:fc:f1:39:f1:51:f1:e1:5b:d6: + 58:e1:7f:d4:50:ce:cf:07:f2:e5:f5:e2:dd:fe:55:3f:64:07: + 90:4f +-----BEGIN CERTIFICATE----- +MIICuDCCAiGgAwIBAgICEB0wDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDIw +NDdaFw0zNTAxMTMxMDIwNDdaMGkxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxGTAXBgNVBAMTEGVxdWFsIENOPVVzZXIgMjgwgZ8wDQYJKoZIhvcNAQEBBQAD +gY0AMIGJAoGBAK7fEmSr2S/uIWS1CMXIj6GtDrkokWl0E6WqSf76Ap032wo7Jmog +JT35LbI7OcjG46eqoQuyG1hD5jw/Z/67vZu12d7p7Xar/fXIFbL7pj8j759fcUOz +vlUehV8TsWudQtcwqNKb/nF6x9Nges/ig3WDuBzT7+6UPxRjqnwVTkIdAgMBAAGj +eDB2MAsGA1UdDwQEAwIF4DAdBgNVHQ4EFgQUOy0rXy7mMiOuR7cwJcvtsG0MMOQw +HwYDVR0jBBgwFoAU6Gq7wpDqbHAiPvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBox +GDAWBgNVBAMTD1VzZXIgMjggUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQBbz96S ++Kw5+wqBcFsX0A0NhV4ufb7RGq0dmaSm8EhaewQ54pP/gIT2oeaKUhJVRsBXhNnD +E5Jh10GvOQlXBSUBkGh8fFyFxvL+DjfjWGj5MvxBLDU29M/qVS1SfPs3MjXPguv8 +8TnxUfHhW9ZY4X/UUM7PB/Ll9eLd/lU/ZAeQTw== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101E.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101E.pem new file mode 100755 index 000000000000..f12a0c1c0d9d --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101E.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4126 (0x101e) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:22:13 2010 GMT + Not After : Jan 13 10:22:13 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 29+OU=ooo + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ae:12:dc:26:fe:7f:b8:3f:47:a2:dc:83:a1:70: + 6d:ab:db:e5:3c:28:d5:18:32:2c:8d:ee:85:c6:f9: + f4:8b:31:34:71:de:91:79:fb:56:b4:9c:af:3e:b1: + c6:de:06:3f:32:fc:45:9d:9b:dd:15:0f:b5:c3:98: + ab:8c:1e:3d:63:7c:2a:c5:b9:38:3d:50:6c:81:9e: + f0:b3:5b:41:1a:ec:15:b2:7f:2b:b4:d4:42:aa:ca: + e6:89:b0:c6:58:bd:2d:38:f3:4d:85:c3:08:d7:45: + 48:42:d7:fe:ee:7a:c0:22:41:c0:c6:cb:77:7c:22: + 43:07:35:dc:88:7c:49:3a:9b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + E0:19:7F:AC:F8:6A:42:7E:84:CA:8C:84:45:75:4E:9D:A1:D1:2A:72 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 29 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 85:c9:ea:82:e2:ac:f6:b3:15:51:11:bd:69:81:31:8f:ee:d3: + f9:f4:8e:d5:27:34:20:89:76:eb:8a:5b:02:69:9b:97:89:d7: + 6b:aa:03:7f:b5:40:f9:ac:54:ce:8f:30:fd:3e:78:72:91:96: + dc:a6:bd:64:42:f8:e4:18:1a:e3:b5:db:08:fe:1e:fc:3d:a2: + 55:21:ad:0f:1a:87:df:f2:65:87:4d:91:52:c1:46:c1:c0:7c: + cc:81:79:97:dc:2e:41:cc:ae:8c:8e:79:4e:02:49:7c:c5:b0: + 3e:8e:d9:f0:aa:6b:a6:2f:e7:d2:21:5b:7f:57:e8:f7:f6:00: + 3c:ad +-----BEGIN CERTIFICATE----- +MIICtjCCAh+gAwIBAgICEB4wDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDIy +MTNaFw0zNTAxMTMxMDIyMTNaMGcxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxFzAVBgNVBAMTDlVzZXIgMjkrT1U9b29vMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCuEtwm/n+4P0ei3IOhcG2r2+U8KNUYMiyN7oXG+fSLMTRx3pF5+1a0 +nK8+scbeBj8y/EWdm90VD7XDmKuMHj1jfCrFuTg9UGyBnvCzW0Ea7BWyfyu01EKq +yuaJsMZYvS04802FwwjXRUhC1/7uesAiQcDGy3d8IkMHNdyIfEk6mwIDAQABo3gw +djALBgNVHQ8EBAMCBeAwHQYDVR0OBBYEFOAZf6z4akJ+hMqMhEV1Tp2h0SpyMB8G +A1UdIwQYMBaAFOhqu8KQ6mxwIj729kgbA+a+t6ZVMCcGA1UdEQQgMB6kHDAaMRgw +FgYDVQQDEw9Vc2VyIDI5IFJvb3QgMTEwDQYJKoZIhvcNAQEFBQADgYEAhcnqguKs +9rMVURG9aYExj+7T+fSO1Sc0IIl264pbAmmbl4nXa6oDf7VA+axUzo8w/T54cpGW +3Ka9ZEL45Bga47XbCP4e/D2iVSGtDxqH3/Jlh02RUsFGwcB8zIF5l9wuQcyujI55 +TgJJfMWwPo7Z8Kprpi/n0iFbf1fo9/YAPK0= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101F.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101F.pem new file mode 100755 index 000000000000..1393b9ed3ed3 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/101F.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4127 (0x101f) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:26:01 2010 GMT + Not After : Jan 13 10:26:01 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00U\x00s\x00e\x00r\x00 \x003\x000\x00<\x00 \x00>\x00#\x00;\x00 \x00"\x00+\x00" + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:cf:40:99:4d:a5:5d:73:2a:78:72:9c:32:94:15: + 1e:01:40:b4:68:8f:b8:4e:38:aa:b9:82:96:5a:5c: + 03:d5:db:09:42:46:d8:2d:f0:da:f8:1a:f0:85:10: + f2:cb:1f:be:50:b7:ae:6f:22:80:f2:bf:14:73:84: + da:30:b9:54:26:0d:72:1c:55:99:50:c6:78:a3:37: + 15:b2:9c:03:22:dc:ea:8b:f5:07:32:f3:d9:76:64: + 92:a3:4f:73:12:e2:43:79:0e:e6:44:17:99:79:49: + 73:65:da:03:3d:be:db:e3:4f:ae:6c:d0:6c:e6:4a: + d3:83:45:5d:83:18:d5:cc:29 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + D9:EA:10:1D:D3:F5:30:AD:30:0E:80:73:14:22:1A:26:35:90:DC:67 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 30 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 42:3a:02:d5:7b:23:9f:cc:5b:b8:d4:c8:e8:0c:e3:0d:8a:17: + 65:b6:87:ce:c9:dc:f7:84:95:e0:17:ea:11:8b:15:30:e1:a2: + 42:6c:4e:f0:31:fa:fd:ff:03:37:d4:ec:4c:1d:29:8d:07:8a: + c8:de:0b:d6:df:d7:2e:12:8a:00:a0:ca:be:48:af:17:36:63: + 8e:f2:cf:80:8b:a1:e2:33:ef:42:db:91:d3:8e:4b:02:55:5e: + f7:79:11:5c:6d:ef:64:8b:53:a6:af:f5:0f:e2:75:7a:d6:85: + f6:60:d5:7e:d6:8c:0e:37:84:a9:50:2b:c7:e6:63:bf:1d:14: + aa:bf +-----BEGIN CERTIFICATE----- +MIICyDCCAjGgAwIBAgICEB8wDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDI2 +MDFaFw0zNTAxMTMxMDI2MDFaMHkxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxKTAnBgNVBAMeIABVAHMAZQByACAAMwAwADwAIAA+ACMAOwAgACIAKwAiMIGf +MA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPQJlNpV1zKnhynDKUFR4BQLRoj7hO +OKq5gpZaXAPV2wlCRtgt8Nr4GvCFEPLLH75Qt65vIoDyvxRzhNowuVQmDXIcVZlQ +xnijNxWynAMi3OqL9Qcy89l2ZJKjT3MS4kN5DuZEF5l5SXNl2gM9vtvjT65s0Gzm +StODRV2DGNXMKQIDAQABo3gwdjALBgNVHQ8EBAMCBeAwHQYDVR0OBBYEFNnqEB3T +9TCtMA6AcxQiGiY1kNxnMB8GA1UdIwQYMBaAFOhqu8KQ6mxwIj729kgbA+a+t6ZV +MCcGA1UdEQQgMB6kHDAaMRgwFgYDVQQDEw9Vc2VyIDMwIFJvb3QgMTEwDQYJKoZI +hvcNAQEFBQADgYEAQjoC1Xsjn8xbuNTI6AzjDYoXZbaHzsnc94SV4BfqEYsVMOGi +QmxO8DH6/f8DN9TsTB0pjQeKyN4L1t/XLhKKAKDKvkivFzZjjvLPgIuh4jPvQtuR +045LAlVe93kRXG3vZItTpq/1D+J1etaF9mDVftaMDjeEqVArx+Zjvx0Uqr8= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1020.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1020.pem new file mode 100755 index 000000000000..40e90d4cbea9 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1020.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4128 (0x1020) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:28:47 2010 GMT + Not After : Jan 13 10:28:47 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00U\x00s\x00e\x00r\x00 \x003\x001\x00 \x00\\x00"\x00a\x00,\x00b\x00"\x00+\x00C\x00N\x00=\x00U\x00S\x00,\x00 \x00>\x00 \x00\\x00\\x00d\x00e\x00 \x00< + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ac:02:18:e0:1c:54:bb:76:97:2e:d3:67:78:b7: + 14:78:46:83:7c:e9:5c:2b:2f:25:bb:bf:90:c0:52: + ea:2c:79:d6:9d:af:b5:f8:86:a2:bf:56:9b:0f:33: + ed:ef:d2:2c:57:c6:0a:25:b3:f7:9b:a1:7a:3b:75: + 0b:18:86:23:64:2a:23:b0:60:f1:d8:05:b4:a6:7b: + 77:21:30:b4:0d:f1:af:e1:fb:d6:88:a8:5b:5d:7e: + a2:bf:ce:20:f6:c0:7a:89:f2:0f:33:47:6d:49:0f: + 3d:59:27:f9:95:c0:3b:a3:1c:18:a1:2d:95:09:e8: + d2:95:ac:10:92:fc:db:84:e3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + F8:BA:7E:78:BC:70:33:D3:45:68:37:59:3A:06:AC:65:B1:15:74:F0 + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 31 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 0f:a8:53:f0:56:76:df:a8:b3:5b:d1:e8:98:62:8f:a6:13:96: + c3:6b:ca:3f:e1:09:37:54:6f:ac:15:4b:74:0c:6c:3f:fe:de: + 36:58:a2:9d:a0:1f:18:97:2c:1d:bc:c6:df:ee:aa:5b:d3:da: + 2f:51:02:7a:ba:a9:7e:4d:cf:47:16:0b:f1:b1:e1:28:2b:fe: + a4:9d:50:96:cd:c5:45:09:35:50:93:9b:97:a9:23:2a:5e:f0: + 2e:16:18:3f:50:7a:83:59:c5:6c:79:99:d3:ea:12:ef:15:a9: + b0:93:1e:4b:26:6c:63:13:7f:d3:5a:0c:4d:0b:f4:51:21:98: + 4f:81 +-----BEGIN CERTIFICATE----- +MIIC5TCCAk6gAwIBAgICECAwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDI4 +NDdaFw0zNTAxMTMxMDI4NDdaMIGVMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MUUwQwYDVQQDHjwAVQBzAGUAcgAgADMAMQAgAFwAIgBhACwAYgAiACsAQwBO +AD0AVQBTACwAIAA+ACAAXABcAGQAZQAgADwwgZ8wDQYJKoZIhvcNAQEBBQADgY0A +MIGJAoGBAKwCGOAcVLt2ly7TZ3i3FHhGg3zpXCsvJbu/kMBS6ix51p2vtfiGor9W +mw8z7e/SLFfGCiWz95uhejt1CxiGI2QqI7Bg8dgFtKZ7dyEwtA3xr+H71oioW11+ +or/OIPbAeonyDzNHbUkPPVkn+ZXAO6McGKEtlQno0pWsEJL824TjAgMBAAGjeDB2 +MAsGA1UdDwQEAwIF4DAdBgNVHQ4EFgQU+Lp+eLxwM9NFaDdZOgasZbEVdPAwHwYD +VR0jBBgwFoAU6Gq7wpDqbHAiPvb2SBsD5r63plUwJwYDVR0RBCAwHqQcMBoxGDAW +BgNVBAMTD1VzZXIgMzEgUm9vdCAxMTANBgkqhkiG9w0BAQUFAAOBgQAPqFPwVnbf +qLNb0eiYYo+mE5bDa8o/4Qk3VG+sFUt0DGw//t42WKKdoB8YlywdvMbf7qpb09ov +UQJ6uql+Tc9HFgvxseEoK/6knVCWzcVFCTVQk5uXqSMqXvAuFhg/UHqDWcVseZnT +6hLvFamwkx5LJmxjE3/TWgxNC/RRIZhPgQ== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1021.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1021.pem new file mode 100755 index 000000000000..443c07462820 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/1021.pem @@ -0,0 +1,61 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4129 (0x1021) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 11 + Validity + Not Before: Jan 19 10:40:59 2010 GMT + Not After : Jan 13 10:40:59 2035 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=\x00U\x00s\x00e\x00r\x00 \x001\x004\x00 \x00"\x00,\x00m\x00i\x00d\x00d\x00l\x00e\x00 \x00q\x00u\x00o\x00t\x00e + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:da:7a:30:0d:63:da:74:05:ef:3e:d2:f4:2b:1b: + 50:e3:64:67:98:7d:2f:83:e7:77:7b:b8:72:9b:c8: + 9e:65:de:cc:2a:7b:76:c2:08:05:7a:ce:88:3e:ed: + b5:75:89:36:d2:4a:bb:3b:66:ac:57:2b:15:99:c9: + d4:74:ca:f5:eb:ff:80:b7:9f:6b:48:2f:3b:a7:51: + c4:12:af:96:ca:ac:b9:ea:23:fd:93:f7:7d:5b:d1: + ab:7c:24:1e:fe:48:dc:33:de:45:d6:8c:86:5a:b9: + 56:3c:e4:a9:f1:8c:d7:41:01:da:04:2a:7d:06:c3: + 5b:a4:cc:5f:6c:ef:7c:4e:ef + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 49:E2:AE:12:D7:EF:C3:B5:02:65:DD:CF:B2:62:E6:25:ED:3D:10:9C + X509v3 Authority Key Identifier: + keyid:E8:6A:BB:C2:90:EA:6C:70:22:3E:F6:F6:48:1B:03:E6:BE:B7:A6:55 + + X509v3 Subject Alternative Name: + DirName:/CN=User 14 Root 11 + Signature Algorithm: sha1WithRSAEncryption + 8b:ca:d2:93:cb:d1:cc:a9:67:a3:be:75:cf:ca:cd:22:78:cc: + 7c:f9:f1:2c:94:2c:60:bd:0f:18:16:26:fe:de:0d:19:5a:87: + de:34:8c:1f:eb:89:37:74:63:d4:d9:cd:59:35:06:24:a5:6f: + f2:c6:69:f4:b5:37:6d:ae:8b:d3:5d:5e:43:8f:36:7d:f8:0c: + 30:3f:74:3d:e2:85:89:75:58:36:0f:df:72:17:47:22:c6:fd: + 47:e3:d6:73:d1:40:89:e8:9a:ba:53:14:5c:3a:de:a9:85:a8: + 8f:b0:27:81:4d:87:ef:bb:6b:bf:8c:8a:71:9b:94:1d:30:d5: + 12:ed +-----BEGIN CERTIFICATE----- +MIIC1TCCAj6gAwIBAgICECEwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMTAeFw0xMDAxMTkxMDQw +NTlaFw0zNTAxMTMxMDQwNTlaMIGFMQswCQYDVQQGEwJERTEQMA4GA1UECBMHSGFt +YnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsTC0RldmVsb3Bt +ZW50MTUwMwYDVQQDHiwAVQBzAGUAcgAgADEANAAgACIALABtAGkAZABkAGwAZQAg +AHEAdQBvAHQAZTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA2nowDWPadAXv +PtL0KxtQ42RnmH0vg+d3e7hym8ieZd7MKnt2wggFes6IPu21dYk20kq7O2asVysV +mcnUdMr16/+At59rSC87p1HEEq+Wyqy56iP9k/d9W9GrfCQe/kjcM95F1oyGWrlW +POSp8YzXQQHaBCp9BsNbpMxfbO98Tu8CAwEAAaN4MHYwCwYDVR0PBAQDAgXgMB0G +A1UdDgQWBBRJ4q4S1+/DtQJl3c+yYuYl7T0QnDAfBgNVHSMEGDAWgBToarvCkOps +cCI+9vZIGwPmvremVTAnBgNVHREEIDAepBwwGjEYMBYGA1UEAxMPVXNlciAxNCBS +b290IDExMA0GCSqGSIb3DQEBBQUAA4GBAIvK0pPL0cypZ6O+dc/KzSJ4zHz58SyU +LGC9DxgWJv7eDRlah940jB/riTd0Y9TZzVk1BiSlb/LGafS1N22ui9NdXkOPNn34 +DDA/dD3ihYl1WDYP33IXRyLG/Ufj1nPRQInomrpTFFw63qmFqI+wJ4FNh++7a7+M +inGblB0w1RLt +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_11/demoCA/private/cakey.pem new file mode 100755 index 000000000000..fb0dd164efc2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,F268674FF1377D42 + +kJQy9qJMCqZyDVs3+ZKQnh22enecltKSYzd0S1dIN1chgQ0RzLEiWBHmHCVP/yB0 +YoKrQ07FUR/uSLqTbyhAl+KDVcNvqrj/NeWs0n8zqN0ZF6wQtxtDrWFWmHNAvQXU +2kO1CvjYiruapgwmVDDJV1qf25byenQv9LMyQMD6EPU1XqFeamklidALdkb7DylA +WL6EIg4vhh96ZaG6PwLcB9rho0QRrXrLS6SHiklNBN5fHUWOfDyhXJ7K4HvzH1SS +/EtqgyKKxH5irTRdoJg2OaDBAahyW93CneEnFdufDgzvCdrsg79Z2GFz7TDJEfW4 +rnoqoXTdei1Ah+t1BC4uXXAU8DR0xusnJi0qJDJ7ETRBhROlNhTRF8TAHll+5dIf +9772GwVT+hADZn1qJgmhPiN4f8Fx33k5NOcwb0X/0Z1mzULrwm1P6lng0DsusDo0 +dr/wFyRjWZEWhMcL/sIO1BwVTBPcE8CACnXutehs44DBWd91EQ4+PWNq7oPtHFw8 +09d30h4aJJZF/SGRi+f/czFyZF4WS2Q+UWmNNKJX8wCGQqzUb02kVwMEWHiNFiEo +V8xI3JXVmKHDWlgdoIz9kVe//3AfY5y+52cYLdqaNW8IsgWZC8SC9Lk9j5uaNZ/I +leNppt4ID7mfYPqjEXEKleC+1ncwFwdVl/zaa/fM78sWqDYrLZC47DToLfoQ9Gez +3dj3554iHTe61Jd7JsK85pYsrIHAeYppOpqzLyQmCu3twBl3uGD7KXxvdZRt8foE +Vrg/QSIB4E6gfSBP0UrXzsnga8tjVyqRW2vAvt0uLn945ducapf9oQ== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_11/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_11/demoCA/serial new file mode 100755 index 000000000000..c7781419a38b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/demoCA/serial @@ -0,0 +1 @@ +1022 diff --git a/xmlsecurity/test_docs/CAs/Root_11/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_11/openssl.cfg new file mode 100755 index 000000000000..8bf98da50e74 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_11/openssl.cfg @@ -0,0 +1,295 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert +utf8 = yes +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask =pkix + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 +commonName_default =User 14 \",middle quote + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +#nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move +subjectAltName=dirName:dn_subjectAlt +# Copy subject details +# issuerAltName=issuer:copy + + +[dn_subjectAlt] +CN=User 14 Root 11 + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Root_7.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_2/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_2/demoCA/cacert.pem new file mode 100755 index 000000000000..e64badeef6c7 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_2/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAm2gAwIBAgIJAKKvFYnsc1SGMA0GCSqGSIb3DQEBBQUAMF8xCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgMjAeFw0wOTEx +MTgxNTQ2NTJaFw0zNDExMTIxNTQ2NTJaMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgMjCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEAsJSDLnSsoNY1U8hS0g5cmu7ihp+nvDvx8C75Wav80KumG9gcS3icmSOm +vPVqUmJq5o9CKM8z4vJR7D3e+Wf7S7XHMdL0uXuQi+QQCB1aMAWMxo7xnoWAXZrS +LG1BWUjD9sdKCHuQfFQv9ke3cA2dGZFSMsUD73JYoo0RD72ftFkCAwEAAaOBxzCB +xDAdBgNVHQ4EFgQUX7xM2usKDLUjQ14kMid5QfWCowIwgZEGA1UdIwSBiTCBhoAU +X7xM2usKDLUjQ14kMid5QfWCowKhY6RhMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgMoIJAKKvFYnsc1SGMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAqfEPhXASt24n8P9mDKisEn2EIYmJKLaY +AVwXLPXUOiMlqrfPRKpseQII4WmDCRxMa6bKCwf4pKUWIpTpDhRZCUespaLz1AcU +ntv+HTXq1ECK+akK33fsh5qMvokfzZM+Q0zCiFV/c2aTTGSM5mV3/q810RUlNQY3 +1y+AN+6fRqE= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_2/demoCA/crl/DO_NOT_CREATE_A_CRL b/xmlsecurity/test_docs/CAs/Root_2/demoCA/crl/DO_NOT_CREATE_A_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Root_2/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_2/demoCA/crlnumber new file mode 100755 index 000000000000..83b33d238dab --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_2/demoCA/crlnumber @@ -0,0 +1 @@ +1000 diff --git a/xmlsecurity/test_docs/CAs/Root_2/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_2/demoCA/index.txt new file mode 100755 index 000000000000..3e79e22d7cf1 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_2/demoCA/index.txt @@ -0,0 +1 @@ +V 341112155538Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 2 diff --git a/xmlsecurity/test_docs/CAs/Root_2/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_2/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_2/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_2/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_2/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..36a8eb3c0709 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_2/demoCA/newcerts/1000.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 2 + Validity + Not Before: Nov 18 15:55:38 2009 GMT + Not After : Nov 12 15:55:38 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:f0:7a:16:4c:ab:06:b2:af:27:9c:7d:3f:86:da: + de:7a:c3:01:67:77:56:49:09:ed:ed:31:72:83:e8: + 75:9c:4c:ce:f9:97:b6:63:3c:e2:ca:83:80:92:03: + 9c:96:e2:de:72:79:c1:cf:3e:3f:b9:0d:b4:87:c7: + 75:e6:56:8d:aa:f8:77:47:11:4e:fe:07:b0:1d:64: + 06:73:4b:6f:d4:ac:da:0f:05:87:b1:f1:98:a9:f5: + 8a:a1:a8:ed:17:9c:26:b8:da:92:63:d2:53:87:e6: + fc:ed:44:de:94:56:90:3e:a2:a1:67:08:cb:38:d4: + cf:17:3b:7e:ff:7a:97:c0:7b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 8C:F3:2C:30:A2:E8:62:50:70:BC:FC:71:A0:41:FA:E0:58:B4:4D:B8 + X509v3 Authority Key Identifier: + keyid:5F:BC:4C:DA:EB:0A:0C:B5:23:43:5E:24:32:27:79:41:F5:82:A3:02 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 2 + serial:A2:AF:15:89:EC:73:54:86 + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 52:83:16:ab:0e:43:2d:b3:e4:0f:6c:c1:63:d4:86:ac:e7:1e: + ee:7b:ee:9b:0c:ff:4f:e0:59:d5:e4:27:af:68:bf:a7:f5:2a: + a3:c9:e3:2b:8d:b7:31:26:f6:04:80:4e:f2:a5:bf:da:63:5e: + 8c:d6:c6:b2:46:a0:46:10:2f:84:9f:02:76:f3:c8:33:05:62: + 0c:5f:2d:cc:06:23:53:9f:d9:f8:46:e4:2e:5c:da:05:fc:bf: + db:45:b4:ac:8d:8b:b5:4b:60:7b:7b:26:34:7f:b1:4b:41:96: + 41:26:70:7a:9d:78:a2:9b:e0:de:62:a2:04:86:9f:ed:7c:a6: + 20:eb +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAyMB4XDTA5MTExODE1NTUz +OFoXDTM0MTExMjE1NTUzOFowaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAyMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDwehZMqwayryecfT+G2t56wwFnd1ZJCe3tMXKD6HWcTM75l7ZjPOLK +g4CSA5yW4t5yecHPPj+5DbSHx3XmVo2q+HdHEU7+B7AdZAZzS2/UrNoPBYex8Zip +9YqhqO0XnCa42pJj0lOH5vztRN6UVpA+oqFnCMs41M8XO37/epfAewIDAQABo4HH +MIHEMB0GA1UdDgQWBBSM8ywwouhiUHC8/HGgQfrgWLRNuDCBkQYDVR0jBIGJMIGG +gBRfvEza6woMtSNDXiQyJ3lB9YKjAqFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAyggkAoq8ViexzVIYwDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBSgxarDkMts+QPbMFj1Ias5x7ue+6b +DP9P4FnV5CevaL+n9SqjyeMrjbcxJvYEgE7ypb/aY16M1sayRqBGEC+EnwJ288gz +BWIMXy3MBiNTn9n4RuQuXNoF/L/bRbSsjYu1S2B7eyY0f7FLQZZBJnB6nXiim+De +YqIEhp/tfKYg6w== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_2/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_2/demoCA/private/cakey.pem new file mode 100755 index 000000000000..7ef7ef0a5e81 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_2/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,52B792B2B0E03BD6 + +GIFY+N2q5LMcrtTplZUToF0/nuplr7ASLAe7lEcDLTTHeBTO+w4ScB62Dl6veeEU +3/pPevG+V3HIA5ukywX334DuWjL3bFIsPg8a3NKKn0nTpmwqHqXZ53kbSMHIiu6v +MkvGeVLLxLhnCsqQ8HI2ccuxGSXLA0rqlnrZTOtvQpw9ohpCM3CX1GeekLc83bL/ +4HHmw8nNL+OCH4l9g3Y8XpN3ySRgl+lWmoKxl9s2Mn7jFoaqSXuuH3wIu9D2kJxS +qfVs/fo12j8RWXSIMpiCJFCOx1v+zzX7dJ0cyim83WF2OHsOW03UYnWzgk44iz4d +/WVWJuRU3gEwpN3CDdhzBZuYw9DmaG8HLHYT15CSdkQrfHeFM3Axcoju7b887JX7 +sOHU6h4ebMVhAswAXKGlTKOY2PO1GE9cKoa2jxnB2z8Dhe8rxzuvWyr5BfXrS3KT +lM6pjxZSoGMcmG7FtDgU/aAIn+DPR/rdB7tfZwP3GoVV+n3jRi8LU5I3wbi4z70o +bwXMb7zN13WHFszZgPX4tHD3jjyLwk7rFmMJ17L3K6eOAlGg8o+FBgoqYFQo05sY +2SElOibX8RIj9m9lerNLOxB5ty2VDUSaytJ0b1gPTXAdsaryq7tKFxIrNKpiJ1qk +snQSJyr2JwRqBLRwkXZV5CliWwZJGGJsC9I5fAMuuW6qkDhsSQ1fIJsGn/SbbiZj +lnZVY/33vHMltbwEgY4GuQWm29VYJwLWk925BY/nQ5fWPARYsap04JIwtperrZKj +XETzTrnTje6sVl32aCLdYlwsVbh04zRwUFharCz5vtDdVeHrfsBDKA== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_2/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_2/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_2/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_2/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_2/openssl.cfg new file mode 100755 index 000000000000..bf73e3549d66 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_2/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_3/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_3/demoCA/cacert.pem new file mode 100755 index 000000000000..55be1552189e --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_3/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAm2gAwIBAgIJAJVv8OMrvnb5MA0GCSqGSIb3DQEBBQUAMF8xCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgMzAeFw0wOTEx +MjAwNzM2MTVaFw0zNDExMTQwNzM2MTVaMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgMzCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEA3L6zaGhxFC+Mf55dzotmPKxdZndlxSVVOVI93JrxKVfn8mYOCZEjdb9Q +65vgLxGXMC9LCiF6SfT8dIfav1hUugmLaLzBesPu6h4kHN33/7Asj8BzY5I57uvF +sMLNL5hHFRRqtBqHvmO2G8zjHPluObnBzaQNCbdZxYODeh1GFpECAwEAAaOBxzCB +xDAdBgNVHQ4EFgQUaf8w7B80mmc6ayDS33/1BQTt+RwwgZEGA1UdIwSBiTCBhoAU +af8w7B80mmc6ayDS33/1BQTt+RyhY6RhMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgM4IJAJVv8OMrvnb5MA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADgYEABPdAJer/8FoOAMWszhfz/BEjF97TTFs1 +KqSEiuymswG706weo9tcnP8u81AITQPSWZE1ALQN5L35Zvg6ubJsNM3+VSoQ6hZj +G9oWAJzFN7DhIqs3Xb13eBH/0yqAdTuFB5uLcJdR3GIXGFvcU/5FZBpYnORVqvg4 +irKv2VvyCR0= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_3/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_3/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_3/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_3/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_3/demoCA/index.txt new file mode 100755 index 000000000000..dd9a47ee641b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_3/demoCA/index.txt @@ -0,0 +1 @@ +V 341114074039Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 3 diff --git a/xmlsecurity/test_docs/CAs/Root_3/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_3/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_3/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_3/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_3/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..c14880b580c7 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_3/demoCA/newcerts/1000.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 3 + Validity + Not Before: Nov 20 07:40:39 2009 GMT + Not After : Nov 14 07:40:39 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:9e:87:1f:af:f0:a0:1c:f4:9e:f8:c3:e7:ee:d3: + cb:a8:e2:54:98:ba:dd:7e:dc:6e:14:e1:7e:7f:5b: + 1e:ef:53:3d:89:76:ea:e2:b3:6c:08:0d:e8:c8:4d: + 24:40:ff:92:f3:5b:51:f7:90:ac:69:37:29:90:f5: + e8:95:6f:67:d1:10:cd:7b:dd:65:38:d6:25:ec:63: + 39:ba:2e:ea:13:58:8e:7a:82:8e:10:d1:7b:77:7a: + 08:d5:82:66:62:a4:83:39:ad:f5:83:d5:2f:5c:bc: + 23:6e:c8:78:8b:38:9f:eb:a3:67:ba:43:fa:e4:07: + 3f:90:72:db:0c:f9:49:0e:0d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 1B:2D:E0:A2:26:7F:0D:BA:38:7E:EC:06:81:81:0F:12:74:4C:5A:4D + X509v3 Authority Key Identifier: + keyid:69:FF:30:EC:1F:34:9A:67:3A:6B:20:D2:DF:7F:F5:05:04:ED:F9:1C + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 3 + serial:95:6F:F0:E3:2B:BE:76:F9 + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 6f:ac:53:9d:16:6e:95:ed:97:60:ed:c8:a8:96:ab:24:c5:1e: + d5:d7:26:98:fb:b5:aa:ef:da:a4:91:6a:82:55:ec:21:a2:08: + 24:c7:0c:a7:58:0c:06:69:3d:04:7d:08:f1:0b:77:41:ad:1c: + 13:c2:bd:17:c9:9e:ff:df:64:69:8b:58:f1:bc:40:bd:cf:e4: + 57:29:bc:5e:93:84:61:56:4c:e6:c1:3a:2c:6e:71:ea:5d:67: + c0:54:be:4f:2f:27:a8:59:8d:29:94:ba:c6:6c:ff:ed:25:3d: + 0b:fa:93:c9:45:f4:d5:a3:3d:be:8a:f1:9d:c4:92:d5:5c:d2: + 77:7c +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAzMB4XDTA5MTEyMDA3NDAz +OVoXDTM0MTExNDA3NDAzOVowaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAzMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCehx+v8KAc9J74w+fu08uo4lSYut1+3G4U4X5/Wx7vUz2Jduris2wI +DejITSRA/5LzW1H3kKxpNymQ9eiVb2fREM173WU41iXsYzm6LuoTWI56go4Q0Xt3 +egjVgmZipIM5rfWD1S9cvCNuyHiLOJ/ro2e6Q/rkBz+QctsM+UkODQIDAQABo4HH +MIHEMB0GA1UdDgQWBBQbLeCiJn8Nujh+7AaBgQ8SdExaTTCBkQYDVR0jBIGJMIGG +gBRp/zDsHzSaZzprINLff/UFBO35HKFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAzggkAlW/w4yu+dvkwDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBvrFOdFm6V7Zdg7ciolqskxR7V1yaY ++7Wq79qkkWqCVewhoggkxwynWAwGaT0EfQjxC3dBrRwTwr0XyZ7/32Rpi1jxvEC9 +z+RXKbxek4RhVkzmwTosbnHqXWfAVL5PLyeoWY0plLrGbP/tJT0L+pPJRfTVoz2+ +ivGdxJLVXNJ3fA== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_3/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_3/demoCA/private/cakey.pem new file mode 100755 index 000000000000..445d86f99540 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_3/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,24B61B9BC2D90894 + +pJUmVTVcjD3b4WKoSDJHrxHYOJ5/6P0FyQRYaJhnDXpcC5cQywl7yuD3HpRh3cXT +Y5k6d1E64St3I/IDImdbiEEDbjlSG9gfFf9vYeP/Xlpaja0Y9Q2ePnQvJY47HB7+ +qkrt6b+3yIW024wHi83dzaeYeNUJaY1jGsra2TzGk/+hYrf6yvnyehEAsy5WChof +bfaQ29RrGTlzf6IpSRpiHUL7nVl+eHfbGLX4Ih8aEFXpcnoWtpY8FgQ5+bJxMeR4 +R2ge0c3G0VIBXBRRUoGsU0ZcRLdxYUFcDGZse50ZboUwvROfPCimowcyWKluV9yj +l4+e3glYcwGHRqHYArsLDUV2hzHHEJ1IKn4E+oExqQSGgDQgUDN0kjlRPPxWQb29 +6dZSHW4VXW609Q10FKbPuCocgQ2Ut2bNGWqXsiNNTr39iB0r/hA/V4bKy3G8ogsH +AQFp6D9LaFlt9ZFA49Y4WoPzSY9J2C4eFJzQ+jhCpeapzQ54BWNTYMQe+SJHkp1O +PWVovUrRbTDesIUeY1UJuSnbDotOc6vzEAsP+FIL2qUySUGG/CPyAf3R4FyahwjL +bgU5kmpzBKsgqRYrO2yfLz5/3/e9xUGfHVi8lbI5f21NQKesqHY2xS2NmGvakzbe +ZvD3bhythAR5L0Pp+tiiHE1LUAbcKp90aFPeaONDpUtrRU21gqqvEKnnubCvnjmE +l6GrH2WKSgxJbQ3GGqNaDg1ivB8XXyjx7guvBzpA0Pe2YCYMa0RI27GywNkv+RsR +eo3ox2QhUpvPxUl3ijwOPN3EFXrq0gdlYQJBWW3GLlX4Q71KJF+jUQ== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_3/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_3/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_3/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_3/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_3/openssl.cfg new file mode 100755 index 000000000000..5f9493f47e9b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_3/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_4/README.txt b/xmlsecurity/test_docs/CAs/Root_4/README.txt new file mode 100755 index 000000000000..b9fb278a2724 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/README.txt @@ -0,0 +1,4 @@ +Revoked certificates: + +- Sub CA 2 Root 4 + diff --git a/xmlsecurity/test_docs/CAs/Root_4/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_4/demoCA/cacert.pem new file mode 100755 index 000000000000..45b4ce8a5f29 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAm2gAwIBAgIJAKKTRnQ7puOtMA0GCSqGSIb3DQEBBQUAMF8xCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNDAeFw0wOTEx +MjAwODM1MDRaFw0zNDExMTQwODM1MDRaMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNDCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEA2k+jPArotoY09an0BpF3RYIPP/5RN04E4S+Ulp/ipttaVxtAC0ojJSlp +0PGp/vIodFT9pkBb0nq56LHjFLj+lyW5tKAR+4B+VVvzwJhUBD8qHjYJE30vWZ88 +3+3I+GmXDzy962kQxrb4J6dBwGImoqhBTXWOxGnPjXxtovzYmMECAwEAAaOBxzCB +xDAdBgNVHQ4EFgQUuo2hl9zEOR+QtVFrEBnyRg2pZY4wgZEGA1UdIwSBiTCBhoAU +uo2hl9zEOR+QtVFrEBnyRg2pZY6hY6RhMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNIIJAKKTRnQ7puOtMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADgYEARdHX1KRJ/DE1zOkbjINPX4pFjTMIIfKd +ncEBM7Po20it75Hbl8bHoxwCrjOu+9L1xaTCWcunyqv26yrjVpORPHPODLMc2W8x +FQm39hL6a0RjqurDlhcrjor3HD7hQ+GjEUDAX6Pk9RDxN+uMHvF5/5WCEhSn2aLT +IozGu5SmZys= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_4/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_4/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_4/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_4/demoCA/index.txt new file mode 100755 index 000000000000..f07b3377de4a --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/demoCA/index.txt @@ -0,0 +1,2 @@ +V 341114083727Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 4 +R 341114092227Z 091120092718Z,keyCompromise 1001 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 2 Root 4 diff --git a/xmlsecurity/test_docs/CAs/Root_4/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_4/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_4/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_4/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..391037118147 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/demoCA/newcerts/1000.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 4 + Validity + Not Before: Nov 20 08:37:27 2009 GMT + Not After : Nov 14 08:37:27 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 4 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:da:b0:21:94:89:b0:00:89:cb:69:59:9b:0d:fe: + 1f:b9:a0:a8:44:92:55:5f:0b:d5:e5:08:63:bd:47: + 6b:11:4d:b1:a8:12:6f:c1:cf:cb:9e:ae:e2:c1:03: + 68:46:59:0b:96:7c:21:45:9b:14:81:d8:f1:83:70: + 6b:3d:b4:56:65:49:87:1d:ab:e2:08:6a:49:66:0e: + 59:b4:da:7a:3f:72:23:b8:1f:fb:78:f5:f0:2d:c4: + fe:d9:94:6e:2e:c3:6e:95:ba:38:60:d1:0b:fa:16: + c7:02:71:ef:3e:71:72:63:26:56:35:1e:8b:ec:47: + 87:25:6e:bc:90:d0:8b:37:2d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 96:9A:2D:06:F6:76:4F:83:68:7B:9C:69:C4:18:BB:4A:EB:46:38:E4 + X509v3 Authority Key Identifier: + keyid:BA:8D:A1:97:DC:C4:39:1F:90:B5:51:6B:10:19:F2:46:0D:A9:65:8E + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 4 + serial:A2:93:46:74:3B:A6:E3:AD + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 45:77:ba:6b:b6:a7:2a:0f:6b:38:90:9f:0a:18:11:c7:54:7b: + c9:3b:9a:93:90:96:f0:04:0a:56:87:30:e0:f5:d8:84:40:39: + 90:85:ca:e7:38:1b:d8:df:2f:bd:73:91:13:cb:a6:c9:b0:7a: + f7:59:77:6b:9a:d5:86:78:06:dc:40:14:ce:ea:43:a8:ae:ed: + a2:03:64:51:3a:47:7a:9f:df:2d:65:49:56:a5:39:cf:28:2a: + ac:ab:fd:e1:93:fd:3e:56:e8:eb:7a:11:a8:f7:f9:1a:a1:83: + 1f:92:f7:da:4e:c6:d9:67:dd:67:ff:be:6f:e5:24:e1:6e:cc: + 94:3c +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA0MB4XDTA5MTEyMDA4Mzcy +N1oXDTM0MTExNDA4MzcyN1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA0MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDasCGUibAAictpWZsN/h+5oKhEklVfC9XlCGO9R2sRTbGoEm/Bz8ue +ruLBA2hGWQuWfCFFmxSB2PGDcGs9tFZlSYcdq+IIaklmDlm02no/ciO4H/t49fAt +xP7ZlG4uw26Vujhg0Qv6FscCce8+cXJjJlY1HovsR4clbryQ0Is3LQIDAQABo4HH +MIHEMB0GA1UdDgQWBBSWmi0G9nZPg2h7nGnEGLtK60Y45DCBkQYDVR0jBIGJMIGG +gBS6jaGX3MQ5H5C1UWsQGfJGDalljqFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA0ggkAopNGdDum460wDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBFd7prtqcqD2s4kJ8KGBHHVHvJO5qT +kJbwBApWhzDg9diEQDmQhcrnOBvY3y+9c5ETy6bJsHr3WXdrmtWGeAbcQBTO6kOo +ru2iA2RROkd6n98tZUlWpTnPKCqsq/3hk/0+VujrehGo9/kaoYMfkvfaTsbZZ91n +/75v5SThbsyUPA== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_4/demoCA/newcerts/1001.pem b/xmlsecurity/test_docs/CAs/Root_4/demoCA/newcerts/1001.pem new file mode 100755 index 000000000000..9d951ee26728 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/demoCA/newcerts/1001.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4097 (0x1001) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 4 + Validity + Not Before: Nov 20 09:22:27 2009 GMT + Not After : Nov 14 09:22:27 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 2 Root 4 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e5:8d:27:4e:09:53:08:61:c6:23:25:9e:dd:9c: + 07:bf:81:38:5c:5c:10:8f:e4:12:2f:4e:2e:b1:a1: + cf:21:46:53:bf:e8:5e:de:17:3a:9d:f7:e8:ef:3e: + 9c:b4:29:37:4c:31:35:15:dc:98:e0:93:9c:ce:6a: + d6:e1:35:19:6b:d4:1d:3b:81:86:b1:e7:ff:1f:b8: + 34:a9:f9:de:4d:b8:62:ac:3b:d4:58:8e:5c:76:b5: + 07:7f:32:8a:3a:90:73:71:d5:da:f1:79:39:14:ed: + 1b:f1:8a:3e:be:48:bc:07:ec:f9:7c:03:14:fc:e7: + 55:a3:65:81:c7:6c:70:0b:ff + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 69:DE:B6:99:C4:95:F7:5A:FA:41:6B:4C:F6:C3:6D:89:AA:37:31:9D + X509v3 Authority Key Identifier: + keyid:BA:8D:A1:97:DC:C4:39:1F:90:B5:51:6B:10:19:F2:46:0D:A9:65:8E + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 4 + serial:A2:93:46:74:3B:A6:E3:AD + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + bc:cf:43:eb:72:b1:71:a7:94:8e:cd:5b:fc:d8:21:31:83:db: + a9:de:c7:5b:14:e5:7b:90:43:e6:05:df:db:6e:95:5f:24:ac: + 0c:a1:8a:ac:c6:cf:f2:03:cd:a0:30:ae:d3:a9:41:07:c9:b1: + be:4b:e0:fc:a2:76:09:07:75:6a:fa:e4:2f:a3:3a:cd:81:68: + ab:f6:06:c4:32:08:25:6e:e8:e7:36:9c:1a:f7:42:73:f8:b0: + d8:42:3e:85:c2:11:23:10:d6:6a:e4:8f:53:cb:8b:8b:1b:5a: + 4d:6d:9d:34:45:26:52:d2:ee:6d:8f:23:ff:00:92:f5:99:62: + 4c:41 +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAEwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA0MB4XDTA5MTEyMDA5MjIy +N1oXDTM0MTExNDA5MjIyN1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDIgUm9vdCA0MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDljSdOCVMIYcYjJZ7dnAe/gThcXBCP5BIvTi6xoc8hRlO/6F7eFzqd +9+jvPpy0KTdMMTUV3Jjgk5zOatbhNRlr1B07gYax5/8fuDSp+d5NuGKsO9RYjlx2 +tQd/Moo6kHNx1drxeTkU7Rvxij6+SLwH7Pl8AxT851WjZYHHbHAL/wIDAQABo4HH +MIHEMB0GA1UdDgQWBBRp3raZxJX3WvpBa0z2w22JqjcxnTCBkQYDVR0jBIGJMIGG +gBS6jaGX3MQ5H5C1UWsQGfJGDalljqFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA0ggkAopNGdDum460wDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQC8z0PrcrFxp5SOzVv82CExg9up3sdb +FOV7kEPmBd/bbpVfJKwMoYqsxs/yA82gMK7TqUEHybG+S+D8onYJB3Vq+uQvozrN +gWir9gbEMgglbujnNpwa90Jz+LDYQj6FwhEjENZq5I9Ty4uLG1pNbZ00RSZS0u5t +jyP/AJL1mWJMQQ== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_4/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_4/demoCA/private/cakey.pem new file mode 100755 index 000000000000..003d2f3b56d5 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,26D3AA1ECCD64EF2 + +Smy62JNi1/1qKZI1q2lF13336vwJWfw+ii4g/ZwMJWuwTWUGXWZ1o9B9pZFo78KM +pMlasoCwAoI3lepMIwxtSRMgstxacJ4QRVPdevo7Qq6+++qNXdkqq9pYM19dsOiu +UNpbPXVvKQZnvm0ZFCjqiylvjCaQVQRScdwu9cJyq2qIQ1laXQoW2fPYBb8KSsCO +B5E76zAGdRlzEglT9Qkjbi2dQWxWpMHFfWZydFJnNbuh7O+RxCSOJN3jXlDRGPag +IwL4mFX8dElCwWhNpdd1pXF2ZXQ2S6Ke1MoOXRvJ7XVvEfnGyHpHQRdNB0M9gJCf +3ynJ0UUiCvXJs/6NEcOZzZ+R38XfMvsOcG1jNuh2KE5hW3cGbQMV2TPZMHjGE/qn +EhX+vzIOhRUPTUQjrjmV/lgioL4pMKFBXyfr2tkNLVOfzQtIXVfgxF1ooVmZFGKR +fAmHRbXKSrGWPJkX75bdlVnQ15qz5dU7PkIohGwGojOHuTWLXzKtOuLs7KMmH/i1 +5MhxcoXbI4R+hX/oj2Es4MKYFcSI0MID9Z5Se6z/yaz++5P9OrEGrXydg4W5YSuc +Q+MovUuqNoDH+Mo0z2P2DL4OxcIkBYoUVFOnIL2v5thRgbdWk05m0OBWYnvue9MG +CiuA49Lqg0H2ViZrDCyGDQNBkDkW7AKHYhVe3afHSDENX+wsgB1oj1bMvWNLQfCB +2IOYjv+of7tNOvIH6AuaJDqF2TYOm4ipcjSD/SEuKfrOgXlq6702tRhL4aAfHa6K +o1yrUfAxLwqN/TjSDNfOIUr5ro24tYnUaUnYPpn/zwZ5WfitZ4RGBg== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_4/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_4/demoCA/serial new file mode 100755 index 000000000000..7d802a3e7104 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/demoCA/serial @@ -0,0 +1 @@ +1002 diff --git a/xmlsecurity/test_docs/CAs/Root_4/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_4/openssl.cfg new file mode 100755 index 000000000000..5f9493f47e9b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_4/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_5/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_5/demoCA/cacert.pem new file mode 100755 index 000000000000..631deb24de3f --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_5/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAm2gAwIBAgIJAPA9tqmpnKNOMA0GCSqGSIb3DQEBBQUAMF8xCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNTAeFw0wOTEx +MjAxMDEwMzdaFw0zNDExMTQxMDEwMzdaMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNTCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEAwbqFK0+BWGylCl9gJj/eVuuNBcSgVetgx0cXwMRPHiwFZ8ilxPJm4kd0 +k2WDKHox5Ol8T0pU4n3fA5VmxjcfGnx03R8rFTn5deetrKQzyWUjz7EIl4mZYSvK +hwlbg5ZB4FJDYUoC/3eVHdQq2jUvRaQad1TvdBmvIMbDaYmTT3cCAwEAAaOBxzCB +xDAdBgNVHQ4EFgQUwdGg1FsLnX4xYfk5EJ8xEODSBrUwgZEGA1UdIwSBiTCBhoAU +wdGg1FsLnX4xYfk5EJ8xEODSBrWhY6RhMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNYIJAPA9tqmpnKNOMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAeX2QYyrs9an5ObWjzauPCzr8hx6k8dF3 +YXU8f/JCf/fKG5u5WQZmmu0YZXMSaDyzqS3rKupDSm4kbfB9l9oTkgZszueI29pd +C/QIh8vUTiAlV5zxR4ypqmBg489W/uXdQPicuFhGFYX9EWjuGhwk8dL0dcUCufwX +UBYBlUiceFU= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_5/demoCA/crl/DO_NOT_CREATE_A_CRL b/xmlsecurity/test_docs/CAs/Root_5/demoCA/crl/DO_NOT_CREATE_A_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Root_5/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_5/demoCA/crlnumber new file mode 100755 index 000000000000..83b33d238dab --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_5/demoCA/crlnumber @@ -0,0 +1 @@ +1000 diff --git a/xmlsecurity/test_docs/CAs/Root_5/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_5/demoCA/index.txt new file mode 100755 index 000000000000..d910b9acc97e --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_5/demoCA/index.txt @@ -0,0 +1 @@ +V 341114113023Z 1001 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 5 diff --git a/xmlsecurity/test_docs/CAs/Root_5/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_5/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_5/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_5/demoCA/newcerts/1001.pem b/xmlsecurity/test_docs/CAs/Root_5/demoCA/newcerts/1001.pem new file mode 100755 index 000000000000..b350f6eb33ef --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_5/demoCA/newcerts/1001.pem @@ -0,0 +1,66 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4097 (0x1001) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 5 + Validity + Not Before: Nov 20 11:30:23 2009 GMT + Not After : Nov 14 11:30:23 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 5 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:97:fa:a2:49:d3:bf:c1:2e:7a:ed:83:83:3c:78: + 96:c8:b2:b9:67:af:c0:5e:0a:89:89:fb:94:59:32: + a8:2a:e4:20:2f:3b:3d:ce:53:4f:72:fc:6c:0b:93: + 38:c3:df:66:6e:d5:79:d0:a4:4e:41:84:43:3c:99: + 79:0c:e0:5f:19:1a:3d:f5:4b:11:28:0f:80:b0:a0: + 71:34:5b:90:71:c2:ef:1e:85:2e:5b:9f:3b:22:c3: + 18:f8:7c:1f:ef:1b:78:17:a0:44:60:46:7e:88:eb: + a7:60:a0:5c:2a:7c:37:99:fa:27:97:08:e8:89:ba: + bc:69:4b:79:93:8f:ad:b5:9b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 01:E9:B5:99:E4:6D:F9:8C:42:3D:09:10:0F:A7:75:C6:27:78:4A:AF + X509v3 Authority Key Identifier: + keyid:C1:D1:A0:D4:5B:0B:9D:7E:31:61:F9:39:10:9F:31:10:E0:D2:06:B5 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 5 + serial:F0:3D:B6:A9:A9:9C:A3:4E + + X509v3 CRL Distribution Points: + URI:http://localhost:8901/demoCA/crl/Root_5.crl + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 6d:ca:34:05:99:ff:99:49:d3:6d:9d:ad:c6:99:da:9d:6c:94: + 62:77:ed:1c:39:23:d2:e8:b6:3e:df:63:dc:7c:10:3f:c2:ed: + f4:04:26:58:05:01:4c:ed:a9:83:43:3a:5d:fe:60:6d:5b:58: + dc:93:8c:94:69:b6:7f:02:48:30:9c:31:f4:7d:de:e0:de:04: + d2:dc:79:b7:60:c2:87:f7:c7:92:a2:f5:86:a7:0c:70:3b:a3: + a7:35:11:cf:a4:28:21:aa:8b:24:50:2e:96:41:be:66:01:bd: + b9:ec:04:0c:92:d9:8a:e7:a0:96:24:9b:f1:a2:9f:59:59:4a: + 32:a4 +-----BEGIN CERTIFICATE----- +MIIDRjCCAq+gAwIBAgICEAEwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA1MB4XDTA5MTEyMDExMzAy +M1oXDTM0MTExNDExMzAyM1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA1MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCX+qJJ07/BLnrtg4M8eJbIsrlnr8BeComJ+5RZMqgq5CAvOz3OU09y +/GwLkzjD32Zu1XnQpE5BhEM8mXkM4F8ZGj31SxEoD4CwoHE0W5Bxwu8ehS5bnzsi +wxj4fB/vG3gXoERgRn6I66dgoFwqfDeZ+ieXCOiJurxpS3mTj621mwIDAQABo4IB +BjCCAQIwHQYDVR0OBBYEFAHptZnkbfmMQj0JEA+ndcYneEqvMIGRBgNVHSMEgYkw +gYaAFMHRoNRbC51+MWH5ORCfMRDg0ga1oWOkYTBfMQswCQYDVQQGEwJERTEQMA4G +A1UECBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsT +C0RldmVsb3BtZW50MQ8wDQYDVQQDEwZSb290IDWCCQDwPbapqZyjTjA8BgNVHR8E +NTAzMDGgL6AthitodHRwOi8vbG9jYWxob3N0Ojg5MDEvZGVtb0NBL2NybC9Sb290 +XzUuY3JsMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAbco0BZn/ +mUnTbZ2txpnanWyUYnftHDkj0ui2Pt9j3HwQP8Lt9AQmWAUBTO2pg0M6Xf5gbVtY +3JOMlGm2fwJIMJwx9H3e4N4E0tx5t2DCh/fHkqL1hqcMcDujpzURz6QoIaqLJFAu +lkG+ZgG9uewEDJLZiuegliSb8aKfWVlKMqQ= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_5/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_5/demoCA/private/cakey.pem new file mode 100755 index 000000000000..222320a9a05e --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_5/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,5F2D7F26BBEBD8FB + +qFyJ/G/DFwA+Kx3cVldc6bOMRbbduL7x5DBjCqS20YfoQoyvDcyel8FYz4/8CQ9d +kmb4nrM0Dj8/FgDiite2E8+qJV4U8OIBsXelFd8FWC8hB4z0DtwVxIAiM6mTMMcu +bWta3Lu5xrNvU/vosB967COztoYB5XLLQ/DrRPoV+tvJx0Le3zXLzceIj4PicuIk +/Mh5NVqN5a5blaV1/1JvcfOQLCI0rNebP3iAYhwCkKyu6WkpSNuHIw5gaMC6KXpq +ORPf3m+3/YKHLS9/tg+9CPQrRpyzLV/TOUduq6HFfzh9ZRXd04Dpn0P61JVCypYo +9u62lnNCAtreyvCUttzANLgujbgT9HNsjzKTAD2g+zjwQPgIS4epNm5LBPsQv15A +Vuw7CnNlLa8PxUxuDUjoW2YaGUR3PHNUz+TA1U0UFxlNK/lgeekIvmSvPjVyROOB +SxOH88yAZWe6pWioS3uzeg1kf1F5sj9u+KHPyikUe3nUBrS1cZSRtQczhlWWocgm +GtfwQSSVSwRtd7CWe/nQHuSJyrIJCbWFaDhnVXRhr+tyDpLtoeApCvefvel0p/AY +LTaRcno3zUxZS3G8Cv71hBPR8y5di5dAxBSfLgMYxwBD3UFO6CPkmiJteIhHska9 +FJqR98hfvF+0hwFnaFUTszDMGK1xV20MeTMhLAwSlttbuwtWMTourFKtS6t1SomB +JOTkpiVfojTSAJX40ExQgNtvY+7ayNUBLX9NIuIcOjFbQa1LNmGy9cOPQD49x067 +fALGA+V1KO7sFeUrunkpHncYoux5OThq3iDJ2tPfBmyhTQhOSzN38w== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_5/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_5/demoCA/serial new file mode 100755 index 000000000000..7d802a3e7104 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_5/demoCA/serial @@ -0,0 +1 @@ +1002 diff --git a/xmlsecurity/test_docs/CAs/Root_5/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_5/openssl.cfg new file mode 100755 index 000000000000..7a23cf2df5b9 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_5/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Root_5.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_6/README.txt b/xmlsecurity/test_docs/CAs/Root_6/README.txt new file mode 100755 index 000000000000..e49615a51c0c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_6/README.txt @@ -0,0 +1,5 @@ +To provide the CRL via HTTP run + +java -jar ../../tools/httpserv/dist/httpserv.jar -a 8901 + + diff --git a/xmlsecurity/test_docs/CAs/Root_6/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_6/demoCA/cacert.pem new file mode 100755 index 000000000000..5a7fc185b421 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_6/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAm2gAwIBAgIJANhqTyT5yZQnMA0GCSqGSIb3DQEBBQUAMF8xCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNjAeFw0wOTEx +MjAxMjI2MDFaFw0zNDExMTQxMjI2MDFaMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNjCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEAslt6KM0bikDy8n0lNMeaNQiZk9Pcfsf6Vaasn9A8FABFn1chxV5zOMag +jo6CyZG1CNLhA841RtgiWVMc8BA+pDKzOQAzfgSk4VjXaY8nYgKEmGDKuNvls+kE +OKMkJibh/scNMDUOx8Bnc6S9LyYJAhZFrxm/lgmoIo7QMcdseIsCAwEAAaOBxzCB +xDAdBgNVHQ4EFgQUrCVem7W6TY69d7Kd2eKErnoxj/IwgZEGA1UdIwSBiTCBhoAU +rCVem7W6TY69d7Kd2eKErnoxj/KhY6RhMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgNoIJANhqTyT5yZQnMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAU6Sjyeo650mhSGK8JJBhDroVJgAryVF4 +wXEKWxK0yuO0TVZJxUWeHOESpegBW1eP5m9Pz0IHnxj6MsGBYq7SZU84awt4HJto +6O1ARZYfT9r+qTts33I/VVQVTJbvETF1vGsuAZfTTDhAJDqS2oueiPDSinzQxNMy +16L4Rajm8LE= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_6/demoCA/crl/DO_NOT_INSTALL_THIS_CRL b/xmlsecurity/test_docs/CAs/Root_6/demoCA/crl/DO_NOT_INSTALL_THIS_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Root_6/demoCA/crl/Root_6.crl b/xmlsecurity/test_docs/CAs/Root_6/demoCA/crl/Root_6.crl new file mode 100755 index 0000000000000000000000000000000000000000..df6dcb21eec7f81b6b5c486c424bce15f46ea839 GIT binary patch literal 316 zcmXqLVze-5T*So4Xu!+HsnzDu_MMlJk(HIfAl{JMfRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2hWtPa zfTGO8Y(e??B?@NZyatwrhDHX4Mn;x~rcvU&#wLb_h9*$%0-$mOZlDHP5f&CECIJRC z=P@@nGDw+i6En|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2hWtPa zfTGO8Y(e??B?{)^yatwrhDHX4#>VEx#!=$D#wLb_h9*$1fwF-j6O#ZVk}5MJ!zcqD z11_K`vZ5@^T#SqhfMyzSgZLsWEI`!^XntUBY-Cu!XrDlat@5F&mqy>twZwedH-qc% zd{_5-(UG0+@;)vNdH%5EYuyP=;a8JZ=4{GazWnHyjX#_Wf0%XcZ98D;)*#s}&CM!# z__|Q%-Lm772hJVmQNJ6U;kukLUOHiyc=DYaH?*%zFtI3n{JluvLF00rIY#l`FaNxG O8n;UJ%8#<0b|nC8$ZkOZ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/CAs/Root_7/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_7/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_7/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_7/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_7/demoCA/index.txt new file mode 100755 index 000000000000..24c3538724a1 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_7/demoCA/index.txt @@ -0,0 +1,2 @@ +V 341114130753Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 7 +R 341114133506Z 091120133621Z,keyCompromise 1001 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 2 Root 7 diff --git a/xmlsecurity/test_docs/CAs/Root_7/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_7/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_7/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..2dda8f2b286f --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/1000.pem @@ -0,0 +1,66 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 7 + Validity + Not Before: Nov 20 13:07:53 2009 GMT + Not After : Nov 14 13:07:53 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 7 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:b0:ae:6d:0a:21:ae:8a:92:b1:16:25:d3:08:cb: + ac:b7:4c:53:6d:4b:b3:12:82:40:54:c9:44:28:fc: + 4e:10:e6:65:40:de:70:5d:8b:ab:1f:5c:77:03:43: + 3d:3a:3d:9e:f7:37:66:9a:33:68:a0:cf:ad:8f:f4: + fb:9c:a3:87:57:5d:ec:d6:55:5a:18:b5:e1:2b:d2: + c4:10:fe:f0:01:a5:da:29:ee:c4:af:15:c9:8c:dc: + 7c:45:84:bd:e5:5b:09:1f:16:1d:11:e7:61:e6:22: + e7:1f:c8:86:bf:a1:da:cb:fe:6b:7e:c0:6e:aa:7f: + 97:84:e8:8f:81:69:f1:26:87 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 54:64:15:7E:93:8A:19:C8:F9:B7:EF:60:A0:DF:5C:C8:15:56:C0:EE + X509v3 Authority Key Identifier: + keyid:80:C6:F8:0B:5F:7C:49:E4:86:FD:C8:92:C6:80:70:D9:C0:6F:7B:DE + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 7 + serial:D5:E6:63:5F:18:09:82:89 + + X509v3 CRL Distribution Points: + URI:http://localhost:8901/demoCA/crl/Root_7.crl + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 1a:bc:5a:4b:9a:d5:e8:c0:35:c2:61:0a:58:7d:33:e2:87:01: + 61:83:80:42:8d:1a:7e:b1:9a:58:d5:01:fd:e7:ae:5c:c8:65: + fb:9e:1d:bf:49:ba:ed:40:f4:05:7c:3b:2d:db:0e:53:d0:05: + a0:bd:15:87:c4:37:22:0b:a0:04:a3:ad:cb:57:b2:00:97:ee: + 8f:89:91:8e:7d:0b:e2:27:96:6e:0f:ab:73:33:59:fa:9f:37: + f2:77:79:99:af:72:ad:f9:49:05:ed:55:08:31:eb:97:0f:99: + 6e:9c:a3:df:f0:52:1a:14:4e:78:25:0c:8b:02:cb:56:e9:4d: + f5:9f +-----BEGIN CERTIFICATE----- +MIIDRjCCAq+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA3MB4XDTA5MTEyMDEzMDc1 +M1oXDTM0MTExNDEzMDc1M1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA3MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCwrm0KIa6KkrEWJdMIy6y3TFNtS7MSgkBUyUQo/E4Q5mVA3nBdi6sf +XHcDQz06PZ73N2aaM2igz62P9Puco4dXXezWVVoYteEr0sQQ/vABpdop7sSvFcmM +3HxFhL3lWwkfFh0R52HmIucfyIa/odrL/mt+wG6qf5eE6I+BafEmhwIDAQABo4IB +BjCCAQIwHQYDVR0OBBYEFFRkFX6TihnI+bfvYKDfXMgVVsDuMIGRBgNVHSMEgYkw +gYaAFIDG+AtffEnkhv3IksaAcNnAb3veoWOkYTBfMQswCQYDVQQGEwJERTEQMA4G +A1UECBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsT +C0RldmVsb3BtZW50MQ8wDQYDVQQDEwZSb290IDeCCQDV5mNfGAmCiTA8BgNVHR8E +NTAzMDGgL6AthitodHRwOi8vbG9jYWxob3N0Ojg5MDEvZGVtb0NBL2NybC9Sb290 +XzcuY3JsMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAGrxaS5rV +6MA1wmEKWH0z4ocBYYOAQo0afrGaWNUB/eeuXMhl+54dv0m67UD0BXw7LdsOU9AF +oL0Vh8Q3IgugBKOty1eyAJfuj4mRjn0L4ieWbg+rczNZ+p838nd5ma9yrflJBe1V +CDHrlw+Zbpyj3/BSGhROeCUMiwLLVulN9Z8= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/1001.pem b/xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/1001.pem new file mode 100755 index 000000000000..0d2a0f02a3eb --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/1001.pem @@ -0,0 +1,66 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4097 (0x1001) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 7 + Validity + Not Before: Nov 20 13:35:06 2009 GMT + Not After : Nov 14 13:35:06 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 2 Root 7 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:f9:3f:5e:76:52:9a:ce:5d:98:b0:00:d8:e0:65: + e7:78:11:4c:7b:c7:e2:d3:44:bf:8e:60:42:69:3e: + 75:67:65:24:ab:f7:07:d8:9d:be:0f:23:b5:c1:26: + 00:6b:c3:22:84:72:a9:96:dc:5f:63:fc:f5:e0:e3: + cc:da:0c:74:e9:31:51:91:89:27:8f:e5:17:41:6e: + 3d:5e:2a:13:cd:08:f7:f3:61:34:a1:f7:79:c6:bd: + 5d:2c:34:01:ea:5a:8c:48:97:36:d6:57:e0:80:03: + 2e:7a:03:83:4c:bd:b4:af:a2:fd:d7:4b:1a:f7:ab: + 9f:5a:22:2b:d1:25:73:dd:6f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 3B:50:26:45:6C:E2:FE:28:B1:71:0A:A8:95:2D:78:63:8E:2C:48:92 + X509v3 Authority Key Identifier: + keyid:80:C6:F8:0B:5F:7C:49:E4:86:FD:C8:92:C6:80:70:D9:C0:6F:7B:DE + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 7 + serial:D5:E6:63:5F:18:09:82:89 + + X509v3 CRL Distribution Points: + URI:http://localhost:8901/demoCA/crl/Root_7.crl + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 5f:b4:70:11:4f:d9:df:6a:6a:5a:4a:97:fe:8b:5d:9e:46:84: + e2:27:67:41:7c:a9:2e:9d:77:cc:e4:8c:d6:16:3c:39:7d:51: + 29:60:80:32:4f:a1:d0:b4:7f:2a:e5:60:f4:b8:d3:3b:94:f8: + a5:fb:15:99:cf:a9:c5:a7:59:c1:11:89:67:11:9c:ff:a9:ac: + dd:ca:a9:92:a8:60:26:c3:ab:74:41:86:b9:4d:1e:4a:c5:de: + 63:e6:da:2a:36:39:7b:6c:66:f3:20:57:d1:f1:36:4b:69:c5: + 04:a3:1f:cf:de:0c:10:d0:3f:07:e2:8e:0f:cd:41:26:c9:2e: + e9:1b +-----BEGIN CERTIFICATE----- +MIIDRjCCAq+gAwIBAgICEAEwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA3MB4XDTA5MTEyMDEzMzUw +NloXDTM0MTExNDEzMzUwNlowaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDIgUm9vdCA3MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQD5P152UprOXZiwANjgZed4EUx7x+LTRL+OYEJpPnVnZSSr9wfYnb4P +I7XBJgBrwyKEcqmW3F9j/PXg48zaDHTpMVGRiSeP5RdBbj1eKhPNCPfzYTSh93nG +vV0sNAHqWoxIlzbWV+CAAy56A4NMvbSvov3XSxr3q59aIivRJXPdbwIDAQABo4IB +BjCCAQIwHQYDVR0OBBYEFDtQJkVs4v4osXEKqJUteGOOLEiSMIGRBgNVHSMEgYkw +gYaAFIDG+AtffEnkhv3IksaAcNnAb3veoWOkYTBfMQswCQYDVQQGEwJERTEQMA4G +A1UECBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsT +C0RldmVsb3BtZW50MQ8wDQYDVQQDEwZSb290IDeCCQDV5mNfGAmCiTA8BgNVHR8E +NTAzMDGgL6AthitodHRwOi8vbG9jYWxob3N0Ojg5MDEvZGVtb0NBL2NybC9Sb290 +XzcuY3JsMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAX7RwEU/Z +32pqWkqX/otdnkaE4idnQXypLp13zOSM1hY8OX1RKWCAMk+h0LR/KuVg9LjTO5T4 +pfsVmc+pxadZwRGJZxGc/6ms3cqpkqhgJsOrdEGGuU0eSsXeY+baKjY5e2xm8yBX +0fE2S2nFBKMfz94MENA/B+KOD81BJsku6Rs= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_7/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_7/demoCA/private/cakey.pem new file mode 100755 index 000000000000..147ca4e9b6f7 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_7/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,B17A06040862AC63 + +9VJMswLGoelYtmpO17/f34Lb7j1I2vaK+RUg7fH09M6rQKurA2SmpsO7kJo7lMUb +lwXEC8+JC5b3OoUcPeHLkZ5e9bB+flMJQq+bkzWs4NWYI17gRs2Tc74xm04XRTsO +OYU+H7uOyRMAuS86hkQF13H3hCHcZkg8RZcvqfDXhsY8S7iyp0gErQv8IDmbIije +R7go3NdZXCmkuINKhhABFYnPxnEpaHxhIMNKykbSn+jby02LX57X/u4JDGfkzjCH +wyJMi9PiO7VbXvi8IPYnFz0IaCMVr5cltTh47/KiqACeAADQ6ETekrX9r7lngkRz +sqFuyqEtdi02ujElsGIaDCImQ5KbD2u2IQ3FX2b6Jwmd/uDmqQQwtEfarEoUxich +chCEUBGAiqRxLcrnRzjT+Reqgx7qGNurjP78kmKeD91hDm3tEHeWtecy4iA3C8z0 +aMZFOZLx1r7kf5/YaRMREcLPmreEWgFmkIMN004GdIvOwlsUjmAM7UMle+cef17v +h1hxbFsznzYLBk0zOYjmsTpI3dQHtxSUVsyUWXXVJ0Y4YhJSjMHlMOOCanGYOpGS +vipUNzLx4aIWfMmQdJePQM4uxO2FNwTc1IGyRpoOhj6vxroICuGK3WkxqZsN3VwR +hwNol0cNMNHbVacKvhh5PQJcmWiqmLEXaQD8VWgCNQVa0otS59vj+SeyW4ZvULBM +Od/9FhFfEBHQDxNSL+c6B/dXFIO1oY159ErdElAn+NPRtQcHAsnu8HknKLhry1NP +b4d+KZcTZAq9q97ltRQf9/hXBpA3ophMtbBFnnnh5WJuMMdDMNgGsg== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_7/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_7/demoCA/serial new file mode 100755 index 000000000000..7d802a3e7104 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_7/demoCA/serial @@ -0,0 +1 @@ +1002 diff --git a/xmlsecurity/test_docs/CAs/Root_7/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_7/openssl.cfg new file mode 100755 index 000000000000..a63458d084b4 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_7/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Root_7.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_8/README.txt b/xmlsecurity/test_docs/CAs/Root_8/README.txt new file mode 100755 index 000000000000..d749d8ebcfe8 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/README.txt @@ -0,0 +1,9 @@ +Revoked certificates: + +- Sub CA 2 Root 8 + + +Start the OCSP responder: +openssl ocsp -index demoCA/index.txt -port 8888 -rsigner demoCA/cacert.pem -rkey demoCA/private/cakey.pem -CA demoCA/cacert.pem -text + + diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_8/demoCA/cacert.pem new file mode 100755 index 000000000000..ef431ec9528f --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAm2gAwIBAgIJALJH3moqTIMZMA0GCSqGSIb3DQEBBQUAMF8xCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgODAeFw0wOTEx +MjAxNTI4NTZaFw0zNDExMTQxNTI4NTZaMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgODCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEAmR4R07C/I8zEPsAEQdc/nzH74hLjEwImtiWKL8nVc70fwquIRzWLaavm +DaQE3g/ha00d2hepB2dUiR1nV2GhMYdV64eq1utEPU+tTIYpx163axOGLYLWwKc3 +cBaR2mCqZmAkS+WABHkCX9hsBn+Ju/XNxLDVcpBohVrx882+3kMCAwEAAaOBxzCB +xDAdBgNVHQ4EFgQU1mZ2yQX/qVCIlmDd+8cwGHJnQRkwgZEGA1UdIwSBiTCBhoAU +1mZ2yQX/qVCIlmDd+8cwGHJnQRmhY6RhMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgOIIJALJH3moqTIMZMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAfZylT15q6Dnpvf9jWoCovzvUoBqAwL1Z +UDEikhCpajYsrfXI3MRvKYkTvt18lgg2Y09gJ2vhfLBCaDp+ELUq0Vc5hIbblGGO +EA4vBuH5Yfho3AK3gKAtk7Rc9l/qP2rBPb1JVw79pRaz95IkYGeOp35pVDQfBN+i +jji5JSyOeYQ= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/crl/DO_NOT_INSTALL_THIS_CRL b/xmlsecurity/test_docs/CAs/Root_8/demoCA/crl/DO_NOT_INSTALL_THIS_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/crl/Root_8.crl b/xmlsecurity/test_docs/CAs/Root_8/demoCA/crl/Root_8.crl new file mode 100755 index 0000000000000000000000000000000000000000..8f91a1949a6801ffe2421e4eb3d297ce419100ef GIT binary patch literal 353 zcmXqLVvIFtJkG?(Xu!+HsnzDu_MMlJk(HIfAl{JMfRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2hWtPa zfTGO8Y(e??B?=beyatwrhDHX4rl#hGhEd|Y#wLb_h9*$1fwF-j6O#ZVk}5M((>_8^8T|ebGbz)zXkNUl>H22{*JGu;CWd!uUEg)msb*c*Dt?zW4KFk6 N*tA1>b@NQu0RYo&Xa@iQ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_8/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_8/demoCA/index.txt new file mode 100755 index 000000000000..831cbf1a38ed --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/demoCA/index.txt @@ -0,0 +1,2 @@ +V 341114153321Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 8 +R 341114155533Z 091120155655Z,superseded 1001 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 2 Root 8 diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_8/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_8/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..b2d1deb75960 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/demoCA/newcerts/1000.pem @@ -0,0 +1,66 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 8 + Validity + Not Before: Nov 20 15:33:21 2009 GMT + Not After : Nov 14 15:33:21 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 8 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:96:79:01:9f:4f:68:c1:09:0d:44:3a:82:e4:eb: + ad:70:7a:cf:b9:71:e5:fb:e0:c8:0c:21:79:3e:cb: + 78:91:7f:4a:a0:de:3e:37:0f:a1:6b:73:10:12:9b: + 08:c4:96:dc:cb:a8:5b:87:9b:75:24:e4:00:5e:4a: + 6f:4c:13:79:1f:57:13:8c:3e:1b:38:31:e1:77:74: + 52:f9:94:47:36:57:33:bd:de:08:11:a3:01:e1:53: + 1c:bd:7b:39:9c:5e:96:5c:a9:61:6c:cc:2b:90:8d: + 5a:3c:9e:f4:4b:6e:e5:97:64:86:f3:8e:e8:72:20: + 5d:0d:50:bf:e9:cf:be:d4:13 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + EF:BD:C8:8E:78:79:F9:76:4B:11:59:B6:C3:32:10:07:C0:BC:E3:8A + X509v3 Authority Key Identifier: + keyid:D6:66:76:C9:05:FF:A9:50:88:96:60:DD:FB:C7:30:18:72:67:41:19 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 8 + serial:B2:47:DE:6A:2A:4C:83:19 + + Authority Information Access: + OCSP - URI:http://localhost:8888 + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 4c:95:44:3b:57:08:ec:01:ec:f9:3e:7c:89:1c:30:b1:4e:26: + 32:b6:57:fa:25:bc:ed:eb:d4:a2:1c:67:ee:b9:8b:d0:4c:57: + 8a:0e:db:a0:9d:92:e7:de:c6:73:01:e7:de:61:1b:b5:0e:d0: + c5:c1:a7:a6:ab:e0:c6:0b:51:dd:e5:a2:32:1f:c6:52:ea:d3: + 03:68:3a:f5:92:bd:8b:b8:03:bb:50:70:63:cc:ec:ed:3c:11: + 76:ca:ac:72:47:ad:99:6b:8e:07:9e:38:f2:63:e1:ba:d4:df: + a9:73:54:1d:74:89:94:01:2e:68:dd:97:e7:53:f9:cf:b6:7d: + fc:87 +-----BEGIN CERTIFICATE----- +MIIDOTCCAqKgAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA4MB4XDTA5MTEyMDE1MzMy +MVoXDTM0MTExNDE1MzMyMVowaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA4MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCWeQGfT2jBCQ1EOoLk661wes+5ceX74MgMIXk+y3iRf0qg3j43D6Fr +cxASmwjEltzLqFuHm3Uk5ABeSm9ME3kfVxOMPhs4MeF3dFL5lEc2VzO93ggRowHh +Uxy9ezmcXpZcqWFszCuQjVo8nvRLbuWXZIbzjuhyIF0NUL/pz77UEwIDAQABo4H6 +MIH3MB0GA1UdDgQWBBTvvciOeHn5dksRWbbDMhAHwLzjijCBkQYDVR0jBIGJMIGG +gBTWZnbJBf+pUIiWYN37xzAYcmdBGaFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA4ggkAskfeaipMgxkwMQYIKwYBBQUH +AQEEJTAjMCEGCCsGAQUFBzABhhVodHRwOi8vbG9jYWxob3N0Ojg4ODgwDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBMlUQ7VwjsAez5PnyJHDCxTiYy +tlf6Jbzt69SiHGfuuYvQTFeKDtugnZLn3sZzAefeYRu1DtDFwaemq+DGC1Hd5aIy +H8ZS6tMDaDr1kr2LuAO7UHBjzOztPBF2yqxyR62Za44HnjjyY+G61N+pc1QddImU +AS5o3ZfnU/nPtn38hw== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/newcerts/1001.pem b/xmlsecurity/test_docs/CAs/Root_8/demoCA/newcerts/1001.pem new file mode 100755 index 000000000000..26368962e8d0 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/demoCA/newcerts/1001.pem @@ -0,0 +1,66 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4097 (0x1001) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 8 + Validity + Not Before: Nov 20 15:55:33 2009 GMT + Not After : Nov 14 15:55:33 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 2 Root 8 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e9:91:38:d8:c1:36:e5:c1:d0:32:e8:ae:02:11: + 97:e5:c5:07:8f:5b:46:3a:3c:d9:49:5e:9a:4b:51: + 4c:b7:7d:e9:d1:4f:a7:15:8c:c6:10:f6:fa:5f:a9: + 0b:1b:bc:de:56:f5:ad:a3:a0:40:f1:75:10:58:74: + 37:f9:b7:9f:76:ca:46:96:4c:1a:81:f4:a2:ce:88: + 8b:9e:00:6d:42:b3:d6:68:d1:67:d6:9f:b8:9c:3f: + 43:c7:36:bf:41:88:1b:e8:74:26:a0:51:5c:e2:ee: + 6d:9d:73:bb:0d:36:e1:5c:68:9f:21:3b:b2:aa:ed: + 39:1d:ae:fc:b4:ca:38:c2:fb + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 1B:AB:6B:0F:42:91:DC:1E:D4:7A:95:87:30:2D:CC:11:4F:35:B7:73 + X509v3 Authority Key Identifier: + keyid:D6:66:76:C9:05:FF:A9:50:88:96:60:DD:FB:C7:30:18:72:67:41:19 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 8 + serial:B2:47:DE:6A:2A:4C:83:19 + + Authority Information Access: + OCSP - URI:http://localhost:8888 + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 89:f8:8d:a8:e5:0b:2a:fb:f3:6a:80:2c:26:a1:a7:36:7e:a0: + c5:61:65:9d:7e:d6:47:60:b4:f6:72:e9:6e:2c:d9:f8:7f:c8: + 7a:5d:75:98:ad:88:de:e7:1b:44:a3:96:37:84:c0:b3:20:98: + 3b:b5:f6:ee:70:9c:04:7a:6c:88:05:75:7f:12:cf:b9:76:e8: + c0:17:0c:5e:eb:10:38:1e:54:41:58:56:f6:3c:ec:07:a5:c0: + 74:24:34:af:b3:c7:b2:58:85:47:0f:6c:e4:a0:9f:c8:7b:5c: + 95:77:17:e5:ad:eb:c3:86:44:f7:81:ef:cb:58:12:1a:6a:c7: + 19:95 +-----BEGIN CERTIFICATE----- +MIIDOTCCAqKgAwIBAgICEAEwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA4MB4XDTA5MTEyMDE1NTUz +M1oXDTM0MTExNDE1NTUzM1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDIgUm9vdCA4MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDpkTjYwTblwdAy6K4CEZflxQePW0Y6PNlJXppLUUy3fenRT6cVjMYQ +9vpfqQsbvN5W9a2joEDxdRBYdDf5t592ykaWTBqB9KLOiIueAG1Cs9Zo0WfWn7ic +P0PHNr9BiBvodCagUVzi7m2dc7sNNuFcaJ8hO7Kq7Tkdrvy0yjjC+wIDAQABo4H6 +MIH3MB0GA1UdDgQWBBQbq2sPQpHcHtR6lYcwLcwRTzW3czCBkQYDVR0jBIGJMIGG +gBTWZnbJBf+pUIiWYN37xzAYcmdBGaFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA4ggkAskfeaipMgxkwMQYIKwYBBQUH +AQEEJTAjMCEGCCsGAQUFBzABhhVodHRwOi8vbG9jYWxob3N0Ojg4ODgwDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQCJ+I2o5Qsq+/NqgCwmoac2fqDF +YWWdftZHYLT2culuLNn4f8h6XXWYrYje5xtEo5Y3hMCzIJg7tfbucJwEemyIBXV/ +Es+5dujAFwxe6xA4HlRBWFb2POwHpcB0JDSvs8eyWIVHD2zkoJ/Ie1yVdxflrevD +hkT3ge/LWBIaascZlQ== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_8/demoCA/private/cakey.pem new file mode 100755 index 000000000000..dd11db44373a --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,1DE6DE80057C280E + +1pXaFFR4KgVEWQzq73tQrfEkLZn7J0G0fxp1ZZYKOVdL3g/S4su2cXn5zfkSypjG +sTPnj9YuHzZiW1sB5M+U84b0aCSuh4+HK1Y+K6Us99psx/VaDq36uEBJZQviJ4zb +uF7ZT6NRGWMs3pIkFEHqi9TQ6mmeRgHMgkiI/mpM/26Y00dLpXdxBIGOCpKIPXwp +02mx/o9CHqI7ASuXV6ZAhawEmvFKKRNCKsKOaSs0CylGOT5nAaqWRp/IVMrm46wr +o7cErGgCZCPzQ5Ndx4553oSeWTjnm4iTS5UKg0nwPgS6sVhsr3zrTxIhS9zzcW2G +ycREX312K7q0zxtCxdNZxGeSfowRRy54JRoLf+O5yoNTRXYFjLxXGHgCTQRWgpIh +ggOmgUyIeNQXts4Qf6ddUtEcfGzMowCAJWTakXpOBoWj42mF85lDlcAAn8V1L90Q +MDF31HzrDAe3po4g+dNA6qdZrpSpnDDVp0oPsr3ooz1dLlwa8LWpPpq5PRgDWeQF +hcYrywI5tfUJyXv0xkEv+BIGKjGofWHGNtZWazBunhAVgWG/GQbzWxdSBS5w2waE +2Zo65PBqfLgRdnO6HYl15Pc5wm3gEQJo5VYgl7HmRpEt7lQrcnReqLWnsuHmqZ/H +vaEmGnSfXauVTvBVRXnrpznM/ROC9n2FR50lNIO1nAtMM7a0S0PIKgB+uNwAtsAR +Y4dY4YCS/io8wCL+DNBPtdvuY85/y5lnURpj9ojWO916WZsK/EFPJIQFuVwhal2C +Q9NVu8PXPDiBAHTVGZz8HoG32eYYUtqzeIY4Xo5ybUlnsNGlncWSqw== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_8/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_8/demoCA/serial new file mode 100755 index 000000000000..7d802a3e7104 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/demoCA/serial @@ -0,0 +1 @@ +1002 diff --git a/xmlsecurity/test_docs/CAs/Root_8/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_8/openssl.cfg new file mode 100755 index 000000000000..0353bced3bd2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_8/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Root_7.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Root_9/DO_NOT_INSTALL_THIS_ROOT_CERT.txt b/xmlsecurity/test_docs/CAs/Root_9/DO_NOT_INSTALL_THIS_ROOT_CERT.txt new file mode 100755 index 000000000000..ee3d2b339ef1 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/DO_NOT_INSTALL_THIS_ROOT_CERT.txt @@ -0,0 +1 @@ +!!!DO NOT INSTALL THIS ROOT CERTIFICATE!!! diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/DO_NO_INSTALL_THIS_ROOT_CERTIFICATE b/xmlsecurity/test_docs/CAs/Root_9/demoCA/DO_NO_INSTALL_THIS_ROOT_CERTIFICATE new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/Root_9.crt b/xmlsecurity/test_docs/CAs/Root_9/demoCA/Root_9.crt new file mode 100755 index 0000000000000000000000000000000000000000..66e316546ed42fde9bba204e3d94f56b1bcde7aa GIT binary patch literal 776 zcmXqLVrDUDV#-~>%*4pV#L2MawivH>&y{5cylk9WZ60mkc^Mg5Ss4uC4Y>_C*_cCF z*o2u}Tnz;b_&^*EVRnzi+@#W?bVG3iQIH6iFrR-xYMy^uT4r*pUOrGl#6Son!7a?~ zl3JFUlV6aVnpa}T53~R%$}G$ll%HRsU}+#H&TC+4XlP_?Xl!a^VjLyTYiwd@XlM@Q z(%u1$^O60`$jZRn*vnwh*vZt`$gtssT-&QtJG+fH)OL$L+$6&vmXy$EICDacpkJf@ z6YIby`&av}F?-W)Ge`MX-?W(;8%w1fmv!293C#L?&u{vTBj=s_-nmUS?!H`NtA2p3 z`bgNdS7$gs{H)PWh|4HsDw1B8@X)(y%hY)F#vEZM%X!5YrhZg))Ma12=5|_P|JA*R znV1ZQuN7kCJ{s2-dMd@BaUw`wnWeGQ zps}q1tD1$$OA=`wo=r$;i67)7VMfOPEUX61Kngjafr*P57{V(#OxziPs{ zf9(ekoM=>G+|8+(bI-M*+&gyJyuZ%#rdFlts=sF3vH7s`vg<;}|J}S)an061u}6YW zs36s}^|E)Mk%-Rvyk+sPejdD#t>*ow=12NzEtgy8fA}uDkY?g?u(a{D=dSV_sZ(o1 VPs``Ly|ju!pjxVfBj9NFVF3B<{8Rt{ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Root_9/demoCA/cacert.pem new file mode 100755 index 000000000000..ca53f28f7adb --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/demoCA/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAm2gAwIBAgIJAKTbFg1LjNSmMA0GCSqGSIb3DQEBBQUAMF8xCzAJBgNV +BAYTAkRFMRAwDgYDVQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9y +ZzEUMBIGA1UECxMLRGV2ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgOTAeFw0wOTEx +MjMxMzUyNDNaFw0zNDExMTcxMzUyNDNaMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgOTCBnzANBgkqhkiG9w0BAQEFAAOBjQAw +gYkCgYEAsOgehurKuYszsH2LFeGyHA9WYmCOMZmQfBFOgS/kO1Hkv6tNrDbshzyc +I/qOlpkosXUbQaaJPYoQmv3eTpfYxM9Dju5GkzOL03Q9J8AGe8RW1urMCfD5fC9g +XmhxAnIbrmDhS4K0lV8ngWwTQjmec9CV8SVBLQerrNtmcY/VvcMCAwEAAaOBxzCB +xDAdBgNVHQ4EFgQUzTNeq3MjUYC4A60SAQvFXo5VymQwgZEGA1UdIwSBiTCBhoAU +zTNeq3MjUYC4A60SAQvFXo5VymShY6RhMF8xCzAJBgNVBAYTAkRFMRAwDgYDVQQI +EwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2 +ZWxvcG1lbnQxDzANBgNVBAMTBlJvb3QgOYIJAKTbFg1LjNSmMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAqQkfiXNJm8l5v6qQzv6HwcDIgSQBuwkp +bN5FgHdLXaae/UOelXpmLSfrAbizw0Om1xLH/tnSeNY9MCGMGA4ScGU1hdNLUTIU +LK9upl/q+cHQayZL/Hz4Z8sqRNrP+E2m0GY0RMF1getJunfYZZV9VcsfbO3SqgAQ +exqICFDFi8M= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Root_9/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Root_9/demoCA/index.txt new file mode 100755 index 000000000000..c741bbfdaccc --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/demoCA/index.txt @@ -0,0 +1 @@ +V 341117135919Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Sub CA 1 Root 9 diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Root_9/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Root_9/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..0b38d4db4c7a --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/demoCA/newcerts/1000.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 9 + Validity + Not Before: Nov 23 13:59:19 2009 GMT + Not After : Nov 17 13:59:19 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 9 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:a9:6d:7f:6a:08:fb:e2:3a:5e:83:3f:ff:58:ba: + 92:a1:79:9d:ce:d2:0c:16:15:f2:7e:b3:e4:45:9c: + 02:32:65:9b:02:90:78:05:95:e4:04:1d:4a:05:bb: + ea:f6:ac:ab:15:74:c2:bc:ee:2a:c1:80:55:3e:93: + 1f:5c:94:eb:cf:cf:8f:15:eb:b8:22:fe:69:61:51: + a9:08:b8:80:bd:48:99:da:85:10:1c:75:97:fd:d3: + c3:c4:0b:dd:eb:01:12:5d:ee:62:62:c3:0c:18:ea: + ed:76:ff:9b:1c:1f:c7:81:f9:9a:cd:e5:25:89:b2: + 13:57:56:f3:27:53:72:76:69 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 7B:D3:57:BF:6A:CB:6C:10:81:91:DA:95:DC:88:4F:A5:D0:DB:D1:46 + X509v3 Authority Key Identifier: + keyid:CD:33:5E:AB:73:23:51:80:B8:03:AD:12:01:0B:C5:5E:8E:55:CA:64 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 9 + serial:A4:DB:16:0D:4B:8C:D4:A6 + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 17:67:b0:21:da:0d:a1:fe:09:62:d0:cf:1d:c0:c8:bd:d4:22: + dd:75:ec:04:e2:23:ae:ea:8c:15:fa:73:2e:83:f4:16:eb:c1: + e1:87:36:bd:58:d0:64:e0:6e:2c:bc:27:cb:dc:4b:58:01:80: + 48:27:53:bb:75:85:a7:19:b8:e2:c0:1f:9f:a2:18:27:82:3f: + 25:bf:17:d1:34:32:de:c4:81:9d:8a:39:6f:6b:1f:b6:12:61: + 74:78:96:6d:6e:52:23:4a:67:30:78:03:91:b7:89:bf:3c:4a: + 36:e3:95:21:38:35:af:05:55:81:05:25:91:78:ca:2f:5d:79: + d2:05 +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA5MB4XDTA5MTEyMzEzNTkx +OVoXDTM0MTExNzEzNTkxOVowaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA5MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCpbX9qCPviOl6DP/9YupKheZ3O0gwWFfJ+s+RFnAIyZZsCkHgFleQE +HUoFu+r2rKsVdMK87irBgFU+kx9clOvPz48V67gi/mlhUakIuIC9SJnahRAcdZf9 +08PEC93rARJd7mJiwwwY6u12/5scH8eB+ZrN5SWJshNXVvMnU3J2aQIDAQABo4HH +MIHEMB0GA1UdDgQWBBR701e/astsEIGR2pXciE+l0NvRRjCBkQYDVR0jBIGJMIGG +gBTNM16rcyNRgLgDrRIBC8VejlXKZKFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA5ggkApNsWDUuM1KYwDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQAXZ7Ah2g2h/gli0M8dwMi91CLddewE +4iOu6owV+nMug/QW68Hhhza9WNBk4G4svCfL3EtYAYBIJ1O7dYWnGbjiwB+fohgn +gj8lvxfRNDLexIGdijlvax+2EmF0eJZtblIjSmcweAORt4m/PEo245UhODWvBVWB +BSWReMovXXnSBQ== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Root_9/demoCA/private/cakey.pem new file mode 100755 index 000000000000..65149ff6505b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,EEC173CF380C4BEC + +3ZAmsMS1aFKb3EfOncYO+hg0ucK80Y7pHg7GaH2/XZ+b6HmVQrHKuDrIcQNGEY5Z +QTCBeCGhmh7hnemBSrco4HURl/2LlA5CoYyd6CCc79VeUQZRJdLjL2thD4x/QwQs +Vh9uG+nunEAXK2kI2sFAxCScoCXSZmAgQqAANQ3SHyJ14e8BlOVgucfD0afYEDNE +udc86lO8+Lz7HfTvysnKO06pgp30ZFJlnBzSBXkXsTShPWEPg8f+2JRc+A5PbxVM +gz/S/ZrPMg8QyIfwwCGjRKzyRBeXVfquXqrwNqtGI+HXo4QaYYT8zuYUn9XuJsac +ZFn2BoXhI6TCBzyM+yuoXp+Xx5plY2A8QXaiLdKO2usV5xcXaBY3XTczrnOfJh7f +F3B2mbfhr/s4UJaFmnG4eULklFGADRY5tN2bIutsWmuuw17/ZwUSZxsjl+TybqVi +uvfmEqrSgoZ9Qz1vvRngVAAwJPAvQqsBQwkq3WapNeoLqmQeSHq/6z4G5RKPbkMs +t21L4SBUGQMhkZWAnJEtECDGsQpDjjwbDuJzrbVTSBiNvDWWeXJuGdyhzI6b17v7 +CZosIrzE82Oo0C+afWJVek2cB8rIMbgqEL+3Sj7x9c/kGeLx957d+geTSStqjD3z +P574kcEDP9ppEHalg1ygJ6t3SjkTNMWrbuYH+GlY8all7rniMDYUDMECIj3Xrv+Q +x3Yzv07FAooDYBE4pdWtTjpBlmwxa68XaMSDG28jQwTHck30GU/gwrM74CKWsg8y +4eZAaeQKHeUYFGsxWeYfmwr7aD4pG+VYGOmRmdia5PA= +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Root_9/demoCA/serial b/xmlsecurity/test_docs/CAs/Root_9/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Root_9/openssl.cfg b/xmlsecurity/test_docs/CAs/Root_9/openssl.cfg new file mode 100755 index 000000000000..cc9663bbd5c5 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Root_9/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Root_7.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/cacert.pem new file mode 100755 index 000000000000..be26aa5d8f4b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/cacert.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 1 + Validity + Not Before: Nov 18 15:07:13 2009 GMT + Not After : Nov 12 15:07:13 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:d9:3a:8d:64:95:87:76:76:e8:61:c3:e9:65:f4: + a6:b7:0c:77:0e:4b:10:e8:14:a3:e1:84:69:7c:8e: + 97:d2:7d:01:ad:b2:dc:5c:cd:c6:91:a1:f3:93:7c: + 54:36:64:e3:ca:22:ca:00:cb:c6:91:ab:6b:26:88: + 69:60:9a:61:d7:59:17:db:93:7d:09:36:da:28:cb: + ec:2d:a4:26:bb:1a:42:20:b8:08:b2:0f:b9:77:a6: + 80:71:cf:13:f5:37:a2:90:4d:ab:e8:97:49:d2:80: + 94:8f:b1:9d:5a:b4:9f:de:ff:fa:b6:d6:e0:45:5f: + cc:d4:10:1e:32:46:7b:ba:55 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 37:71:74:81:44:DD:1E:B1:60:96:41:B7:4B:38:C4:B7:79:1B:CF:8A + X509v3 Authority Key Identifier: + keyid:0F:FA:C6:EB:DF:CE:B8:BB:B3:A9:3E:42:A6:BA:EC:D2:93:CA:47:A4 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 1 + serial:95:B0:05:2B:ED:C2:39:2D + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 18:f6:02:5e:75:04:5f:eb:3b:07:41:85:c0:9e:08:29:58:3d: + b5:6f:c2:aa:24:0d:93:1d:17:fc:be:d6:43:ac:43:d7:4d:a0: + 2c:40:fd:3d:d5:7e:91:46:25:49:62:ba:e9:7f:67:c2:fc:8a: + c3:a0:37:bf:ec:f9:54:bf:61:10:35:dd:5b:bb:da:7c:70:54: + 32:13:b9:ae:7d:ea:a5:7d:aa:55:3e:ef:0a:ef:12:fd:c3:f6: + e5:25:98:97:34:02:64:fd:88:79:b3:e2:f4:fc:ff:e7:d3:98: + f1:d9:d5:18:d9:b4:62:ae:99:88:61:2e:ff:02:6a:13:35:fe: + 37:c7 +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAxMB4XDTA5MTExODE1MDcx +M1oXDTM0MTExMjE1MDcxM1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAxMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDZOo1klYd2duhhw+ll9Ka3DHcOSxDoFKPhhGl8jpfSfQGtstxczcaR +ofOTfFQ2ZOPKIsoAy8aRq2smiGlgmmHXWRfbk30JNtooy+wtpCa7GkIguAiyD7l3 +poBxzxP1N6KQTavol0nSgJSPsZ1atJ/e//q21uBFX8zUEB4yRnu6VQIDAQABo4HH +MIHEMB0GA1UdDgQWBBQ3cXSBRN0esWCWQbdLOMS3eRvPijCBkQYDVR0jBIGJMIGG +gBQP+sbr3864u7OpPkKmuuzSk8pHpKFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAxggkAlbAFK+3COS0wDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQAY9gJedQRf6zsHQYXAnggpWD21b8Kq +JA2THRf8vtZDrEPXTaAsQP091X6RRiVJYrrpf2fC/IrDoDe/7PlUv2EQNd1bu9p8 +cFQyE7mufeqlfapVPu8K7xL9w/blJZiXNAJk/Yh5s+L0/P/n05jx2dUY2bRirpmI +YS7/AmoTNf43xw== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/crl/DO_NOT_CREATE_A_CRL b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/crl/DO_NOT_CREATE_A_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/crlnumber new file mode 100755 index 000000000000..83b33d238dab --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/crlnumber @@ -0,0 +1 @@ +1000 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/index.txt new file mode 100755 index 000000000000..e2027ce9f4ce --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/index.txt @@ -0,0 +1 @@ +V 341112152323Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 1 Sub CA 1 Root 1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..e7d22dfd0c87 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/newcerts/1000.pem @@ -0,0 +1,58 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 1 + Validity + Not Before: Nov 18 15:23:23 2009 GMT + Not After : Nov 12 15:23:23 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 1 Sub CA 1 Root 1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:c8:41:66:84:c7:d5:c5:72:8f:a6:98:1b:59:e2: + 33:ca:0d:d2:24:b3:c1:47:db:11:e2:bf:23:da:32: + 68:41:cc:ff:28:fe:9a:39:49:e7:08:f0:22:75:15: + 61:99:9e:99:e5:14:65:71:60:00:0f:58:42:70:78: + 5a:1e:d8:fa:97:92:82:0e:e3:0c:ac:20:dc:b8:e3: + 5e:87:8b:89:e3:a1:c3:87:49:1d:92:a5:fd:7c:77: + 79:ce:1f:fa:9c:5a:17:d9:11:0c:f2:7f:1a:fa:d8: + 32:41:f8:69:80:ae:8a:66:bd:36:c2:21:65:57:08: + be:cf:f0:ec:83:15:98:6d:65 + Exponent: 65537 (0x10001) + X509v3 extensions: + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + FF:BB:B0:7F:E3:0E:E3:8C:CF:EC:88:49:A9:0E:62:B5:D3:60:12:46 + X509v3 Authority Key Identifier: + keyid:37:71:74:81:44:DD:1E:B1:60:96:41:B7:4B:38:C4:B7:79:1B:CF:8A + + Signature Algorithm: sha1WithRSAEncryption + 33:dd:e8:57:3e:69:1b:a0:4c:83:51:99:dd:73:b0:0c:cb:c7: + c0:ff:12:8b:b6:3b:59:12:b9:f1:20:87:75:f0:71:6e:bc:94: + 47:72:62:ae:93:90:05:e2:ff:63:31:5a:d2:80:a5:4a:7f:57: + e9:f7:4e:3e:be:bd:4c:9e:74:07:19:b0:4d:88:97:af:23:a7: + 5a:23:af:d1:a9:98:9b:55:7e:fa:6b:18:77:03:c4:aa:49:bc: + b6:3d:66:3e:8d:0a:80:5f:ac:b9:58:fb:11:ef:60:db:ad:a8: + 79:41:83:1a:6a:61:87:99:64:2d:e4:6a:bb:c0:30:00:dd:69: + e5:92 +-----BEGIN CERTIFICATE----- +MIICvjCCAiegAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwaDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAxMB4XDTA5 +MTExODE1MjMyM1oXDTM0MTExMjE1MjMyM1owbzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEfMB0GA1UEAxMWVXNlciAxIFN1YiBDQSAxIFJvb3QgMTCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAyEFmhMfVxXKPppgbWeIzyg3SJLPBR9sR +4r8j2jJoQcz/KP6aOUnnCPAidRVhmZ6Z5RRlcWAAD1hCcHhaHtj6l5KCDuMMrCDc +uONeh4uJ46HDh0kdkqX9fHd5zh/6nFoX2REM8n8a+tgyQfhpgK6KZr02wiFlVwi+ +z/DsgxWYbWUCAwEAAaNwMG4wLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJh +dGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBT/u7B/4w7jjM/siEmpDmK102ASRjAf +BgNVHSMEGDAWgBQ3cXSBRN0esWCWQbdLOMS3eRvPijANBgkqhkiG9w0BAQUFAAOB +gQAz3ehXPmkboEyDUZndc7AMy8fA/xKLtjtZErnxIId18HFuvJRHcmKuk5AF4v9j +MVrSgKVKf1fp904+vr1MnnQHGbBNiJevI6daI6/RqZibVX76axh3A8SqSby2PWY+ +jQqAX6y5WPsR72Dbrah5QYMaamGHmWQt5Gq7wDAA3Wnlkg== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/private/cakey.pem new file mode 100755 index 000000000000..602026a47014 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,4E900CB191575111 + +vHLTGKUgxa3C35alVr0gWT30x8WW5Pmz4oFv23fMMWIXjrp/QLlRRmd2AO9H8rLb +3MWnA7cby5UTcrcsqwBA30TqhduNDi4iQFcOM60/S7yUFKjF5nj9bGi8XuUzMgTx +OrJuxMGkayLiELskZxEpi6SJvTEsSdreT6OvyhzXQfAFDodoJSW65oF08cuYxXzi +FFYFqvyWXa29WUyinBav5k3Mjax3Av3dYfMf/1u2n4vjGyjkfMg7mHrno19daWqa +FJsxHHFezq//G5+JvePWFQUo1b0fVh13fx9x1dCbCRGQ9duSXaI7BNfl2Jd2rlVk +xUMqnvd8VBNkW1AHxZL4csurQyO8ZQzg46w/kWaIMroeXbUnZYNJV7/TCs6nLGJF +iNwtsFAjunWgWttFbMx3X7L7T6f6cWXocOOTNeIDpH+W6Pw9vltrjzNPAyBBok17 +sboWXDtlihMrSq5lWzUSPE8gOueh7Bcf7fSnLTeXuOXgKooJVXelookSQzsilWmS +Fo5PTM+jOOaXVlbf8zfKFreLawohNkzagIxrCEP+HU+tF52ybJDP4mwPi1sQNcA0 +0luHyCL5EmaH5hVIqYeGUQoNPois5TqgYH1SEujyIuoNdEBi5r5qIRR/zz+BEpKU +Z1B+HmmSWb0hjfenFSSaSSmGyS6VW1wZsU2B+wcPr7r0uFqoWllkxYNmSdky6qmw +4Or0D6ayFUaJOQG6aTEfEVS31B4TUfFGfOLbeuUdwNa4/pNwMeFFSx+Xj7J3oYrn +udjIL0Hz8hhjLVXaPVcu/qkZ7pXhOVlRQJ7byx730G3+elUFalJ/eQ== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/serial b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/openssl.cfg b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/openssl.cfg new file mode 100755 index 000000000000..bf73e3549d66 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/DO_NOT_INSTALL_THIS_CERTIFICATE b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/DO_NOT_INSTALL_THIS_CERTIFICATE new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/README.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/README.txt new file mode 100755 index 000000000000..a18ed9ce0cd9 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/README.txt @@ -0,0 +1,19 @@ +Do NOT install !!! + + + +To provide the CRL via HTTP run + + + +java -jar ../../tools/httpserv/dist/httpserv.jar -a 8902 + + +To provide the intermediate certificate run + +java -jar ../../tools/httpserv/dist/httpserv.jar -a 8910 + + + + + diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/DO_NOT_INSTALL_THIS_CERTIFICATE b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/DO_NOT_INSTALL_THIS_CERTIFICATE new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/Sub_CA_1_Root_10.crt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/Sub_CA_1_Root_10.crt new file mode 100755 index 0000000000000000000000000000000000000000..2bb9a4289404e2314fca6163cb62c01ff8f2802b GIT binary patch literal 781 zcmXqLV&*hxVk%m|%*4pV#3aCAz{|#|)#lOmotKf3m6gFD!I0a4lZ`o)g-w{r#nn*2 zfDgps5N7vC%uOmSN;ecY5Cw^F3G?|Eq~`gjrDZ0k>g59^L=1#L65PVvE~#ayIr#;- zsd*(Z1DJ)`gYxrB6buavwU3py z1zQ?4P6Ej*vov-YG`2U0oLIiNL7^lk|BYbPw|!~?=7#MXsurd!Nuqt+HgPiSKf%BI z<^rp11AdU3gc%wCv#=U411aQ?1|~FSU=U~Xm*$3T@N<<+T^sP;uRUjKEURUdbIg`N z)md-8OuqQx+r+zz%ct^`*sQEM^eyS!{)qTA`3s?^Zs;D7)3jO}sxw!ozi-~THR5&B z7sYN0mBr}V&n-w>Woh!^jiI-9lnBq!Xqyx6OcPF*U-$12Sl(cJN-}0E%gGN9rK941 JCvFni3IGx)`0@Y% literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/cacert.pem new file mode 100755 index 000000000000..1f27b97b3d17 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/cacert.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 10 + Validity + Not Before: Nov 23 15:14:48 2009 GMT + Not After : Nov 17 15:14:48 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 10 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:e4:d5:66:14:88:9f:79:41:50:b0:d1:a0:1b:98: + bf:b0:21:34:30:36:70:58:6f:8b:58:f1:b9:58:3a: + ce:29:6b:65:b6:11:f7:0d:c8:a6:c3:be:db:0f:2a: + 4e:c7:42:df:c9:0e:13:c0:00:0f:af:b5:71:c4:bc: + dd:82:fc:4a:27:c0:ee:af:ba:e1:7b:67:de:6b:bb: + ac:4c:fe:88:01:1a:73:4e:f5:32:15:3a:d0:cb:6b: + 97:84:1b:6c:d0:d6:91:a8:a4:5a:87:2a:69:61:36: + 1d:42:cc:16:d0:03:9c:c6:90:5c:61:20:8b:b1:be: + b6:54:24:5b:6f:1f:a9:5a:6f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 11:63:A1:BE:8B:E3:56:07:E6:A3:9F:23:39:72:7D:E3:22:B6:53:39 + X509v3 Authority Key Identifier: + keyid:C8:A7:A3:80:20:74:6C:6F:EC:11:7A:F6:BE:26:10:37:31:87:B0:7A + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 10 + serial:BF:C8:0F:BB:D9:A0:3A:6B + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 6b:0f:75:6d:56:b0:4e:45:19:65:ad:50:ef:4e:87:6c:95:5d: + 05:39:5a:43:5c:b4:51:25:9a:ec:f4:93:d1:f0:f6:91:dd:a3: + 77:95:0c:74:3c:a9:7c:c2:f6:62:ce:bf:58:5f:66:1f:d0:55: + ca:d8:2d:c4:1e:29:3a:ad:55:2c:9d:2c:8f:8e:9e:ce:ac:17: + 7e:1b:d1:16:d9:12:76:5c:2d:3f:9d:70:66:aa:39:34:f0:ec: + 31:4b:4b:5a:14:0c:c5:5b:3c:c8:47:02:90:cb:77:d7:4f:88: + 10:a7:80:3d:ca:19:5c:b5:04:c9:f0:e1:1b:5a:5f:fb:61:b2: + 14:b5 +-----BEGIN CERTIFICATE----- +MIIDCTCCAnKgAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwYDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEQMA4GA1UEAxMHUm9vdCAxMDAeFw0wOTExMjMxNTE0 +NDhaFw0zNDExMTcxNTE0NDhaMGkxCzAJBgNVBAYTAkRFMRAwDgYDVQQIEwdIYW1i +dXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxMLRGV2ZWxvcG1l +bnQxGTAXBgNVBAMTEFN1YiBDQSAxIFJvb3QgMTAwgZ8wDQYJKoZIhvcNAQEBBQAD +gY0AMIGJAoGBAOTVZhSIn3lBULDRoBuYv7AhNDA2cFhvi1jxuVg6zilrZbYR9w3I +psO+2w8qTsdC38kOE8AAD6+1ccS83YL8SifA7q+64Xtn3mu7rEz+iAEac071MhU6 +0Mtrl4QbbNDWkaikWocqaWE2HULMFtADnMaQXGEgi7G+tlQkW28fqVpvAgMBAAGj +gcgwgcUwHQYDVR0OBBYEFBFjob6L41YH5qOfIzlyfeMitlM5MIGSBgNVHSMEgYow +gYeAFMino4AgdGxv7BF69r4mEDcxh7B6oWSkYjBgMQswCQYDVQQGEwJERTEQMA4G +A1UECBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsT +C0RldmVsb3BtZW50MRAwDgYDVQQDEwdSb290IDEwggkAv8gPu9mgOmswDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBrD3VtVrBORRllrVDvTodslV0F +OVpDXLRRJZrs9JPR8PaR3aN3lQx0PKl8wvZizr9YX2Yf0FXK2C3EHik6rVUsnSyP +jp7OrBd+G9EW2RJ2XC0/nXBmqjk08OwxS0taFAzFWzzIRwKQy3fXT4gQp4A9yhlc +tQTJ8OEbWl/7YbIUtQ== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crl/DO_NOT_INSTALL_THIS_CRL b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crl/DO_NOT_INSTALL_THIS_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crl/Sub_CA_1_Root_10.crl b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crl/Sub_CA_1_Root_10.crl new file mode 100755 index 0000000000000000000000000000000000000000..67ed32da5f5b84a2550cbea062d07cbd0455ff5d GIT binary patch literal 326 zcmXqLVstWST*Ji3Xu!+HsnzDu_MMlJk(HIfAk&cBfRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2hLQ&2 zAW>#vf#A|41!qSELxrIH{1OF2194shOG85=V?$FT0|SdFab9B+LqkJzD0czB0j~i! zP^+v63kwsI00WvsnHw7!Lf>m|^HM&yyp7!>sjGlX#WP)|^XZ0!>E2SMhYICc_D4Cd z6}%|7J7dzaeShTxRQ66bZ>-T&IsEKz;}O>d$+;#Qw@aD+F65Maq|WrfCUc5Z*hD_T z150Jz)bR)PYzYW1pB;6r@7JLRvQ6?K8;njL(F)vCJV94svAIRrzatwwh3)_VBPwDk literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/index.txt new file mode 100755 index 000000000000..810ec7ef2ffe --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/index.txt @@ -0,0 +1 @@ +V 341117153149Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 1 Sub CA 1 Root 10 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..7449048bbc59 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/newcerts/1000.pem @@ -0,0 +1,67 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 10 + Validity + Not Before: Nov 23 15:31:49 2009 GMT + Not After : Nov 17 15:31:49 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 1 Sub CA 1 Root 10 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ce:41:53:5f:ba:d9:26:e4:45:14:74:a9:f2:9e: + fa:91:50:ea:fe:e7:76:76:6e:62:26:4c:a2:bd:c9: + 98:ce:1d:b3:74:ea:95:04:ec:d8:24:ac:29:de:2d: + 7f:2f:7f:10:94:24:d2:0c:0b:ff:d0:38:f1:a9:8f: + ee:25:97:bf:bd:b0:1f:24:d7:9d:7a:20:79:c0:73: + 97:12:cb:5a:cf:6d:4f:df:4a:a8:9c:1b:be:49:63: + 1f:b1:03:6d:c6:5f:69:5c:0d:7e:81:23:48:2a:76: + 80:53:53:d2:03:f6:56:6d:dc:e3:cc:be:cb:0f:c3: + 1b:b7:6e:79:33:e0:da:f6:5d + Exponent: 65537 (0x10001) + X509v3 extensions: + Authority Information Access: + CA Issuers - URI:http://localhost:8910/demoCA/Sub_CA_1_Root_10.crt + + X509v3 CRL Distribution Points: + URI:http://localhost:8902/demoCA/crl/Sub_CA_1_Root_10.crl + + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 90:DC:ED:B0:CB:62:A1:BE:8F:23:65:01:79:14:85:22:48:70:7B:A1 + X509v3 Authority Key Identifier: + keyid:11:63:A1:BE:8B:E3:56:07:E6:A3:9F:23:39:72:7D:E3:22:B6:53:39 + + Signature Algorithm: sha1WithRSAEncryption + 54:e3:d2:eb:dc:aa:db:8b:88:34:c6:b9:5b:f6:d8:ca:81:24: + d0:ba:4c:c2:a7:8e:82:22:d3:68:64:c9:61:9b:0a:00:3e:d1: + 4e:cb:83:1d:b9:c7:07:6a:5e:7b:b4:ca:92:0c:93:d7:9e:99: + e1:58:47:17:b0:a7:6d:68:5f:e5:59:f9:2a:d1:96:df:b6:9f: + bc:47:40:f2:71:ed:71:2b:8a:6e:6f:aa:29:9f:4d:98:ee:f1: + aa:63:b4:44:39:58:8a:f8:c2:af:8d:c1:49:92:b4:99:02:2f: + 27:c7:5b:f5:30:7c:ed:67:ff:cd:12:dc:a7:c4:8e:98:4f:2c: + e0:05 +-----BEGIN CERTIFICATE----- +MIIDODCCAqGgAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwaTELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEZMBcGA1UEAxMQU3ViIENBIDEgUm9vdCAxMDAeFw0w +OTExMjMxNTMxNDlaFw0zNDExMTcxNTMxNDlaMHAxCzAJBgNVBAYTAkRFMRAwDgYD +VQQIEwdIYW1idXJnMRcwFQYDVQQKEw5PcGVuT2ZmaWNlLm9yZzEUMBIGA1UECxML +RGV2ZWxvcG1lbnQxIDAeBgNVBAMTF1VzZXIgMSBTdWIgQ0EgMSBSb290IDEwMIGf +MA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDOQVNfutkm5EUUdKnynvqRUOr+53Z2 +bmImTKK9yZjOHbN06pUE7NgkrCneLX8vfxCUJNIMC//QOPGpj+4ll7+9sB8k1516 +IHnAc5cSy1rPbU/fSqicG75JYx+xA23GX2lcDX6BI0gqdoBTU9ID9lZt3OPMvssP +wxu3bnkz4Nr2XQIDAQABo4HnMIHkME0GCCsGAQUFBwEBBEEwPzA9BggrBgEFBQcw +AoYxaHR0cDovL2xvY2FsaG9zdDo4OTEwL2RlbW9DQS9TdWJfQ0FfMV9Sb290XzEw +LmNydDBGBgNVHR8EPzA9MDugOaA3hjVodHRwOi8vbG9jYWxob3N0Ojg5MDIvZGVt +b0NBL2NybC9TdWJfQ0FfMV9Sb290XzEwLmNybDALBgNVHQ8EBAMCBeAwHQYDVR0O +BBYEFJDc7bDLYqG+jyNlAXkUhSJIcHuhMB8GA1UdIwQYMBaAFBFjob6L41YH5qOf +IzlyfeMitlM5MA0GCSqGSIb3DQEBBQUAA4GBAFTj0uvcqtuLiDTGuVv22MqBJNC6 +TMKnjoIi02hkyWGbCgA+0U7Lgx25xwdqXnu0ypIMk9eemeFYRxewp21oX+VZ+SrR +lt+2n7xHQPJx7XErim5vqimfTZju8apjtEQ5WIr4wq+NwUmStJkCLyfHW/UwfO1n +/80S3KfEjphPLOAF +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/private/cakey.pem new file mode 100755 index 000000000000..260e3aa94624 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,170F9697C268C4B5 + +eIaE0ShuxMcOUBJBlI7PXIuKg69hDunjUz55iy0I+4sGc9tFK+vtjvDZWxx+dpZI +WKGto0fDeobBf3f2xgKQFcwAtUPtiTMXk8C0BYfAbXsTYBgOgvKwJGOIo5FsjukZ +VJCNlUM1mwX5P3OrLdyT0j8OoL6lINztYDhSC8XL12YJk1j05yN4Gl8N108JQMLA +sywA2Q6WIhPloZQXtHkiN2mlQ7WWwbSBbaUbdXNQKk6sXelFLPMOk+JOTCLp9kHU +svTBAg7RyWKBuUmtEmkipNLtYhdkRVJ/dgL3/TAsZET6cjDd/eZg+1Kl0pn93KGv +avSQKppkKNjUcWkZiuM1imS8+0qeMiw56JQGzMdEeSjadcTdsyYb0lssXmndK/z0 +90bA6GegvCnsq6Wj0Nz97GbK+ZMzA76e+HPQLli0j3poAlVwdzBCFRyLO4ET5Qzl +OhTewxKZxe2yx75chECWJS+CLOajHkVyUe3x6QzyVuU+YZqjXWkJP7rTcQJZFcml ++3PHYWy5RnZ2sKOegksr3+QtL+UmDVa1xEeIhk3m0IMiYZ9HNWlrg1gedY02y9yY +MGsCOkCF10KnCNIp4j5s1kGMicdMquDt0jTXwu+8jt6Skh8FWcr9aLf0bNc63oHg +NaI7Y3+Ssl3GLUGFOGwC0lpooZ10SoJJDK9xxEjt48vUfX+Npn3bRv+UlwfLBYLo +GENyNV3OVAsKYQ8fGIh/gTeIqwMUdo7Efcs6bdeqiOrYQhBl04Gty0I4cO6/lFGd +by/4SesYDXoVtaKto1B5VOQn+QxovF7eY1pK6wDBU8+EaJbGSNK9Rw== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/serial b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/openssl.cfg b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/openssl.cfg new file mode 100755 index 000000000000..c67e455ac4e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_10/openssl.cfg @@ -0,0 +1,293 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8889 +authorityInfoAccess = caIssuers;URI:http://localhost:8910/demoCA/Sub_CA_1_Root_10.crt +crlDistributionPoints=URI:http://localhost:8902/demoCA/crl/Sub_CA_1_Root_10.crl +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +#nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/cacert.pem new file mode 100755 index 000000000000..36a8eb3c0709 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/cacert.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 2 + Validity + Not Before: Nov 18 15:55:38 2009 GMT + Not After : Nov 12 15:55:38 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:f0:7a:16:4c:ab:06:b2:af:27:9c:7d:3f:86:da: + de:7a:c3:01:67:77:56:49:09:ed:ed:31:72:83:e8: + 75:9c:4c:ce:f9:97:b6:63:3c:e2:ca:83:80:92:03: + 9c:96:e2:de:72:79:c1:cf:3e:3f:b9:0d:b4:87:c7: + 75:e6:56:8d:aa:f8:77:47:11:4e:fe:07:b0:1d:64: + 06:73:4b:6f:d4:ac:da:0f:05:87:b1:f1:98:a9:f5: + 8a:a1:a8:ed:17:9c:26:b8:da:92:63:d2:53:87:e6: + fc:ed:44:de:94:56:90:3e:a2:a1:67:08:cb:38:d4: + cf:17:3b:7e:ff:7a:97:c0:7b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 8C:F3:2C:30:A2:E8:62:50:70:BC:FC:71:A0:41:FA:E0:58:B4:4D:B8 + X509v3 Authority Key Identifier: + keyid:5F:BC:4C:DA:EB:0A:0C:B5:23:43:5E:24:32:27:79:41:F5:82:A3:02 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 2 + serial:A2:AF:15:89:EC:73:54:86 + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 52:83:16:ab:0e:43:2d:b3:e4:0f:6c:c1:63:d4:86:ac:e7:1e: + ee:7b:ee:9b:0c:ff:4f:e0:59:d5:e4:27:af:68:bf:a7:f5:2a: + a3:c9:e3:2b:8d:b7:31:26:f6:04:80:4e:f2:a5:bf:da:63:5e: + 8c:d6:c6:b2:46:a0:46:10:2f:84:9f:02:76:f3:c8:33:05:62: + 0c:5f:2d:cc:06:23:53:9f:d9:f8:46:e4:2e:5c:da:05:fc:bf: + db:45:b4:ac:8d:8b:b5:4b:60:7b:7b:26:34:7f:b1:4b:41:96: + 41:26:70:7a:9d:78:a2:9b:e0:de:62:a2:04:86:9f:ed:7c:a6: + 20:eb +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAyMB4XDTA5MTExODE1NTUz +OFoXDTM0MTExMjE1NTUzOFowaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAyMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDwehZMqwayryecfT+G2t56wwFnd1ZJCe3tMXKD6HWcTM75l7ZjPOLK +g4CSA5yW4t5yecHPPj+5DbSHx3XmVo2q+HdHEU7+B7AdZAZzS2/UrNoPBYex8Zip +9YqhqO0XnCa42pJj0lOH5vztRN6UVpA+oqFnCMs41M8XO37/epfAewIDAQABo4HH +MIHEMB0GA1UdDgQWBBSM8ywwouhiUHC8/HGgQfrgWLRNuDCBkQYDVR0jBIGJMIGG +gBRfvEza6woMtSNDXiQyJ3lB9YKjAqFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAyggkAoq8ViexzVIYwDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBSgxarDkMts+QPbMFj1Ias5x7ue+6b +DP9P4FnV5CevaL+n9SqjyeMrjbcxJvYEgE7ypb/aY16M1sayRqBGEC+EnwJ288gz +BWIMXy3MBiNTn9n4RuQuXNoF/L/bRbSsjYu1S2B7eyY0f7FLQZZBJnB6nXiim+De +YqIEhp/tfKYg6w== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/index.txt new file mode 100755 index 000000000000..ae1f2d1e4c05 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/index.txt @@ -0,0 +1 @@ +V 341112160955Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 1 Sub CA 1 Root 2 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..a8c0b74caf11 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/newcerts/1000.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 2 + Validity + Not Before: Nov 18 16:09:55 2009 GMT + Not After : Nov 12 16:09:55 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 1 Sub CA 1 Root 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:c7:00:aa:e0:5a:42:af:9c:b5:43:8c:f4:7d:7a: + 0f:ee:a9:19:22:d8:47:14:af:b4:e4:dd:5d:41:92: + a1:2b:32:39:5c:71:88:10:e3:77:87:b6:d5:38:85: + de:4b:91:c6:17:97:8e:3d:96:b3:af:8c:9d:74:8c: + 88:7f:2a:72:9a:ca:1a:1b:56:6c:63:2e:a4:a0:fc: + 3a:7b:0d:c2:16:15:d0:80:15:29:de:cd:0b:74:bc: + 5e:31:84:71:a4:fd:be:9b:06:6a:0c:47:1d:f9:e4: + c1:98:ae:46:e6:e2:51:55:d5:bb:ab:05:28:69:b5: + f8:35:32:d6:f0:64:d8:44:81 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 71:60:2B:22:B5:DF:FC:38:7E:79:F3:EF:7C:96:5F:C1:D2:42:9C:61 + X509v3 Authority Key Identifier: + keyid:8C:F3:2C:30:A2:E8:62:50:70:BC:FC:71:A0:41:FA:E0:58:B4:4D:B8 + + Signature Algorithm: sha1WithRSAEncryption + e5:b8:1a:43:82:75:20:48:e0:52:d0:46:25:6f:f7:5b:a9:3f: + 9e:cd:db:45:da:15:53:95:e7:c8:74:7b:e0:e4:2c:8c:f6:4d: + 1c:73:6e:2c:11:eb:c1:dc:4c:1d:50:e3:e8:10:2f:03:20:06: + ff:d7:4f:c9:a2:2e:ef:85:27:92:31:47:64:c8:75:f2:fc:a4: + 9d:c9:53:55:c5:da:69:b0:96:99:fd:ac:c4:16:40:ea:0c:1b: + 32:c3:fd:65:1d:03:ad:be:60:88:7c:70:53:35:91:ce:13:e2: + 3d:23:6b:e8:23:c0:3c:9a:57:5f:ad:4b:03:94:92:16:62:f9: + d4:01 +-----BEGIN CERTIFICATE----- +MIICyzCCAjSgAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwaDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAyMB4XDTA5 +MTExODE2MDk1NVoXDTM0MTExMjE2MDk1NVowbzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEfMB0GA1UEAxMWVXNlciAxIFN1YiBDQSAxIFJvb3QgMjCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAxwCq4FpCr5y1Q4z0fXoP7qkZIthHFK+0 +5N1dQZKhKzI5XHGIEON3h7bVOIXeS5HGF5eOPZazr4yddIyIfypymsoaG1ZsYy6k +oPw6ew3CFhXQgBUp3s0LdLxeMYRxpP2+mwZqDEcd+eTBmK5G5uJRVdW7qwUoabX4 +NTLW8GTYRIECAwEAAaN9MHswCwYDVR0PBAQDAgXgMCwGCWCGSAGG+EIBDQQfFh1P +cGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUcWArIrXf/Dh+ +efPvfJZfwdJCnGEwHwYDVR0jBBgwFoAUjPMsMKLoYlBwvPxxoEH64Fi0TbgwDQYJ +KoZIhvcNAQEFBQADgYEA5bgaQ4J1IEjgUtBGJW/3W6k/ns3bRdoVU5XnyHR74OQs +jPZNHHNuLBHrwdxMHVDj6BAvAyAG/9dPyaIu74UnkjFHZMh18vyknclTVcXaabCW +mf2sxBZA6gwbMsP9ZR0Drb5giHxwUzWRzhPiPSNr6CPAPJpXX61LA5SSFmL51AE= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/private/cakey.pem new file mode 100755 index 000000000000..ba6119464f9e --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,A5EF3D451C410026 + +RByk5Bn7uG1eixW1qTghnNri2bQHvnrNUYcpSL/mJIx6NjuYEY6vE/vQ9A9qcjuZ +8NInLR1w+EmSlDS499za8dfllaJ4/djswWN+4gtkoP/kKF390AcNgIpf/gIiJX6d +tkrw3Esst2gUwdtdhWItQNh0qZoeWpY9KlraDdEYVZt46JmsgwEIufzHyHTHf53C +E9ZP7/vYBQeHPOvMGsvhwZWAZZOO5GnD4fktbVAnybQdnlPgJDrRTGabbTdawQNc +8GJoG6hgJPcwlYm7NbRrtB18L3bG4bxx95fjqeOtvGDSUxSY+FNV7B2xQpivnBu6 +ppLdwTRYHQGOCJSCZoCtW+GYM7wXR2L4kGXMPwB4hHUAQXt+Tva9TP0t96313lMW +bFTRgTcT71eBidEkUIn1OrOL/Al2lXvSaDhm0P2F0yElzj3JN/gqrIUChaXWcLrS +CZuOGA2zGpoBASQ5jF+CyC+5mEkmDgvbmAXiJNjNmK/ColklpTNRSGk65Vr8AufA +d/yoSQCGprhMgqhviue40MGSsOD58TLwR4Tsm5ptze0QYRNC2SkKCrgtS0IEXh/Z +/9cMAgwOypW1T7LMOV+rG9DOyKx9Ye+oxPLCHdS7wN4h6blusiESbbUW0f5wqAzF +FCe6VEd+AjahnQLjw7O8vP4zl8q99cjOYD5SB+wqYrr0beEely7xdpKrDMgXqiBe +tOE9XvgU9KR59GZd0l6FPRkpZCUA+3Wuu4Zvrbam5kEbxVy+VTamWd5cRrxbJBM4 +Ipn414lfeq/5Foz13roErJE6gbWxXeCFDzg0z5fjWc2T41PX58x4Tw== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/req.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/req.pem new file mode 100755 index 000000000000..cc93d02e540c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/req.pem @@ -0,0 +1,11 @@ +-----BEGIN CERTIFICATE REQUEST----- +MIIBqDCCARECAQAwaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1cmcxFzAV +BgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVudDEYMBYG +A1UEAxMPU3ViIENBIDEgUm9vdCAyMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB +gQDwehZMqwayryecfT+G2t56wwFnd1ZJCe3tMXKD6HWcTM75l7ZjPOLKg4CSA5yW +4t5yecHPPj+5DbSHx3XmVo2q+HdHEU7+B7AdZAZzS2/UrNoPBYex8Zip9YqhqO0X +nCa42pJj0lOH5vztRN6UVpA+oqFnCMs41M8XO37/epfAewIDAQABoAAwDQYJKoZI +hvcNAQEFBQADgYEADbuni6Yq0l5FJGFDUaabv4T75XxyMWy+k6wSojSt1thtwcJI +Bx5x1ngG5VyxeNmqyjLvd2KeYsVaV8M9J9ty40QGL8F83OArJPGADtBSM+gwmjdu +C+ksYL+5Yl8vSY3M7tKqJB2AFk2QlfP5okMQWRJ5QFTTwA8EFpHFsy4gsks= +-----END CERTIFICATE REQUEST----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/serial b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/openssl.cfg b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/openssl.cfg new file mode 100755 index 000000000000..5f9493f47e9b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_2/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/cacert.pem new file mode 100755 index 000000000000..c14880b580c7 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/cacert.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 3 + Validity + Not Before: Nov 20 07:40:39 2009 GMT + Not After : Nov 14 07:40:39 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:9e:87:1f:af:f0:a0:1c:f4:9e:f8:c3:e7:ee:d3: + cb:a8:e2:54:98:ba:dd:7e:dc:6e:14:e1:7e:7f:5b: + 1e:ef:53:3d:89:76:ea:e2:b3:6c:08:0d:e8:c8:4d: + 24:40:ff:92:f3:5b:51:f7:90:ac:69:37:29:90:f5: + e8:95:6f:67:d1:10:cd:7b:dd:65:38:d6:25:ec:63: + 39:ba:2e:ea:13:58:8e:7a:82:8e:10:d1:7b:77:7a: + 08:d5:82:66:62:a4:83:39:ad:f5:83:d5:2f:5c:bc: + 23:6e:c8:78:8b:38:9f:eb:a3:67:ba:43:fa:e4:07: + 3f:90:72:db:0c:f9:49:0e:0d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 1B:2D:E0:A2:26:7F:0D:BA:38:7E:EC:06:81:81:0F:12:74:4C:5A:4D + X509v3 Authority Key Identifier: + keyid:69:FF:30:EC:1F:34:9A:67:3A:6B:20:D2:DF:7F:F5:05:04:ED:F9:1C + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 3 + serial:95:6F:F0:E3:2B:BE:76:F9 + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 6f:ac:53:9d:16:6e:95:ed:97:60:ed:c8:a8:96:ab:24:c5:1e: + d5:d7:26:98:fb:b5:aa:ef:da:a4:91:6a:82:55:ec:21:a2:08: + 24:c7:0c:a7:58:0c:06:69:3d:04:7d:08:f1:0b:77:41:ad:1c: + 13:c2:bd:17:c9:9e:ff:df:64:69:8b:58:f1:bc:40:bd:cf:e4: + 57:29:bc:5e:93:84:61:56:4c:e6:c1:3a:2c:6e:71:ea:5d:67: + c0:54:be:4f:2f:27:a8:59:8d:29:94:ba:c6:6c:ff:ed:25:3d: + 0b:fa:93:c9:45:f4:d5:a3:3d:be:8a:f1:9d:c4:92:d5:5c:d2: + 77:7c +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAzMB4XDTA5MTEyMDA3NDAz +OVoXDTM0MTExNDA3NDAzOVowaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAzMIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCehx+v8KAc9J74w+fu08uo4lSYut1+3G4U4X5/Wx7vUz2Jduris2wI +DejITSRA/5LzW1H3kKxpNymQ9eiVb2fREM173WU41iXsYzm6LuoTWI56go4Q0Xt3 +egjVgmZipIM5rfWD1S9cvCNuyHiLOJ/ro2e6Q/rkBz+QctsM+UkODQIDAQABo4HH +MIHEMB0GA1UdDgQWBBQbLeCiJn8Nujh+7AaBgQ8SdExaTTCBkQYDVR0jBIGJMIGG +gBRp/zDsHzSaZzprINLff/UFBO35HKFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCAzggkAlW/w4yu+dvkwDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBvrFOdFm6V7Zdg7ciolqskxR7V1yaY ++7Wq79qkkWqCVewhoggkxwynWAwGaT0EfQjxC3dBrRwTwr0XyZ7/32Rpi1jxvEC9 +z+RXKbxek4RhVkzmwTosbnHqXWfAVL5PLyeoWY0plLrGbP/tJT0L+pPJRfTVoz2+ +ivGdxJLVXNJ3fA== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/crl/DO_NOT_CREATE_A_CRL b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/crl/DO_NOT_CREATE_A_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/crlnumber new file mode 100755 index 000000000000..83b33d238dab --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/crlnumber @@ -0,0 +1 @@ +1000 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/index.txt new file mode 100755 index 000000000000..bd3b5eaeaeb0 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/index.txt @@ -0,0 +1 @@ +V 341114075225Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 1 Sub CA 1 Root 3 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..46d60bda0a83 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/newcerts/1000.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 3 + Validity + Not Before: Nov 20 07:52:25 2009 GMT + Not After : Nov 14 07:52:25 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 1 Sub CA 1 Root 3 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:bc:82:f1:75:77:02:f8:fb:3a:c2:8d:3c:1b:cb: + b2:63:2e:89:07:92:6b:b4:e1:ab:ce:30:a1:a4:82: + 38:30:64:2a:ba:01:c6:ac:ee:03:cc:65:bf:83:3e: + 39:b8:ce:ac:45:99:97:f9:94:e2:7d:5d:f3:c5:f7: + d4:a5:d6:57:cf:24:c1:d7:56:eb:00:9c:5d:80:bc: + 23:0c:91:d6:8e:2a:62:f6:af:4d:c9:19:5b:dd:16: + be:21:54:51:71:be:f2:c6:64:c5:bb:8e:37:49:c9: + 4d:68:82:3a:42:8a:e3:de:ab:fa:c7:ff:a5:b4:c7: + 53:8f:17:a4:66:9d:c3:8e:b1 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 0B:DD:2E:E9:5C:8A:5F:67:C9:75:4C:B3:04:DB:95:2F:D8:74:76:EF + X509v3 Authority Key Identifier: + keyid:1B:2D:E0:A2:26:7F:0D:BA:38:7E:EC:06:81:81:0F:12:74:4C:5A:4D + + Signature Algorithm: sha1WithRSAEncryption + 18:2f:af:1a:27:c7:f8:81:cd:d5:31:a0:f2:06:05:94:d6:12: + 11:88:24:ae:4f:f6:86:18:bf:d0:1b:c9:19:7a:47:30:0e:fb: + 30:b2:50:31:8d:30:6b:8b:54:17:67:bc:b8:c1:d5:1c:6c:95: + c5:e4:c4:ad:12:39:2f:38:ee:53:6a:cf:be:1c:4f:ac:98:0c: + ea:eb:0b:48:3d:5e:7a:2b:ed:02:8b:34:89:0a:d8:32:b4:6f: + f4:b2:06:96:aa:6b:ae:19:38:ec:9f:47:43:3b:7b:bd:71:38: + 99:4f:b4:1e:87:95:73:63:76:d4:ff:21:57:2c:c3:f4:3c:fd: + cb:c3 +-----BEGIN CERTIFICATE----- +MIICyzCCAjSgAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwaDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCAzMB4XDTA5 +MTEyMDA3NTIyNVoXDTM0MTExNDA3NTIyNVowbzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEfMB0GA1UEAxMWVXNlciAxIFN1YiBDQSAxIFJvb3QgMzCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAvILxdXcC+Ps6wo08G8uyYy6JB5JrtOGr +zjChpII4MGQqugHGrO4DzGW/gz45uM6sRZmX+ZTifV3zxffUpdZXzyTB11brAJxd +gLwjDJHWjipi9q9NyRlb3Ra+IVRRcb7yxmTFu443SclNaII6Qorj3qv6x/+ltMdT +jxekZp3DjrECAwEAAaN9MHswCwYDVR0PBAQDAgXgMCwGCWCGSAGG+EIBDQQfFh1P +cGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUC90u6VyKX2fJ +dUyzBNuVL9h0du8wHwYDVR0jBBgwFoAUGy3goiZ/Dbo4fuwGgYEPEnRMWk0wDQYJ +KoZIhvcNAQEFBQADgYEAGC+vGifH+IHN1TGg8gYFlNYSEYgkrk/2hhi/0BvJGXpH +MA77MLJQMY0wa4tUF2e8uMHVHGyVxeTErRI5LzjuU2rPvhxPrJgM6usLSD1eeivt +Aos0iQrYMrRv9LIGlqprrhk47J9HQzt7vXE4mU+0HoeVc2N21P8hVyzD9Dz9y8M= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/private/cakey.pem new file mode 100755 index 000000000000..8d893cdf9e43 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,EF032FCF0827A7AA + +vTlvOy1d4MK41zEZfeUWDO7kjLqZ53jK6JdXhKT2P9MnstGf1S0QxwbEKP+KWj+4 +lwS7fSXs6/s2Q5OrG9QSV4bm5Sob0OpDfoc1GS24uSGvYXzhuyM9sjiITXvyGKCH ++0VQPV/GSXWShsk5CCzUXIBSBHDVxlEzmBvzWiHfcLEAwF1JJlh6ex9Xju9JL9sN +Gp4VMw9PML11V4iqNXKeyBZ87Bv/yew+bDACLCe7e1liBxdOj2ntc7mtpCrkf/pn +hLnJ1qKodcwgmmMLufa7//E1RCBMn1gml0YXMe+Grrn7tFdVWT/puKiSrKGgIbbB +RNf7JnG5E8Oy2V8NRk4SV5Au784fw5NMykQDCMJFp9aldwP7LlIUBPtPm/jpaY0V +e6tKT20e4Ru2mDzyfef8nhFRogMxvPrxVSxN8aI1u/soPMp55ypWrqg99QlsiZgG +MhpHaFODSWvHaFcwFY+gEDUmEH76S3wuOSgeFolvIPEETjw6Vc46Zi32N1ycQ1wz +NCbIGy2ftEzKIEOeXHAsuQiP+Cic1QYJEOxhvOq9VteYfilT7D9FQ2+QOqrl4+2X +hj2RaTJawpSFoWfEh7QM1ir0TPj3wRSTg6g3e0f+vAvI9AfVEP3ctPm6tpXirUgh +QOA1LZKZzHUYqr0q2TBvItyGsg3w7dxyeB6brCtzOzg+GpvNhaRZ1/+SVPxzYVgf +buLQIfvvLE6TmABxOloop1m61u6c6+Bg5kKHXSnUKehGv+iIxVLZgxrNkCFyyzX0 +Dpu9hkGYzVzE8QCujC09MZCKH/85iYGuEZtP81Mjyjs= +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/req.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/req.pem new file mode 100755 index 000000000000..dd08bf6717c7 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/req.pem @@ -0,0 +1,11 @@ +-----BEGIN CERTIFICATE REQUEST----- +MIIBqDCCARECAQAwaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1cmcxFzAV +BgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVudDEYMBYG +A1UEAxMPU3ViIENBIDEgUm9vdCAzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB +gQCehx+v8KAc9J74w+fu08uo4lSYut1+3G4U4X5/Wx7vUz2Jduris2wIDejITSRA +/5LzW1H3kKxpNymQ9eiVb2fREM173WU41iXsYzm6LuoTWI56go4Q0Xt3egjVgmZi +pIM5rfWD1S9cvCNuyHiLOJ/ro2e6Q/rkBz+QctsM+UkODQIDAQABoAAwDQYJKoZI +hvcNAQEFBQADgYEAiwW4WbC3V3wEBfPlIFiUagJHOettp5NyCzLULyQZE1FXs/zV +RxIi3Oxdaj643QZ8h6upKf9F60T8+oG15RBdp1ZjmBXnv7ZRx33LynExbxX0XKjo +Pg/8dGLFBomZqE8MpWbQtY5lRkQOkgt5XZLj5SMJQsgpVaAOPQcOg5Sqfag= +-----END CERTIFICATE REQUEST----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/serial b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/openssl.cfg b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/openssl.cfg new file mode 100755 index 000000000000..5f9493f47e9b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/README.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/README.txt new file mode 100755 index 000000000000..3ac354b8f8c7 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/README.txt @@ -0,0 +1,4 @@ +Revoked certificates: +--------------------- +- User 2 Sub CA 1 Root 4 + diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/cacert.pem new file mode 100755 index 000000000000..391037118147 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/cacert.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 4 + Validity + Not Before: Nov 20 08:37:27 2009 GMT + Not After : Nov 14 08:37:27 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 4 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:da:b0:21:94:89:b0:00:89:cb:69:59:9b:0d:fe: + 1f:b9:a0:a8:44:92:55:5f:0b:d5:e5:08:63:bd:47: + 6b:11:4d:b1:a8:12:6f:c1:cf:cb:9e:ae:e2:c1:03: + 68:46:59:0b:96:7c:21:45:9b:14:81:d8:f1:83:70: + 6b:3d:b4:56:65:49:87:1d:ab:e2:08:6a:49:66:0e: + 59:b4:da:7a:3f:72:23:b8:1f:fb:78:f5:f0:2d:c4: + fe:d9:94:6e:2e:c3:6e:95:ba:38:60:d1:0b:fa:16: + c7:02:71:ef:3e:71:72:63:26:56:35:1e:8b:ec:47: + 87:25:6e:bc:90:d0:8b:37:2d + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 96:9A:2D:06:F6:76:4F:83:68:7B:9C:69:C4:18:BB:4A:EB:46:38:E4 + X509v3 Authority Key Identifier: + keyid:BA:8D:A1:97:DC:C4:39:1F:90:B5:51:6B:10:19:F2:46:0D:A9:65:8E + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 4 + serial:A2:93:46:74:3B:A6:E3:AD + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 45:77:ba:6b:b6:a7:2a:0f:6b:38:90:9f:0a:18:11:c7:54:7b: + c9:3b:9a:93:90:96:f0:04:0a:56:87:30:e0:f5:d8:84:40:39: + 90:85:ca:e7:38:1b:d8:df:2f:bd:73:91:13:cb:a6:c9:b0:7a: + f7:59:77:6b:9a:d5:86:78:06:dc:40:14:ce:ea:43:a8:ae:ed: + a2:03:64:51:3a:47:7a:9f:df:2d:65:49:56:a5:39:cf:28:2a: + ac:ab:fd:e1:93:fd:3e:56:e8:eb:7a:11:a8:f7:f9:1a:a1:83: + 1f:92:f7:da:4e:c6:d9:67:dd:67:ff:be:6f:e5:24:e1:6e:cc: + 94:3c +-----BEGIN CERTIFICATE----- +MIIDBjCCAm+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA0MB4XDTA5MTEyMDA4Mzcy +N1oXDTM0MTExNDA4MzcyN1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA0MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDasCGUibAAictpWZsN/h+5oKhEklVfC9XlCGO9R2sRTbGoEm/Bz8ue +ruLBA2hGWQuWfCFFmxSB2PGDcGs9tFZlSYcdq+IIaklmDlm02no/ciO4H/t49fAt +xP7ZlG4uw26Vujhg0Qv6FscCce8+cXJjJlY1HovsR4clbryQ0Is3LQIDAQABo4HH +MIHEMB0GA1UdDgQWBBSWmi0G9nZPg2h7nGnEGLtK60Y45DCBkQYDVR0jBIGJMIGG +gBS6jaGX3MQ5H5C1UWsQGfJGDalljqFjpGEwXzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA0ggkAopNGdDum460wDwYDVR0TAQH/ +BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQBFd7prtqcqD2s4kJ8KGBHHVHvJO5qT +kJbwBApWhzDg9diEQDmQhcrnOBvY3y+9c5ETy6bJsHr3WXdrmtWGeAbcQBTO6kOo +ru2iA2RROkd6n98tZUlWpTnPKCqsq/3hk/0+VujrehGo9/kaoYMfkvfaTsbZZ91n +/75v5SThbsyUPA== +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/index.txt new file mode 100755 index 000000000000..88e41b76acb1 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/index.txt @@ -0,0 +1,2 @@ +V 341114084401Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 1 Sub CA 1 Root 4 +R 341114085720Z 091120085929Z,keyCompromise 1001 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 2 Sub CA 1 Root 4 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..73563ed969ab --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/1000.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 4 + Validity + Not Before: Nov 20 08:44:01 2009 GMT + Not After : Nov 14 08:44:01 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 1 Sub CA 1 Root 4 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:c3:55:aa:1b:4f:f6:b4:78:be:ac:61:2a:92:94: + 73:1b:39:4c:0e:57:7e:da:78:03:7e:65:11:57:97: + e6:f4:0d:72:1f:f6:2b:a4:33:f9:5c:bd:2b:25:6c: + 58:29:73:b9:46:d5:db:e9:03:1d:a2:f8:8e:6e:c2: + b5:95:ec:ba:95:c3:ac:2e:c0:b6:40:ba:23:1d:74: + 75:91:cc:d6:3a:4c:15:4d:15:03:a4:e6:80:4a:93: + fe:6c:91:ab:77:60:3b:43:65:21:cd:04:3d:01:71: + 99:47:28:12:c8:9d:f9:d7:25:7a:30:82:76:c0:27: + 5e:c3:70:42:54:2a:0a:02:97 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + D5:2F:1A:60:8E:F9:2E:8F:51:EB:F7:AB:24:47:80:CE:B6:8D:F1:63 + X509v3 Authority Key Identifier: + keyid:96:9A:2D:06:F6:76:4F:83:68:7B:9C:69:C4:18:BB:4A:EB:46:38:E4 + + Signature Algorithm: sha1WithRSAEncryption + 7a:83:0c:a0:2d:14:52:97:a1:0e:dd:b3:2e:a1:1f:0d:51:e7: + 98:2e:89:9a:36:a3:1b:af:28:95:13:ab:3e:31:2e:f6:fa:5f: + f7:85:8c:01:7a:1b:25:63:7e:d6:f9:8e:ad:84:9e:42:3e:1d: + f4:ad:dc:b1:20:91:83:8b:48:ad:34:2a:b9:cc:ae:06:e6:bc: + e1:05:e6:35:71:ca:43:98:3a:e5:93:52:e1:3c:3a:1b:83:53: + d3:a6:ba:6a:43:38:00:92:ba:fb:8f:a8:17:46:f9:32:ac:42: + 47:87:7f:2e:ae:76:49:88:55:1e:65:70:6c:d6:35:ab:64:48: + a9:66 +-----BEGIN CERTIFICATE----- +MIICyzCCAjSgAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwaDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA0MB4XDTA5 +MTEyMDA4NDQwMVoXDTM0MTExNDA4NDQwMVowbzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEfMB0GA1UEAxMWVXNlciAxIFN1YiBDQSAxIFJvb3QgNDCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAw1WqG0/2tHi+rGEqkpRzGzlMDld+2ngD +fmURV5fm9A1yH/YrpDP5XL0rJWxYKXO5RtXb6QMdoviObsK1ley6lcOsLsC2QLoj +HXR1kczWOkwVTRUDpOaASpP+bJGrd2A7Q2UhzQQ9AXGZRygSyJ351yV6MIJ2wCde +w3BCVCoKApcCAwEAAaN9MHswCwYDVR0PBAQDAgXgMCwGCWCGSAGG+EIBDQQfFh1P +cGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQU1S8aYI75Lo9R +6/erJEeAzraN8WMwHwYDVR0jBBgwFoAUlpotBvZ2T4Noe5xpxBi7SutGOOQwDQYJ +KoZIhvcNAQEFBQADgYEAeoMMoC0UUpehDt2zLqEfDVHnmC6JmjajG68olROrPjEu +9vpf94WMAXobJWN+1vmOrYSeQj4d9K3csSCRg4tIrTQqucyuBua84QXmNXHKQ5g6 +5ZNS4Tw6G4NT06a6akM4AJK6+4+oF0b5MqxCR4d/Lq52SYhVHmVwbNY1q2RIqWY= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/1001.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/1001.pem new file mode 100755 index 000000000000..7068aa0afdc9 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/1001.pem @@ -0,0 +1,60 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4097 (0x1001) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 4 + Validity + Not Before: Nov 20 08:57:20 2009 GMT + Not After : Nov 14 08:57:20 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 2 Sub CA 1 Root 4 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:ab:2a:df:93:6c:f0:b1:34:54:15:5b:06:4e:15: + bb:94:53:89:96:96:47:db:43:49:e7:66:d5:6b:53: + eb:04:54:d0:96:48:08:8f:8e:cc:70:e1:62:88:6a: + f3:ff:bc:65:55:b9:55:a6:29:22:c1:f6:16:9a:01: + 25:86:a9:72:c8:7c:0f:29:87:b9:14:51:34:d2:fc: + 01:3e:20:46:dc:54:3f:f3:03:d8:07:e0:6b:0c:78: + 70:d0:d0:93:83:e2:cf:53:fc:3b:d5:b0:c9:7d:40: + 8b:ee:5d:d3:30:e9:24:01:1e:b0:ac:de:1a:18:97: + a1:0d:58:79:5e:67:cd:99:bf + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 47:DB:A7:93:38:C2:0F:34:7F:B7:DE:35:C9:23:75:CC:30:93:A4:42 + X509v3 Authority Key Identifier: + keyid:96:9A:2D:06:F6:76:4F:83:68:7B:9C:69:C4:18:BB:4A:EB:46:38:E4 + + Signature Algorithm: sha1WithRSAEncryption + 97:70:47:74:ce:e1:f6:51:bf:cc:cf:0f:cf:cc:23:75:df:4b: + 3d:36:f0:70:0f:47:5d:c7:96:ad:b0:78:95:89:3a:2a:7a:ba: + 79:45:fe:2f:37:4c:69:76:ab:0a:10:ea:0d:5e:fe:28:04:44: + 9c:f3:8d:43:f5:15:fa:79:be:d3:86:f3:c1:b5:8b:5a:74:a9: + c5:b7:fe:e8:63:6e:1f:13:3a:c9:49:3b:45:0c:a6:64:b9:07: + 9b:1a:30:09:1d:5e:f0:2b:a9:55:aa:41:fa:85:0d:ef:dd:c3: + f5:58:52:bf:7f:6d:f4:18:06:f4:5a:71:af:e4:57:b0:0a:6e: + f6:76 +-----BEGIN CERTIFICATE----- +MIICyzCCAjSgAwIBAgICEAEwDQYJKoZIhvcNAQEFBQAwaDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA0MB4XDTA5 +MTEyMDA4NTcyMFoXDTM0MTExNDA4NTcyMFowbzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEfMB0GA1UEAxMWVXNlciAyIFN1YiBDQSAxIFJvb3QgNDCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAqyrfk2zwsTRUFVsGThW7lFOJlpZH20NJ +52bVa1PrBFTQlkgIj47McOFiiGrz/7xlVblVpikiwfYWmgElhqlyyHwPKYe5FFE0 +0vwBPiBG3FQ/8wPYB+BrDHhw0NCTg+LPU/w71bDJfUCL7l3TMOkkAR6wrN4aGJeh +DVh5XmfNmb8CAwEAAaN9MHswCwYDVR0PBAQDAgXgMCwGCWCGSAGG+EIBDQQfFh1P +cGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUR9unkzjCDzR/ +t941ySN1zDCTpEIwHwYDVR0jBBgwFoAUlpotBvZ2T4Noe5xpxBi7SutGOOQwDQYJ +KoZIhvcNAQEFBQADgYEAl3BHdM7h9lG/zM8Pz8wjdd9LPTbwcA9HXceWrbB4lYk6 +Knq6eUX+LzdMaXarChDqDV7+KAREnPONQ/UV+nm+04bzwbWLWnSpxbf+6GNuHxM6 +yUk7RQymZLkHmxowCR1e8CupVapB+oUN793D9VhSv39t9BgG9Fpxr+RXsApu9nY= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/private/cakey.pem new file mode 100755 index 000000000000..4c3de720f9eb --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,48187111D008BD14 + +9y5tseMMq8fPCuUelw75mRr1ALSrxNWatiMrmFM44I27wxIlaVgePNk3ovpuUpjB +RTArkp0zqA8tHCE/ZzE0cKtkxabTfrghxeKb2lAIrIUFwAFnMPEoB69M23qKblQD +/CbYquy6mpjzLBYwM0Ub8fj4d6fMCJ29Mqlbzj9XJ2oif8zW90lxE4CZNGEWKWaO +pF0ytqUM0aVIBVXZOGmeUpJlAgwdshYHD0JwoULWzFOa+9aks+wjYwQcDxbPq3YC +TBSzHiKd68YSDvK5VevIAIrSKEEqrXgsnL0k23/xkK5ZN8w9gmROrwpqg78Aa/cp +13luMYMRAm+hBfCFzKXvc8hV49UCPWOJcB4/p8to8Bx95UcJ17npG71yrNJgwTA6 +Wgj4pxtddt4QItVqv6usIvkMwD4pQqZ4y+5UMEvw2paG428+SN6YElH6/6yB/9Cc +B7BxhhaazM+AEulpvvfQgjpIqn5+QyaZ7GVcNh/Bi66tenNv9NBVqP1PmuZUMF77 +QddQGzCpxaSb/x/3InhMP2PgGN37B9ezm8ee+AQpmk1VzJ5zpiuoGbQ3oLnDVMKS +aNe7VIyhovq7tnJIuIft8jOEMFfPot9vgIwnHVQ4PF+KK0bzWjSK+6HyO+1Jkw/5 +TpHfQSxEVf8brC8g9l7+FjGSbHF80EzOUx1lMDe/BUzuVvRhiewqrlkCrPf90uuy +hEf1UKqrDK2i2iLBzZ0+OXba3wj20jFRaYLN5YykE6fKo/H6UjEn203nMI2Qi+2m +5j5dgDAOXnNWQN45MxIMu6xxPSaEcb8YUgfMqwytfVmo/xSioyoV+w== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/serial b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/serial new file mode 100755 index 000000000000..7d802a3e7104 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/serial @@ -0,0 +1 @@ +1002 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/openssl.cfg b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/openssl.cfg new file mode 100755 index 000000000000..5f9493f47e9b --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/README.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/README.txt new file mode 100755 index 000000000000..b266749a9e78 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/README.txt @@ -0,0 +1,5 @@ +To provide the CRL via HTTP run + +java -jar ../../tools/httpserv/dist/httpserv.jar -a 8902 + + diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/cacert.pem new file mode 100755 index 000000000000..b350f6eb33ef --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/cacert.pem @@ -0,0 +1,66 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4097 (0x1001) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 5 + Validity + Not Before: Nov 20 11:30:23 2009 GMT + Not After : Nov 14 11:30:23 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 5 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:97:fa:a2:49:d3:bf:c1:2e:7a:ed:83:83:3c:78: + 96:c8:b2:b9:67:af:c0:5e:0a:89:89:fb:94:59:32: + a8:2a:e4:20:2f:3b:3d:ce:53:4f:72:fc:6c:0b:93: + 38:c3:df:66:6e:d5:79:d0:a4:4e:41:84:43:3c:99: + 79:0c:e0:5f:19:1a:3d:f5:4b:11:28:0f:80:b0:a0: + 71:34:5b:90:71:c2:ef:1e:85:2e:5b:9f:3b:22:c3: + 18:f8:7c:1f:ef:1b:78:17:a0:44:60:46:7e:88:eb: + a7:60:a0:5c:2a:7c:37:99:fa:27:97:08:e8:89:ba: + bc:69:4b:79:93:8f:ad:b5:9b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 01:E9:B5:99:E4:6D:F9:8C:42:3D:09:10:0F:A7:75:C6:27:78:4A:AF + X509v3 Authority Key Identifier: + keyid:C1:D1:A0:D4:5B:0B:9D:7E:31:61:F9:39:10:9F:31:10:E0:D2:06:B5 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 5 + serial:F0:3D:B6:A9:A9:9C:A3:4E + + X509v3 CRL Distribution Points: + URI:http://localhost:8901/demoCA/crl/Root_5.crl + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 6d:ca:34:05:99:ff:99:49:d3:6d:9d:ad:c6:99:da:9d:6c:94: + 62:77:ed:1c:39:23:d2:e8:b6:3e:df:63:dc:7c:10:3f:c2:ed: + f4:04:26:58:05:01:4c:ed:a9:83:43:3a:5d:fe:60:6d:5b:58: + dc:93:8c:94:69:b6:7f:02:48:30:9c:31:f4:7d:de:e0:de:04: + d2:dc:79:b7:60:c2:87:f7:c7:92:a2:f5:86:a7:0c:70:3b:a3: + a7:35:11:cf:a4:28:21:aa:8b:24:50:2e:96:41:be:66:01:bd: + b9:ec:04:0c:92:d9:8a:e7:a0:96:24:9b:f1:a2:9f:59:59:4a: + 32:a4 +-----BEGIN CERTIFICATE----- +MIIDRjCCAq+gAwIBAgICEAEwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA1MB4XDTA5MTEyMDExMzAy +M1oXDTM0MTExNDExMzAyM1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA1MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCX+qJJ07/BLnrtg4M8eJbIsrlnr8BeComJ+5RZMqgq5CAvOz3OU09y +/GwLkzjD32Zu1XnQpE5BhEM8mXkM4F8ZGj31SxEoD4CwoHE0W5Bxwu8ehS5bnzsi +wxj4fB/vG3gXoERgRn6I66dgoFwqfDeZ+ieXCOiJurxpS3mTj621mwIDAQABo4IB +BjCCAQIwHQYDVR0OBBYEFAHptZnkbfmMQj0JEA+ndcYneEqvMIGRBgNVHSMEgYkw +gYaAFMHRoNRbC51+MWH5ORCfMRDg0ga1oWOkYTBfMQswCQYDVQQGEwJERTEQMA4G +A1UECBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsT +C0RldmVsb3BtZW50MQ8wDQYDVQQDEwZSb290IDWCCQDwPbapqZyjTjA8BgNVHR8E +NTAzMDGgL6AthitodHRwOi8vbG9jYWxob3N0Ojg5MDEvZGVtb0NBL2NybC9Sb290 +XzUuY3JsMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAbco0BZn/ +mUnTbZ2txpnanWyUYnftHDkj0ui2Pt9j3HwQP8Lt9AQmWAUBTO2pg0M6Xf5gbVtY +3JOMlGm2fwJIMJwx9H3e4N4E0tx5t2DCh/fHkqL1hqcMcDujpzURz6QoIaqLJFAu +lkG+ZgG9uewEDJLZiuegliSb8aKfWVlKMqQ= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crl/DO_NOT_INSTALL_THIS_CRL b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crl/DO_NOT_INSTALL_THIS_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crl/Sub_CA_1_Root_5.crl b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crl/Sub_CA_1_Root_5.crl new file mode 100755 index 0000000000000000000000000000000000000000..3aec2bba1d831ddaff3fa14b0151c73dd7f56784 GIT binary patch literal 325 zcmXqLVstcUT+PJDXu!+HsnzDu_MMlJk(HIfAj6Q`fRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSELxrIH{1OFIab5#ULqj72LqlUzQ?n>>USktOLqi}2a~JR%@EULf zb;^pcurM(RFrc}Uxv`ON3lE%b(+$v?EeJ{aGOZ|9fWm literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crlnumber new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/crlnumber @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/index.txt new file mode 100755 index 000000000000..2f83d6f9b733 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/index.txt @@ -0,0 +1 @@ +V 341114113322Z 1002 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 1 Sub CA 1 Root 5 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/newcerts/1002.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/newcerts/1002.pem new file mode 100755 index 000000000000..59d5f7a2b431 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/newcerts/1002.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4098 (0x1002) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 5 + Validity + Not Before: Nov 20 11:33:22 2009 GMT + Not After : Nov 14 11:33:22 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 1 Sub CA 1 Root 5 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:d3:fd:a7:4f:ea:02:e2:b4:32:80:3f:64:bb:37: + 9d:9e:fa:86:b2:25:b3:1d:f6:5d:05:8e:2b:0c:bd: + 60:1e:e6:52:39:4c:84:9e:93:6c:d2:b4:2d:34:1a: + e7:42:b6:bf:34:bd:ca:44:31:fb:06:5e:20:0a:a1: + 22:ca:9b:4f:01:57:bd:b1:30:57:a9:0f:fc:06:ae: + 18:6c:2d:9e:70:7a:21:2a:fd:0c:f8:03:00:32:60: + 5d:37:c5:11:56:74:30:e4:03:3c:88:71:d5:79:d3: + 76:02:e1:85:87:63:4b:5b:cd:c9:1f:ca:85:7a:8c: + 3a:fd:a9:83:94:b9:6d:f6:95 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 CRL Distribution Points: + URI:http://localhost:8902/demoCA/crl/Sub_CA_1_Root_5.crl + + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + E0:53:2E:E4:6B:0B:99:C0:AD:C1:02:40:46:6C:35:EE:49:73:5D:0B + X509v3 Authority Key Identifier: + keyid:01:E9:B5:99:E4:6D:F9:8C:42:3D:09:10:0F:A7:75:C6:27:78:4A:AF + + Signature Algorithm: sha1WithRSAEncryption + 5f:6a:81:3b:56:e8:6d:33:0e:1e:6a:73:b1:e8:69:b7:3f:83: + 81:6c:73:7c:9d:f7:12:c9:bf:99:16:cf:56:38:e4:58:db:28: + a5:9c:e3:8e:ed:27:d2:da:53:41:80:2a:d4:c3:92:5d:b5:b4: + 5a:d6:17:f7:74:9d:83:13:06:7f:20:8e:50:5f:60:5b:3a:9a: + 9f:c2:58:5f:fa:07:90:df:a0:02:cf:c4:d7:7d:2e:b7:72:df: + 8f:93:ce:5a:b3:17:ba:73:93:20:64:b9:b2:ad:6e:89:63:c5: + 08:e1:a0:6a:b2:9d:1e:33:31:83:98:d1:05:7d:ec:48:72:1f: + dd:60 +-----BEGIN CERTIFICATE----- +MIIC5jCCAk+gAwIBAgICEAIwDQYJKoZIhvcNAQEFBQAwaDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA1MB4XDTA5 +MTEyMDExMzMyMloXDTM0MTExNDExMzMyMlowbzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEfMB0GA1UEAxMWVXNlciAxIFN1YiBDQSAxIFJvb3QgNTCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0/2nT+oC4rQygD9kuzednvqGsiWzHfZd +BY4rDL1gHuZSOUyEnpNs0rQtNBrnQra/NL3KRDH7Bl4gCqEiyptPAVe9sTBXqQ/8 +Bq4YbC2ecHohKv0M+AMAMmBdN8URVnQw5AM8iHHVedN2AuGFh2NLW83JH8qFeow6 +/amDlLlt9pUCAwEAAaOBlzCBlDBFBgNVHR8EPjA8MDqgOKA2hjRodHRwOi8vbG9j +YWxob3N0Ojg5MDIvZGVtb0NBL2NybC9TdWJfQ0FfMV9Sb290XzUuY3JsMAsGA1Ud +DwQEAwIF4DAdBgNVHQ4EFgQU4FMu5GsLmcCtwQJARmw17klzXQswHwYDVR0jBBgw +FoAUAem1meRt+YxCPQkQD6d1xid4Sq8wDQYJKoZIhvcNAQEFBQADgYEAX2qBO1bo +bTMOHmpzsehptz+DgWxzfJ33Esm/mRbPVjjkWNsopZzjju0n0tpTQYAq1MOSXbW0 +WtYX93SdgxMGfyCOUF9gWzqan8JYX/oHkN+gAs/E130ut3Lfj5POWrMXunOTIGS5 +sq1uiWPFCOGgarKdHjMxg5jRBX3sSHIf3WA= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/private/cakey.pem new file mode 100755 index 000000000000..fb9af1caa35e --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,30B50FFE9747C5F2 + +pXO59gJmBcDztjZDwRRcJV+m/BBdF/NlI0WD7WBr4vR663B6hZw0hqAkCn3o0VbO +DzLsoQUMUv/70aXc2SgvS8LleG+mWCkPE+huzFjPAn6Z6+p0MhHrYRJ7iulPAVV0 ++wCs8+1UbvKyozLy+BfvEwGHEho8sr3w81y2noE2pjaQOE1JGKY91VnFz1yPhYHC +r26sO1DqoqtWS8XSe2FdREG/guKpoHtoUazQhCkgeBk18OImKlrxp1pT/haObv5i +5qILjSvMBjmrTCJDi1vgShEiAZTE318ipK5wCLKiA6UvZ3GMxb2xjy+na3CUTrzf +AAefrW4NaoyIWI8dRtPxFic678ZgqcRMdMW7BgdffLXX5IueCqHeTNS7xcr2T2gd +hzKxinZnY8MQosFeyzP3fYWxv5PY54HNmCnsN2SXJSOq+CPSsIvbDR5p1bhrcEf9 +1O815NhJTx2nPAkIC+7bemAkz2f3g09SuhtQTaCnZMwcAmnMAT0ewWJSxDCVOg5s +B/OPe8RJ1tiO7DnaZH6RQDPUCKaUgS9xSzCu1q0IWWbzUWioPIX13fFlvl9gAxbY ++FI6dD2DwHBTyiPLLyT7FBfwjnHul2zSn/jXnby7n1sILQIP0AQK0cJDS1ZdC2CB +oe4gwzSVCxp7v3Zfp1ZoyYOtei0gT6+bDvjBYsl90jyvyucWfKjlZiEauQV8gSOQ +G2iY5QZ0clAFg7MQKmHuTaAALk0IrauSW20eR/HF0/2R6xCt91zcyhwbOiZFNyQ3 +gtvwLu9ZzAHfWcnIEWxpYF68O+vj+g6Jpl/q6j8KaTta3smEBzgpow== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/serial b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/serial new file mode 100755 index 000000000000..baccd0398f98 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/demoCA/serial @@ -0,0 +1 @@ +1003 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/openssl.cfg b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/openssl.cfg new file mode 100755 index 000000000000..eaa527d3dc41 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_5/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ +crlDistributionPoints=URI:http://localhost:8902/demoCA/crl/Sub_CA_1_Root_5.crl +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +#nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/cacert.pem new file mode 100755 index 000000000000..0490b88cd769 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/cacert.pem @@ -0,0 +1,66 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4097 (0x1001) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 6 + Validity + Not Before: Nov 20 12:28:07 2009 GMT + Not After : Nov 14 12:28:07 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 6 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:c4:d9:ab:27:06:66:41:0e:36:ff:d4:b1:d0:8c: + f7:b4:25:55:cd:fd:fa:a4:5a:e6:4f:d0:05:dc:a3: + e5:bd:8d:53:77:d1:ea:95:5a:52:81:c8:b6:36:a0: + 5f:3a:e1:85:1e:8a:48:91:7d:29:78:ff:ea:c5:e3: + ad:c4:27:d5:b7:8f:59:20:26:d4:45:87:6a:56:db: + ac:f5:f8:0a:88:82:9e:c2:00:06:fc:98:8a:fe:35: + c3:02:a1:67:08:06:42:e3:88:48:e0:8f:33:ff:f8: + a4:87:1a:3a:d9:54:0e:1c:09:3e:a0:f0:70:cd:b5: + b0:b2:7e:07:73:ad:20:64:69 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 89:8C:D7:71:EB:67:78:4E:D6:01:35:B2:AC:A1:B4:88:43:CE:70:A7 + X509v3 Authority Key Identifier: + keyid:AC:25:5E:9B:B5:BA:4D:8E:BD:77:B2:9D:D9:E2:84:AE:7A:31:8F:F2 + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 6 + serial:D8:6A:4F:24:F9:C9:94:27 + + X509v3 CRL Distribution Points: + URI:http://localhost:8901/demoCA/crl/Root_6.crl + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 55:5b:3b:6b:8a:d0:1b:d8:19:d9:96:85:4d:b4:a0:98:b1:bd: + 9f:0b:62:21:92:8b:4e:d3:d0:1b:91:3d:e3:f5:bd:ce:16:57: + fc:b7:84:15:51:fd:98:ab:32:59:28:0b:44:57:49:ec:ac:11: + 67:26:7a:a3:c5:b8:9d:2a:de:b6:7c:76:0a:e9:18:9f:98:87: + e8:80:c8:72:99:56:74:ab:73:1b:f4:e7:b9:b1:3a:f3:7b:0d: + 2f:5d:82:6c:d1:99:9f:23:be:23:fb:4c:0e:15:5e:f5:9f:90: + 88:d7:51:3a:6a:7a:f0:54:a5:c4:89:a5:0d:0a:4e:94:59:64: + 59:54 +-----BEGIN CERTIFICATE----- +MIIDRjCCAq+gAwIBAgICEAEwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA2MB4XDTA5MTEyMDEyMjgw +N1oXDTM0MTExNDEyMjgwN1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA2MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQDE2asnBmZBDjb/1LHQjPe0JVXN/fqkWuZP0AXco+W9jVN30eqVWlKB +yLY2oF864YUeikiRfSl4/+rF463EJ9W3j1kgJtRFh2pW26z1+AqIgp7CAAb8mIr+ +NcMCoWcIBkLjiEjgjzP/+KSHGjrZVA4cCT6g8HDNtbCyfgdzrSBkaQIDAQABo4IB +BjCCAQIwHQYDVR0OBBYEFImM13HrZ3hO1gE1sqyhtIhDznCnMIGRBgNVHSMEgYkw +gYaAFKwlXpu1uk2OvXeyndnihK56MY/yoWOkYTBfMQswCQYDVQQGEwJERTEQMA4G +A1UECBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsT +C0RldmVsb3BtZW50MQ8wDQYDVQQDEwZSb290IDaCCQDYak8k+cmUJzA8BgNVHR8E +NTAzMDGgL6AthitodHRwOi8vbG9jYWxob3N0Ojg5MDEvZGVtb0NBL2NybC9Sb290 +XzYuY3JsMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAVVs7a4rQ +G9gZ2ZaFTbSgmLG9nwtiIZKLTtPQG5E94/W9zhZX/LeEFVH9mKsyWSgLRFdJ7KwR +ZyZ6o8W4nSretnx2CukYn5iH6IDIcplWdKtzG/TnubE683sNL12CbNGZnyO+I/tM +DhVe9Z+QiNdROmp68FSlxImlDQpOlFlkWVQ= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/crl/DO_NOT_CREATE_A_CRL b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/crl/DO_NOT_CREATE_A_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/crlnumber b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/crlnumber new file mode 100755 index 000000000000..83b33d238dab --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/crlnumber @@ -0,0 +1 @@ +1000 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/index.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/index.txt new file mode 100755 index 000000000000..6e4d7577dfdc --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/index.txt @@ -0,0 +1 @@ +V 341114123743Z 1000 unknown /C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=User 1 Sub CA 1 Root 6 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/index.txt.attr b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/index.txt.attr new file mode 100755 index 000000000000..8f7e63a3475c --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/index.txt.attr @@ -0,0 +1 @@ +unique_subject = yes diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/newcerts/1000.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/newcerts/1000.pem new file mode 100755 index 000000000000..538cb4e0bfcb --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/newcerts/1000.pem @@ -0,0 +1,62 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 6 + Validity + Not Before: Nov 20 12:37:43 2009 GMT + Not After : Nov 14 12:37:43 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=User 1 Sub CA 1 Root 6 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:bb:ac:68:10:41:28:94:fd:fe:39:5e:63:cf:eb: + 9f:2b:20:82:f3:86:d2:e1:38:05:7e:95:cc:46:e5: + 42:8b:5c:0d:2c:ad:ad:44:c0:4c:2f:7c:75:e8:bd: + aa:cd:f2:05:16:18:a5:a3:fa:e7:a0:ba:57:31:e2: + b0:4d:85:9d:60:e4:41:92:49:3f:e1:79:47:52:e8: + 9e:71:be:88:10:6c:30:89:9f:55:84:9d:83:d0:c9: + 11:66:95:33:8b:44:38:86:45:05:b3:3a:54:c4:cf: + 4e:72:4c:00:07:d7:59:3a:8d:2f:cd:5e:0c:a0:95: + be:00:85:7a:a4:42:c2:f3:b7 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 CRL Distribution Points: + URI:http://localhost:8902/demoCA/crl/Sub_CA_1_Root_6.crl + + X509v3 Key Usage: + Digital Signature, Non Repudiation, Key Encipherment + X509v3 Subject Key Identifier: + 57:51:A4:44:AE:92:01:3C:9F:7E:82:67:C0:E5:B9:D7:A6:8F:A5:79 + X509v3 Authority Key Identifier: + keyid:89:8C:D7:71:EB:67:78:4E:D6:01:35:B2:AC:A1:B4:88:43:CE:70:A7 + + Signature Algorithm: sha1WithRSAEncryption + 7b:de:f2:2b:d7:94:ce:12:e2:f9:a7:b2:91:08:c6:51:3f:bc: + e2:87:ed:79:6d:3b:f5:38:6e:02:d4:63:e6:b8:a7:e5:df:f4: + 6e:b0:8a:bd:bb:b1:0b:e0:c2:cf:fa:af:0a:6a:a5:1f:28:ff: + de:21:bd:8a:f7:ec:48:35:bb:ab:97:c2:7a:31:6d:d1:73:8e: + ae:74:9b:94:86:73:06:06:da:6a:2c:82:04:b1:49:19:62:a9: + 05:e5:e7:2c:68:a1:3b:f4:bf:80:85:5b:1b:dc:21:7b:3d:c1: + ee:97:6c:72:35:2d:80:19:90:b4:ab:19:34:bb:88:5e:ea:70: + 27:df +-----BEGIN CERTIFICATE----- +MIIC5jCCAk+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwaDELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA2MB4XDTA5 +MTEyMDEyMzc0M1oXDTM0MTExNDEyMzc0M1owbzELMAkGA1UEBhMCREUxEDAOBgNV +BAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtE +ZXZlbG9wbWVudDEfMB0GA1UEAxMWVXNlciAxIFN1YiBDQSAxIFJvb3QgNjCBnzAN +BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAu6xoEEEolP3+OV5jz+ufKyCC84bS4TgF +fpXMRuVCi1wNLK2tRMBML3x16L2qzfIFFhilo/rnoLpXMeKwTYWdYORBkkk/4XlH +Uuiecb6IEGwwiZ9VhJ2D0MkRZpUzi0Q4hkUFszpUxM9OckwAB9dZOo0vzV4MoJW+ +AIV6pELC87cCAwEAAaOBlzCBlDBFBgNVHR8EPjA8MDqgOKA2hjRodHRwOi8vbG9j +YWxob3N0Ojg5MDIvZGVtb0NBL2NybC9TdWJfQ0FfMV9Sb290XzYuY3JsMAsGA1Ud +DwQEAwIF4DAdBgNVHQ4EFgQUV1GkRK6SATyffoJnwOW516aPpXkwHwYDVR0jBBgw +FoAUiYzXcetneE7WATWyrKG0iEPOcKcwDQYJKoZIhvcNAQEFBQADgYEAe97yK9eU +zhLi+aeykQjGUT+84ofteW079ThuAtRj5rin5d/0brCKvbuxC+DCz/qvCmqlHyj/ +3iG9ivfsSDW7q5fCejFt0XOOrnSblIZzBgbaaiyCBLFJGWKpBeXnLGihO/S/gIVb +G9whez3B7pdscjUtgBmQtKsZNLuIXupwJ98= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/private/cakey.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/private/cakey.pem new file mode 100755 index 000000000000..9912ee088064 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/private/cakey.pem @@ -0,0 +1,18 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: DES-EDE3-CBC,8F1C89446B1EC221 + +joSSrVc7E1RavSuMdWDDAozXOV4Z0XIusMv5NjIWHLyKdW/SmFv6yfPy7PeuK1Qj +p/DuEO/ULU6SLmAhESXrdC8UzyL/B3hfPK3UzUzJzIRrDitF21SXLjMKU+KVxMrb +GkmstfsIQM157TZHOHJbk4F9zs9Xkl8ipKYDBpJrtVJo8gf4SeLfcEVXW9J0tlLU +Qi13SWWn4kGK+Latypx684S247Y0JfKSJ5BVHUGunmd+b/3mRpH1WARU03JmNqG9 +tyCJxyvCkkQh5Jnm4UEI72ywxSscemtFAzd5fa5LOrsVWOImSixfP1VdJvU0jCTv +gyXK03e/L+B+DhbUm2a6xkt+u83hQ2QjoGdmnfKwhX4vdYZBYINlBnHtHn2B8x2o +IXgLQmBFO/heY/K9wJ1BwwqPW31wHG3MhjRY7ooac1JAZsxS0/pU8cR/GNMpKjvE +fer3tGGUvPL3H1v3pT2XAA4Gm9pOtvnOHuLjbzg2mgNZScYMpcqa/vaQ5gXqCnhw +dtFrGVxEEQ5jTL23EAh4WfhPvsnewujr7Rkc6+a8xKpDJOHejgAPJYpXrYHg4poA +L0aQlIFSX1jriGu4KYAQiZO7bouhVWqcf9B3BNewr0kTaD7qq0gDvygCKLyrUyb7 +hqk0TwVfvmk7nYNFLBsTEcsB/el6jqH40oOfFo+ErlQzmdzRrKy9gBEaecDj8DxV +Fa8XPapE81O8WjS09a/WJNPW+3NdrI5wYMg72srOW8ll+AMtiUTWrAY2hIRxzZGt +VntCKwG/3j0v60jg+0wCP+l/IV4pPbV4He3ysxwM6lH1Y86XfaUBiA== +-----END RSA PRIVATE KEY----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/serial b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/serial new file mode 100755 index 000000000000..dd11724042e2 --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/demoCA/serial @@ -0,0 +1 @@ +1001 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/openssl.cfg b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/openssl.cfg new file mode 100755 index 000000000000..6251ef7ee99e --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_6/openssl.cfg @@ -0,0 +1,292 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca' and 'req'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem # The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = sha1 # which md to use. +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 1024 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString. +# utf8only: only UTF8Strings. +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings +# so use this option with caution! +string_mask = nombstr + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = DE +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Hamburg + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = OpenOffice.org + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = Development + +commonName = Common Name (eg, YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ +crlDistributionPoints=URI:http://localhost:8902/demoCA/crl/Sub_CA_1_Root_6.crl +# This is typical in keyUsage for a client certificate. +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +#nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + + + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment +#authorityInfoAccess = OCSP;URI:http://localhost:8888/ + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer:always + +#authorityInfoAccess = OCSP;URI:http://localhost:8888 +#crlDistributionPoints=URI:http://localhost:8901/demoCA/crl/Test_CA_2009.2.crl +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = critical, CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always,issuer:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer:always + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/README.txt b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/README.txt new file mode 100755 index 000000000000..d70e0550a90a --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/README.txt @@ -0,0 +1,3 @@ +To provide the CRL run: + +java -jar ../../tools/httpserv/dist/httpserv.jar -a 8902 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/cacert.pem b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/cacert.pem new file mode 100755 index 000000000000..2dda8f2b286f --- /dev/null +++ b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/cacert.pem @@ -0,0 +1,66 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4096 (0x1000) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Root 7 + Validity + Not Before: Nov 20 13:07:53 2009 GMT + Not After : Nov 14 13:07:53 2034 GMT + Subject: C=DE, ST=Hamburg, O=OpenOffice.org, OU=Development, CN=Sub CA 1 Root 7 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (1024 bit) + Modulus (1024 bit): + 00:b0:ae:6d:0a:21:ae:8a:92:b1:16:25:d3:08:cb: + ac:b7:4c:53:6d:4b:b3:12:82:40:54:c9:44:28:fc: + 4e:10:e6:65:40:de:70:5d:8b:ab:1f:5c:77:03:43: + 3d:3a:3d:9e:f7:37:66:9a:33:68:a0:cf:ad:8f:f4: + fb:9c:a3:87:57:5d:ec:d6:55:5a:18:b5:e1:2b:d2: + c4:10:fe:f0:01:a5:da:29:ee:c4:af:15:c9:8c:dc: + 7c:45:84:bd:e5:5b:09:1f:16:1d:11:e7:61:e6:22: + e7:1f:c8:86:bf:a1:da:cb:fe:6b:7e:c0:6e:aa:7f: + 97:84:e8:8f:81:69:f1:26:87 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 54:64:15:7E:93:8A:19:C8:F9:B7:EF:60:A0:DF:5C:C8:15:56:C0:EE + X509v3 Authority Key Identifier: + keyid:80:C6:F8:0B:5F:7C:49:E4:86:FD:C8:92:C6:80:70:D9:C0:6F:7B:DE + DirName:/C=DE/ST=Hamburg/O=OpenOffice.org/OU=Development/CN=Root 7 + serial:D5:E6:63:5F:18:09:82:89 + + X509v3 CRL Distribution Points: + URI:http://localhost:8901/demoCA/crl/Root_7.crl + + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + 1a:bc:5a:4b:9a:d5:e8:c0:35:c2:61:0a:58:7d:33:e2:87:01: + 61:83:80:42:8d:1a:7e:b1:9a:58:d5:01:fd:e7:ae:5c:c8:65: + fb:9e:1d:bf:49:ba:ed:40:f4:05:7c:3b:2d:db:0e:53:d0:05: + a0:bd:15:87:c4:37:22:0b:a0:04:a3:ad:cb:57:b2:00:97:ee: + 8f:89:91:8e:7d:0b:e2:27:96:6e:0f:ab:73:33:59:fa:9f:37: + f2:77:79:99:af:72:ad:f9:49:05:ed:55:08:31:eb:97:0f:99: + 6e:9c:a3:df:f0:52:1a:14:4e:78:25:0c:8b:02:cb:56:e9:4d: + f5:9f +-----BEGIN CERTIFICATE----- +MIIDRjCCAq+gAwIBAgICEAAwDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCREUx +EDAOBgNVBAgTB0hhbWJ1cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYD +VQQLEwtEZXZlbG9wbWVudDEPMA0GA1UEAxMGUm9vdCA3MB4XDTA5MTEyMDEzMDc1 +M1oXDTM0MTExNDEzMDc1M1owaDELMAkGA1UEBhMCREUxEDAOBgNVBAgTB0hhbWJ1 +cmcxFzAVBgNVBAoTDk9wZW5PZmZpY2Uub3JnMRQwEgYDVQQLEwtEZXZlbG9wbWVu +dDEYMBYGA1UEAxMPU3ViIENBIDEgUm9vdCA3MIGfMA0GCSqGSIb3DQEBAQUAA4GN +ADCBiQKBgQCwrm0KIa6KkrEWJdMIy6y3TFNtS7MSgkBUyUQo/E4Q5mVA3nBdi6sf +XHcDQz06PZ73N2aaM2igz62P9Puco4dXXezWVVoYteEr0sQQ/vABpdop7sSvFcmM +3HxFhL3lWwkfFh0R52HmIucfyIa/odrL/mt+wG6qf5eE6I+BafEmhwIDAQABo4IB +BjCCAQIwHQYDVR0OBBYEFFRkFX6TihnI+bfvYKDfXMgVVsDuMIGRBgNVHSMEgYkw +gYaAFIDG+AtffEnkhv3IksaAcNnAb3veoWOkYTBfMQswCQYDVQQGEwJERTEQMA4G +A1UECBMHSGFtYnVyZzEXMBUGA1UEChMOT3Blbk9mZmljZS5vcmcxFDASBgNVBAsT +C0RldmVsb3BtZW50MQ8wDQYDVQQDEwZSb290IDeCCQDV5mNfGAmCiTA8BgNVHR8E +NTAzMDGgL6AthitodHRwOi8vbG9jYWxob3N0Ojg5MDEvZGVtb0NBL2NybC9Sb290 +XzcuY3JsMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAGrxaS5rV +6MA1wmEKWH0z4ocBYYOAQo0afrGaWNUB/eeuXMhl+54dv0m67UD0BXw7LdsOU9AF +oL0Vh8Q3IgugBKOty1eyAJfuj4mRjn0L4ieWbg+rczNZ+p838nd5ma9yrflJBe1V +CDHrlw+Zbpyj3/BSGhROeCUMiwLLVulN9Z8= +-----END CERTIFICATE----- diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/crl/DO_NOT_INSTALL_THIS_CRL b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/crl/DO_NOT_INSTALL_THIS_CRL new file mode 100755 index 000000000000..e69de29bb2d1 diff --git a/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/crl/Sub_CA_1_Root_7.crl b/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/crl/Sub_CA_1_Root_7.crl new file mode 100755 index 0000000000000000000000000000000000000000..f3f7e5cba23b4220569eef7d86f060660608b79f GIT binary patch literal 362 zcmXqLVoWn=yuifBXu!+HsnzDu_MMlJk(HIfAj6Q`fRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSELxrIH{1OFoab5#ULqj72Lt`Tg6XPgxUSktOLqiiN*Ff1ok%>uw z5m}Xyd6WT<0T<9XSy2{dE=HyW{06)R+#tRP3ky&+1Da=;8ygw=FV$ZZe6Y&kNv&bV zj9b6jRbOlnkrHF@SJHp@(Q%(u<*cqWJ&QFZx&}LE*=*)oy0v&t@@%eKr{7QL-ZyQ_ zGJ~Z7|6W`87hkSExanV)CP(*lexHM|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSELxrIH{1OEVab5#ULqj72LsL@&Quw z5m}Y7S(E{f0T<9XSy2{dE=HCG{06)R+#tRP3ky&+1Da=;8ygwgl^#tfl;Ud)4fyb| zPWE2)y_*Kx=P~hracfvun|UtXZH>|I$9FvsPL~h1S}dH)7goJ)rHD`o!vlxS9S#gt zb=!DOd7Tjun2{2CNrNqRUcnT#E$fr2PXCv))Al^jFKji<<-g=H&JMm~4}bRc{nNOX WzUJ)ANB>W^a~ehcdTWz(<}m|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSEBZZ*+{1OFoab5#ULqj72Lt|4DBZDY$USktOLqiiN*Ff1ok%>uw z5m}X?ag+g%0T<9XSy2{dE=HyW{06)R+#tRP3ky&+1Da=;8ygu`uz9ud`Mpiop1ZwI4|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSEBZZ*+{1OEVab5#ULqj72Lo-7QW5XzMUSktOLqiiN*Ff1ok%>uw z8A+A7fkBi3j{z6ZI9X8^W-dmS1^foQ2HYUN2n!2PH3OPwm>U}zDr?Kivjj|@zIxmA zH-lmSOvPe{6BAE4Bx!|Tt`d52IDDh-+)JBwEr@$Lz4S#_eOczS+o5VcduPq}x>+Yv zF}-tn>(j3tU58y3OxtJh;p?W|yU*3$p7@V%*4pV#K|yq1FQDiLzcP*ylk9WZ60mkc^Mg5Ss4uC4Y>_C*_cCF z*o2u}Tnz;b_&^*EVRnzi+@#W?bVG3iQIH6iFrR-xYMy^uT4r*pUOrGl#6Son!7a?~ zl3JFUlV6aVnpa}T53~R%$}G$ll%HRsU}zvG&TC+4XlQ6*Xkuz=Vi+aPYit7K8bP_V zcR=HOWIr>qGB7vxG8i;=GBq|b?A!3mBy^4?i|CQ=>4ztOUaq(6&9`Wl|0auh8}lmu zxde3l+4i88Dq>9h-mTys1nr<~P&<>k6b z?9KIzo4aqR6curZ&+b^Trtsg5X#NS(+#%MFzGc5Go}N5q&M$wD;zb3m?;}rmS9y9f zF*7nSE^a(-(0If^78q`_d@N!tBK*IOy}o~L$L`H5?VOhFdUI*=DfcA?jT1rg$}EkY z290eESk){{UXn=j@N7a#OZ*@w2{SVOXJIv922#iY4NP3jzz|;XByWA=1<5OX4r+@| zPO04Ozjwy@FNgORtv|4A`@=sGa*nJI9&jtqnYk=k+`VO?fa~8Gxl`U%bT_pBSNm@l zw?HZ;UUJgkj@?_f{bP4&Qp&4Rx^VC2rTuqXrfd6DS;($uVU%!KEyWwC=@ud_rRn}S W`brU(^$#YWMUgHWHf6{DI|cxReFHxL literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Root_10.crt b/xmlsecurity/test_docs/certs/ca_certs/Root_10.crt new file mode 100755 index 0000000000000000000000000000000000000000..64f80334b12b00311ef09a272fe4f9520f4046c8 GIT binary patch literal 779 zcmXqLVrDmJVk%g`%*4pV#L2M#1pn@v3#_sYc-c6$+C196^D;8BvN9MX7;+nMvN4CU zun9A{xEcx=@PRlS!t5T2xk;r(>4xG4q9742VLtzY)I9&Rw9MpGy?mgAh=CADf?Jr| zCABOyC%+&!HLnC_0JAWAP=0=if}w$doH(z6rJ~tEJ-B8>>6ePkW%;#T_n&+REmYJNYmk*Q>F%SYta0_$0 zq?V=T0T%%Fi!RFf=rf6X!KFFfcSUF*GzbH!zJ7=QTDpFf_0LbIqdY z;DW~a$i8M|WngaXWiV*$WNK_=I3=}f*9qOXCr`()^)EVK>m#1Co=?R(Awur_kv9i! z-@fb8XY-VQgIeRxuf8vxF0D#j^hD;UV&0(;j-UE3n%3>%+486D^YT-9KV+kl?k%^A zdZ=6U>(AV|yo_rm^p;C@mon{}{`q&m)$!*NG45-dZF!gKE_**qC;wF7`v-M%#Efb` zGchwVFfML9VbFNgKo%IDvV1IJEFv$mb|0GXDyKln?%OvHY3679wl51cXq*I+S7vGK zGH7gXz^Z0p%91472WS&ga^eTMNtluGKMSh?Gmt_KX<+(d1_p7e=v~$?t6KXv3hXxf z{6l%;Jo}m6?{pS@x7$6D@FEugbc_g7 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Root_2.crt b/xmlsecurity/test_docs/certs/ca_certs/Root_2.crt new file mode 100755 index 0000000000000000000000000000000000000000..5f4bd15cd87062c3d77bedd1707b837a17789bab GIT binary patch literal 776 zcmXqLVrDUDV#-~>%*4pV#L2K|y=do~;*d52UN%mxHjlRNyo`*jtPBS6hTI06Y|No7 zY{E<~u7&~zd>{^oFuO-$Zc=Gcx}ms%C`g1$n9si;HP1gSEi*Y)FCQo&Vju*P;1=d~ zNi9pw$uG!F%_}kF2U-9WWfo=&%Fi!RFfx!6=QXf2G&Hm@G&M0ZHHs4FH8ufqji6lG zJD_nsvY#1Q8JHV;84MabnHn1zHcV;OD_OJPnrZNfpi6u)v)(;wo4J{YQJAX?g z6EhAq&^qR&^@Mdsc9Cu{oZibL1Wm0b7B-?Y!_+1Dw5cCwwb&!LXc`r@?7J}EuVQp^9X UH@zsTYRYDQUBAKn-F&x&04=ur2LJ#7 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Root_3.crt b/xmlsecurity/test_docs/certs/ca_certs/Root_3.crt new file mode 100755 index 0000000000000000000000000000000000000000..306aa56491f954ceb7a0c118493c51b962269506 GIT binary patch literal 776 zcmXqLVrDUDV#-~>%*4pV#K|x<|HEVLePurlc-c6$+C196^D;8BvN9ON8*&?PvN4CU zun9A{xEcx=@PRlS!t5T2xk;r(>4xG4q9742VLtzY)I9&Rw9MpGy?mgAh=CADf?Jr| zCABOyC%+&!HLt{wA7}wklv$W9C_leM!Pr1foY%n8(9p=hz}(o(&@@V%*Vx3+(9i_R zrM&|h=Og=>k(GhDv6sQ1v6HE>k>Sq1%^4YmBKke`^J33+r`fEDO)F15sv2q;WP4}U zN6ql(pVIg^Cn}fj4|qNMfxh5$1AT8U#VXG)e@fbK?T-lA#o3*)=U~<0cdz7BWbS_d zzd@(}KymUU%XhDjZa8#Se}=oLNY)mq_I=6Qq|ZE-`I%?A^WfPfyqw!3k2W_~$-0S6 zWMXDyU|igI+@SG@fh;iGWcgUcSVS`a8@!P>nU!vpt#Ijn{a03&w?AbJ8YhC}m021) z4I0}Tu&P;@yd;t4;n{?gmiR$V5@uxl&%$cJ45W|)8ko44fg#ND-9h!${|`}o3`f_T z6aV~2P+9!mWuItMttBm8Zlh9Q^EV?$WzZw0BQx*VoI{*d% literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Root_4.crt b/xmlsecurity/test_docs/certs/ca_certs/Root_4.crt new file mode 100755 index 0000000000000000000000000000000000000000..a4c1dd84dbc85989beef716f89c21ce373c1be0c GIT binary patch literal 776 zcmXqLVrDUDV#-~>%*4pV#L2K|vRjGuvd3!;c-c6$+C196^D;8BvN9ON8*&?PvN4CU zun9A{xEcx=@PRlS!t5T2xk;r(>4xG4q9742VLtzY)I9&Rw9MpGy?mgAh=CADf?Jr| zCABOyC%+&!HLt{wA7}wklv$W9C_leM!NfpLoY%n8(9p=hz{1$nz$8kX*Vx3+(9i_R zrM&|h=Og=>k(GhDv6sQ1v6HE>k>QsAVjHd(+uBUNuKdC_vD~$Z-~L~qxgX0z{VCJt zKU#J>DqPxu+e=whGxNg7mH$3zl!W|U<`8|UYUhiMk41L;o36TZ%L2jQ4RxW>pAXCk zVX@beGvgGl)sLKSbN}s$ADPqnZT7y-6gal+hx&5I14(L&Ryg{W_8rMQ-&>Qr=+BKA z2bq`|85kEg9ye$_Vjv3)H(5RwF&2?sy$h$`Ibtb4VQXNvfaE7P-j%6+28|Oz^2#iY zod%6<4OrDIOkR>m^YCm!N=y78CkZn${%2t|UV+iR`I zVUs7?6rbbSEORs8P?U4~H=$qIF3GE29iAqx-PiS9#_pl>!^MIQ2jUk$`6}?y{B@7q Y$IAaxn}kG`-&}NAspr`4Da+Ee0ncLwO8@`> literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Root_5.crt b/xmlsecurity/test_docs/certs/ca_certs/Root_5.crt new file mode 100755 index 0000000000000000000000000000000000000000..e9af2c33032cac436a13253d8cb4e16fa2f4808a GIT binary patch literal 776 zcmXqLVrDUDV#-~>%*4pV#L4i%cH7F8a~As<@Un4gwRyCC=VfGMWo0mkH{>?pWMd9x zVH0L@aWxb$-~(|ugxNh3bCXJo(hbE8L_s24!hHS(sd@fsX_?8Xdig*J5d$HR1h+7^ zOKMqaPJTgdYF>#UKhOf8D6=qIP=0=if~kR=IIn@Fp`nq1ArKmyM~U+qn;04znn1a< zcR=HOWIr>qGB7vxG8i;=GBq|b9Ng8a?cW%Yvy>}7LCyYN*y~=_BMU-bCmeSdKXAlf zPKP!9#L^?5(jK{&Oipdqs4{%=vc}&lY?9`e3Ka=pT_!=sqgp`)}K~558Wc<&b}-`%*4pV#K~|Y%U|W^$tmgvylk9WZ60mkc^Mg5Ss4uC4Y>_C*_cCF z*o2u}Tnz;b_&^*EVRnzi+@#W?bVG3iQIH6iFrR-xYMy^uT4r*pUOrGl#6Son!7a?~ zl3JFUlV6aVnpa}T53~R%$}G$ll%HRsU}hjE&TC+4XlP_$Xk=t&U>GINYiwd@XlMfE z(%u1$^O60`$jZRn*vnwh*vZt`$gnB8O5?0_m&2z|wW=n^XPI)$oP7CC-SJT|1{1ON_`g$kLOf$ zGchwVFfML9ZqRtdKo%HovV1IJEFx=E<7RK&<=eNneAC>Uk6PAM8TNlNXq*U=S7vGK zG-zyVz^Z0p@{&ZFhi4N~TH*&eNtluGKMSh?Gmt_KXkg-E28M9(lEo)qSv~h$=#jKX zWkMp~E>SfG?UR8O2Mf8Pg|?h}yu~-n^Qh}QnTJA4Uob|8_dm<`KkvjoU*eb1!N#O@ zms0&Lvbif{W@o&3>)<*~-v8FWmDV};i|j)~M17{c7c?y0ldZ=%{j!gRgNoIpTix?I WK3wXmxp3sN(e*_?Tvt5%un_>x*ZlDS literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Root_7.crt b/xmlsecurity/test_docs/certs/ca_certs/Root_7.crt new file mode 100755 index 0000000000000000000000000000000000000000..96eb504595317ec11df0e4c57b90b666d4faa72f GIT binary patch literal 776 zcmXqLVrDUDV#-~>%*4pV#K~~=S#rDtXH%yEFB_*;n@8JsUPeY%RtAH3Lv903Hs(+k zHen_gS3>~tEJ-B8>>6ePkW%;#T_n&+REmYJNYmk*Q>F%SYta0_$0 zq?V=T<>!|um>bB6^BPzh8X6fG8XK6HSVW2Q8k-mz8k#`4 zw0A(`d}Kc}vNA9?_A(eWb}}_KGVIC!pDQy-Ve#f`lFQ^*ZM>YLTc754>m=8I9{;%p zvOhMxlh0mh`Ef}`z@pZ>#T&X6H{ZY9cj;_)=gVnsLVIUMupN7;^f(}Gqg?6k(~0q) zO>e8~{>c5g^!tg^OIC*`-Vid;y(8YOY-Gfm6BV9yZa9c+*ZSwjr z%*4#dz__^axIyC)16g3W$?~y?v4}Jr`@tPwo~w8Rf`k}xCVe->5)W*~(e(7?pS3=HAsxBy0@Nl7{XVzSd& zHaw4d+ctTAdQ;$!hTNCeC8mZkZ*mM=v**^oJ1*ya&E;Rq&srYeAmbmTGS@zmWnDnE z-~KiGm+h)BO#ASc!TV<7rMJt2MRWYrzlJT{&(><~S(5Ls**%*4pV#L2M9{a%)qPqU-}FB_*;n@8JsUPeY%RtAH3Lv903Hs(+k zHen_gS3>~tEJ-B8>>6ePkW%;#T_n&+REmYJNYmk*Q>F%SYta0_$0 zq?V=T<>!|uSQyBO^BPzh8X6fGni^S{nnj888k-mz8k#`4 zw0A(`d}Kc}vNA9?_A(eWb}}_KGR%|{yu4w*@|h!c2Ur}h+s`-r{YdDsFq7Ig)h_*$ zSBv+`A6nhvZrYu>`Wf#MmV5jUvwdZ6iLYc&59yRm4^LcZ*dF@2ebu$sF1G$_ecCjS z$8FCRZqseLc3`=Af!M@b39Hf)RJ@-yuv9X|-^gLB@7(?M?2!#uizZ~WMt%HzcHcc` zCT2zk#>I`t4H}Oa$O6MnmXAe@MdVsq*-6&_D+4;FCEWde+(4oz-BHq@aUw`wnWeGQ zps}q1tD1$$OA=`wo=r$;i67)7VMfOPEUX61Kngjafr*P57{ax4miotKy|8?__kVI! z!;1aZR~AS$9M~HfV5l@nU}ct>&f2dh?i|V2>=fR2w`LlLS+akEdiKMb4Ne(Wbpl(p zE{0pSwB4SP*eAfJ&-UeHJ@ab^0n>04p^5Y5)KL literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_1.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_1.crt new file mode 100755 index 0000000000000000000000000000000000000000..d83ce86deaf557e18bb8e4bc4a22b1c62384daa9 GIT binary patch literal 778 zcmXqLVrDaFV#;5@%*4pV#3aCAz{|#|)#lOmotKf3m6gFD-jLgXlZ`o)g-w{r#nn*2 zfDgps5N7vC%uOmSN;ecY5Cw^F3G?|Eq~`gjrDZ0k>g59^L=1#L65PVvE~#ayIr#;- zsd*)a{6GtUqRhfl7bxGrVWY06QGB7vxG8i;=GBq|b+_dUVnc7}f_9F4{%hWH+w)2$p zc?-M{S^Tgiv!-wQrCP?do9@J%JvMRS=gBo8W+{(PDV<_CeQe_DY_*QegjtE#BgJn| zuH`hlrE&U=?h>`#QcemxI5zR`EML}8cwYFc`JxHFt6xm_ywotIf8*S!E%WdF|F!Mf z1K0R7R|MpY+^TnlGBGnUFfML9ZqRtdKo;nJSw0pq77_Epl17)iavKw-Id1p1II_J` z`h1r`<3y0WGD~BpL1SBk2>-8RukWARv3v7MJEvv4-dvh|%6-Yg#5bn6QkMAF*6fb02j+2TM%Zr6KeS4P zce1SbpMBSy*EnDIU7+Le*Y;}NL^oB>q+KuT(+~aWI=sMq|C^s7`x6CB??&&wRZ|dR zB)oH7?W?7=t3vJGbG;Y(d-&T^)fv-Gm{R_BRBnFs<z{xd%g07P~N9{>OV literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_2.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_2.crt new file mode 100755 index 0000000000000000000000000000000000000000..c4857c541a52e227e8b18f4b91fc8ffb8e58b5d1 GIT binary patch literal 778 zcmXqLVrDaFV#;5@%*4pV#3aCAz{|#|)#lOmotKf3m6gFD-jLgXlZ`o)g-w{r#nn*2 zfDgps5N7vC%uOmSN;ecY5Cw^F3G?|Eq~`gjrDZ0k>g59^L=1#L65PVvE~#ayIr#;- zsd*)a{6GtUqRhfl7bxGrVWY06QGB7vxG8i;=GBq|be5exhS*{bXur(&dD>G-v2G1J22C5beT*(OegMe9X7 z-xP%E9w*{&0Ju7jujC&;Hx4Th{b;Z}m>7u2wUt-{|c)%~7qOYHr1%*$?g|En;b# K|F&kC!fOBvy93Gq literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_3.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_3.crt new file mode 100755 index 0000000000000000000000000000000000000000..d39b18b5725a86d64dd13cefc6b0d0e7af39ad5e GIT binary patch literal 778 zcmXqLVrDaFV#;5@%*4pV#3aCAz{|#|)#lOmotKf3m6gFD-jLgXlZ`o)g-w{r#nn*2 zfDgps5N7vC%uOmSN;ecY5Cw^F3G?|Eq~`gjrDZ0k>g59^L=1#L65PVvE~#ayIr#;- zsd*)a{6GtUqRhfx9(1!$iuq&Xu0>nww-0K9&OIy;C*qzSH+NlTh7*M4ojsvomQIqyV8x5fO|i_>>G z|9Zl1KcVP0&reT2UM6Nn2FAsW#|;{f7{~(MFU!Xw#v&rE`(Tk;J?}1yx;Jc%jr>9- zK2g2~jT1rg$}EkY290eEBANdU-pHHGO1H{ZxOBh%D=W*}pE3)Rmn70WW}7$}rsjWm zti7-7rvX36Ny3bb|5;cKn1K{>Km$`5Gcbhn*96ZM%bWUkdcxZiE2gbhIVyMcy4sB2 zTUWimwPa#eQ|KGTMI0)}d6q};uw~k^)N*{}E_YljBYbGD_{n+y@26yTM||Alu=o6v zaLqk&lUowQe4ZV&(#b1)6`Ot_WS_sj`ijV2%_+N%<@|rEYRmm=@=4b(R~Osv>-sqN L$fT<=m&$7Z2-XBc literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_4.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_4.crt new file mode 100755 index 0000000000000000000000000000000000000000..b881f8a12e236ff9fb6831dc00e32a9805100afc GIT binary patch literal 778 zcmXqLVrDaFV#;5@%*4pV#3aCAz{|#|)#lOmotKf3m6gFD-jLgXlZ`o)g-w{r#nn*2 zfDgps5N7vC%uOmSN;ecY5Cw^F3G?|Eq~`gjrDZ0k>g59^L=1#L65PVvE~#ayIr#;- zsd*)a{6GtUqRhfmD6s&Txz5o>rsiI$Nai#>eJ@Y}+kish;h! zs~>S>d8YA2Zn;%uU!=T4{&&UK54uPG-JFuAcQ|kAE{lYV+`q(*GZntKD=bP@3p17L ze&gP*nzv`dg>G|QCT2zk#>I`t4H}Oa$O7Fj%f}+dA~J23F59;<|K^P9IhjW!c6+^c zvv^|AI1wbT%+lCt(Ad@>va5ID^gBl^xhSr+Ze;-c%YZvz7b(P?X??0s$Hp@@?e#`IJ&GftJ|M%rT LRe6|qW{M2}O@#g{ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_5.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_5.crt new file mode 100755 index 0000000000000000000000000000000000000000..61391a8c257f5230868318e749fba530fa816192 GIT binary patch literal 842 zcmXqLVssl4 z0UwCNAx~60+$50x{lY&6Bfj1)tJxxr9PeG zMdz+PnckI?``2!r&BV;ez__@Hk66zVu?7-TmY{H3IgB-hN?Gi(qB+dAqXN*(&y5LT+@#oyk2@GPl(;c^J$w z{8D@G!9A8scPh6h9BTi5eA1$?ZOeHItQRjg6+FL0LvdBNN`T%p$9-vxdw0HJ;hA)^ T>-mCdDziT>njabIWwZnUFx?LL literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_6.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_1_Root_6.crt new file mode 100755 index 0000000000000000000000000000000000000000..223d047ca97754da86aa5164ba035029485be352 GIT binary patch literal 842 zcmXqLVssl4 z0UwCNAk>SYA)#_|%j(leSuWY=~^L>kI z=-I!&mP9@CzrcED@zcG%!Q~fUO^pg_Jh9DeLA=$&R=F;ZiM5&)|6d(_y!MFt)$RR} z3Tjte+q1%Mulf3etD|Y&AqKWTGrInn9%fpY&cWvNxWnT?zw!ScOWLKZZiev5aM~^S zP;hqZhD~+s#cLH(GMShe85kEgF|rvnF)|s*0(~IM$0Eie(%Eyp@O65H-!(?lO=}iz z>2N+*u-u?=B1m4DrLohXv8_R5jcVNNt-E~t_Lgs&d-GAtx+=r|PYaWmB+@)?n>ZP6 zWcjQ7JUK<(zy{w{%2t|U1Fj-?`E1b2YDiY*Ws~ne&zRDgXB26OH>ie?rIgK&z~( T4sl4 z0UwCNAkzvESTrS0RU6VG7sb1zdy=J>l zaIW`ep(clrlP(&6`~;q*I@~LW?OrV(Q_k#cYh^p{yLs9ybPPZ+X$*nE6qyor#%|fpKvYBbz}JBa?wF&}l0w=j80BF*EriId^# zv*dUQ&ZbTS8<3OaSxgO#4Gb6PFVJn%&L}A;&CPdq z)K4zT(Fa9Kyty8bX}}NCEzHRHpM}+c8Au^V6fl)C17k>PPn7qpt1k|i9!lhjs5O4n z&Y0NT;M6Nsw{cd)RmQ*1*TtMj{XI{1zvr&E4qsSntaWem1z%uYuvfJGh`AE?0+z*V zPls<}nEtN6b7EgD_apUbdHk!3jU#`}H~&;#Idgr{+Mk}RZ$mi@Ur* SB7POBJl#yE!(RG+oeu!~sl4 z0UwCNAkzraT<9z>&gPgoBR!vV{uPvxL zzq9b^?*}J%6f5mcS4^z;T5!+KoPS|zwe4L6Eh1lSMk zdE8~tI1wbT%+lCt(Ad@>axJawB^!0P{lM{0?@{3EXEP%j(ALI*R zM#ldvtOm?L3OR0o36mKZDLzwOtiw6pFuwU|SJNqDu+dM=Xj}L%)je-tUs)uR{%&XY z1)uOPzS|4tPI`XtSTW=Cdx_Fp`7RtixO~~_2gkSr?>=2*B!4XE)n(=ktFM#xcJE-` z9Z-;b=FM9h!Ln0pirm-E%G)XTU#{dw@u^V@3wv;zQ{ C4+g59^L=1#L65PVvE~#ayIr#;- zsd*)a{6GtUqRhfcK^2nM}-#42+8#j~g@|F^~niUzU$Wj76mSa`^tN(>Vf-6K_qu)8W7L z!tIN028|Oz^2#iYod%6<4I*ca<5m|d2R7_rUMs}NeKf8w^i;~ic=`s#Tf7VZaVA|jFMHs`-YZIXOW&|O zQeO9}NAy>*Uh@~R*9RZAo9&Ibkn$i;XOH^nJKhnD4Ib*jyGvV_OYV4dKz{xr3H2s> z)&1fZO^ogxX`I_-nV&7cO(?OXVp?uqkg`|0K?U=~?VbB=yv!a?RkSc&&l=jusyeaa KlzwdGB~}1!CHjQ` literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_4.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_4.crt new file mode 100755 index 0000000000000000000000000000000000000000..a981a091cc4cb30a29a4c11ea92673221d85b7ca GIT binary patch literal 778 zcmXqLVrDaFV#;5@%*4pV#3aCIz{|#|)#lOmotKf3m6gFD-jLgXlZ`o)g-w{r#nn*2 zfDgps5N7vC%uOmSN;ecY5Cw^F3G?|Eq~`gjrDZ0k>g59^L=1#L65PVvE~#ayIr#;- zsd*)a{6GtUqRhfb$#i*!MSD z#KZ{nKM~UR)7!Z4yrNt1{ugog#I5FjfAQXK&K6B`A45~oJ2M_ko^vki+Cx*x>?^X? zjcpsB|CirkvhwFW-yKP7tgl4$#guJjuQ%$lnowML_14EqOOdzIAG_@KdF)|-^RtFo zwi0tZJIQ`BMOZf>~1G5DrKe_R)Ozm5kyd;t4G26t+uxPSd ziS@F_YYq58P7-Eh{LjK_zzn320~(mhn1La@=e+alqK$>ir}UkT{&Pdou=)1Nd&i?i zo>otAe#UzLcHY!@l{GvIyVe{#|B3nR0)uszS30tv+_=yC!JkECob07pznlYATjL@5FE literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_7.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_7.crt new file mode 100755 index 0000000000000000000000000000000000000000..d73827e103661b1d593e42439817ec78ba283828 GIT binary patch literal 842 zcmXqLVssl4 z0UwCNAk>RI(Tv^bpbFnivFx+^M`n*EW zr~3G#%P#x-5}Y#aO4CzSR)1%|F?S!o^45cD4B3a3T8dUqyAz-M=j(&VXKwM7yfh4) z*s0$CRNOJoHcm_UEXViHi6#rbS039Nt7F3WDyqk0y4khx2Mx@6Rm{ykd$+7#^!K{A z)c4i%qm;BSsuthPXJTe#U|ih9$Y#*Q$YdZ3^nolNix`WDb%2^{&ZB=C8w<4#zjpviLzb7UgYbdyRAiw(F!sI21G>_XRPKK+` zlH(;fn>r0_Ku(fpF*PtYFkGO&K(|dhqokz3N?$)GKRGccBfq%B%EHpXP(LL#H{aP& zKe;GJ9~3R|=6XP;0Y6B$FeBrC7FGjhAcY)Jz*Nc%jG_1~1%m!J?`LI2c}@S<9Xrph z<&k>2W6esvx#ee`^js6Ov8)Z$OlUCjUwC0lz1Gu&FFP($XLGAGB634ckzH(ki?Qr+DW~a(f}6p5v2eC literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_8.crt b/xmlsecurity/test_docs/certs/ca_certs/Sub_CA_2_Root_8.crt new file mode 100755 index 0000000000000000000000000000000000000000..69da1318b025cf8aed7c5a57fdddbfb3ce86c883 GIT binary patch literal 829 zcmXqLVzxABVp_C-nTe5!iAjLbfR~L^tIebBJ1-+6D=ULRydk#%CmVAp3!5;Li>sl4 z0UwCNAk>TY;iyH^co*ukl^kN;8;Pj_Q z+54m2tZZ(2#?A5$^x0nf@}mE8(Vk-h-+slf<1d58?*_6!_sjCJh_Q%Bug>Oons`UTEgAm#|fE|(?g?AI6}`;U zx%s31L{)6*jI|y2o=dwdo@U;1V6(yu>#g7370h9&%IRP&trt4Kv+TtIah|x>0v2*1 zjuBzsY~HXhJy4=zvVQaNO%bi`{5ek+%s){bGqqg&>Dt$a+g!dkzCRryB$ahsaw-6$ Czzl={ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/crl/Root_10.crl b/xmlsecurity/test_docs/certs/crl/Root_10.crl new file mode 100755 index 0000000000000000000000000000000000000000..e7fee3ade8011a117d1baa301c5f132cba092836 GIT binary patch literal 317 zcmXqLVze}9T+GDCXu!+HsnzDu_MMlJk(HIfAi|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2Fawx{ z*@N=)OB4(Z#CZ)Y4GoQq4NZ*3Z*~2D<811|6MdJ} nXF26p6im&s-xl*PeC@wLnY7ChYFa0JVvY*Dzq)xv4T}Z|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2Fawx{ z*@N=)OB4(Z#d!@43=9oT42=yv)Yg6n;!hOeY}ig7jxt% z(ZiCBf-jjqdHJnlH)I!d>-t`oX;JW*>T6vq1-_I#bgj5=ukI{#l#wmPdexr?EC2x+WVHYQ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/crl/Root_3.crl b/xmlsecurity/test_docs/certs/crl/Root_3.crl new file mode 100755 index 0000000000000000000000000000000000000000..5978b2613d006ef24896b4f85f3695abcbc1124f GIT binary patch literal 316 zcmXqLVze-5T*So4Xu!+HsnzDu_MMlJk(HIfAl{JMfRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2hWtPa zfTGO8Y(e??B?`vkyatwrhDHVk=EfEVW>Mn2#wLb_h9*$%0-$mOZlDHP5f&CECIJRC z=P@@nGVIl9NfFu;aei)WZGNwyHAjQf%f78v5q5ivw>~UZn&(@6adu{G(#ywx>yQ1b zZi_SAoBaHZ=mfb5dvE2Y`~HruQ(Wx%`3Kj#X^PC}Mdv18&vW34S?(lXXLc%T7B}n1 o)oK;1*S9`6R3mD-srh7%=S+6pm_O2ICt7ly%u3r|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2hWtPa zfTGO8Y(e??B?>0uyatwrhDHVkmPQtaMp5Ft#wLb_h9*$1fwF-j6O#ZVk}7jUizovg z11_K`vZ5@^T#SqhfMyzSgZLsWEI`!^XntUBY-C6>YF60$q*ms`?ELfRlX+!1Sbf$9 zNXGkI%KGqWf<}qahn>5s1(pQrNAPDYHJAMrs}?A*?^eLQC(<8SF1{$;w9?4W#@utW znQ7FA*zi5+2lvMO6e#WanxOczuIjGk)1CD>%9GlbrT5C-Jtz>bAb-bqj<2WqoRE*x NoNnCQ{ag3pO8_E7XtDqR literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/crl/Root_9.crl b/xmlsecurity/test_docs/certs/crl/Root_9.crl new file mode 100755 index 0000000000000000000000000000000000000000..90bf8eba4a12e78584db07a77f7e9f01b8eb1419 GIT binary patch literal 316 zcmXqLVze-5T*So4Xu!+HsnzDu_MMlJk(HIfAl{JMfRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2hWtPa zfTGO8Y(e??B?^|}yatwrhDOGQCI;q4#!=$D#wLb_hUQT20-$mOZlDHP5f&CECIJRC z=P@@nGR#fiE!DH8*6;6xB~4|pl#@(J(TSew|JInyO6}FT zE`Or+yJYgGb?JGBxe69I&fYVnV8c)6#9Pfl2b*#ZdIhJLyq12MpyI9c=#g}$NbQ!* p_D7~I%eA`5eWd;Jp9^yr-L-7eKi82qtx~7TVb_JtrTdz`0RUnRXlMWc literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_2.crl b/xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_2.crl new file mode 100755 index 0000000000000000000000000000000000000000..c9f542029371eab46d8f40cdc341077e1aaecdb8 GIT binary patch literal 325 zcmXqLVstcUT+PJDXu!+HsnzDu_MMlJk(HIfAj6Q`fRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSELxrIH{1OEtab5#ULqkIgLo-7Y1JfvRUSks=*9gj8z;D27zzx(X zE5gFU#3aCg=1%6uMurW-#t}_d{%94Sou4 y_Gbit&o1e=`P@{{FY~kRo5s$!tU`OX6iu9}|0B*_<0I?TU5|@5&pEl|oC*M-`D>j3 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_4.crl b/xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_4.crl new file mode 100755 index 0000000000000000000000000000000000000000..7fc03f255ec48631de529218bf6c2133a5d8ddf9 GIT binary patch literal 362 zcmXqLVoWn=yuifBXu!+HsnzDu_MMlJk(HIfAj6Q`fRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSELxrIH{1OEdab5#ULqj722pJ{LYiwd@XlMfE8YmkmGBF7-!c|$A zS{hkK8Sofz0gaOtWnt!GWL&^+z-zz_;)}4b097-fd4{>Mk>Qfmu8DD{Dz5T=R@u31 ze{|WWt4n75+!Q=VxW!?Db=Q*BrDHvkvQZ7Bc% literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_9.crl b/xmlsecurity/test_docs/certs/crl/Sub_CA_1_Root_9.crl new file mode 100755 index 0000000000000000000000000000000000000000..567b8b5d11b98af3612227a050443593bbe9d384 GIT binary patch literal 325 zcmXqLVstcUT+PJDXu!+HsnzDu_MMlJk(HIfAj6Q`fRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSELxrIH{1OFAab5#ULqj8DLlXmIL-QzcUSktOLql^YcLBcvuK_nu zr>qDI3loz71DZRT8ygvBsyuFt&E4!981ZJ+m)D2?WIpCTW-sPzxX@5#|C+k66gA~? z5kaPsqdzXUzbg@KY@TIq_DD2KRo~YmZqteB>(otoS85cTO`o2;%Is29ld|@lNWD|9 yxt>oDw>|tmZGZIAfUY;JE9#RuczMsx*?4Sj{=tv6CmeiF{tug#y>H%3t0w@{nPtxa literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/crl/Sub_CA_2_Root_4.crl b/xmlsecurity/test_docs/certs/crl/Sub_CA_2_Root_4.crl new file mode 100755 index 0000000000000000000000000000000000000000..a2ce79b3a0f58a42b286190d5a347e3994682c5f GIT binary patch literal 362 zcmXqLVoWn=yuifBXu!+HsnzDu_MMlJk(HIfAj6Q`fRl|ml!Z;0$;H)Bz<>|L;Sgr` zNX$(tElM{OHxLDha0&DI7o_I-r=?{kr|RVcB}5E_KoZ=-+%BnQsX6%txv6<2h7ty1 zAW>#v{@~Ii1!qSEBZZ*+{1OEdab5#ULqj7214~mQQ}ZZsUSktOLqiiN*Ff1ok%>uw z30akiS(E{f0T<9XSy2{dE=I-${06)R+#tRP3ky&+1Da=;8ygw!Z}GJ$W?J##Msiyq zbF$%yvssnOJ_qOIB>l@vet6^ciC7Wy{`g5Mxr|<_y;m)|Pwr`&=VP?ZtJcx{TX;&t zvgvuB5^fuCe^%O7U+KJIQT556yAN;_-1)m**LM9pnV;*MmNf{NtGtt+c1L2urtePc Xc;}`3=DxQh=9Wpj;+>C^4!r>YbGUBT literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_10_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_10_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..16abebe5114869e6de46dda3d1ffe7923c033f5a GIT binary patch literal 739 zcmXqLV!Ch8#N@GnnTe5!iAjLlfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNAR zvz!@20Yf4~5km<>CXmhn!b%1O1|^16hCGI3ATOVx7$}p+kPZ|rWGDslOMr4p295KP zLy3` zwr306RVK#ihuiC;E%r$`Z82opl`qKn>5~KAC#e`>V*4Frc^@c6OoY!x*vpm`+>g4+Ly*(2%BLm~& z3WG8OZlEV+`B_+)nOGkf$bvY0EMhDoJv!UEo1E`BzFBjn^u?_k_A3{BH8hY1Nh`BR z7>G59yvW*pXu_+U0wud|-#nz5pY7YeEYv_9q(G2G!9Z?_jDeIPP$5u&g;|(Cv^cd$ z!O%bf7MrNahZz_m9?JsVqFt8mlX%;I<=7>gw*Kc&zbuLkT*WYZ&y9_jzo;x&$lIV- zm!$Tt$9r!jkLBLH^|vQ&W8S#IbL#R)jSvIlKXv;2i_T3@*W7u-ex}*W#`#}=o&NcW wb*o2$Z-B4dF4w;wXSOV>sl4 z0UwCNAR0*WwhD4x92}34B9z!}%q>!PMAs@(3HE5iV96pS! z49tza3_uq$H8wIl>Rvg8ZNus3(u@Dr6kJSurn~C+8@>xzlDA9(D0 z@JzP-k?NAGg$372x)zE5wXFDYe6v%?n(yq_^FwbjiwZtCbYtqJ_QP{*r%ap6*chAW zyvk?N)r?g+#T`M_?`D^!@@lQKZ7y_l=~k{?_S2>@EN6DmwDuFzC3=~d85tNCR~VET za09(3%g@5X%*6V@Ko-Q|V-aH!@#x%Vv+87&MfRy*CpPW={?Ns{n!`XIB(2OMVIbBZ z@*->Zp$V^Y3Y6@=ee;lJeztG>vQPtckODy#1p~PyG6qtHK!rd77G`1o(Bjl0VEie- z;t@6BFatwG`DFCh`H}ypb61+`8r|ORz44^B-1&~`Eq))~3NKD+?Y~yA^{rO;qy<|< zrg>DYS|S;F|K>{mw#851Y)yZE_?`0I!*(idIh@Rqt0!MO&gJv|sMo%0|M~SA`y{Tq sC|dEgv8-zAvXHyRUV4FJ-+Rs4OMhB>c`omL<-X5h_b+|TKgVtW086*<@c;k- literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_12_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_12_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..18bd2475cdba3616f8e5367d85b8d31233d703d2 GIT binary patch literal 729 zcmXqLV!CS3#ALUCnTe5!iAjLhfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARz zr^67+P|T3ZP{g3XV8~#^paY~+8S)rX7&3umI*?b$P|A?cPy!THGH9HS95#%s49tza z3SiM}qSeUXy{fpCs>zQBu-ixqj{=HYd{=^cVIbjUlW$71pt$gl~ zTz<>ta%ar)s8?4%&lYw5%%QudYrj`?IOB)o)BkOlyh*xpf!|stW=00a#T5o+2HZfe z$?~(XFf*|}Fpvdt_*lePM7S0$I0EL0X-rQlrRqhOyo~sl4 z0UwCNAR zvz!@&5<@6MF+(at5rYDQA%ii44v?0!_y5<$u(Pn9 z-AXPi+Pv$3ME}RlPr2usMug|yx+r=!sQ!_ts@Rola)rx2e?OYbnDR&AieJ{JpF6e8 zeyn>YzT#(J&F<2tDwb<~Bu?yRS2}xfSEu|Wd__pPs;MMurM>RJ}{64arjuoSVT%aFUT+0yy)1c`txFoeZ22q^I@NBAPveMQIiidFhpV#64+LC>Aq9YdiQ(l%$~P5(lrcjs4agWlNbBYC+@^grbl{5 zsWyEJvCm~-!?T=n2Tsk0_dsdhOLvGAkz)HZHi-6;b3ar=H$_W=Ol^X}&W literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_14_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_14_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..3ff2118d286e82f04a0be6d3f5596ad81f988293 GIT binary patch literal 729 zcmXqLV!CS3#ALUCnTe5!iAg}wfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARVPs`s zZtP_+XzXNaY-G4qWx$(!tAzEv-K8(u(gBZC(r47_H$N}0-cdCB#JtpdXSAxz4sozn zo$IiByS22_?2^}R>$ElD+M+X0UMV^C_4WUT?enue^sSc%9uZnU?bMo`uay5z{$3k> zadnM~+&_;y#`j#W^|VFp46}K%@?+0+N5)$$TD5G4qnDhC&v{?t_nwKFk%4h>g+ZAC zH_&Uc{46ZYOso$KWI-H07BLnP&qwQouD?ILl_~Y^`AtdBRNvYP%rTG$Nh`BR7>G59 zyvW*pXu_+U0wud|-#nz5pY7YeEYv_9q(G2G!9Z?_jDeIPP$5u&g;|(Cv^cd$!O%nj z7Kf;bh8Y+l-KQ>1K7H}b%JjwiO3$Asl4 z0UwCNARLn=caLo!1SLq0<>Lne@&&Y-|h$WRL8mjLC88Db0?=OYIRBP#=QV=se2V<%H% zBg4Wo4BG74&(}0)o^~*QEWh}uaGO|i_L&_ASB3ly=fCHZssA+o!^+*NB_8k0%CkAP zPF=~cO4M-Pjc=;K6?6A!_g6_83H1mk)RxKlZF~}V-1)$>cQ+I7w@z3v)n-v+v#rv% zUZ;1Nzhc(OYz<=i{brev{_fv7D-x%25MAjqO%Ah$%uK*|uP5GcUHEX*HToLZz{XsQ5NagMT literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_16_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_16_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..9f28740601cbf951beca6fdcbc103d2ba094b4fc GIT binary patch literal 739 zcmXqLV!Ch8#N@GnnTe5!iAg}vfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNAR zvz!@23=pO;newtrZkbOEXRf@? zb$lhK$clo5t&5ZVckJg<;+oTJmeKqrcC2Cp3whJY1{g5nG|IeNt vN>z2%Gp}v3T{J=N{j^(;4Q+=3oOT@Jq{vGQf;JBAkm3tQfv(%ugM;7;t? literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_17_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_17_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..49442c6df7b9eedac6aa4b57e6602d71d7b1248b GIT binary patch literal 749 zcmXqLVtQ%N#1yoEnTe5!iAg}nfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARz z=fDsHge45+4EYQS48=fJB0~|7%w))8NC%4K1L;&CoeHE=;G%^Lr9hbyplFOi<9y`s zVq|4tZtP_+XzXNaY-D)ZV>ltG_x-Uf0r6V%#qSwRB=0Vf`gX>AgXD?1-{$|Y6+L;r zcr};Pr;z9~Lcdc?Lrw;mN#tzXaQ>Q{0XOfj&#E)8dn(*L!*YE$JHyVM?LDPWHI|jE z+%nB~muJtCVbaEn&<2cJ7kdf~1G*(pM>~tdR{~vwxdG$#*7ZMh3>k z6$WJn+(7Tj^0TloGqFA}kOgu0Sj1RF4rtiza_N}4pdo#g-L@-2%S~@B+if5Zl2&Gs zFc51Hd6BjI(1cex1xj|`zIjM9Kiju`S*U?JNP!@Wf`Qx;83QRpphBPk3$rkPXmM(h zf}yzrEM8F)5;HJF*rI=@hMJtxkvgQSHC=jP#y1{e31*j{yygpgHh$l;y=29zgU`*L z?|hI_S(ZGbTJ}am&rP+&70=nHCA{oXsW?67v#IFGn>>0M86I=)XNTFZayK#C@Sg9| wgLf-eW~on3P>**ioAY2*NzTqy_x`obh_Wp{Dr#}!KWE?DTWlr2(sl4 z0UwCNARb4u!(@t0)(Q}xgwUSq_RP+8_js82Se)`=ip#@*07VYn*TahbH%ncnnm zH{!!;_wtE%%+}cPC*(h${LRSk`7_}!X(r0Unx{o~6EoNe7WMEueVNhnk4fKpGKMM;p6YB#5SrCVh zMT|wna9!YDbGz5qX4LMz@5(dDuQ^6JF&MDA|4c<{{1e zY~S`}p$6(81%fOJ269Ve45SQ!3V{MF%)OKh87C2NJC8}%)k%{G*R)c=$sns zENYkZ$6u^>r+s4agmcz#pFY0>i%*7;$>|bZs z2iMe0HxORVyyiBG>Tac4&jN$Y`6ra77&$awzBpG#E9Lx3C!TXWJ8YAUcRy@(U0&I_ ahDUnqk_WQBGp}XLK9oLv&Rm^vp??6@Vc>-T literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_19_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_19_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..5cce769b44dc3f8b988ff27f1adacb7b1429c22a GIT binary patch literal 710 zcmXqLVmf5d#H77|nTe5!iAg}jfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARdcIC9)Y`j z?Tc=0dp3QdSz*XM?H~6fwkyAW`Z#>udG6dc{^Sow{It?MjE_9#*7^GE=~Mn64;Jnb zWLqdH_Qs`r+3nhE6`JzlALrU^vC_7ll9K!Q+~!|5G#F1rrH0pIhiq2ZrJlX0C@!p!ko5wsQvZAZcY52?MbPkr!FJ4^4QLQ=nw`?VE=*^Rs>1 zmxUUrgA@p|C>Y2skui`m1S$jyurLerhZd(6DHvKRz#K?OMu~US@b=#(^?Z% zJ308YvKlWe_bhPwJZ16zoa~*y{{FlopI@rJllStazp=b`zM5z*veIW+?ctbvUHh*S Y(@dN5tFmXLi8ot%<-41$y{(i706CNA`~Uy| literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..09f2a54f4463cc0b4ce7fd06d8322351efd55187 GIT binary patch literal 699 zcmXqLV%l!d#H6r*nTe5!iAjLjfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNAR zoB(4bV-;gHg97t1=H<*Qm{%G!&PVn>BP#=QV=se2V<%H%Bg3^DNj8}$?@r$QGBvrA z+3!c!!|u70jya#|TmLt2&ha!uk1yxq_E{Xwk@h&5__dsrAS{@i_j-;_B~hO0mS-!s4d=7we8 z+6tD<4f=mV(!Ha!BCGi7^p{M`j0}v6%MD5mxPi`>Zp$V^Y3Y6@=ee;lJeztG>vQPsx zkODy#c>~!c(gu>S*kl&w3oTA9QZQ72#S&_=U1falil1XN+EED;KNjavPs9n|{n;Te+GH+b8K?T<>EN zdwJ*BT;{)hHzBh}T*^U3=KOXG*VXG!!>yY0p O&UNGNt%d3W3yT4GeD3T3 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_1.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_1.crt new file mode 100755 index 0000000000000000000000000000000000000000..c3810ab508b1bc516b9a3dcc0d6b7f542d043971 GIT binary patch literal 706 zcmXqLV%lfW#H7A}nTe5!iAjLLfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNA?4*81?L literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_10.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_10.crt new file mode 100755 index 0000000000000000000000000000000000000000..1531d1e8d350c6546b9d608932f898babbc97f0e GIT binary patch literal 828 zcmXqLVzw}7Vp_O>nTe5!iAjLLfR~L^tIebBJ1-+6D=ULRrXjZhCmVAp3!5;Li>sl4 z0UwCNA;NVNl z-@H~=7N9u>)(b2bn75f?F~h(JW=3*R4mNXg47fq&@UyTmGqFA}kOgu0Sj1RFCfs?u z;dIi%ef`R*jFlp-N*)E(3k~E!(#k9n24W2&g2@Z_bw3Vcf3|qOvSm^2W2J4umdFtS zOqa~S7zlZM>Ghpex4Sz`j_r*8cH>l|%7tA%hnDv>DP7J;Ihi<{i^1-q-|1%AoyXa; z;;Oftn#42t`n;JBBizL|EYHn|e;WBy>*BQg+ve|aclcEJwotn(FMpNheBT-GKCVjM q;$j)m_2ba`-h-Z#w#;PGS3e&8)u85W`v0>+ca|UNo8hnXfE55M#uW|# literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_2.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_2.crt new file mode 100755 index 0000000000000000000000000000000000000000..3dab2587785475e0e6da4c46043d1926303ea3ad GIT binary patch literal 719 zcmXqLVmfWm#ALF7nTe5!iAjLLfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAfH0C zwu=AVN=c;~?jq~AJh>a|IBB7_k!4I_hrr|V_H9=!TJL#JJSIN9&vx48^*wV-dOGU0 zie{aXk`BvB)?2dRk5x7AAu-Vl4WgR&&T^ORi8E{|T=I9{Y_=>OciEp$4$fHT_Uut$ z=+)h;Sv4}Z{xCJV_95klOCu9ABLm~&T7zl>ZlEV*`B_+)nOGkf=&*4nw0SVL{cvLB zWsw(?1w~14u#bX!YF=tlVo7R>f^%w7NhUCkfE=*@W%*ddSVRgFw3W8r|6@^C`T2d# zwD^OUoaQ7N$b(E)W&y@ngGkS39fL(Lk^&0${3%@E`0GK$7T+Dnp#w}R%)nrIxT%`BDReh47d&-H@Pk)xoJsBK&^j7AEX*2(>IU?rpibvY$@ZVHf=C%70I%*1n fO(&iceq^hh{X+SG&8+bFwcgBACW$5eyut_oD&O)h literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_3.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_3.crt new file mode 100755 index 0000000000000000000000000000000000000000..278b11b77ecbebf3dce8c2d58cd419d5ef34adfd GIT binary patch literal 719 zcmXqLVmfWm#ALF7nTe5!iAjLLfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNA@~xj*oHmIJQJ_=X(fGI?|V`*`mWeM#gM?leV>k{9Npb#?s?KTqshvt z>+!wSzmET3y5)Fqzxa~0xrh5UGBGnUFfOh&s5amRdP0_;g@u`k^?`v78)rhB2V>h0 zCq`Ztc`;c~lmrL+D7dHQr4}WYq^2l1rxulD0^aKR@w)+yJ71UppL`G0GZ*ndI#q-2%50pD+fO#z0z2HD*q;^}*K9K0%% zGxg|`BWr~$^)227XPw_Csl4 z0UwCNA2#{!doQ&O?!#)&zQa1syPvw#XH@u-hRm}yXZ$>-l45i z-|U)tc#YnHZ4SGXWlKsYp1Ee_BkC*4yyRJf*W`aW6IYifSUaaGo@KFRES%}CA#`Hy z&+DpH22EuL)Z-2pIE83&F->P;W@KPoTx(Emzzy_-EI$hiGZX6r106QbgfmeNeW`@LpL+d)ufMNW zac?-ct@mTHfjr1$WfowJHHb``rOWoM%)dFKdQRpMiQQhW-7KCUhYm2QFav|7s+nhj zu1L`Ig?x86>n)V$4SYUBuXC2!V(Il7Q-xRC8R~ue75}}php|dpHM#EE&%U)S^PKEt zzpTBpQDI_px5ru&t(|Aqu|3=KkoB2q;VI`CR!=7fJ+!fsZVtY@Y*&`E1;eCWzx!8+ eyZtm;FN}Zm1zKcqUX;5 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_5.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_5.crt new file mode 100755 index 0000000000000000000000000000000000000000..863f6f613eeaf0025f3d1d54f05c9461ff4605b7 GIT binary patch literal 746 zcmXqLVtQuK#N@w#nTe5!iAjLTfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAl#zsa_;=INthK7bf z4CWf-Q`sf*2C@*Bh=mrX76ILX?x4o`$brGg%D~*%%V5yh$<)}$aQW|Y|5r?pwiq?o zr|dSLJMUN9Ce_Wd-(p$&w0ZU>$UO_P^l6zlIp@+AT@$J2PTTgI>^;Po*&E%MhUUzM+L)544yFCbQE5#yj;fgu(dte zJNoQN`BSY`Jyw5LHc#1^`)w){Gb01z;>PI)jZ+LgnXR$M|F|b--vB0d&B%`FH zz)D{~CqFqcCnLYO#LB|bz(_wOH8)7?}+sj4!v&e3JXK z$H|scfPZ=EG4%?s^~eDSOhwGV5R1=hv<`cbYs@E?RlM;<=63t$#+>4sx!;9O?w=`k zKFs1t#BGhGa~}7-RljsA*s($D%Hc_|Ten1A6aQW^w^^92UZF1_J|Ws_*8D>e@xRz7 z++Vb%Oz3oN!`zN1^+AO}Sc(Ovu&P{9cI+KrbJY0~qX|9~HVe^cOthH}EisbJm F002v!^SS^4 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_6.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_6.crt new file mode 100755 index 0000000000000000000000000000000000000000..cae3959d17c356660db842dba9fc4ef61c8370f4 GIT binary patch literal 746 zcmXqLVtQuK#N@w#nTe5!iAjLLfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAPI)jZ+LgnXR$M|F|b--vB0d&B%`FH zz)D{~CqFqcCnLYO#LB|bz(_wOH8rIiNqAhpUYz{qS6>Fl{)_&UA9 z?;4}&rZo$nTmOs7!C2vF5-rXCy9~?UWYdu%iQhAO4_Z0VbeShO&x_kBXLsf>k7mNGWmCT;f zR?NnBD@&(|WuvEL(n{8+&vh~uT7TK!&>Ag$N3q)W;JfKLMW(t9k`uP9mNePj5%;P< G{XPKq@BYaE literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_7.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_1_Root_7.crt new file mode 100755 index 0000000000000000000000000000000000000000..e5786dc6c0304acb4955c7ca1f3664c0fd70e6b6 GIT binary patch literal 746 zcmXqLVtQuK#N@w#nTe5!iAjLLfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAj#OZ50Smag>S)R$WDuf5aJYt^I`(4H~ByxB|T)E6-wQU}Iplz+!<}n@L7V zNr9EVeolUJVopYWafy|MrGb%tN@{Mtv!i};QI0;)tMSf`@rLoBu#Y#_1Bw}NgN)&4 zVPR%seE<#`Sw0pq7Lj{tEl+0eFJRc4U~A$!?cd+49kb6G$b-}>vj8KrK_nzav~F^j zhrQhiZ_p3stbVV>e(xftWDmxlWut@97v@Pdm!sl4 z0UwCNAa^k!OmWGB#28O04MutXF;=INthK7bF zP_98fm0colAPaGcSZHx-5zrmz4r-i_92ktO49tza32})xQab z@=u#5oSrpL^z3d^=|48zH*GcVePOrvVVmuLTXB(hd-vZhiH7$~azq4vF0XpP^>Y8_ z=EbHiU)CPJknp0gFZV#fEV0(qs-}#Z^mpNg*)RTnvX4Lh#_#s?t{K-vU4=!M_xN=& zdmMVQ>ZsBAh9+0B?qqZCt5wsPm>C%u7dJK=G&UF*vTa?0MXU97wsl4 z0UwCNAn!k@XOMPFB{_iEd1^~`Ox0{XU(~FGhA={pD$XpdQ0oKrONA_pQO0nQh4~l?o<1#^jCZwT_~i(c3A);2^kF*7nSF7`L@HQ)w%LYAL}g_()<0oX^fd@N!tBGO@Z z1B@{6rjMEG=gmLY{M+?z%(SGh8m=cMXw|iJynMM`QT&1Rt9!W% zubNL-C)#FE-_&?<_o+)cHI{lWQ^U1O+*v$lmLwl%K2!T;L*As)-K#Y26keWMEc(UY p!g-$m{KwN{dhf`sT`RZ!(56%E@A?)^7D|{Z^?Se52}6%AX8;_B=A8fl literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_2_Root_4.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_2_Root_4.crt new file mode 100755 index 0000000000000000000000000000000000000000..3b12b29c16e97f4651164ab636b8ff790e840791 GIT binary patch literal 719 zcmXqLVmfWm#ALF7nTe5!iAjLbfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNASRW;=INthK7bF zP_98fm0colAPaGcSZHx-k%FNDx`P_$BL@Z}D+6<5FM~m2CsSi1!?8_$Pd=t|v)lCS zsJL0VQSYk2(HCX2RPFCB=6+y5KcM~PN70hDa|;;RH<@23xic+u%SXPmqUNV|y?wQK z<{RfLYh=1-OI$eHP~q8d>T&Ba-C3ec#h0gZ$a-f?4SF^y{P?#ro{!6ICkXJEu9$QA ziGYCuOZ}_0?=5*!S)IRZ3$%JZm5G^=fpKxILA3!l&=a!!EG*1StPc!y*fq9i!jN5MTcFSRJKBsE3BIkl)H6BtK84%q*)d@N!tB9(`dJId}K%ik-z zK0L3TV@+u6+KUGAAd{6@fHBq}l6i02%p+63NBwfl_W5==w{w-b;aud<0VWk@V6d=f z#J^2KKV|Q{eRMZ&joUSCiiW=c;51{W9MPEKzq@vOrBcYq8C*Sgtlq@WM=!w+_KKE?ctqg hi_Mm(t7zZ0vJv&jKR*AQg$dh~$Cp#S`_9{T002~U?sl4 z0UwCNAs-*_a*B~zW-(t7)G1Nub@H@4&aG`*kj#5%;+| zYnrLI->D+2*%MCqsIce<&QzGn#LURRxVUk;LE{tySD-g!pq5DWM9X@$ER%|4^pel0*uTC5$gao*PKWH zG&UA;t(dA?k=&=_F$p=~fT@TX7-DR-TrYlgx676$Y9GIt8y2tjSaZu^byidU?FSW{ zrgG0U5sRID$m2x%!{^Sg1?IWhx!kJpmSkl}o7nuSsm`>O@>Ps;vSFZ@@}FQ9J0 zr44aQ^6x%7A(*ho@#!{3pQ`mn-_AsbKYP-y_(pt2`fFc(_S^jhk3N_8AOD|l?dJEU F#{i-<^r8R& literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_2_Root_8.crt b/xmlsecurity/test_docs/certs/end_certs/User_1_Sub_CA_2_Root_8.crt new file mode 100755 index 0000000000000000000000000000000000000000..026274f632a1087ed3823625bb139a13323268f7 GIT binary patch literal 726 zcmXqLV!C9|#ALmInTe5!iAjLTfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAa^k!OmWGB#28L#a#>Pfb;=INthK7bF zP_98fm0colAPaGcSZHx-k%FNDx`P_$BL@Z}D+6<5FM~m2CsSi1!=-Pk2c~+n%Pj~` z4>H?q7i(0XsQU7*;llJhruqJ-{x=1r=)LvpN@?|K}G!Ee$g_K9-LawTu6+;gD9G`E^V5 zw|#%5I@P>i?~M3!DBi_sB}3VNCT2zk#>I`z28|5{hHM<#Y{1B3XJlkiHBdHCgz*g+ z+e9-;N(!v>^>gx*6LT{1i%YC5EG#SyxPd;G$TR|ZJ2pdLBQbgf@qEI z@J~Wk?FXykPAKkN=Xr3Izs$T9>-g6$vRjonCB^Z_b;;g^`wob*sOp$%u4j;QsCjQesk9Z06UWBMgRZ+ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_20_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_20_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..4a026790e723967a6c12339f5621856406c45136 GIT binary patch literal 710 zcmXqLVmf5d#H77|nTe5!iAg}zfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARO=iHe5I~%XFT#rok5B3W;?MyMBNE)3|n(yTt21 z7t8K#J0F@FXD2$jZ;qwk;&rkIJeBUKavD$N-I`Q0jhl6wz`A!oBvj^KdAr$XrSGSG zIcerQ#ZQae58ATgUNWzLMTFSuPxjwdGBGnUFfOhzC^O&&dPJ6=g@u`k^?`vbh{MMs z#vw9hxzLavNqvv--FV@eRx^1tl^BJ90RSrk)i8Cpc zyjgj+ck;KK8Fjm}G78eJEa;c2>YHa_x~e_v>FtKhz`zVQf7@H)_w$t!%BO~27Lpb` Yn166u1%rFy`rrfRF4>dP>qROX06H7wLjV8( literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_21_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_21_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..46b008eebf17f56f43c73afafe3c1635e7d1feea GIT binary patch literal 727 zcmXqLV!CY5#ALI8nTe5!iAg}rfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNAR+_kbZ5*wfrMbE{Y+2R4KY!YzR4)cA&popio)zAxGWna! j*~^6!Z~5OXwatjh_7v$--nz|yo8yJ$Vm0YLo4Gmw-Y)9> literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_22_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_22_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..7c1c2cb29f0ab853ba0f5198a20b3143ebf04713 GIT binary patch literal 739 zcmXqLV!Ch8#N@GnnTe5!iAg}*fR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARNXYR)L&its>ioJO{Q)QyXejX{I^Kw634#~X8f3>=MlF#Ix%*37H zn`JLB+X>G#*t==x&EvCuC0sX1N{UAK?2TF&>Hk4~rkb^1*|FVjMK>5QmRNj77xxNrC0#i49tZ_egzN9OymssKVrB2J#?jWflno zu?CSBS-THSc$HJ2WcTfxhcxrEecP9X8mNO52(l;`$SsjEkTL`+1PZV)3-gB-rxqy~ z87aVG6E*oT14BgPT+fI7VaJv*-M=eadgpx7f=Ll66MJ?~vkAJImSb2ab92R0nPv0i z)a)}0k6n*t@?Y+>wDp$-qqA8^sZZddnXyHzvu6K^Yo5K}z2L?rcb5j}Ul6&=!rwi) u&f89f#r47rH_wv!*SBPF-r2Us)IRp-yYeNbZlz1It{n{azrsl4 z0UwCNARI-QlSD zwW&4!rhiv7)lV>zo%y_L=j0`ymARJw3^Odg@%Z#LK7H+XeOphxPHvLnW@2V!U|d{b zP-egl^qwp~3kx$7>jMK>5QmRNj76kj#dqPyFMcdbn4);_Ur0#j8t?nA2J#?jWflno zu?CSBS-THSc$HJ2WcTfxhcxrEecP9X8mNO52(l;`$SsjEkTL`+1PZV)3-gB-rxqy~ z87siz5jEj314Cq=;a;z>hLjI-ugbkXKYsIJt@;^O#$T6&YWiBE%|qt+Pt%oYe4=RU zeX~s}M>DSD(>j)q1?{RkXL-H9tN2sg_}#+S7Qc@a7ZvcNM@*aAqZ8$2s1Xp9k{Xko ua8Kp_f|tApwq5fHTpsn}?zjJ*&+_ZrEMkxUd>#66Q>XP=$M3N#HUIz@Z1PV4 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_24_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_24_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..fa646e4029da8b9ae0cba480f7ee35532e4df75b GIT binary patch literal 729 zcmXqLV!CS3#ALUCnTe5!iAg}xfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARSJxO2$W( zgmiX4JHe63xBjJ)>-_gRYHru1&2AS&811pWUYnxs5|Yy?)N$R=);?z1>CE{XS3a0^ zFJSxH8=Cv~*eJeSRH^9J_-ev^7oMEmKip5eti0IkART+TboLW&CT2zk#>Eu|Wd__p zugUVWurM>RJ}{64arjuoSVS5{I8E!nRW)Zz9#T@7^z6#}AQ^50d62X+i-dt#gUE}l z-G?T;$|+E?`}WO4n)%tj?aM+9)IkaaSriQ9mdF@L83Gjo1z4Dc`9q6SixiAZ6ku_P znrN7TAySjd{pjo|h8GU}<^>BoLt>fPbP~eu=x=9SQyTHDsefYfqlp*AtM?}Foa5)# zX1DC?vamH1w7%R}ki#UJck`Rpk6A}N_MQ!C3O#l;sEqTmt$1&Yo7lQ}VfW`BW);m} ocVTN;x`%F*P2??U;lnL)TH(EIvp#mkGP+N8Nm`%E{P4a20EI2%_5c6? literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_25_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_25_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..673db6cc92916ffc98ea6dbdd4e450a7b12cf461 GIT binary patch literal 737 zcmXqLV!CV4#N@VsnTe5!iAg}pfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARYW;3>rI`8XFnbDtNVCTA}rW&u6P{(NbByja_9r8}?Uu>faw zKQ~TT=C!-Y_3xqo%)kD4#ZKl9S|l#8u})Zau7=uUm%V@0Zf&Y|e|W_7Rj~AwvNNB) z9c=p~;r6ibKmMD{0}2tD?0_IrAid~>Y8oVOzDW&UytF8=#-r>@6V0KoF_mH+?% literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_26_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_26_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..e284dca9b5586b356d39a09260e85316de8f4c1d GIT binary patch literal 729 zcmXqLV!CS3#ALUCnTe5!iAg}(fR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNAR}0kjan&ggHPN1%^U~Qignn5{6WR#`(x$!^q0O z+}O)t(Ade;*vRn4M|;=Cr@NY8q~xUk``I$9FoRoQgPxA!jocGw?lqN(?kHK{ZDaZ2 zofSt8ACFn!TNjp7+GPg$tyjK%s0-E>pO95u`QQ-4r}(>){hU>cPP9%{dEjXIru5-) z=3Tij8$G(sEFR3Xi(q-o-223O>I^RBX&BTu|6=61#$RT#8^aR7pHuf9C+xH)b0zq3RB}Gr}z}@HjoENE3-%#h&713 z$l85q!mFGDCA)9mJfxYQ?c2UA)Ic4iK#)bjKyHbQfs`RoAy9yYS(rbxIJHQ@$V>qi zhp35$85klx2g7P_uK2#*JKSrjmXV;)gByGTmi^+vs$Y+Vhd%ir_DS%}`ZF%s%K3d- z_uu{haK)ahwNCQhkMo)Px+B-x?6bLUv}RY+L=EM_U0XF-pUilty*rGhzB}{iPakP+ qJu5fIzFT4$^N)uY_D$#AuyE44no_s-TXOrJ2eT_LdHCSNb87&iH0mn= literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_27_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_27_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..5b2cda4613afe1d2f7bd8cc274e51544773baeac GIT binary patch literal 705 zcmXqLV%lra#H6->nTe5!iAg}lfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNAR~y`gy1BgbRvym|K{u zUHE(AXp9bWMEueVNhnk4fKO7KMM;p6YB#5SrCVhMT|vc;qRt7>T8?R<9g04 z+GS*8pjPtboPj(@TA4+{K&(OJMb_>^6JF&MDA|4c<{{1eY~S`}p$6(81%fOJ269Ve z45SQ!3V{N^5aJIlPAyU}GFO1b6>8#O28PJ7qV6Bz^S1Bb_<5$IOpp7*$v2YvbTe{p z3o*4lNJ~9fbEMhSM=bcS$w8Y0(Lc7<6WB9OtzRf$c_dqOnN(q*!Yk93_x)=E_grte zVOr?Y*W({qX1h5)Ms41ncbpEw))uWyVYSn5``T_@n0EfYWR-s5_9a4xXWwuBxuT09 Jsl4 z0UwCNAR zus~{IX=09ov!88facYr*k%d9yd}Qx4vNA9?_A(eWb}}_KGOW8Vl(PD!{yW8#tsF;B z^e z@0pSEI`{1cs;A#>$mKD3VjvHaR%Vef5Ni;5k+u8KgjYEQN_OAAc}O!q+qZpLsDV02 zfgp>5f!q=q11UqGLZARJaQLBNq5z8~)O5iN43X&b_a^;VWBHq_u^?Lf0xxfCoL=p| zi&AT4XD(Ux!6T}g#q!bQ{|znQ7C!3=5(;%Y5Z-e0u<)eB>yGO!Im20187E}a)WozN z`}B{`{BcCaPoqDMI;Lh{&c6!P4XXKVZe)7C>GhwFmLCH@K8(H=@v#0%z`676pPqhw NboXDVeG2;oe*odS>=FO~ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_29_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_29_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..282aa47af342082c2993113403bbad79294afc70 GIT binary patch literal 698 zcmXqLV%lcV#3a9fnTe5!iAg}tfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARy13voK$1 zacYr*k)^hOsBM0JzCq)BWY06QGB7vxG8i;=GBq|btP{GU_OE`2z5Aj&%?k^1SKoeW zqj6QjNT>H*>#?6-x(!VV?@g@y9kyl8db^Fs?y=b${c)W;`>rVe*26Pa_sH2M*JvHx zX<-|X(>U+L=4eN$H=>*BwYOYxT6OAK=Z0eudvz^7`?enDxbEuVbp7AEssl=n2acUC zuTgSlH@(wQ<7qXUiJ6gsadCw~nE^L2P-Xd9SeThu9~j7jID9N(EFupi>(~6qa;j@N z)zjiy>Nj`cMXe$Od62X+i-dt#gUE}l-G?T;$|+E?`}WO4n)%tj?aM+9)IkaaSriQ9 zmdF@L83Gjo1z4Dc`Jq9h0E;BlRKW}kk=B#1njWqBwplb#aBpU#VgI|!Kfm-{RX0)S zEPLG*&6GKNdgt}*Rm}BU9e%C}IoEIS*RG;y;%3h}b{E}jHefW#- J-xzGx0s!56?%esl4 z0UwCNAR8NziSrtp0=Y&|u0bl5T_9>8400E< z91jaWivWutix7)2i-cGSFmoourI{e=|| z7+!r)3COVi&+Mi2;C0NB7pYH!j>pB$jN@O^jewoP&er1PobRj8%->QQ`+ara z>H~s%s@Px62t1%J&&15gz__^FpwxgH=yX|r78YhE)&~Z%APygk7>kIf{4D32&O1AK z7;a8Dv1d;D*bIft`IMa5);_T} z)JnfjVJVEV+u0Mp)%L;e?v%oQ-dQtu{C^{I;J~TmC_mZK@+$q`LK9S7cHPitwrqRf z;dLgnlKcO%v}RWhac&;gpQ<%k2CSPC?@RsDIpz7Xc<*Mx?ENeombsNFI!ukJ*u2X7 IFY~)V0RDO38~^|S literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_4.crt b/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_4.crt new file mode 100755 index 0000000000000000000000000000000000000000..8a00d300802e6a3ad8596263002ab46eb2496011 GIT binary patch literal 719 zcmXqLVmfWm#ALF7nTe5!iAjLbfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAJteqv+BEmu&YsWHu4V_nW(m14&4Z)A?@YnNq>il5|M#SZ?hIX~sdVt0*epiX zwv|OEYWOwVcZvj>T>8Ukr{H!c#Qrn$4fY4wJQW2OE=+EIbUyfx_0#LURRxVYA!+JGDA30Zy?7G@^a2L?K9oC$3njBP)h z78H347oDAeaCM&Z5W2`}B+ALkRZ)N_?8P#(#k4WtHdhKTM1UYnoNrf30EYl0z zOU^y~7P$Y+dH(ZfluPe>+nRkS;CGKbK5gxWim9DeT2;F$UH|Eu`(&1_<`Q_t8~0Cx z#bwUtUgxi(zbf}#Zu@+2Yj;%1%A?!=y-3cJ7q&X-Y3<6hEM+JAY$*dy*|-ndD??W~ g{%YlYfA{d$h@k!TxnCsMzC;zSe-gfdEALww0HL?;^#A|> literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_7.crt b/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_7.crt new file mode 100755 index 0000000000000000000000000000000000000000..935da38c239089e896b32cdf863c009b2ab34d5f GIT binary patch literal 746 zcmXqLVtQuK#N@w#nTe5!iAjLbfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNA&*w8t?2FZx{~>`*?FbpqK$S$QXVW z7G@^a2jHNQyzVt7D@YC0-m%r&K7DYN3?RrymCgqy!?enMJ zOyp{O|Mf|j;o?KHWM9U3Y^bSz6liL^c129(ns@u1esM2gDmoL#e&EXGX=-A2Jx0A- FI04^p_;mmP literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_8.crt b/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_1_Root_8.crt new file mode 100755 index 0000000000000000000000000000000000000000..79ea4fbcfe839994e164a3e201160ec104cdcbb3 GIT binary patch literal 726 zcmXqLV!C9|#ALmInTe5!iAjLbfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAa^k!OmWGB#28O04=7wfb;=INthK7bF zP_98fm0colAPaGcSZHx-k%Ex|x`P_$BL@Z}D+6<5FM~m2CsSi1!@|(?x~El1ueHrw zf64kD=gYnQEhN=9)KcWt!L_B*`ua9`=?`*`m8J0rF6#VOV69@ut0g?YZA;f;^?;yq z`5o1*er8iL{FQaSE#zn1lY8amk`N(L^SwE{*1oNH%W!7jN`;wUm)@SX>vU)Ke*?3a zmhu(68kc`4%w+WC@7vsWua}dFnUR5UabvSVV}pSq8;3R*hql=z@Eol$bke*G0ecw zX*YPw@r?P``P8Vl^O|p`#P80I`Fy)~`-Q2dJ>L$>=-lMta#a5*|74Zw)JPlG);0W0 zPLt9fak^eUSe=+xThDgRyyzYg*4T4p k!?a^}mP>DVpUtBhKWPW!_L2{eJzpDW&i}l1?>g6+08)kSLjV8( literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_2_Root_4.crt b/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_2_Root_4.crt new file mode 100755 index 0000000000000000000000000000000000000000..011c4ae2a88aa3e5244bb7ef2ad7011e44a973ea GIT binary patch literal 719 zcmXqLVmfWm#ALF7nTe5!iAjLTfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAoa4A(QW4i!lzY#M000-deD2X|JbXeGR*rQY&HKprrTyxUkQpo64@G?kbVrFDuTwH5VZNLrmge*S`3o{ez0|Om4&V)7(#uZf2rulc@BbLCx=WS%o8t7D|sl=n+L{9=7#T36?{10Rl9@6Fr(yd}oM z|8iRBwaY&Wsl4 z0UwCNAPI)jZ+LgnXR$M|F|b--vB0d&B%`FH zz)D{~CqFqcCnLYO#LB|bz(_wOH8)7?}+s)&Xj+IgkEn zY%JtjF;%xBxlhMq5^}%+QxP*T#2mWzh05RLpY}K8?)+@ojV5om3+5KBOr2%9x6=Bu zACFRk<%5+^U#N?$egf~~o6%&oj-Yize|T$Aykr#pMv((i9|^HPor F0stW#_WS?< literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_2_Root_8.crt b/xmlsecurity/test_docs/certs/end_certs/User_2_Sub_CA_2_Root_8.crt new file mode 100755 index 0000000000000000000000000000000000000000..8c8689e10eaa75d6063465bf3ee8b0c64e06a9a6 GIT binary patch literal 726 zcmXqLV!C9|#ALmInTe5!iAjLjfR~L^tIebBJ1-+6D=ULRh9S2BCmVAp3!5;Li>sl4 z0UwCNAa^k!OmWGB#28L#aW(G!4;=INthK7bF zP_98fm0colAPaGcSZHx-5zrmz4r-i_92ktO49tza3hlknN@C^p z-pI^Xmv8=aBC%u7dJK=G&UF*vT|dUEltg;rhDP-8UPT8r;s}T5#z_=2!O{l25hv z9_^d?GyKnnl&{Wv%)Rsl4 z0UwCNAR zoB~5ALoq`tLlJ`lgE4~vgAI_jV^C(W2GU9l+6+ntjq{O%gOQbixv`hQps|ywv611t z!%W|$vBg>yMRSa%h{`cKY{}@~;b*aGXVbK(80M?DIi1{Y=zh5ML+V4Tz^Bvl`vSJF z%U5dnv|psS<(9$D5H;Q+nb4U5$0`<^i*B03taRs9_g8kK&o|3bCN1_a7JB4d$@k1f zd}gI*aq2B*+kLkm`>)Hnkn_yzakjXJKJxVtrsB z3*zvxh_Q&=d?g@z`K!TN1HOi05hW=#(+PLd4dg-6$}AEFVhtiMvUVSu@G7T3$?n@X z4{7FS`?fC&1&58SAd7;5+!7fBDMO$_a9|1ZhZd(6DHt0lz@iN`oiGDK#L0^3YPItG zGtoP)oOr?Wn72zjbzA$nlXt$iOno5!O0Zkh;Nc>t9KR2SzyAJbHox-5M^>|!z3aq1 z?rZn2>j`x+EI75#W4*Xpa^I)(4c!YL8NYYBJ@Im%H&bZb_e#N--1jNn!OPZv<$qLK cb*=SV!qvKKJ$&XZD+9ETKTF;(E3#@o01M6J{r~^~ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_31_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_31_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..7f9e1369868187de1831e5b3532d5a6105963b13 GIT binary patch literal 745 zcmXqLVtQ)O#N@YtnTe5!iAg}gfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNAR;^q_r8G8T=S*fog(*A_@$4VEGt^6rc_T z1{;IM`N(0#$jZRn*vnwh*vZt`$gqY<;(<)a?y~86m(we@i&VHZ*Sw6;)>qxVf5L&F zS2~r~=C0rRqixatu-W{^Z{J_i2|vcAy7~L;g;mz2+!AfdDO$=K5Cf$! z$4tzO42+8_49X0+fnJs6XJKJxVtrsB3*zvxh_Q(L*i~1tr@;8KYleBG72BHBjiMzV z4CF!5$}AEFVhtiMvUVSu@G7T3$?n@X4{7FS`?fC&HBbjB5M)s>kXs^SAY}+t2ozvp z7UmBvPAyU}HdKJcDQY5O28Ia#ir^1nW%pNXj=uO}MpFMW;c17nPuV}@G!MyNBkEnk zlVktyo>|1AxeMeart8S=Id=cus_4tN^aGiycCD=QJ?}2Y{c+<%4eftR<_1hVd(@TF zG+^@V=_{4B;y&n!N!SNeHAf!JshoNFmC$?9l^Z6@d8_3l3)f$c;_>DF5~w)CzYze} Cz30*Z literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_3_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_3_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..879f4578c0917396ffc1e34478fe23921cfd0b58 GIT binary patch literal 719 zcmXqLVmfWm#ALF7nTe5!iAjLPfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARyLn=caLo!1SLq0<>Lne@&&Y-|h$WRL8mjLC88I%kf=OYIRBP#=QV=se2V<%H% zBg4u6=3>58Ya{o5I&#OqGV7b-@%Lxff3!4Fne@f&a<{W#sGyyacB`btTW(XE;y*jZ zUlh+&T%=&I<)z@Us>ENv{=Gh7aHKfC{L>$&?E;!>=5-yquR7aBoOQ9~P3efF-#TsV z-#=(nM_EW`-Rtv($=Xy0F!Por#%|fpKxUL8$>Z&`YxXEG*1S ztPc!iK^#67F&2?FeYXoMf7&bU4Q~!K{h2Pfh+(y{fjmfBnMJ}ttU=^O*6u?SUgZ=h z*?s%wA9y#M{#~R^GhxlU3#z7#yQGZ;PQDt7Oui8leM|EMVqQw+-3*d dl4waYEH#VfeBBgV`_OdplAKLzPW;*%4*sl4 z0UwCNAR zvz!@&5)h^^<8tvA$Tb;IS`MEAj@8x8%X>6EQ?O?*V{>jEKlRv6f zY;b-xNvl2K#lE_e+n9ccOqSjee_BW7QG?2dnB4MDcivC9cCkV!_(Q$x+D}q*RXK!D zBxTR*sI;B8g^N|NvUcGnx6aS5=RPaxiLZXRawE%R>(8g2B^>xWvEHO1m5G^=fpKxU zL8$>Z(37(KEG*1StPc!iK^#67F&2@7d0D@sHu9vipQ!uT+xG2(dRT6;fjmfBnMJ}t ztU=^O*6u?SUgZ=h*?s%wA-xEX)^LoLZz{q5z9b z)YQWa43NYkZ)4eni5!yt|KIe@Yc9ObFpX<#)ApWa_5~?sYgCtiT-p3F`G+RkuZXs; zzpC@fE$$w-KASPI?@PGT$?T5yH!9&4Ex!-k+>;}dH+SyNTW9M2{oJd$Ped(0Sw27O psl4 z0UwCNARxPn zhZiF&19M|9gF#~_Q)45;#U&GuYqb0bN#>N_qvyAHUkIa<-uL(ZJKR>9ZrrTN*ZqC# zukD4=#>{J;ZT+_E>n_Ejx3#Z6eAEfmT6ye7$a|p=U(HX2Z?ZX86BXW;u_&;qVQ<7z z7MU04zeW39%BoC$y(Xw8vF9IG_NH%QbEd3Y_APVgRcg75r>$9Rg-y{m>C%u z7nd898gK)>E6dNq!py|_z(5wn;bReF5plhL-SndHlm5rNkLy;>iVb5(@pCqi2T3cl zNEnDUh`h+!eQ3g~oB}1gZ{IwmnV;?3zAV&04WvMjMczPmiL`+vEc%&+`9h0Rixf;1 zV9|=2j+lV~GI#HtJAEr&JP|!DaxiQ4jn&Vd`hQ)~t+Tq}k>StI8$!G0_;3EYyY5~0 z{fNt(-u*c0b~sjVrRjw#xdsUl--^7CCuRlSZnM*2@#50|SjG5Q+VHyUN24Pww|CYZ t`McquqkY%r4u7vX%Pa)7y!g8>%<9rH{#Wm`b#iaW{d?LQIbv?|0sy+>^?m>V literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_6_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_6_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..993a09f957f70d4c6eba39fa396a7747ef11134a GIT binary patch literal 713 zcmXqLVmfNj#H6=?nTe5!iAjLnfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARFkj!MrV@PLEU?^lLWylBeQw^Xu9g z&(6)s$DZc2T~A__o_<^R_aXPEfy+Jw!MI`=~$+!Gn^Mq#JVbb!k>){nyI9uC59we>IB4HrbAo3z>_n`@|atf5}zJ2qM zW`4GB`?632HIM>97I_2NCDI0xu()Lw<_j%OEmAO3fW;YVB4Gvwh{}4wZBj88_ZLiV zJ)kEr&3F4+zw1Zp+80_YT;I>aerBRD&)PJOYkJ!*th(UJcVLoj&9Wv*7Mod{<6ium z7jsR#wD_@23eURONm{S@-m`o?x3pefUzT-2!55W=!xpBxPuDCL^s-yD>7vNQT^nx1 Y?`!BX(JA`P;NIar&m>i7?fm~U0kJdU2LJ#7 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_7_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_7_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..a1cebacb3b25dae155da3d411d3bc967eb1aca15 GIT binary patch literal 709 zcmXqLVmfHh#H6)=nTe5!iAjLNfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARr_cZsWII`+9NXmopPI#qYSq WWzYFmz`u$A4*#6_oH@S?a~J^+Qs}Y( literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/end_certs/User_8_Root_11.crt b/xmlsecurity/test_docs/certs/end_certs/User_8_Root_11.crt new file mode 100755 index 0000000000000000000000000000000000000000..12410ebc81a9274b5550074054c7c364968c63ad GIT binary patch literal 709 zcmXqLVmfHh#H6)=nTe5!iAjLdfR~L^tIebBJ1-+6D=ULRf+4p7CmVAp3!5;Li>sl4 z0UwCNARqnW1R#!Z`66BUM>hHOE zcFUK7EfyDTF27^Azq#2pIVM)aeb2_7;Y`eo42+A*4N48TfgX|NXJKJxVtrsB3*zvx zh_Q%Vldz~3@xE5%v@-aS?7qehwcA{52J#?jWflnou?CSBS-THSc$HJ2WcTfxhcxrE zecP9X8mNI32(ri<$S#pKkc7o6voK$1acYr*g#s+TP!k9KFq^jiaKKlG+R#5D%H39}dcT5&YaNFsl4 z0UwCNARxC09ozU zA^d_V+3(YWD33bRC5L{58lQge8fwtEaNeQg&Sxc+gj{>=^JJ*=2gnS0{~s5@n!%3 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_10_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_10_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..048ca8e8f509c0c3b3edbdf5c5880fa6cecd8f67 GIT binary patch literal 1757 zcmY+Dc{J1u8^>qH7(3TBmacF$!!Wj)W<<#~B+H1gTuXXwi7eMPB&D(ZGPc)J5xI&< z%uupL$Tq~ArE3cbQ)n(pWXX&%Y`nWzzV2$?kOyPgh?ml;U*j&jjU*Y4O~oqo2Arx-z@(n z_89UB9nqY>b8l>`ms{^45oj{A8`0c4Uy)#bSc5ciT{UIOUcPTTzHl;?k`>tnld-UG zpI!NpSnXr9tcOit>h2gLT2X-phQ{Z`^Z2T08cH3m?BoF(v5`O1BR!Vot1s7?;tG-%Z@rt`buj_TNrigQfY)aE zi*u&Gv2GVxNkwZ?&WmL?Rw=m2<$Nrpw|*=*Ds3^xpCRzW#u-0QzdylaYbY#m3AN(t zcbjHKc}nk>)*2gxeEib`(9=QNCC?<#f(`y5f|`pbEmNzr8)x()Z8A`)zG5--Y#_)EcA<8SUhPKte`Rvrm|A3eOMc$3rG6Y6I{;7#qa1vd;d z`cI82^@KroGDzRCn|$U?`NLLNvfU&JBYu78$#6?NLde&vtxxR%uML&ta5nXm`CLX{ zLx_Kc1SGx4O~c<8#$N@@a}0M^Z*O%jzzgWKm&d(9=C-fKg7b1zKE3-TRkhk#xqNA; ztf4qmt*aOx1X)2_%Y(L5bu%B|D8#DEGt)G#`6j4ce6%K%h4+v_?`uN=x|7R)zb~1j zQb zID@QZT9*G*Z5QBVFmDg|fvCc4yKXZbyGZ-F(X_b=GWjlb8JRj|@1hOrZDsD)bpI!v zbJC+DW-X{qkI_LNJCgp)zSOpPCoL0cLd+GC8cEn!vsp^?T`d2Ia=NMeOTMc;-m`uf z{dqOS#IXC(yO0r7Wnf*-W%E-{48>%UKCc?{*9yUuVE2_=Kce{k^0qbHwCoZ0_}5LG z=o9PWVw9KA}vrB`L+b)s0BTf&AzkaZ6!geKyrvp*M(RC@wiO9#c?ujuZLG zN8Eo+&tWWU$NHy{&?4jd(AxYMexaQ34DAqRE$Mu}pnmC6tT(u;e4(k`v86+`hrE1= z>Q-qZunYfe#Txs{O2O1 zBP)qwUNh{J5;FKTMFC&X5qR1rlbP|1?%RHWKG9#IIOUqZf|G}bI)lizvTvI0>v&i; zQjhUdL){_YIJ|n`7JSRi-G_#BT9QNi?J5lWHHOZea3*iW`klNmTYv3p9_j3 zvowZJ^BmjPdgEVA4(P);iJY3%u?@s7l6y0~LprVpr(6|WUvTDOvZmFJ?2&>cH_?(r zs@->r#$WY5Z9KNPEOteQRuk7g<}y7;Va1I08pprFU6_@KSKb{!oADQPw4G3vS1i_T zThfp^hwiYaVBrf45ph7ApsZ1I{&d+Y4ubAXyMX)yDg`po@$S3>Kq` x5rGM6NeV!I5ClQt<}3%tTLZ=a10ixAXDYOYI40;eLWN6{`i#4(n`^(d`w!`FHE#d_ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_11_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_11_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..4498cdb76ec97515fcc36412246ad13853a5fc6a GIT binary patch literal 1749 zcmY+DdpHvcAII&|Y{Sfml1qCVp%-(XijeD@a+zx<*KAZf4AsePW>JQk``#5IxkO9u z*JuuMX$o`Br9p;(01%c2VM1V9x9o4N zO98|Ig)~Sqmfzw}OY`z)zwAbVW%V*)17;&SX(*6kq!0`HsS5& zI6_B+EIZz~tMwV8bV`(y@4^_n9e(|Ut5?Ek=5QT=0KJZ5ms%GefAq)EsH_rP8C`Db zM8#Ip^{^-hh1XrxmDiFuPudmpTZ*r~u`F?bhtA-RZgF-?v(H&Xc%(;!c+RnJy#VTn zmQ#Lmmy)`;JF_}b^;2FzT4&gkE!50?b8U}r-UJOc2FdAoh_N^@ci2VD^yflT23h3a z0VUg=HOn5Dbytg8ql<^Qy6v0G79$DHo=LUT25e=t)rQA>0q)PkBe%O2zqOIMly5U* zHWzX#z)~h+(~@yJzX0u@g8Q~WF;)d2_8q!JE>2_nch!pL$-ehd?++yG*lzSRM#0Rni@Q&xI&;c_}19V`9RAf_E@9zz=F*q%~b5M2HoFTGqG2{2vN5Z(0sQR6P0+K?dv15^Cp`j?L`oU0+r=y6r^`%%~4t2zEdw=kW7MV`m&8^2Flv>=`v z???)>oyO!RWDoJiG_~C8%08lAz4iz|tv^mNYFrIXRh17LKX0(M>r}t0?rM}pVhjTqy4={>DeIjtiK)L()nE$87lru6@njVu`&!`$sIo}ENlz#X9q{?*NF%)Gur1bk(d1-s^~5QOeyU!lCBb%7 zL$^^}DB=!l$x}pcly^K`F52br>%9hHcB#lmOjAb%)ilJncn_zNk5!)*H1b;+r3{B& zp=tGUUQ`Q2R=t>)btOK0f!$4gsbc|+@MjXTYcfp%ck*it7+KB_ukX$sw{fiG`(aU% zO--%a?qr+AyPb}X2~-CX8aRz{)5Vtv} zI}K#*$7+bK{|p4#*a%r&M2$4E;q7F@fmygrTSgom$qUjC{|#+ym0COae3N1W-IpyL z+}mb;c%-&a(8ZIV40%zcJlJ(8=qn6CxsWVr%?1C~TEm^<0j(zkJ?o}=+99VgFxz1R zHC94Jl%5*)$bVZ6+pi}NmMeUB|AYK8&gQ_~ND6NlAhEU8;E&bAqOmZ@zGDawP;s9a nST5)T&Q5jcV{I5EXwWL@SF%xdnGg&;p6xpnf-39#-tIpEM!6^Z literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_12_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_12_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..d85e0b7d47e2069f34ce1a631162990f7c13c22d GIT binary patch literal 1749 zcmY+DX*d*$8pmg0jImV=L-sS-mzfYoCHp!Vp&?6#I%LXH%APTnC_*@*$%cap2;x%ZxXKfKTTJiq_*zMuX-6dA$<0l_FTBp1T3mSml@Ed=BP z7Lg&zJY-11Ats^7;Mjj6ND&zve2A`tfPlkw^`8WYl7_(k{Xq~2K?(Cfd$g$e!3FII z5C{q&k--MRin8PS@)Jl*UL3ovkpUZ@XK1#@G}nFc3_BOfp99C)Hkh0Ip1{fBMe=9b zwY&^JR(y7bX?(Upigj@DeDT+@*Y-X$PsAT%Jr;whU9Lv&V&i*#h(Mb`@g7;pz&v0K zhsY|$*kZ}=>y-F}wx^I_mdh6>!ZPk9mH2U|SNjA{)S-$%{RlnQa{%SoQ8OJX3DjX&< z{?d8~3E9R4-icg4tLvVZK6sj` zw^n8D@5D|=b-1~4xJK&+U|eNCbN;()h zD~h&WeVAEzaO+Xb5(9G;0VuBlt(6SRC=ras;w_-Pdehk%?>OlTqsuw&%wXl6A8a8a`0X~-PT_2UJn*D+opaHAyKMvlUf1sOQQRJMy^_%MB7{$Y~i5WRJG_0=Q|B) z0Xn)6H}IgEqQN`chjeR_zfo&IQni4lc!rr-~|J zExa4i85&Z-2WV!T3}stpnOwXhk!AA4AXY_t`nz5XL5tx;n=5(3wY?aJubMKAr zT_XJkl!DLwi#VtFwO8#eUay0l$pu)nVnq)Q>LGH;n^pYkm2`{t! zkGy7j`KV4h~+T&uBW^yYH8GjgqD<%rovCA3&s}OaUcS`AkgX zU?;*OG!|C*(6D};rOzqz^q`iVM@p9?vDN$9{IX9Qj>s^;IfUO;f^d={1eLWgczUqi zoXQJIWxOA$B*VXynrHTPOSs5Xid3N=pQRztfY4g*%ewary%J~EOPP{Qt99}i|{Uy z@L4XekOZw0wzO{eP>dPMDBwFrh_AevY{QBZJm-&1bZ)QkXjy+w`1E+WmGp|_^SA)J zihg=ijc)IU*)b^S>ddud-!C%5zH`DA8@XXDu1DAF1bvbSIFr^k%db4ykf9*a9xHcE zs&`O=n7jLuW*l?ETgr@DiiEm_Prv7%*cj>&H+zOC#^EZ0IdI9+_FNmhR_*1?z?FXKTG}u9u4# z>tU+|n4=}FmgO2aMLQFxkF3a}EMQAb<#P+<3kz~?%Sh|Ar*T!oOhr4^7DcNFle&({toG_^~fOx&Zb8dh+EELYJ1u`;(N z9{M#^Z`zx<)z*Ukv68=$pYU9TU5x=paV7!G-W5MV=7C4^|Rgo0{uWN?*IS* literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_13_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_13_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..ff666ff1e5b6269ec3379d6ce8116f32b56a9de3 GIT binary patch literal 1757 zcmY+DX*d)J7{|?F+}C1+j2wfCj3XoWJ;@pC$S_1EIf`lAgdrN_8VxZrt|ix`9GhXc zM2?c9CX-^Y#!9G(9TZtT&z>LN=Y5{v|9Rg}{~v+?c>@H15CljiMBrHF>C7z=03U!# zfE0iUklX`&13>^~{To531W?=o!UF+32P@*=1b{dU5&Y|eFaUxO1@pU|ksA^{HCX}# z^7Et;Ko+sf5|Ko^wl4-VN1YEzhaN9NN^f&BP{icNZhF0Fo27wl{N)y*BMZ(utUll- zezOG=ll!EjJZ3pH-lb2xI~dm^FZa=I44v#7ezAUv@LQRkUTLUqSHwyhInm!!IAWx} zHKe0*EboJh1H&fFB#^?kl9VK2B}UWG{OT9Ek|?@rW^Hx$*7-pJF~rE-0rHZqd;-9b z_;O%)G{gLOC9YoCpt3hzb~r$*0i)G>rcQRC{4pJxDa zdMwbn=+eoNpr_%?B#sf3qbz~%|Gd~iXCInu`Y}(ng0uDXha2o^^w}?*V=vV$2v&L< z`tzvT$o|DY_!j1hqu;f)b9BebqV&RR-X{0@hMu;`+O#q zt^M>Pw(3!AHbWm@1~uF2tZa+=U<`dhlq5E|s$mSOu<|z+jAu!=7A)N?SgqGxygiZk z1SZ+zNSGl^=vgAB6o%6*K;rU6Qiy;hZD;yAS7xOw+~B?Wj{0U>!!Bdn-PHn@pmhmv z6a@KLA|xyN%%fo>>;8uX&rK-m@meIG&Y-==M9p%3S0PP3YOmZ;ypGzEJ&U|dHM}lk zxV~6GnalUMzJgT|CBsCugC;-gJ&Xu5(Y(1w5^MB)+~FJ;4Y_uhk#j+*6Jnp67|E>* zkQJVN$;hxx7;n{;GaRF8N%f?SQo5?{h=IwLif|=V@{0`MFsJb1aPI@l939|(3j{+K^6Mm- zNCW}6^B>`;1mFso09-o23kNd`5&By{K>+X|{OJHz|IbR$cPr_)8ZcL%{iycc%7gRN z_re|8Zi?$ZLFL~j=fHQ@xNU7Mu_{q39wsAwf0)J$tkNl6oI|!v=<;@~9+SvKy`DDH z=Ou~^sW?ZAyS|Od@BQf%e>d`x9jE>5r2Kpk^C+<4`4;HU>{%3#_SZdF;K-b_GIH8Ajzj2InC9jaXGFC;6dQc(LSW7sWhDiTu%98bXPysX z(bK;yFeQcSB}nZu;^dT9B7!p|NyXxot&D6Z!LFo4J%#Q?HS2Tbi~bR)lYYh@x9l@= z8^9u})%`vNzo-792?d4oUHnz-6TOkys%v|GKltRZA@`xgDW=a*=rS@Ts|fH#EKfda zI(_~bdmNKRL>f;hOIQsABy|uQ%h!FVn|^a&3q?10I&BTu%@J#qka%U#QyS1=s`M}; zKh?Th1ia3-3)!1TWqwcMP?HA=?JaKU`l1Fo zjtswjb-s_=ADCT>MBfrq<*NF>8$*pORylrsCB3?jIzOX?-0#&guC_8Q$`8Y?&J>Z% z9JPHZmov9V?)yK-m9Daqr0S04ypgmJ+)n2fXNz~PLlr`%JW3zvipYS1ldYgy{#~^u zpIYHXST80kxu~V(&gvXZCjhhU9478OtU)JB+YIz{s@n$_269Nd2=Z5!)}_~@Pnv0# z<=^@?po~o4t30qPI&g%_Kdly!)`5bhG+6qc)tmN}C!$tg4CYc2Qs2}%A#@N*2muK1 taZwOZj+X~4C0UX+-+RYUBpzpAgg@#u#uxOC4CconC*0hP2HU>3`%h`!CbR$m literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_14_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_14_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..55e0d6233e33d99558df901d395f6f96d3b1fe88 GIT binary patch literal 1749 zcmY+DdpHvcAII&Q>oAuc&N#A0$E`V{w3SOK<>kl}(D4NeX;f-lE7~~W&RrFLL9zbRu-V4M4?-Ze9%)sgidD-WUU4JHn(W6rJxx2hf1m_= zM!@k3UzT1eh>qY*cD3zXL?Jdx!H!k6FI7jb@I2#cp0o@PzVhuZ1}1uS2)r z`zz)26dZNu5Bv>{`iD*X01HCF$wJ9lnaoVu+oVOlY`@v`str& zLJMQ?)@cKQ_hVWld;3B{*`Hlr){2qy;4s(2KkrtC3vMYn-UiApg+AV^@e7(42XW)k z9eraXdPr%YFQc|M7ByB8gWHLXoENJ|7P;2pB642iR422UlRCl5oo41cz>kA;sM#%F zy>SMJ0wFiVt$1*SuCBLwy~-9O_5HQ;>%(9phcAaw4NMxup;^xnd&2@yoBTT7X+F9< z-&A0aty^;FPyG|Qef5^Tbbu2X8>l5y<;Pq@jiiTZ)S^UbB|rzq0(U0{Z#*7fKZ`mg zj%R|07HYg-x<+%UTo*%e1NX1Kmu2>>HEZ8jKW?R}7r{2&0CV~g8)taZ0q$Im0)_(I z`9IN^6yPT?1-Q76=k`YcRr;@XiU8n#SiKJ`|6wEOn~hg}#$ZENiMPMmxPML_S&Fbp zP#25pWT(l`N;iCnG5KhdC1=hL;jOoZ2am8TUT_vYTn#JiY94e2C4Ew5u%2f%zeO|% z;_&x2mmL_3Aw{y3iuH^B)Q+=~APH7obpHiB`Ix&9WPQQUNp2OJ;c7b}qJfvF=$mlA zF^h!&8qU`+{6=h_;WKo`Wn@pLMMdQs%_)C3$z>~dWaH$`0kLjxzIiK>zM@3k9wY5F zcWP$NES{Y}EUgbUp;fhF(vky79CB<`qyfy@l|Q~mHQZkRgu$^gm*b9X73S;@fV!|Mo5xNfv~w^ZO@;; zngm&dD~qPto9!W}h2GytPaalxX>KwOsvEiphw_$H@%*@?JFod_93EAfZi7>eVg|x} zU!27C>(`wv$v!6NLR+dh^liz>Pg|%?(XTc8_oU1*yUpMp|VX0`eW6(yP1Tr=5kDuZr zJac3RpS6`6&E8KBANHCBDGJLGd;K~aN2V=L1YH#5Dyod8=E;tRR&xj+R&o+~?^J(T zNNeqzMU2XoWwkXgkzL%X^keEadIG-J{LQ2187YeyD-O_DXeR{hvK%8i-cPIzx?3Zn-u=4rikb$2< zMC|d(CQCF1^}kjtXjy85H5o8nrSYF6?a_U9?}$D;Zd$eWWsD`}AVvWSF@=GEx)3?A mro5ex&v(0efL&`N>*x#*F~l}|6f7T-ultAlr0w%>?fy3_A27QB literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_15_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_15_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..baa32f26b729b075afdba3ef8f7814033e71cb48 GIT binary patch literal 1741 zcmY+Dc{J1u8^>oKCL?R%Hkro0y?)BoTyo2nLI@W_rq>ojhQbKRm>3}>Teb{$ETg26 z#?rWi%duo^(Ii_Mdz1$E3cWh#z4yNFAJ2Kt`Fzjw{Pq0+G(uBe< z7cvBah=8axC?HRxUDjXID~UQDB`$dpS|;!5xjjM9w=+?WB_@qIOjW*3yq-wYT1}8u zrO+`xe2(V|VKt=41*{A?{fu+FVa+4v(tHlGv>!d#JJ&z=c)gslsh=#9Rjletdp zh!j#mMgDrJE7i(*%MrDdnkHYQ!D>HPyiIrn;-`IPWc}>Mwq3aqR+N5}=v-qZGvA12 zYi67E{~Iwg#Ydzq&W++3qc6#2J>#`^V{|(s-_cjFSCNVqJ|{m*N*)NmwLEe#X7^E6 z>#m>Cl+0V?z5e>PUydzbwRUKs5VnFFbOGr+yTq9yc+fRi#5!oUaq= z&psMDt8B%5>vj`;t-i4RWb|I0y@^aRTe|MPu=dQR!JjUC@o{x??CjHW8(`DiuFqJLU{xFQxj1_>0-@YCWa(3>=8u>bp17C_cyEEn!E_34uMv0 zswVLpD8`4S{*|S$3Gr3&yVQ_Fn&?~t<01ZrB#cf|Q&VuA`%t4%@S=vc`RvEnkC?~-!b;(gRt9kpO_Ys~}OFX8IlSc$FDr|`Z|r(#dv$xxzXKQZ6n-*u?lK2}d1 zhpRFy5d~ivt=!^dy-ghKZV(sIGh&Kmb|QP0c2O=Lw5w80IdNi+gErsp*-s60vs$w= zHW`=Idt&J6=NgeAVVM!@O0MK-h;Mt&RcRG$y+0SRkTR^G^kefY_@W@!W;jEnF%WkU z!ijGY)o-?w8)&*dvZL)=^Az99*~wUF=ote=tM*;fwj7co5dLst@!c05+OKuyOIaAM zlky4>l2;NK6Sm#va{p4Wh8=j1E?zEM-jv%z`yS@OrxWK#tGW4pnJ*?uhh-XDm>jk9 z!zg}_q<>=Zc17Z?wk1%Fc zryXu->pWVi&XMz`G}(9bxsYrU{bl$0%B|j^8>3ODRp!&}Fdq&EZO4|p=?kO~K+z9O z10rO@Zzolc!RyF6@H3XL!ltGBKbyROnA|s3dAPQeS%C!=o(fQ|z+Up~?sG}XH}i6-LuX|a9y;E{oZ9dYj~efFHi%)-j5nYCrxE~d9`O8mgm<2+J${bfn#pNvaL?$s7n&}#L~u5e36^g8<@pa&cSL=kW;aVSIq4uZ*4U!2+M2(3*| dt_+Tz+aj4B(|=bD6X{qijhw!qar}F`{{v~mDtiC` literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_16_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_16_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..7b20ff98cf5566de192fef24962894fe9b78aafe GIT binary patch literal 1757 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 E0ag$!)&Kwi literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_18_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_18_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..4d343d6e7672135b74ec1801d039f3015ac2752b GIT binary patch literal 1733 zcmY+DdpHw}9>?u!b3N2pQoP0zN4Bt9CYP-(mrQdgx8w3ALo1iJp~H@r%UoV1WnnJK zaV<%v+?LBjxfIDI3Tw2NxivBr-dE3a&Uw%I(@81b{GXXfhOT zlyo|2T^S$`C}KmS!EER+yEqKP23`3xf)=qse!IvU2$0)dZhs~Kj5bu^-yf6!P>c!~ z)}*#`GdBRG2n539;@Kd>^)qlJOnD(X@t16f@^h>00Gx(bS)Yhg4pWw$nD=2B1s+i6 zG}2dvZU)HXHu71PHNp8O(#m0bLF-Y{O#l$AT##ix_rYV+avJN6k`$L9#p+r=whBu1weE* z#Cw=1EbM3==qh;O+U%)IXt4Ajoi)8=CwF+SevI`*LzeiCiOXzLO47_uOhxhcsq>c< z@uE2p<$PGPVjgHf@nn^Ww+Xs7Bk2M)SJjiGScc9K{% zf{UGQ7Sf8=J9*<7jyXYl_V^Pyl{)Vndg2HZ%J9zpuhsp@D(vRc$FICruYL8uV2#a#X(vmY zmui@X=@gBNY8prGS-+ojwtTZ{+Rat^CL_Hdb|_u7-SK`&vz&fv<`{LW?Kr38mM(X= zCBF~1;xYK_y~V{gnO#sefgOgqU_Y`fB?-TDDx63DX-ECK4u~$K`lB4^6 z^X%sq4n@Qk+Xpl;VcRkMtau|~7{y-kk|E)r6i3s6)M^ev`1!i6m-CD@`9uWZ%;TDz zw~hUqdfwp6>I7Kzu$kK=H&oBC0Yp8~Ft){DymHs7aHCUwF>K)G|Awepm-OH zc4rc*_#e#_0Kna_bQc!?pM9Vo_5rguZ~5q-B>k{&_dI^%*D%O^Z;z+K*^F<+O2Zbl z_JyYtgg%Vtu8Vu__=iQ(zJtn3f&AInQZpR7tD^4qW2stSTIRaE^(GzM>z~c<~?JYEN;kdMYAu5(snf-dr``(Jjv8@g(jf6k}s zmE%y+65&QtzNr|_TYC1>C^Pt^?m|oJn%2yLSQQoe`>Y+s|f#GcbD*3!3C_kTS@oo-LP z-hyQzA};%7*6T9j6IA%D)Ix!7&x0D~)z?j^*!^VPv3tG5p>LUPtY>Nxc{`h-e7&UQ zZhf%V4sL@&wiZ}&a_K`kh}5iA?4tfmdfK?3}o2Cmio%T0a>B^nexcblpyjsGj zpy)}o=~B*@W(n}DZyijssQ`NbZta0j7noM!otD!&dY&<>p$hqpqWrBz1(;z><+5j8 zC_y8zRpt?+(#o+nIh{0+$gi&#r~F;W<6AZ5Q#u_sJk72h@d=NXvhrFk$E8$s^Gvo; zn6v|*YsQ8Qfpdy2iZ-2AtmTGbs9?9Rg48ay_hLz`hUz^cbjrLnFz+N;&Eym4 zXjRssK&xheN+NM+S~@aUH^r3=%AAnrPK(yUA+3_*LDvr<&rGFz&0oYCU{L>UH5`G} z0PiKg>hgZiH`e1Ix_9(-W?mZjm(5|Yn4d6kD8yI=1k{4af%lGn=^IBCSj5p-$7)x$ X%&TtYzDoteRG8Wlv}SnRk9Pk77g8Df literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_19_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_19_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..aa5f27d2d945b0d642ab63d8c272717cce791bcb GIT binary patch literal 1725 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 a#|^bUcq1>x5X=-TEgC#8>Rs})-Twl5MP04{ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_2.p12 b/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_2.p12 new file mode 100755 index 0000000000000000000000000000000000000000..adc61fff40d68b0bc4b6131a71a7164afd291221 GIT binary patch literal 1733 zcmY+DdpHvcAII$)!(}X`Xn;Qr}`LllyHpyZ+R>cHQw0S32RlQMs0@4lF<8 z)-8f|Jb>gx-S zsoaimLC^~)QKiBqXURhgOy+=1?6qyzn4)1wC2xINkkcPL@Q2Owo7fqun`-m3>-%pr z#NWLwpA3l(XNf)xtWM7c__JcrrN{%JZJInfT%5nJP@TLDf=FM`c=!1eYR~eGw)!nR z*|=BM&Y&{jP4;4eFX2gs910UjoFJ1Rvt_bFiA73{Ov-99GW_YE>V4&zXYCb{zDC8v z1WjL=%C;zs=O9|_AHMIRtGU%zMQyhiX2RNj``f&$24Q5*UHr7<_ZA)DHv-}qYC-{# z*SR>c(d;wdI>3dM9fsOse%qUbwQsHx5P?6lI&-U{*JbVq5k*6P4ZfIP5d6|26Kqrv z8n$BVvWPxCb89$wA)1E!UNw@?A|Pm@&c-hSN%|S#-wWS=f)G|^&TM%+GdIjISj@_@-=wV?-C*bmK}-iYiF=&now0Lt zYcp1{Ucc~|R|-F_4qpLZ+HKnWTAA4_4J{wA&@&aOTj1|cyOT$s?v1N#8aVA+=()NzIHAvWICW6$QfyUAT} zLa%P8)fwTbeOr`jX-9N3E z;ORfb6n9gCW0Xkks&w+JI;XKE<(wFIi=Tx+;Zx$x@XfQD%B4|mh}SAe z%l=wjOz(LgSyP{TE!P2Qn&UUbB7DSgbB-y;$}S_+hOj;$=w(0SHjRUwPwhyPQ24iF#YylBLyMENgRAvyh?%XHE#^mzvYQV6qJcmC5z6{B_js^#x~}S$ z`)c|m7(C6nX`~n{WySi_YZ8HzP>NK|$WT-imCY326ym`qJ!a6#fyJ%`g(7Rar*7hnl=m8H(HNL7}tY^`n7q57jt$K0^6 zesoer6;q8#(Sl~78LelA*Nz}~ob26b*hhydvO}^vHO12Tpwk|`xmNWo2kUr^aHxIa z9`ZG;rmI75AZBR}@JN2$BS6aEqXMVP0;UqM9I$q8d6O3yVWPQZsD<1Azg9~r86v@o zK};YuY(T}X=@N|A6R@VX<~$#aGsK~AQcwsM4g#t|B*2P@+W}wm-G=9Nu+=ABmc<($ Ur0R9Bq)JHL_Ol0?=YF*NZz}mB(EtDd literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_3.p12 b/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_3.p12 new file mode 100755 index 0000000000000000000000000000000000000000..9213427a16b90012a84e0fffe9e521ff6de3f702 GIT binary patch literal 1733 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 bzV;kldVg$L&@~) z3MU2wV%ktlKHvRmsThWg#8hb+O5cyf1D6p1cqX0b6rX+Oq;!ACQk1T37qx9(tO>}V zuqEp8dX#bn`pi|l_#nv>i9yyi_X;7gkzwo^^*pmR*OmL0^df|l=G!RfDMGT#!l%J@ zQt!i=F+~=$ETgP0Gd65ohZ_selC0sZ#*^4JGQ^KJhr;^~4~B-L0P^aAiZ#Y78+K94iKgQ4u#+UVbF!bd19Az* zx+5U}qe7uWN4Lm)9skF;03{-LWr2~vQiJ$-S48WA>+jZ^_cR;6$%@yeC(~8`0LTPb z+{s~-F0_y1E@M;ye8yaOVdGVx43^{aYvy7Asag^WXXlyEH^Iu@Qg(sIZD@R)S9>S$%VY?Ev(n<09vmhbPSklfsgI{trY zstjgu&V&*KZ&#JG{NoJEZDa%)KsB!_dlqcMxBGE{n8@S>k41M;(18j#IS)HtBRz+M zS(DO1M{-rTJa!Wy_cwX8{%njRtrS#42>0)RjO{B!BIir8kVUJr?Auyj-Eb0One|QC znFo|?Ay>(YqPRr+`sG!mICl?VIUzNXwWBk?JAXR3@F&uu#dFnk3&RUCxR69^mUU&x zl7!{$p>HlQ@paDyjPD8^bTc~-`%9sp0=GeZX$ZP4+a4XG5z1V=Ym9&TR~^Q%`}+-` zoEqso<=HtiYC0F@q#najA=pi^A>>0>s(tA4R)*AuWMqbXhb12LR)d^5iec-L0FXRNuib06?#3p70?J0f` z@xJaKXhSuf$8*;FkZNE-2z6F1%Z}Z*<0?Z8RoB7ii;O4?ZCZ6Om+R8nAmDH{k$Qs4 z=tS#3LCx$F>H6zf<6xtj8NFG(FoFX41_>&LNQUgnwL)-Vzp1 zqreCJU>r+J!w1K$V6%m|GM}j=G2;EPZHA--|3C7uv43CiJh!?%fJ{-N7~fhUNqNee zGEKKpn5~5y7em(D;Lp~)-w$6a;Y|}ly)F;!Ha?u6%=_k)QdT?mOp|P3)iT>dj1nwi8 zWXhEka7!v;Ilj;u@g&5weo@oN5|E`C;ifhL(hgA(n#4UUs@x5beZ8 z!dmM$iF@7kGKBOzW+E~uwK1eHkf&o;s#CL2$09L|PsPWvA;O4jGsd3vq7+|Ks(?*G z?E*@Gtw{9&iu#In0>S4bD)xI^Y{bx8NA7SAD4B8R9B!0%xG8{})yt^83e>^VKHh;FZ=9XT9^?$eh%8a-~e3()K8@i#AV2@cquFskx zwi4NY+jlwjWg5-LcQG^#!XJGmxC4XvolOD2&N=+Fpq}Q%S2&a!>^eKt*e8)0|Vm;$%;whQsV! zT!?4hoH&)%x`DqHKhMGA195Hd@E)3+13z@wF-#u8)E_B7ltp*U(cB!~|pD*ie*g8>TTOFe3&DDuzgg_YDCF6)_eB6mn-=?B)IRMdqAAjIt5D z=iTpiY%nn}AutIB1uG5%0vZJX1QZ&P4-+N1CL3mkR<1?Bs8NVq5fKCk!0WQ{er^MS H0s;sC1r0eK literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_6.p12 b/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_6.p12 new file mode 100755 index 0000000000000000000000000000000000000000..32b4926ad74d6a4dd72dc6dd613b70cb72e0fbd9 GIT binary patch literal 1765 zcmY+DdpHvcAII%tthwKIh}@~EHtA4O60zZ+7|}*9g>&5RM4QcV7pt66jGdP)w_Y#J zrJ;+{ScKz}OGq_~5nfx9TV6fS`@ZLW|M)$>=lOh}-|w&Q2StLs2LeDS5`+nXA~MmL z8?pc?KqU!M0wzK3?c*X82~_x31gRu}i2EoN2$0xc@qZ-%lqTfBzdy(TASgMobWZEq z&dTdocpy+(f=B|Pt#?*0Ry=}p;+d*0KX;}Dge|7m)J@e$HQ8KJaq+8?D-^Fq876W{ zg?d3Ww`80iEKEjWYGd&?VRyx6sQhFpD`@$380q|b$-aY`R(G=t=iCx!CQ9k}lH<#i z?V_IOV-P74xt#rz@fBnp_IgG`Sng{5!?KZK)$VQ%rG-H|otrnZ^~P{zCCnYC5X|Hf zjbSIwt7;3ej@9$0_Tp%5H673a@Ktgov))4aXo-n(irX3MQIXJDN31xJH`ee$iB1h! zJU$l3O`%_TcFU_gw3`(igkZr%HdxzhwidSxpY}!KnNyf|?cR4ye9z{sF2vjH3K#F1 zkzBD_ve|d&Zv~br6O}NT)@MyI&JM%(B#JJ2|Cakk1IkE7KOKRU4<%Rkb_Hb+OQf(_ zjXE8AzDE<3H4H`~!KR41Wca2-(YY_4r@CjacEZp>SfQJBq*}ziwKXSk z!Gz|?;whLr-Mg@eNDul!rRwdK5J zc89l$N01op4wBcvOc*pfRHa(GVgHF|PA9hVUb4S|Bg6;ePw0sJ9 z@-RH`ybh#R+*j%QFi1K?P=GE#{Ut|it+Vb;jvow`5n2jZhf3rssZN=i2z zN1G^m{$<%7G6aISH5P!&YNW&-sjK4PD3zgjeXLB{NQS@OwQj=)Lx!%+)3hFHKxK!g zVN>rI-h`d@{P!9=_RCMk#ZyBj>adRub2Z^!=FOA~MRpJWk=GPi^e4`;OBo3W$e)~Q zj`N|S>xmLF#$EQe`^;zCfpS%XA?@(H)6?Onv{&TYduBFfd5`}7GCk1AHI8prpctN* zno^ha6;eDV4(7an^bth@ZvKyWl_a15Oak)v@rV7Hg~0x!;Q;_}KV z*^rp!-pdkIrdLP$$lo)EdTQa(cv@pmahu_j%-0bQ$+1B~)90)Z*Lx;L~#At=dvS zgH|=lC_+!hFM7k%hvA_@w)nrOED($mvx$x&xM&n4!n7YrftO`9cBdqR1vNi6=cDeHpcvFpH_2+1SCacEm&?r!9e&SZ&!_b7+-!VtUzgK6wd0qf846uBJ9C zXZ`BF$7_$8iMEY1Ks$h~)f<~0@N`YbU``#M`Z3bFetvlO!45{ASB@L+o+RG89v+x3 zNXpAmI08?qFbmZVF0sCPXI=j=0e`t`Ip^4zX2KyJXz@lgIWGZ2nAGp}|8gyt<~uSi z{%61O9scCG(OSmn#EQK+hi$XfVvGzLpV##7LTz1SeE?cC+e^ODcD_&d56ZFJ8qUb9 z%!Qi|3+Yy}e{7EgDr~;KH62Ek`~_obh|>RWtD&lCcn~GbR!hQX?sr2V|*T1np}m`iFfpu`rht; E0c-h1c>n+a literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_7.p12 b/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_7.p12 new file mode 100755 index 0000000000000000000000000000000000000000..2c0ea4acbfa71ac290a216ee31b5b09eab51d90b GIT binary patch literal 1765 zcmY+DdpHw}9>=$_g;+GVhKZ3miAkADIuWli46l;Q3C%6Nk;_&}VJKs-TSOF^+bDVQ zmcmTfL{!6KHM6-cQzyCP_Hgt(=bZPPKYq{ec|PCg_xtPnL6adO5KszDhSWf0|8^UD z`-cK>53rmJDUv2b@^^6#nk<$5R|F|1OC{~11P~CgyNG`!K(r=A?%yBefeViZpGuh-L>^~#lG(M zBLbh)g1K-0xGq{=%X%OXoTUX~{$z@a=VX&2QvIC=YS#h2zpYap&cFYyMpr3f1FX zUO}OuFuL=VzK6owP6#-8Zuc(na@64P1jc&0=ngK zzLa!vxbsd6SRF%&S#>lDTG%OcrRBwsTA28pOK$jWj@TiLU77eGs%)!AJ=E$(j>qrk zlE9v5hd$PcYI@9KOI%s=dgI#7r^{xXxXBn0U~9&us5QVmLp3{hRuyz)(|hO8+(Qz> z96!yj>1DpRZ-zsY);%ad`C1ldzHZCE#@lJaurqKiGk_ad#Jy8ycILTB14L)Zp5XyX z;kIY3U(BU>m~~10h_{|p@~bRo6S0~G<}zRWyB;Z?Ow+BFkkTab6ywDv96o z5-6qh{6IJOa!PB$gAS$Ee9P6BR#HF+NB4|^ahV!5cjWQHLQCMn!6cx`a^;jib2i%! zW2o0Zza~2M_E7O-5hH+@WiiDmNd{7TH8P{~-$X5>YN?zyWmffXvHmot$I&g(brTA9 zgD=kBl~eFm%oGrQ$v~4q>;EHOITG;>q0+K=%GeLpdO5H>}=;wEweH>ZhG! z60c9G^STNZ z@XTuF-L*(jopRh^VVqw21=Ii_n?px|u9y)?MRf`cn3^EiOcZ3lvJDB$_-qX%mj!0i3cHPQLs*C##h?puy zqVP~_*fhMP*jm{1_BAI%vFlS2Pw1i-Lg~ge1xbe)(GGMM>*pECsu&kke6Vu}6W}O# z$uI#Hd{<8c;T%6Vu3_u+$XU!X4Zk03Og6c5bXfVl0h3?|uPh^CLJ1_(LY3YOlQuA^ z{P#_9{KFTu5bAyfCU3+1@0!8x_OtK#SCJM>N?$wHc|*D*9dnKa9Q90b5lV)3z!eSe zsMZ5`DkUfo_Q3E>CbFrs$z5h>fAk_M<$O4*2JCmVDe}T$T%N zeY48Wrs`nItL+;DJ~xf%eV2SnO!d*o|F&9I#Z*;V+2YH_tXWJkLa;KKYO7*Im zE7}yTgO-JW4@0Fua4zt5y9Kw9R$)6A5(ZG`l*-TwkN CSEz=OGoj-%d)OOVpR87s)QW|ZFv5c+8q(f;M$5v6X1&yNR zA{u*LT-BybsS1ixTaegQ?Mn@6^qjeO?)~td_nhZ<-uKh*0jTg!2p9@b;i+&Djd()* zE($CRE~LUKFe?1cF}@8@q2#|Kcp(+)cZ|FtV9@cp_ICmX6yTzNeGmh~0dW}O-@jE* z<)cq4Kp+SZg$e~I9{kEKLg}C~Blpl`h0e84&r~~CadW)5?K;KsVB~&!d+cgQgzqf* zkOlovzj~yejhZxh*l_;}olw;MV1n@wM0m04SFTdAha4VHN@4DjS~vmJhHkrI?u;!dE7}?LP0&JL-(c0}#7mFa@c^_{~y`q$S%T`$DJT`IH@$>7!g9%_hC8%OTbR!^Zd=ONL>PB$>r@ z6w=V}&yg-_)ixjm@OA4=jD84-;kBP2pd4LOz9TOdO;-h>5rZBH0}e_q70x#2AEYlK zhL|phHt>AD=T#08PY)SWw_kV^!S~rjai?VWd7R0~6siI{m|krB(QE1BzX;vAuRmz) zm}IL&B9rnYRa7-rtt!mW7PCD!sxM6}W%yr_C@Qc*A9z0r+pwXy9)gexxX44WXQ zyIZKs=u)iEH*Igs1E%))Y4Ry_q5(8Kb3HFE+oy2=TS9Cf+q@!c83A&Mbx-`o+>UkU zX;{_vL2`?iXU&l*Mrd?NZvkIG+%ia+kRe{@ zc}SEH^6HDy&CK6`yw-Odq>SCovR+ukPbJ5IpC{o()%Zr&eyAOhjPYw| z9{j>bK+;1~i-KAnmf>uP4b_s$$i-3-4~S}2tNy`g9TSst?|jx%r|_nBk%X~m0uNxy zIn93d>x$jE@=Tngq6lMx(5Zbj`l2JTZvK%5i17WYtAgKqWQB!Yk)(EzRfJ`v2F@l? zFjDY6>Bl7@g18JyQOHs!;F$+DE4s27{Y{e%EADl8f5FPNS(r0CkA~=4Ma%-m=8%BaW)5q|tKWJkwNNkI+~M%6@k$EhrXWpa3uQ0xakQuMmJ^V%MRw zBScwObt*q_JHbb>9{B@5uN4}KGTQK(H`0GhI~|7Uz?|JKZOxHMB|rtvZ)L_3IeIt% z``=cJoYIqqoh;Bg1A94X%f8X{Jn0Oj5D-r4ngR3xB|ro&q$v)C$O(a9C%r03Gd!c_ eH(0BN6{o15%%6CR^I(YK2d(EAt*fG6+x;hB0wk^g literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_9.p12 b/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_1_Root_9.p12 new file mode 100755 index 0000000000000000000000000000000000000000..7897733c4ea586c39d9e6b94c3ecef90d0979141 GIT binary patch literal 1693 zcmV;O24eXzf(Dra0Ru3C244mVDuzgg_YDCD0ic2gPy~VoOfZ55NHBr}M+ONhhDe6@ z4FLxRpn?N9FoFX#0s#Opf&(oE2`Yw2hW8Bt2LUh~1_~;MNQU`*TK7D;V z#9=k(hs8VbC{re97|y`Av6G#bT*^TETWI>y41A!<@4w=GO(m@b95Y8;2JuA98u5`U zuH+`_NE$Vm8=Tx%BG@V!va6yS)O*S%1iS6>k}? z3hpC;U3<#1RH|@I^nRsTKsYxp{w^AM*-c-ew6vyH3ZJ3Vau``IWooyiKvyB6r3?LL zS=E02r}eY)@ucnyVMpne773M&K2h^NW;^hnDLDM4?8hjbLzYmj(!~b6Fo|x2iDbej zCigQt2uPZg;38uIRkmXg#wZeI;(|w-0qT;1ySud!wZ1I)`<_&~RqKwN^IVYdmS!M> zwjl*1@L{Zj{h$+J~6Wh0jHHC#O(@jF%Q9eA=P$qh48DICro;E>MsdarF?1)pJ@q7IdMbQ z;6cu4l>Y%2`f^X5Vq9)}h zbJ@fx?1Pv^_`GfLt6A5S0BJnVKR3+|_)fEuJ5qqD)j;>9ADXd6-0$4<#FGua!EK<- zfXCbGw(0j2x`+EG+^e|qw5*LB$yHsmQzG;u#BydE56j^{zKiro1tt)AYU*Z*r&$jC z(W^mkHD1%tk)0pbL0I!3T*#23^;7SO$o_#q$=9laTJY+kxe38#$);p2XG^BES5XKq zzyDEvr=yMNe}CnW4ww=z7kULW1&IXofUnXw?+6O~HHabMuy)3GA89(YvYBMqU)M^A zFoFX41_>&LNQU>ZBgy@+ejke2|6a*Zh$YXTsP{%e+1(RMBU|s7i)v1 z#KVQ*atL{?^pj;sPPj$0;B!L)^f0vVrF$_*LQD=+1XZzB7I{ExI3V@NSm1m);WJ<+ zFblZPnyF>-L*2LQccm;fh3z#+4P^URSZf0r8W{&!eYaXir2p7x4k+b#0g+wvr;MnneV)--uB9kHgtTLW`AX-5g$Ep$MXjCkXl<3zFo<>DXT^C4OB8p&$TB6--cl1XN z#*yoUAR|qmy;IziW_z)A*IYPwTN{p~(BQv$&F`j!5Jg&i+TQZS6aP+B0U28U2?e-w zfwpVfErF3w03k0fzI*7jXBt$6=!GkBoNbV;%WY&AEj^_b5i7wrmL}QKwOkAZr@LFT zon&9fuXvGc!lciDm`;3#PNzZd3W4V;_?GvQbjq;sNNPCkN98bNNiFH+BerRu3uH}+ zaYirBXvmO~N=RD?tB&?;zSBHz_NLsPX8H5*l`_;})oiDykVMdnVpLxum2S_dR#Jtl z7|Cc*11EOA?Hn4O@kXO?D=?}FJC*u(uA0eDK!yRM064>7e1ElprRN2$Ryza;TB(tl(UR^40s;sCV-6VC literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_4.p12 b/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_4.p12 new file mode 100755 index 0000000000000000000000000000000000000000..99eb944528c86b9df5699e41e23300f90e5b417c GIT binary patch literal 1733 zcmY+DdpHvcAIEo($)%UbB_Tu{<`gxTFqh^s#u%0vJLseuPFarI(U694D93HCWiE#a z^ODPy>kyHKgV2L59Xd_26?*kN@B5zj{p0uip6By@e!suI9|R5d6a)k#Xs}e6&ZR>>;_Y3C>?1v$@qcjWnESF-H&w|qO-omkDJ;Ew}e zLz<>oaS9^c7L%kFpr+Yeu9)H%8=Ny=RaXbVOM~+*B!*Xp+4hRjUntPKyYDx=(KO>` zRq6e-;-Cog>iv#+8Gh%^Et|7qSIk&-clL2gRI9C)u=wk$QVTuhV^E$?OX1Zz^h6#) ztuwpa`0Oa4BZ+Og(qZag+K`!>x-sA+x*}1z$$~%6QSsAYHe<_kx%OMaHnWkoq8951 zMS=@bu?*1axEtNel0xpdZ$9?mA z=XQG)dA&OC&s^?RIm;Go(3Uuyi!t-GsC2g7PFwMRa((p8Xgtj@1&=o239Kf@=|U}M zQd@HHV|{+u$OCoXeReCdf$*Dc*u7GxdW%vPDNP_5+1;FtS9AWghKy8#GxTvd)Nux+3FM7M%a)_?iWQuZ$fx^r8m*rKCEBQ~4iPLBnRoD-1M}S&JQzGPux@mky zRI&kJf8yS`&owPl;jF>Bbo z`R#{8$DwN%Ftcwewr7g`C#wQAl}H@gAa(7DZFqffD8n{S8z<%CMtAXV6Cq%_IB{Y#rK3YFVV8KH=mjjC|xB zLzH)tcf+7~1Y%%*U{4eWCydcDKNj8<#xG>ujW$kyb|a}$I|l^%a_WjudwG4`pUN2O z#raU~_Iq{KSr1lBmW+8&7xu!>>1?-w-2I)ckH=04ADka?G`)pnk%!*ayQ1SCb9)eT zPBQPfF22K#tfnUA!z6NEobxr25Y_W=Dz05M(0;SHq0QcP&GHQU++x;%>OS#D9#@I< zN=UHc_FVvL&k&+CY&)wj+RfGuO1JN>bjuXt&17fu5HyhZf5a-Ifz}~3(Aoihb1<)A zQvcBm4g?*9RR^%*|Lg;Qvo8*psMDvp)BnxBgY!hLqa2nr#uVIS@Fg=c!Cx*}9Lcqo z*`(d^s5AO0UBBw(cL)NuPr01m`Q@2EqEOdfz!Rx+LvD_k9MJpPP4b${vC!YT4tsE{Yh)HvipP=F*+H9x; zA4ajTraXIF$A@8qFBRoV$6pqIigXuNp#?DkjoLvxjn2dDGR+$SpT6iKa^%k+){WmL^X@)4`p4hwG zTvF5hq;PtTS-6rA;L}{0II4o-C$DXYn3wB;lvSIjhrc~0Zh*+W&nx+A`N9t9_mjK z{INcxjr;{vM_qNNGsX=g)yAg%UzDToBc_P`0_HH~Vi5BtFd(yoMBG~!m005LZd}sx zW9f}^3YJ2uHmM$6V1GeU=)|Q2ejlV0X_LD8Da7JE1eFn0lAz5vg~|;$jPUNK+m)H^ zstwlY6^HHP)zz*p4lL$kajzdA`XS31CsKbkQuK34w*qtFnZbyO4&vm0TP=Ci zL=mEZ`||?;@$>B(Z<_D=N{CG>;zXbjVS>;^NW!27GGLGj6aZ0(t`9@}fK8cxK}4E2 Yf;lQt_~HqO1Q8cH{?JoO?_0b71xffWVgLXD literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_7.p12 b/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_7.p12 new file mode 100755 index 0000000000000000000000000000000000000000..1aefff504ea33cc6c8842221474be1dd6de6546c GIT binary patch literal 1765 zcmY+DX*3&%8ir*N6=jSYrPeUlQd>i*h&`jVOBhRwA`&gy8hf>2L@tJ=rS@G*?MgJ$ zSXx^}g^I1UyV{DSgxcC5wz+!Fy?5^Y@tyCS=RM!|>wOSp$Q%#=LXaVq5J9y>tHfPl zfB@hL8IlVoLo!eBBLo?g`d0*bLI#meP&5$0cd{b>N&pBM2=w0{P6Hqa5%4L4@IOXB z+eVRqz*BrAGRSK5SJr~Y^z*VR+co{11QI`kCh}w znW6nMP@+I=H`gxr8d=vZ@pm0O_%cHp%LccW)F6`A?mtpH-j&92o zi_|%Yq$V*kNAm;(zBma1So>063cU;!2tMaN&Le*BRC+7^`XEzoENeyH?ksAD(aZbC zn*L&Gv_f;bJL0C0l}UNhpI6Yy13%nF<<^cj4C#inZzj@g8M652e@7y|UMc-OD!HqqS9QQmQPZ4a$%n1F5vj;4tpD8?CXy&D; zjipaoPBsI@enjAuW!mG%9*G_PO<7@; zzMH0obIy7!d0*3Dt5juCjh>gXhn1q#g5NW1^ZY0@B=OS@@xC8lX9=5S>JCS{PqBPH z5K7puT*eI&0S~2)871S;{wAq)4paF|-8hiux!Nx*DdHpaY`flgN z&ECE%4~xUT+j(+M(w^CsL5!1wh1CsnFhBB8^~;liAYPS!@%qh|ed*}ho*h=t99|6m zA|oM)Jlqvq1xR$cVwYZUgJV*r=3kdlb9s9dw09b>$3G0Gl`=b~H^R3rC)gQGwk^bK z?OBqynJb})naoU(9Ty1QBHTJ-y^lL*l$AwU`@q;0WuWR@9qe@pctEAR3|?(yeE0dD$jETYe&LU(*=SjKW15nrJ4Nyxz#*x`H%sc)WIZX}dCen%3y5 z+z`%Du*(BJA6U)OLk+RDL(a{ZaT!aiRtZY^#N#uLd(QP~$1bT)+sgxpqc80Pmz$W& z8rtbLMw&^}O%c`?%66?i24{s{m>mfhbEp`XZ{o6JL)BuZA%xbQFd1yHDfH;h z=CNafbZ=MO=DLo`jY98<`%Uz=y8dc0b;)Wf^hedMF~cDEwg&Td8?7k2?769QX?f{p zgC{NkRb7xKfp<{J9_S5kCe&0ah37wbS2}V2X<+dSZly!3Bun@=g>MptBhzyi53FN5 z1H<(+8!u7pkkT{lqK}U;i+S`19H^q+Qg{GhiM2u~i9x;Rba}f=@{~022XQIq_5~-H zk~BGZYPKZ|GdI!xbYEbPZkh39Vf>hre--i5EF?8=Hsnwm4ntP6_ikxMU*}79uP!P zE`bp$j{9eU{ldC;^XV_YR7gQDNgx z!Z{(d5ef)F2*0`r2q?wR2ZjYkwDRj=&m-T+p%piR)3_dbR0{aiGsaF&3~C1Tz1{x; DlcPn- literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_8.p12 b/xmlsecurity/test_docs/certs/p12/User_1_Sub_CA_2_Root_8.p12 new file mode 100755 index 0000000000000000000000000000000000000000..6b6d5fd4e7031b34f65c62eb8b67e2e8a37cee1a GIT binary patch literal 1741 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 q$_7iis!@kL!Wlyj<}08v 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_23_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_23_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..518388c5b4a47c9ca10b58bfb85e0811402a1351 GIT binary patch literal 1749 zcmY+DdpHvcAII%tF(I1VY9mbT%-LogbIA2LNUoV{l-t~rkUOEdTah#O+#;9E$Xw#M z%tGTROLD165|&#gt)ezq5VbrCjnrOLZJWta1a2&N`OVwz+G5D z$e&ywP(&z+4ATDe{j|3J(?&6rP6`mm~V2}42_K>pbADW^HG9>)xl4QhQ~fy47adm(aNE*NF}#zNz-71zrz9-XU<+td>-3SjVn2} zK#P_iz%p$Gf}6mAo7DD($}tvAW7TSBV{UE`{W@P&-bQq}Wt5oQ=}Nh_peWD z7R?gO&Js)=>P(nX#GyM65ku!TGfFKG>@JKko45>=^s^f}3YhJqop4Ylnm`p|xyiqL zs_q>$&NE4O_P!g!{95v&CG@fQ_OyP?RDWY4-vQLf9%v#i*em??*O}B|qU$%+2F2uW znehH>VwqTkW_C0|H)>Ctgu1kmwn5LN>aY0b^8>4SD_Qr*^hZm`c)$8E^#>O(`TJ21 zB1#8C*0k`3%>0Kz6LFWCO5(*~nP`UA`kyv;gVlGO$V9q%=vKkSsTtImftqgXhsV!_ zfAd;8qHJtM{Du;eX_{KFjE@Sq?<2tU&ZN^*(+f^L1&wvDXL-(R#cxWy^pQF;&5B%o z!jhPqsmNqN=qKJN4J9n@jD@}98y~M@oSW>TqCOszB;dXxQ z|AQ@C*m#roTy{!B=I{?2_s^3$6<*FH z6zNzqpVjJ!>PV~WJE%)L-3T*$z^8kL^RKB~=#*+bUZov=7R=7j1@= z2JJ3Wst-g3qx9X|BJb{@H>XA_3MUvzBdmZ~0MWgsK-cBsu^et0gj@Z&FPW;av{Gc) zpy2C_1`?bbDDMPcAPMyzD%14j%DiP zHlt?SDYSAn5c_SJrBRU-ONd$TN~^aI>Jo(G9b!_V^S+nf&C>2lC$dp4fo84(6%*jF7=D8l&ZQiV6#wX$d*YW&}F>=Ha&48l8Z zl{mOE_JW%St8(yMp;X?B@=61OiW|Wv<$`QnA%c?^C8TLy-*O!ng=SkkcGzq+=zb<+ zR@pNAvGhGt40^Ogwli=~PWQYoZd}>hW+*A6S-i<_>h=|}N{e~A9Q+{uEB^i?8<0WQ z0ZmtD{D&v$+Y6S5>p~^)T#|?4>r;JuVadvd=Eo`|r7vurY0j#cp=07vdUn6)A%%Au zYvS?g3kr??_L@f84R6Kqb7nmqvZr(F^6M6%f$KF5#+FW)y-Aaj4aFK>xk>^A8Cb@y zO&$Aqhawmr-F|t69gxv;)%EQ}!EHvLxfOaBvboT^v##QE znFH^Dp=WVwSe5^_T2uyi1PlwmM(!GQTl!oaVK=Fy^YR6w?>!KU!zyD%A;LdNfPf0Z oLSR@V(-~WL#S7tdSv}!(8tOPj1z`ym=`Q?UEZE$n{b={U02wwdMgRZ+ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_24_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_24_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..775b1359dc399b2ebd929ade1943f88ac8be4d83 GIT binary patch literal 1749 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_26_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_26_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..ef1273c72415ea37e6b37456aa3cbdbd8f0b7494 GIT binary patch literal 1749 zcmY+Dc{tRI8pmfd+09_waV^=`&g~bPn2e)2V;6(S2$dn*l%-`(_8DVebB(=e8aWuG zLkJJp$5O&HNJr0e?mhSZ@jmbKe7?{7{`LI;boej?3BMJlz+Ft>GCtyGsF8sjq$5m6Xqv214cY9Y?+=r1u)#>`{X#c$-I>?Prg)2 zCCyS3(^2=M0(ozXO!aH4ZyG$(feVn8Nb7%PB8Tym2c=jLU+S3ct;!vqtv5$pC@aRW zvw==~Z|@fZW=FUO?iRz+2=`S5oEr)=U7FaDuU@x#HWGQPUJ@?jT3Ul(y)#spT_B6$@NwnAbQj9Y$rOG^HNOw8U%N>D3gp z*SSX5V8_lX(bA7^`BwOl?PRVyT?>4y#9CU7xJuBfjyzA+nEzK2#B92|bYOgdc*?HG zwu*!|VbfZ&IrE)nQ@*3+=#b05c?jQQZ^7ARpwf$LT9|IFij@!JXS%DZ?>)tbyc`125`e?8AlaurSMDpfd2b^U2#SMAaB0rOIft3;6N}_iGl<}quubi5 zi?>od8D_LYzVils#nDqS9hst=6ftjq(-0|${-~)NfeNB78}dzYIkg6jee{K-aZ!Yi zwKGAhT{|x$OXm@;WL7_!`#cUaMTkr*tG1wB-df+|j(;lo>E2=LV>guyta`I=u(@Hl z?PTBXnV_vbxa;y>DngCYCjFZ+=5e>OtD+qkWkm@-P;t*If#@+m!7)R!}-<9;o zLk&A8^c5B@%*~T?-^65=#HKI-v_?F%^;aeFw_d2xu>4(Da^PWvY?}7)qlZ}= zLiZoqU=3ZZ>Y7&G4RTjZ`lI&xpdD+}^nN)q4XoMKTkDq2?5n+KOLq?uiOKe}aQG<5 ziWGd+M{$P);_$n|&EkW>c_~&6e^lV+^0<8TxW>X zSeI6cj@pOR=Q#!;EZ92m0|q=)qE3N#_mh6u|#2HdN9mbeSfsR17#VTR6@oAlYbVBZaW3n;lm5yob2nz<;aEPqx(6|Hd+ z1(GpsqH2Ct=U)?A2Ahr0zbAl$!2dvQ8b3genTG)_rc11K!hy+PhL7`;5xv5V;Y-G2 zkI=Pxh>H5OI8GfsH+@{yaasRRWp+urSvn|uV%v$` z5M;p;9MJ|e|J!OY)DZ=kyk4-}iik$mz};=z$*74WQg_p=7H|Ym2gKkahSE^TKSe+= m`Lf!~FhVod=B4!d94Lr9J9+!9FHH1ZtzW~FQr4aC?fw&`$sIue literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_27_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_27_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..4208dc4316f0087107c88682dd09eaaba904aeac GIT binary patch literal 1725 zcmV;u215BTf(E$)0Ru3C27d+#Duzgg_YDCD0ic2ga0G$|Y%qcbXfT2UX9fu>hDe6@ z4FLxRpn?NfFoFYA0s#Opf&)zk2`Yw2hW8Bt2LUh~1_~;MNQUdd!M6~CT!W^wrL0|1zBI7`jgAK2kH zc6F?)W`YLvG%LzF;GnjgGZTZ!R(z0|7IqcPe?L{wP6i zoImCvxebYp@S*klsF`L1QuF)r_OgYZLj>MH1GJL-FO^qXwW#BxyyOtw?3Pil$0uU9 z9c=6cGQT-iHW(zo`=4{b3c;Yh_CrUzUKW~W^?e7W2kvV^njMoEPks&cUwm2WmEqD@ zo$Wfxiw8{~rHIY4Av{xeqpVi^&Y?kuLcP$j-0B)iZm0$+0GND|D1tH@-}J8l%c+xz zn(xKX>Z3SOe3%0W3eDH+9@1@97;nWUI~h(Ar4)osgkV7@kG&kiEA{M*S7KNXI|L88 zY}LP`DeD0gDonj7^jB*SOZGf%Q)Y0jWUoHO7fGoi#1W~i$jp1lY&k|`M?zYbp{l4@ z3-W#CtKL#}x>|zC`*Xd#-s&}eRcNMEb3TyVGiiIs3&}lT* zZ!B%CFD0*I?_e88sz(vNsJ5nEzmX)F#}uokx9GGxFoFX41_>&LNQUDya)3s!uxO<$W1=DRF)=dH8N|BiBSDzGGUBY&*(y(kTfK*;0u}`!Q94)QCBOp z#@4S2dxpH*EBsceyppKCreBYx6wbVg9PH96`hI1N9yR;mkHG7o@8+tLBo~Ch&VkNO z%MKxY&}v|E$9@HW?dq1Nj*8OXHYQZ^k%BrK#Cnz@0*0FNB5sA%g0iZ|PJtIR17BKh z%Pj&lMjqIv*7hI&@uJ#gEYC~3XOEE!5G)QU)Gm^8$Ff^ND_aR+k)dP7spGz5bwH2A zYt<)92kZYY%J6Gp!NiQ46q9A0%H$Ecs<|bWgGBzp{&731?>2N07<3N?9^QeOGcWYqa!9~hvosFl5v?S@`ZuP;bc^wk!(^q!G7(4Td08GD*l z{z4w^OGul|+^R(wCNdooy*%AtTevs$Ni(!B;b#q11%m>a8phHUt(4Zc%n#wse49b7 zc&P^$x)g-jvV8g$-3#E+qkQD(RZBg;;K6F#9_y*Ai?es$>RYr9dZawmY~RiQ?X4kV zV`!>V0Zu<+z7VVtfUlBhTY=(HYmVGcqwHFe3&DDuzgg_YDCF6)_eB6cBMC z(#$Lmn$1Xpz0s;sCJ0lro literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_28_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_28_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..4826f2d04584b568c3335629ba136d65f358a7ce GIT binary patch literal 1717 zcmV;m21@xbf(Eey0Ru3C26qMtDuzgg_YDCD0ic2gXas@=WH5pTU@(FMUj_*(hDe6@ z4FLxRpn?NXFoFY20s#Opf&)bc2`Yw2hW8Bt2LUh~1_~;MNQU@ z#ba&wWt~9U)FGF%dLiWQwJf{}=L_*)$I30N~pjXE9$TV^Kzg^#*ccI3&1 zNZ_R>O+yL-0wQfap2i<_xZ_-sapB_o;%Y~G&7D&m;{9I3+OO2Y5R^4a^UZ!dscguB zbWF-UMyzP0AZN1Vo+U1~CU7Zo=e=s zGEHx4$YCOCM6Y5LLE=ya@t=u4fZ7dlZEgLyma>0d3dEJ96S`oDS4-u1Rt^L}Dhyuo zr4VZz2h(bu$`1`qrc9ds0YGukh0Qch6XxTtM34wZjiOBux}CI4&6vFem6lTU22us@ z)4SwhTA!yUN5lYmP*)J7JErc40pXtfc}Sw4_YzJRX5^qz!CNqnl;=QhWZN>jZ4-QAdMTijoCsI zW?;bWPja3dJNi=Hl8jONP57UslrbQQK)I@lFZ~YTGSud}R%V0nzg3~5haS+=z6c5l zt;TK#UnsV1dW3{-x486Ovz44T!eNmQekvT}J~k%OLW2kNtFm78K3iW+?kNQ^>oAl_p#bm0xQ2JZ$FoFX41_>&LNQUI@N5AI8-0ylAb6+`(Q0I3Aha$_ED#kr-;A0Pc5VE;htp172v=C(#_^4?Vfsj5X zlXrK!H4tWqZiK9Gg**PcC$xSt=tE-b2Kvi;>tpHKLkp0PP6=ZG;}pkhjkA79kCRuy z(-q5Nw?RnM-kvr!Krfs*+~7W$a4{6%SKBt1C_FTni8z)y#FkUf=Bjy95%I>7wp$^9 zL1ghK(Dy4gk{%lcm08!vX&@q0VmS3)C%%OEEwOs>ME0OhwSqCNBzc zNd8;neLf?BC_*A^@WMr{;%!m)O+|5f$9BMmmIi(7!Q(SMk6!IPyJRx*TMHe-N8V4% z{|8)5Qxd+N_%{3KY(Jf|FG*1881`$K+N)b{CpoBqZvWD(JtyAZwAx7J6XLue0A4nw z7X4FFDnKnflB~-sa73i&dhj!f^aWUo$%PMQMJ4>YVB@PDX6_4UGA!B~Yi_+@p+tB- z(k#YhfX(rvoOyFoy50;KW+_)Y^`pwRyGA!pr@2JJ_zRG*J_VLqgM>by1QppF&+A0M zJ<+keR%dJ1Y2Af%@Iw&UF|C(PuCp-2pBN}e$-9=?@qb_?oBK!a;=8Go$5vrkiT#TP zR$GrWpBC6Rm&=?UBxJtb|Ze%aq;m}ol zgf1c(KkBFi5il_@AutIB1uG5%0vZJX1Qa{Onj-Z&^CJL#h5?f--D2M~Kpq4L9F)Z# L_ELh+0s;sCYJL~E literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_29_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_29_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..bc211718a5f33b30f02de791a58ef8abbbaa6ea4 GIT binary patch literal 1717 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 D-P96q literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_1_Root_4.p12 b/xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_1_Root_4.p12 new file mode 100755 index 0000000000000000000000000000000000000000..268eeb938732b51f61c48c990d5326899aef88b8 GIT binary patch literal 1733 zcmY+DX*3&%8ir+&TBDYTv?Yy-P+gKxqlTe&TD?_Ew3a4R%M7ZhNePl@EJf{MFqWj$ z){!#SsiGk$W=TZtidIzZ#?)@~oO|!w`{O&`InR5(@7Mca>5z6H0EDGO;vkZzV{KwT z%L0x7is%qBm<|aeg(=-xjOq=*h89wK)jKS){vZQ@V4+}%Bg$$u z23y%5fj|i{DjlSS8=iC;YevoXzOpdycS=+NZ~QqBsII@7MeQjcRb4k2<7IA}=Xc4I68l_VRi+4_3P| zFJ6}tkW_fByL>??9dRbdUobBpC)T8H6+JT!Jnhz=H(EuqFq1HnC){ip^q&s&pK8;j z{?I8kEw-jk%m?ev*j9g7KX_kfy2bp)hKbf|t_hRqt=65z%_t2f1d>Apiij{|+EsZl zcja?H*V%{yXcwm${jYdsPYVsuOoG`1o%H=3Y`^jD??%^XY&lV1%|NaRD--qskjYAx zj9isL*>>eVp8b<*2&IR4ga$FWu_q1L|FyfxcW<}dZ5 z7We~zFDpHy@lgQI6|xj%1jA|cEbB~`RhhgP`kMVf(80{-8h@y`6HGg{NXmJ_vq^Mf zEPr~SKg*f)QT4YS&ukh<%dr^kH7R=xw1ZBt6;w_luNPq^E|t>;d{>Urwu^T%X6ywZ zjG>jjr6^8sSW?<@@z>x*?p?Q>+7<8Z%Ip&IN8g6f^KWkO>}xDm9RZ_fdrywn2`e7H z5|8LZ3|XoSpk|GFV$=YFIiK6sQ4iH|3T;1SH*CjiA1U^*3J*k4oYK4{ThGS=>mwq| zUxZk;sjQ`F*Ya;Ibza$lpA>I$t!^<9fkhsY5K(UyFZkP?sh@P2*zW`Nch8yK)PB>u zdc_VV-A}4N=zuOHKfb4P8P*=-Ttl|LpRcL7$IbV>#HB&SMvN$!Xv89IXz{#;?9!y6 z$%HE34tK!HDv@RrMR0-+et|6Sm;l|BTmM#T&Y*l)_4tEr0Anmkp`H`w5T3!yE`51A=}TJbgG5 z5b6JDCItWzIVr<*FJ5_IdOQz~boeaV2{JYI z)E~+b?Z6Y^;zO&;4_6|+Bw)Ff!>vJf@>3{fX_o*dt~qrz??*4D;z;~>*-S%p+ox#s zS>I`SZ#Xj1<-2pT8wFk;{dO;-YpO4*!bSrP%CbvKlB3q|{3WbF=;F#;^jc>3Q4RcY zDy2|`&EL!;Rc@x5_GxsccydOQ-0hWgvzwV1RslzWK5;B7nHba&(gnJWm?q~H`gvP7 z)0`2qG05oWbBpbz%85Udx#`d5BKQ8#1PrZ8D4q>>(<`Ou1SgZCsNX%BXT${CWnxAA zskq{JF?#weV)(vdEdXj9|QoOg@B<50A3Fl*ULg@ z?Mj11!Ic2K3#32^aGRv0fP=!+@A>;p$3=u_XjC393cY}!_S5E zI*J~5gFwVU=>QbX8)I(DY$kYb8N*immHkWe2(u926z94nkCrW^l%!``-NDhNo61=V ziAk36%U;;uVTR4C$~W&y#GarBtL+TYx*I-4YcEnHm5#X6)rv8u7saAYL;*iVMjNHT zi-BGxZ=R27*)Tk*ZCm|ZlJ6G6#c)aOTzyTc9k+g+w%?mEHmB9MW@b8SEsV!<%B4wJ zTB!N(x8GmD9Y=lr$XgnL-%XhjsgcyTz-OJuK@XV%g;4T@`&Ysk+u6W*=-G?OidNP5 zK8Bmvwi!Ybhkee4;?ISHF6muR4)$6I_Wx<`2>2ha}d)Wr+4ceExg{cCq? z(o>4iO=|HEVn4Hj*XC`biUV(08I{EZR*3Y90uhRHT)e1TeSj$M3p0V5)Lr?ix(IJi%;;)l?z zq7!)f(~Azlb1^bMUCoo(9<&R7=Avo-&+lmUr!|4;jOz=J)y=v467PaX=wD%r6vg8z zofVHnOx8aWeR|%6O7#G)dHv?3-iO34HmWPwnb$YVbCwM0M!X{qt9~gaT}95b+;Pa2{=p1mJ=d~N z#tgZ^lhA%OjYCbZ1;Tb_nI$51=3$~9>6@jU#?a~o+=5YlVOrnw5_LwFM0NinMV^Vx zh4;R4*NVklkEMJ7k4kM!hlmXDUjPIhq2Xz#phkW&poliBN3Eo60K#L6*<UYuOjnlE5>C;SOkLt%V3iWnNsYlryCMi|CCr7uv7BI? zkB5$aCn%dcl*9J@*ey#H*VLhVz zR0qsPVh*vw`mV9L4MUj=@GJR8#vK~Jc|-uJN+CGq*Qk<__pS+E$_7sTE-rjIoq)wQ zpf)kXS^rL7i^ZFUok(uR?vB;p_&Js!9Z+sfdME7+)9bv2f)?hrz8bEXjl>I322J~% zc0z{xzS;2m+RLyDh?}=&o~C5ou97VJvKwF80YAsJt4wKdQ74g&zE0e2&DeO|ZiI4P=)MaWAR6R=>G-ukPpLc}1N2 zA$aP=m;{PSx%#`-aX+$im_%zrCQ=)r_1{*DDkC3h5>r6D>t zV+bTd10fC<(U*ZjR75~9#m)-$XilVgx3~HF0vpw4JQk=q1QWAVK9_iRtK!p-cK-q1 CGd^Je literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_1_Root_8.p12 b/xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_1_Root_8.p12 new file mode 100755 index 0000000000000000000000000000000000000000..80dd6a8b08f8536dea66ec745fb04ad37ab487a1 GIT binary patch literal 1741 zcmY+DX;c!38ioY{0rw>>)2oS^q9kCWHRkA8MsAr!YKk7W9CJleTqB}z%>})kVR7=`4AW~ z{Y<(<5g-Ssph74hDkNZB<7?5&timM!6!W?SV zUgqgo$wZ|j8V{%35)v9)e+Um=J^CrarzzWz$Z#2uZ!I^tq-xp$_}{=6)O{f%m!0$I+5wcpC-_iIk zTn_iFy^Q}W!r(-R<5bcw567m(j|ZP-t($fm^9G7FbN{T4mD}xRB#!pb%S~+fKe-Z& z`o6P>8LynY0M~$4HEi3%p2th{GC-;;YAY{v%Z5u5Xg;BiL$0ZiDZdxtcW6gFy79?{ zTBHu1LU9u}5{Q|^fIoHLIUK_ex)ma^xb!SjV6$nD?NuZ8Kl_U3$a{JyVG_AWFE#3L z3WrV18E{SzyeYRJPmcprAYIXCvd($-jh~$B4G?v3C0qdN`?RD>Oz!-G{;0-Qk=t97 z@%N5laJ>@!XkW9bkJ^UXpwx)oF1e*3?O*WCgUMBEq%IL*XYsijtup@Z_@Rt6GtPBH z()`10?MICwC8k!Q9qUWuD|xY{p_q3pm*~#5qk&&e?^oYq{|u;jBDNQo@jPntrI}4S zxzP<7s0(jvrj0PT2bP_-D%m|}H>nsE8<#?4;K-<{9|Qpt_KH@GTNUB;k4o2VDXfJY zF8(*E&mW%$?hf54W5XkCN7)6Y0v0Sa&e4pWX2RUCdM8_`mi|Ds?(msWWd2tnVJLAd zeLiFHlRUACaOb#zkruzfNf^)*0VJ#?|08hq2)3}@+|f1im;yiH)Mbk9?a-D3`{qu4 znOh`XXR)lb1hDxFa#$Ml$LNaT&Wz3;oqy5n34y+0A=lIlS_A@@SGcED6BJg*B5Jv? zDA}X$YW8hue{74qZmP7gzSEz+bC^8nJ2HLx9zyn`4w!6NY={Bto8>@ERD1gj0i8XT zFFPWc{tmHvF7}koom8*IFcr4-(+L7U{sTP(9>yLr(A@6WDrSAiU4UyHLsNm${}HT$ z3S0(JfeU+hc5h}N^8e8d4gl_jwR^DY|16aKX5syj9rH)l_@!?a?wwPT%v|UT5A1xa z!IMSsL~8u*`VHKGF4WKc9ApqlqJv%#uf+5yGb+|Jf4;BaeO@W#$^9TS-oSjfo#wo{ zlS6KAPE{i(l$T@Y%LkT%!7xk&-t+Xv_9rjXf_K6iYh3Y0tC*PSPF_Q7J0CBr=a=bu9DrR;h3hotk(S@jT`eEwXddc(-9$3xMUDks8lOg$3D*_y zyx7JnJ7oS^s{sF_!U_K+;oLQz`k^$MnfZ+=h^~)ULKT}>^z!DeML-vQEv{~!yWMV% zU`me#fL@3PAIBAB@IA@4C+9nn*AVZ`crM%vQC`Y5QO7-%3ccM(wn`(J7$cl(!W?fU z{dR0}Df(q#s$&0aZ9npc51TUTe4df%wJ-Q`Tw?+1p!&9ZBXYX7XaFFZb-V4f&#h*1 zaix}jud_bP*TLW{wNCX5N~{BC2Nkv*pxmdZR6TkCd+v|aey`|M`LTG;+up}dK`|yY znR|!Ihd1i9uiQfh(w_2PhH29kN?)xhq<=9s6=i1OO77O0a{^#AeZeis(HS^rv z4@6Fx%`?Iej`ZOem51lCb|!i|P41g%ZLH;dJxp}I^s%A!^4G28EkxY@C&@vux1^cs z-pX0foU)BywuW4XL^#wo(cD6q+K;MH8?1E4&ENwQgZ=3kJt}j%ZiZ9SSPe|Chqf@I zGX(TC;=+*=60VVEOsaqLz3$#WY@<-7-cv>3jG(krr^<-ZvwDovLakw@WL2FnvNjqf zaV|$OgFr3P1GOg@l*a*gGe%`ECX`P2Z#4vJ*e|s(X7M7kC|zpaMt!)SsuE;fg@eW*KX6_g}bf>3?4k?Xg56OBP1Lc<_nGbLG|HdqFv!9GiR gg+Xu%#>OUeHx4Rc1rmJ}2pae*3CR-ckiWJ2FZWg`N&o-= literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_2_Root_4.p12 b/xmlsecurity/test_docs/certs/p12/User_2_Sub_CA_2_Root_4.p12 new file mode 100755 index 0000000000000000000000000000000000000000..821bb8ea50c968c7bb776c3d6f3db4c6ab5b1062 GIT binary patch literal 1733 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 Db|*H> literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_3_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_3_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..bc476b2572a094f85c9a579cb1696daec0335c82 GIT binary patch literal 1733 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 D={_;0 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_6_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_6_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..a663a92d9bfeb23c7a64dcc699b7bc1d7298c716 GIT binary patch literal 1733 zcmY+DX*3&%8ir*N37XoAwvxtrEfJNWmMVf!6rG9vQq!UYkrpv+hc<`_jgC+|jb+r* z(AHAR9cd`ls~sYxgIKGvN3}}HEu-hm+`0G1cfNC;_k7>4_rXvhTp$31p+eFjFnyXc zZTk>F3c#X562VkR+yRcoP(h@>BM6HMx^RF3fdGkvMff`bV2(kg|NI~efMDQYs4%E` zpf;Z84Fp0ZZc;&djZE{&4T*us$#*cS0I|!5U)(?u0Gc{}3cPTlu zH@(ejzf_Pa(q$`8mm%Ii@ktJs9{r?qmV8ODrEo4V<$Y zQc@OZjA>ex0d9msQ&qIq;aS*TuK&{^eY|3zc<3YjaXFysx!^RaE& z_WqY&qyjn7Byo$+zI$`AlL+&iGx21^<1+o)`^RH7NY&bVx{d4r8nL@d^l1Q!J5>Z$ ztTW+!QMcsM(?WydCo)#HElM524;xEjLmzqFa4bhR%Xv_|U`CT>@d8p$8WTQjO8KbQ zly1mg1r(g#CQPFcXVr$?ZH;srJB^C>ilCd~+HKgrGBH`IR52Vv@fp-YZy_%^oZ|~) z!%WH|vTytRh9}vzswI_Z&FdwU7VZ1ZgexYPH2hQ(em~s3 z=6cNVc*0h5U!)AtZS)s?yQKG}cTZ~kjthu(sF1I5Ngw|N;}HYP=d8!C&Ny_dJUp|G zHMox}`^0Hwxq2cq5Z82A3$_(=_mjRwUdB0@L=PJe(9jPAc*e5Mcn*%*NCDqa;HPT4 zeiOW*UJQKWUWghEeKoKLh#JARa&0N(3r{fyX5Gv+ADu@Vys}`o{8U}T`IoaaFbn}u zF4j;Q;bDz~R>rQsWzfc%ShG;WV}$x$yZs!+4F9gQ9W!^`Q#u8?nfM)rws#l?-GOA; zt^JQv4Yhgyvit0hU0fO5a#WECLo(V4)>V(Akdgkq+`^P>QcW!m%c?$cmF01hEG7!s z-*Cw}CwA?!O7i3*cej*99zV3UB{6+_H|XmD)k!u*E5w~kiKdQ+DN5OQY@pS42%3`z2iX>TA3I09!^P761SM literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_7_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_7_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..c3d4e7532f10b87e3ad652fb05f305f72792686c GIT binary patch literal 1725 zcmY+Dc{tRI8pmfbKVu15lChPgi*Xo3$WTO{da}(-h>)FOZp~!vAc|~58nPUX z00$9F#f(%zA^8VZ2d(W}h{jzt z5a!n;ICcOzdMCKPbCXEu>ZG!rI~D9*vZ{(NEWyj|dF3VqN*2jjw4b@1EuD0VsbuJA z@XrAF^-(ClO)(2bbr>Y#&CGO z+-9lT4Y-ywjB(;^Wz3#qT@C794`98#OS0(tD~6{b9+C^Rfm<18to4ZlW+VOJriRO5 zHtW;Rvc2a>ar5~0552KFD87>xjB8kX$}QHb5)F)?D}u|-(?s5Q?E6~qw%NjHYqcVe$<$Sj3JK7KFAO1V zInhEtg6VqxmG|qOiaX)um6_k-u1lZM*#+#f9o}kwmJL`eo<=TF#)BjFcscW(%Mur{ z#q4USq9-$HS3|EG0q+0UzUmGK+4m7iikDn%Kid z2M+0^Sj|Mk195W`+%d?;B(8?8;FpFmrC9#B#?Ta~MLm2HBd1SDNTaF!PQ0h8NHq*` zecGRFs2SsX*5w?=H9)qNT6zBf4{IdXmMa`p*LJS=YQ+3g*o}hpb2VXeYG0o-@XW&# zSdp5wb3V$dx-oi-8qzOMEK-i+6~3ZTB*^yv2~|phaQR4(nL|8rIAeg&fAtasLk`2I zhp_B#)tyg$z;@a}8HKalM>DjDNpL4U+T07jPcXxIx zqYaiS_AvQ|UhewU)pXj6$H6fYEftPgi^8Z(QpYS$)8d3HpAv#^|7zHiEn^XD44Ih+f zlOn-p=AIAZSJjuebNYbwa+~@zqK}&(b7`2~U)M5R&}C88wmFnp`G!2U=9K_k_`@hb z@R@>#9mczQURvr(PB3X0G?CzCaQ9WBhQq}Nsb!OE^A1OL#@_cQeXSku^_y`b^^P=N z0&FkZ@9z=mY1CW~Y&^7_KI*PD6O~Ohp^L69n;Uf47bz)&2;b=k!xr7&7SF|lS~}ID zJfZveFp~&uwm9BIeowGCMJAA=-{YDHTInV)trfL;6@0g^&~I@ze|#2|>#HkMlXwfR zq^%~r_U)vNJwaN0GR8POF-HuCC~{05^oZAf=xF*JsRmWbKdyHwuKU?*rygc%eJQKK z+x-Vke8u#)C>VVv^$903D(9JTQ44?(AqRiu-1VnW5FA z*4ke(h{_*ElmGxjia;R<7>G}D>a37AJA(R!$m|WdHu&7RVgKHF RKKRr`pW1R>7yW0u{|()SCh`CP literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_8_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_8_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..9db9c0ad4a070bd8560751a80bcf706a26c23809 GIT binary patch literal 1725 zcmV;u215BTf(E$)0Ru3C27d+#Duzgg_YDCD0ic2ga0G$|Y%qcbXfT2UX9fu>hDe6@ z4FLxRpn?NfFoFYA0s#Opf&)zk2`Yw2hW8Bt2LUh~1_~;MNQUW^4yd8XS_!sHU({w{tNS`H+qFv>07&Lm;VZimM z;xn6UY8oTpz8Q`KZBDEyDZ^6i@KJV^$Bua@+ft{IqB2;a(=qlgI0u5Ocn49Jq3IJp zQ+hoO=Y&Surmj=q$C1XnV$q1yy#v9_HrV!9?75&8VKf`ua=g}C^-9h|^%{+QA6w&b zwa8n(J2%5HP1Jl?JS%C9HvP1-nvRjL;#YiT2bOCO+3Z-;!PIqQWtdGJmlYP6nx%S? zuS5nU68SyYo($iC?hftt!q3^7N)#E`pwdBg0fjkWjxzwcd?hvfKXSkjMHU9L@OUrx z$K}zwLE_kAr&tg-ER;%0-q}2>MFQz|3lgK}FtS5#iewEG=cMVLy2_I`r{Krv@jWkc z7bBSRFa}zY;l}sm!!sa2H->>9Uj#7CL4?45<#W0?caZ9f+WLlzt;KaodNP>+cP~8Q z_dFp0TdVnE_Q|+tUR!6rTnW;to2|O5DPwCKE;IN`Sb`1tSOEyh8`F<@NQ(dzuy(UG ze|zn14Q2LIR|98gIgB6&i;)}UEBT1H2UpTzz^ifn8>4O-$i1mK+JYv__clxcRmpLW zz6*R+5QXVm6=5K17_NBfm-{|mM9Q-QwAPY*Er~3_iF=)7BpUU~|1S!FJrA$o-jCEX zE)g>VYB`?UPwW$NiqUWuhO9!CdMhMaCmgvOBA@D7^Ph{zyLhBU#A?$AHm%ArtD{T= z{lk0a?s~1(4LsfU*0@%&3~jGz@oVmb=jSRt$WVzXoRP;C-z4J#JlcZ#4lyKc)w5dN zAAJ{jG3dvN(1#m*qQ6!ij7tK zBWiI#D$F`IPF-6O@xjS`?p?2+Fm3<4s_^o*?$wLxXq)sgQIz4MMIdWjte6iCa8V@2 z$-Va817j!Dw3oN^6r)ycTnG7r{?~CAxLXl+)I9v@G4#1cjAu_eYB==2EcfEGqc`h2 z1YM{X;0>I~TE--nOZ&LNQUBQkhmi8A;d}dQDzxccO|R=RDpD7G%E+_+d9& z{uz$H&e=<#Y3~S(FTm-w001U0zJ{@ z?I}Ntq$Hyt0nlCVE73<-0pDI;AujaaPoGK$>z3kl?-ri38ocPSTyAL&0W3j;%#}c-?EtcLYSsmoEvh$IBjz{!a1LX*3fmHsN)09Xq>Z^Kj8V0Ao zkRa4(y$ybCUWJMNxfKTOyPZ{yB(*9*KsJjCgJF#iW}%;&k>hK+2$jMn)pAs9nrYSO zp6)|T8d_WN(5Xg(_PnGKt!E>N7v1~y+nM|r>bu9lO6xwP#j~YdOdrxU9I%rf{ z!;niKs+}k3b1HS#F_1Vyf3LM}Y_$E2=v5;W$xT_8R!hP&g^1->Xzk8c*KCwcj^&45 z{g*|QHw=<#-6$kYPKt-QnAH)^oa#dTC~@R0eZs%D%1Tp~ryqJEG+C?6OKUnC-kIfp z^4rhz*45uxA&MQh?^&?^s60opQs#E^K9P7)KScY@XJT40jCG2HZd~kJR%WxKrU-;N zn40)&M+EKqc13`ls10gt9SD8=+AqY^fJKVYX2LOZsv=>^H4F1F#ZB`SN5G#$*Ezci zY>3IZhu_I=bLH)KMFe3&DDuzgg_YDCF6)_eB6gAAi z|N773C`ttzaCz9IDtaiNfG{yIAutIB1uG5%0vZJX1Qf_LLCGh_WkLt literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/certs/p12/User_9_Root_11.p12 b/xmlsecurity/test_docs/certs/p12/User_9_Root_11.p12 new file mode 100755 index 0000000000000000000000000000000000000000..ccb03b327d2b11814937cf23838bd1e6e36d50d6 GIT binary patch literal 1741 zcmY+DX*Ao38iyqz#2S@qY_+c`{gbvrYu^>AT`et2)QA)vv~H#%md3u8E?QcWhQ^d( z&}wb9jAi7cN~m2dwGC0XcD;Jey?5^Y@SgXa=Xc)s)9(Su&>k=d0+6BEP?%PVZOXO? zh#yo+hLU*6P~tJZ1CSxHe@D<#GUVnl3Ic<8j+fux2?&sd3jX_pFbE2W@(R?Lj!3+v za_)k`0z4!#1Q2fbOzIQ8;N6Y{*Ba()V&->ME+K6Vm>tC_d%iOY!)|IO_eQc%ttIS@ z+K{#is@-~*9y*>dapmWhI7P$BXX6(ef5$Td5UeW9tc$|Lv{`bc2*_ z6jLO2iD9p-f|oaY-Q;7>{uY z3XbkTvO=j^kmmE!Ujr=ysOFO_bDKorpr1CCrZucA;2*Q~D;2-d8rbVAe?e9&u)n+Zf zXbzUPWp?!npW<2j?aV!;(DNS;ceCtv-5bpDZiBNq@27?0mqM8(5e_18digVP=tmw8~SKg`^d9H0t_6q3e|8u(4>2M9;V$u%yu?HFRc-NrTwfG}*J| z8b(R@9ScpzDU!_QeZQkAm+42yZj5s8I4>+s^G3wGbq0C(PdC13AeO~^S}sR7R~K1L zhObl>FoQd2l}@at4lcclRnnczUJC%kT2fKeEb;IpMx232#(21f?*~;rBr8$Vu3peK zFZVIgzsMwAM}$f_v2s6zZno9n9~=E}B=Vb~%=O4IHMn|BW>1lMm-vLBGX-~eN^vtR zc{Q^_a$m}y8+8~JW2;)&Z@e5#^L~?K9HVwZuPX)#fBF@1dKFqGjTQH7Y|&1?NSSvZ zybLM2pm3|19O`eEVmIjJ_VU~92Tx_ULL$nk=j zCL0l?>T@%0ys7=`&^_ATRKX2Vlc9s6>zBQ_XfO`jhs@gHT$TjGtthkecW3f%43BFe z&zHBr&D&g2bDTKz(1Ouzqq3C`a#tAEZV%_|tMu-#azBn8p?%m~=L38B_OP;?AV* zsOq+9dq2;2pNh@5bvP(4%TV-c+KeB9IKW_sfufo};B&@R&;c1|tIA{$6_u=JMUBI% z?Fdkq^Y_Xpk)J&IWtp}&(VVs+U!M;HkzK#~uPvU;(vweKysh?=yzD`h&O+k$AlOa1 zK9VLMun=E{>m}=FkEOnhR;xZacSH+KdJraJHv+!JE`~3qLmbE}zc-cH!>l8XTRHJv)uq}NRj}6YW6<|wh7Aw-8Y>!RQMJv7t;3iAO;yM zOAL+U$=k126#Jw8lK48XTnVcXaN$c?FR^1oy45ERInQ6J#|T;&5yl^B^GZz#&)wEl z1(g5WYS>9#NnS+Hbw>ZCz2>B%E@G<@9n6PVT%-cJfFb~c@}Wc_U}-)cUIbplrPY{> eWrz!c5OuHS&Yycz&fpbT6(%Jy^n2QWwEJK8swX4> literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/aia_ca_issuers.odt b/xmlsecurity/test_docs/documents/aia_ca_issuers.odt new file mode 100755 index 0000000000000000000000000000000000000000..8c34889df75dda261844c95c9ee6a1d1c6623b8a GIT binary patch literal 9511 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 IoF`ZR5B<)bY5)KL literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/aia_ocsp.odt b/xmlsecurity/test_docs/documents/aia_ocsp.odt new file mode 100755 index 0000000000000000000000000000000000000000..6a1b48c6ae44b20958e028805ebd705175ec8c41 GIT binary patch literal 9376 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 i#?m1c6LuQ&^|%L005i>01%-#1;8)IY5esC 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 UK9L6i(BS{LiSU(3+=qAn54qS_A^-pY literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/aia_ocsp_revoked_leaf.odt b/xmlsecurity/test_docs/documents/aia_ocsp_revoked_leaf.odt new file mode 100755 index 0000000000000000000000000000000000000000..2e0dbd6f7af3569309a70742c11b4e97c91b4d50 GIT binary patch literal 9379 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/aia_ocsp_revoked_leaf_chain.odt b/xmlsecurity/test_docs/documents/aia_ocsp_revoked_leaf_chain.odt new file mode 100755 index 0000000000000000000000000000000000000000..3519e4a818e6248ce9864bc2b42052610ee7ef53 GIT binary patch literal 9378 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/crl.odt b/xmlsecurity/test_docs/documents/crl.odt new file mode 100755 index 0000000000000000000000000000000000000000..06e412fa3ca4a6698ee3b910010d43ed54027696 GIT binary patch literal 9354 zcmbVy1zc2H*Z0sJN=t_V5;F`vlz?=1NDaf#%m6bq(u#s00wPi(p@4vNC?O#rEl3EW zgdizh5`F_-FJ2$-^S$qT;LPuwz1RA$wf8>zoK?CSIJndR03iSXQbS7temO2+t`(68 zdnX4kPbk_6i9msYC^Qu9g|dZu0(JkDkNyvQ_O3`M8vft7{v^#E>F(w321j`P7imm? zkml}*bnt|u{ttSd2>aiU4vj>*{&z0cKWORX26cd=fC^4%H>f-6uOSi=68^_RoG@!C z8OjT&X)6QmkT5TdmS~id0|K)am|+U~y15RSnk8g)o)6kJq0eZ~KoH|mXRlDb&dLf4 z z>s{9&4;g`gBCG7Kd2pks)ls(;7f(?}7msH8qHbo{ZP7u`eh9Ub9I7*K`KfkTXVC0+ zIa97r%<)UpPj{R1Jf|tPkB5fFmo|>CS6Ag1)ag)qSvI~)e^5wxTMQ5a;19(MEIc-O z#=9S$#C1pz0>BC}J=_7@bR6A->Bcaxb`TFGD6?{n2x#e)a|0 zb;?iQVJio!(F1;h;^cm!IgbG}zV^C<{W{_Legq-%Vt(H z69lLTWw^xqYLmHm@T=~YWyC^K{nyl`)f>*UCI^LZM?(UW64~!bI8oc&r(33i4UupQ zgcquI5`3dG(3HM#RR6}5u0iUay)hJ_3)JwNu+?0`HnA}b;$W~!GWKOZe8}5h<32V~ zQVAJs1~qh}ZV{&pzpUMS=)cDk-b@h`@J4V0vO?OELUe1ii11n$WU^Ha1_^x>Vru+_ z{(kTr7Zxo-Qn>p3kg&$QZ0&=DD-8UR5;MXH5tqO8-FcLLAjM&EfmFO#@z$JSfzj6u z=`i!X+k4wR>>dW(Q5sn<5`caej(5T)=BpgqD?A@IafB{?K7VJ>`+?|T$AM;3RzdUA zEmrd~CmTfm!;Hb`aG%bul5~(&`^V;4j)SY@$Nos1(cTeGmTDXse845ZtJf4aSSi9i z)+EB)!#@@&5tiJE_9JK6tp6liKVCGYFADG1eiG7E|5m&G=WJvR zk@lk}6-6#yKHLE>-&t_Y-U9+7p)5MRUXkMQam+o?-N5(einanJU&uhlvvoY&Zpw6_ zsee zGxJN%DsO?!Ns=r9)Xqz8-*`IZ_B&j9Q(W?-F%dG~q;bJ2MYtBYWM*`IWdL3!U6=RW zAOrklAN_`P=iLp?Evb#R#v4H@ANR=p*-(?@6JQhdWu-MPGMa%{33*Gag*R_k@*Z=n zS@?&lhm-gm^awUz0{HZZwRTiV%sj52QM?u*>a?N~;%G86pHF}Lz_Qp<`GF~|?f3lj zn+lw&q&+#|5jQ^jX^tuh^3M;EQd2G2>6oC*pBW2gcLsUinL|ikgrV(ikygFx4Mn|W zZm_z6j&z^WxtC+_L=`)}kXy_}bNhfVABrs(xWQ0*MzqDsE-OreeF@}R8CuFomsV1C z^|HUZ*S&EtNDh!L^dOQX=DXXK^4ud!q~w(c5y;{O*!r$-G^@ar;}(~?1iLfnLtOMt zaWDmben%yR{e|)7#O&G zQNKE|Pg}~W_H$)iL5_mSF2QQxB)RroeUsZ|7j%pub{DqH&Gh|y?(irP+-Z@JdKi|# zyLnXxt~fccaop;XsMEcJ4sb$td)N*a+a?@TU0M+caKE;Gcj=(5*3GoF{gRkZb;mOn zu?3}2WSuF=eK~O7r{ZUgzS^Q*PYLzBq?R|j3ZV?C5{Sy*jaP@Y?!wd6?bAeY4I_VcQbELFz=hjLT(+)*`8*T+Fmf;Y0K zR#WUI-Hy~z~df0 zC-o_#&RIK*^j@3-!v1o^ z-Jn|`vnj&LKz#01Euoq!X8`r{ltNi0xIbqda60Q&ZD3Mv%xs^W82b?5=Hv!P`?3ztshCV4hKB=RR=`|Y@qj)Olw>2(F?c*aJUgI<|1li|-chdn}+p6m3 zAHL>vRCSvc4}l+P7jN9*&Ehp#f*)_~W!Ll~O;~AP6i7fX4&~g_tPOLVofOBZDuY)D zZnov=!@At^OYEx9IqyUbn4c|YcTw^cn^x0hFJOIekg7t#-mnBTzwVpiByfMEMTTgP zm!ZA7GRP;BR9BvrCz2=Vvb-0~?;ZB6u`6)K!jj`%)k;pfPK8%Rg zM<$QFCWy5=Yr!rGQfNnhx2F$wz?-iuD=ch&VR`LY!PtsFTE%q)XCRJDEIWWRM5jyY z=?vz)UfhZh)=h9hQ?#vpIsQ6Iq8uADTgt6}u4U=%_?>xKYnOEW?FflX_KEjHLk`r9 z0rNXrzAiPeCj{KcW+GZH-r`xww*Yaa5T4QDYA5GFU<5N;x2_0xNp5)Y_Ya?B;>Z&A z2p99@Jg!;5C z0s>3ziS2Ga6e0*#x!S`VY5cg0Zf}Hz)e;O4h!$-n~ z>ex3LS*(}EO$WNNvmYBv70$FdefpF`806oxU$`K9eeX+$^EsA_Nk=Y|v-g?mt-71f z&sNd;TFBIdF7K+_3<`kDjrQ}c=4of2 zdrw}w1w^T|D|2JEc*ZG>tTY}iKO`DPMc=N*d0ywUhiX88<}G48BBIiYqwSB6JWAy# zWCAKPAn1!auVaOmNQcv1G-PjFs+~D-HrRWicQ=wV+DYYdhI$Y&)DW;K9W6;Ue@%5$ zIx-!XHz8SdemYE+JGQEB3}h^!K4eg{l@x18J%W@Xs(lt;aiX9fvR0+`-;;={mO-#aQI*`)kc_ z7_WJT3ts)=aNl}R&c9`3dWq}di|-*H`2`Mk2O5k7Y>uX#H}TJA=j7#2P}@`fm;eCC zz`dM3;#kTW&sf>*7f^ZgBP%hK!;_J#v^iUs^%t7l5njP}7*_B#Gw?LNyq)bQC9#oT*yI0^fJH?W@^Zy9!{ALe+*6Q7UH z%1WUq^zHQ9hcnulo1}tVQ|#Y=;J@)9^6ktF%rP&$$)nw52rO=)##EN}7)+zw#e=TH z8$=gh?^sGT9DW`9=6%1eR$pBK`N8{h9-}%}s2mJ?W64?q7eA)jH3T5f2P5RY#HJD= z*ElJA8t*pll(I$FzKGk!Eim11-T@0#%UKh?eHcaM8g>CS@@&Y>F*x8ukJ65^XHQN$ zi?!WdCl;Su(YB-_lhF#3Y|A0g#hQzP{`wo1JZ2YjzLKhaq2syYFp+EWBsvgMAGc__ z3szG$Yf4L{)F;DEXOeIUBBXVr*}4pL6u}lVAJBiCz@B;UT_+CT(158<#w2I6Lwi=DYdj5 zM4eJr_z_M?v`(SfAze+^ImzJc`?_-Ed&@Q@66azL?fTR&Nw&th&Tcc&j0oAi4^@xN z-Ip9ZCU@PxC65R+uXL`_2kIR$0)w8lznUkcOJu!o|5~G>IwKXm&{Y{}@OU_Od?lojBWc)&pLF=mGl?K}sX}9p9jZ64aD!1CP z^c2&%`)L{UXks4oCTOZ2(`Y`GEGuRe1he+v*-N8Y?6AmpDC7iRGxao8Y4K8C7URyX z-8i(=QzKK5l}(B`j2Jf0Bqzkq071>1tl;T`F$_{~cwE^N@gKOTG(lpkXgER_YPtM< z&g0i<($ngEApaKap$uV!j^k#~-fxz8DE1Pj^0Lp^fDa#(IB%3KOI-yJPiSMrsMTK#J;9tIfr#Jf6Rh$X0>{vTIT$~fEt3k zs+oDkWsawaR%LI0uvYp*(dT6+1zVM#Jzaa1Z?gvdEq?JjsQAJbxf*&^fSGq8*f>S` zs%HvU$o*0{VfQBJ<%&OpG`K*W? zAD~?4{^~8hJ~yhK6#-5PqZe!!oT#2NCo5ahS#zdOZF7uJ@XvL=290s?@c@awc3O56 z^(7aW!*P=6a&AaY?tAe$1htNCe$rO$#wHcw8KDG97E!mYYS2*eri6OZGkl(*YrCBF zI%9#9!ZaD#$GbyQ_3~UtMnor9GCxVLpQI6Sclf&nss)RWjSO0Kq#4u%I1>|C4C1-1 z{M!t&Ew5OYhFGQUF|~L57l+UoDtKXaTwX4!b{V{Ou%6z3fr7c;JKIYGOrM%@EhR%^ z^Crs>>V7L9)yhpzT_(gq#QxkNOZoxXo2bnLkl!WgHnzz4YqMMPlJKbn>*Wck;x|6 zYjmIwydtHy{I`B=#1Q{ywpEeAp)1>ieBT~0 z`q3R7sP}%`;Srx!Dq1m{CXM=Tst&U0ejhq3@KThL;1!jnN<=862E9Df@vlFr-3+;w4 zg1?k?v-R}Ux-e2c8kn>0)t}H=@L;hN(S5p>c6;kvL0oLov-t_00ohqxCly~*4zieZ zVfzTTpBWlb&Jc`BMm{H@gEEhb*r_Vg0| zNPfMOXdrfNPW6*D!@yGHy7#;RzUsB+RL&!Jxay~v2TpfEulB!w*Uw?aU>>ydrUi5Y z95pa9vxki2ua{d)#O^9S^2Dy>tixS2h`$@mD`Mb&UcjK?d2X$|6&iPd<(>h%$T15_ z>0R+?12K!Em9RAKxV*TYA7wH(VQ{RB%ZZgbW!M$7o7 zvNXNqet^UJjDuJ?8Gl6O=D-?mV~<%&sT)nDydxpQ%mL}P>nhmS} z#jn?6mgx&Wta0j8L@E0^M)jG(_(k@uiz>XT$grdY*-g@^z8;UsQ9pc8&1yUcTw{%H z|FA%NUnr_iXijDR`8!5wx_1O0{cu3{0&j+{O-KlV$q;YNO@R z&ky+ze_|9UcV__y05~~M{Ruc4dSd@e%VB=lyy2cGOpsZILr4(B!3IabkakW82N@0{ zLuCO84mnw3X{5cq6ATXd>0}6Cyb&lHh82N={OFS5@bW}JPTdg*0_p}wLC`SBuYL*S zS8B+qpdT&1u1*LS84gD@+8qJ}`uO+=`UndmJsp5Tl9H0Z(_W6hMA^aqrgQi5bUmfA zg8|{L@YAp?P)JY+_>=ZT!~dyLC$zt+ghV3$7IZR(A45D92L^#efIsekN^sr{3M)c$g{2ICv*+ zp1_GJr%L=l!3-A+^hLR%fk-=hFveaL#N2Sm{#>h*LCH#=4h`lBKLr)Qr~;S8s3j>N zBqRU^847_QAPI=5u%NJrH1H3kKiL0X^^+8Y6AJAFV>_iqLv3B*0x+Z(0xiRVd2mh} zPebd!HzIAF;V|^?t?rm0{LeO_zu4WOo=^u*sJr9Oj-R+bNKd=p+hC3uY8WQDan=Ep zm9~RH{xnWWh>)nDgt#>DXaA4E!R?&Tn1@}!?ypRXtgaylqzVFQfrSnJnv?$^`6nmL z4~8*{WrcpD{;T;1tpgkZ$7FJlp0YZaMbtUnO{YsKEC}W@aY6`#+5XvKjY*`O%o$J^ z1acD-;ZpE&ab6(9z4y76El~MFG)2F9qEZ4ojqKs4uhe)3!D?liOSFMA!q@80hI4B$7i4FSp~# zkdkVyX9&i!)1W?D>D$@qQc6s|+AtZ z%ax#m70Ae=;d>GRSh44O#I>cBMdJegfHGPO*-yS2uxaD^2J<4> zLP5Dq^LKsEi;EW*#wP{*LSt<%!e%eNMby(bCynV+}oF(72-rcm`zo%<_cQa$P;-kr{C-ea?#qFsE83kiT z5Edg87ny)w0MyKtWh#muu+G=lvqqaUPGybQ*8C`n>mQ|&B3(p}_&r2##!ZvF(6~gG zxl7$mi3eJ!j8V@_i)~ouv2dzsr;N(!d)TiM{alH^*n^?@LbIavEP=_3$N>en*iB!# z4^jnUQ5+*K;}Q)#!3j#CKJO2G&8(c|<1NH4gbmHz#UW4f~TOA5Vf81`Y6!Cl9cYiNZK1c4xEG>S&vK}Q3ui_{H7qS zJcZ+sya^Z+IKhO~N61=xOF%Yrp=^|k7(sK5%;EduW2Vv@(RJx1bbA>duOBZHzY|Q% zd9W@S)zfA^b=j9YkrTUNs!+Fy=+d6T!;R%p6 z-VuM1IYGOIZX=l`oXvkjAx7uP+xt-C2f&tCn+-Fn7iNqvHF0mdcg6786)CY;EJ4a!gec?JdTav)hNciTn~> zh?@XGAXx0^6NMr%o&r=Uw%eP4Sz#h|K8=cFU|4A?XnqMRHMC};w=rGUry(w}fht^x z#^adfNrq};!$utOjqT)YRTdmkd|LDCu*4!7L!5y5R=4rcSJ)7KUn?F>azZ1T$7vcL zJj3=A^=3dq-ukj3bd=vsi?b}jk=;mQFU|TWzI|&R_6MufFE+$&39zkkdq-W=$Mho0 zta_!8iCs@icQ^8{>lroAWNk||sfCLs&IAYFWVGh^crnM@JJsR8Jq0TZ* zTr?tS#D7Q8P&yKQe2{sB3Fc#AQv?3JssQt{|K<2^H3t8VbMnPFJ0vidzvGSfOJ-)@IOVN#iUMt*XOKe z;onhC3J=Z>%|D?0M-9Udu%A^7zh-p)33eL;_W!AAID3lzoCG@4>;cA`_#5o+;3>wk zKZE#lM&k^E3=>)Wncq0$`g7{yjLRIu1v^V*{L1*Jxb7LFH`zaWoM7EM$mJp)sku@Rv znk};Zhn^li{d#`?_k9odeC~73b$!ou&biNhUz?U19zHDqKnwsFYhWY+zm#*>dj%xI z9`4}bZjFH>5oibqjj_gfplz((L0bRH$M^?6dl#fN2KL{${xlj2iSj_X!Vn(+Wi*yQ zjD~VYI=I8o{|7mb2m9a84ueFx{C6()KS&98wRV7^L08}yS8EjduPG7}6aU9X95ZWN z(~}oexvmJZL)v;^rNp4&4hZaCV5bT6c6I4DGDSaWrw{mMXfzb_C{$6dIbx{aOoU2) zg%gxhDRSGLG$Xe@prS3Y?a?Es$4du`nTCb_{EyS7`3z(E{yTe#4hML7$)y5M#lA>a z&S!E8WR@yF6)V5|ig|qhV9@V&J1RZ%Nv(5l*4l`FRFceqK+=3i9q?lIcveT&8v29! zFiOWDx6(=7qWPkBQdVJlZN4V3h>iXI;=Yq>UwMBhM|IJw)!e<8*Kgwhf&c=+1e^tj zA2lo^o{Gh-u>)=i9ZqaH62E@ix=9>kl%nYU=4wzY2Y%3F97ZK0iVdn6?YSr4`lTbX zIDzc!-u1kZBAX?fOBLeGBu-+m58=i-1MpXEfwwv!z%}JYs$I#ut3dAg$(2SN+O|eJo`;BomCGBJvu0$R$hHdSleSOAMPA z3k&-j7r64|vloWLk1yUV`6iVkI<^_S!@Db2WBVN^jnic9x{kxu6$bcS{gqfB4xVk6Ky6ld&ZN=o=4*vn-n-X+-!k0nC3q&fhsV(PuAq-5{RS^Bo4GEAp`ob zxei{pWK@YueMoopa+6VJ`;oeI%|m(C=K5N@vONCWM}6eBoTMf;t_if_?!7eeO`38p z!@9SUWYO^e(ux$_LU(D*ImS`K*-W_+fpGCX;p9-0qprL4f-ctgDXK$eI}T(BLp`66 zulh)N%IM+@*ryYPrQ4JDShVfsDF^s9APPJxI~liXf;=c{_gQ4=Zc;ld!FL{oTyu>? z&dZkCMGg-2lIGi#`g<27*~L;SIMs$dH3;A&3al;15yAtg;eL+!s;@aA5jp!%6i`9H zZ9%$b!f17_OMwh=S7`wf61k5Yw;+D}D*pUzQKP%|*DdYn%p?b?0j8tp-M3>p-ujKN zU3Bz&#U!YhdUpL;VC?lmIrhQwOPlv+!uC*LLbk^b?g|&MFeJTSl5o9_He`A0$Tyu` zvSOU?)9Gb`>#d3x%J=TUo$Ure4^-DQN-xGf`~uBeqQ=Vpn@@Ww#Iv~wJHx*k@tHY! z&A~mt=+wjbgLq>BB&K1>8{XV1=9l_kDWRaS*m(kU9n1M`yjpWpCKHS!mBTBg6pI!E5WBzPK(mV0% z3YejEkbhs2%&yOi`tE%_D)!r}@9V04(9b4gSo&i`tdx*8N6m-1yVRU93!=>w2lUdH z;@+fpN>NtW<4WGSdFM@}))KzIpzOo6Qi;$@ADWqRnmQTYgyDLjm4`Viw7nHdW2Ci% z)PUNo1#ma3k~0PnrkM#h&s&|$^`)V#BR>3!8}83dD3|=@+QMw+QWFcp(lQrGi=D4^ zZN0SW^lWG!QVOXwsNBlu@zxVbcGpqSlTe90E9pQV9s+FHtEN^Dg9FUYTww2u4i0iQ@7!R9Two#xQ-LG_XJ-97; zQ>yF^+cZC^NoABPUs1~~JkbttFckVsfQWY}-$cVKjXW9J?;&}^*q2MY#CfIkZH(zb z&CFa{6@40fI2BaW8ysd2Ge7(2=7-{Mb@O+p`tB z$l6PH4#*|nQMgs?GkAyU`=xxT%dF!QSDECR+|GdAXu?)!_9N1hQ8M*(7gDIC(_EDc z89GyIHS!|36^&yhbIP3U*t*W7@#6)0v>lRp)87S3Ze;aM3iP z7UNZTmL{RidS|RJc~-FX!dO9QIXgL#k0VsTm~u-$|3%dB(*PAdHgCaipS-q!W{@s& z(XU$RF-(`AIKZcxr)C{zl3Ktyiab{hSsI>V4k2i@@Z~Blv0y;1Q~_Ak`0OsEyrKcrof3Ey0r(A*7MtT>&>3E4B(6p6R`G?GuH-rmC&0@f&LlctKZDao|k+a0g{|ac>GR# zgzAg5%BYl0;1a9KB(QKz8U-8xU{_sGd6TNRu)3jQ-L(lswfoHe{X*F;_MA3Mu_D~ z!LxEIZNHB%91h=HLKUu-GN0Qn_I++S=>8R4(LT=>`^8Or+K)nW|9MiEfM<|e zay+fZNmODbUdThM6rN}`nMd}J5BX`!SNUr!xdX0>c4JutY_0ZdLD zfZIXSNy3UCLY`F(p~`Y60PXXn0urMSZWs3UzF50UX$os5Rp>SxLCpBr9Zc*-VBXt( z;=8sD%P|q=M?3kG-Yw{U^AfIQ^3UWwM=d5C9(bD&mogR4uvdaqoRID`t_pqyL?ah3>RUCn>(46ok&A=`szG!>kIu^_tdLG9H&2v;g!FHl>#?f za&>IqxjuVgSB}a0a9Ni%e<|}F6@QUY1w-aM&ZvWAIoh_3&9AY!Yl@2qm99aKXpNJm zzq;JVFa4mVtCsM#OB)|UMjVUv8&JX3wS*e<(#+maS9poef31F4VY9Y=H zUU_ve`}-&Jb`j75JBpZ&F55l6XNoey!Y1dI*7Ea)mwhoxE+6rFW64D`{kVcO-$~|7 zVK4upHwa;^cxMb{%i8SW${?v?bkuY)j}CRyV$aCkIT=gmRGqC*@r?6hL;d{@wDo>- z+Zx`^m9|fbc#w@}=(+idrX_j+V%LIr2L~$PPB%cItQ_yPM0j3g-z+*B9hZ(JkKZAl zS-nYGRM51Ld-v-##?g5OJEOuVwMM-uO7+|Uf$4HL9kQ5L6`tK?k2eKqdmnKz`ZLzp zyffYtDm(A+WO29jrh>bRp>UJGh0)GS`rZ(HEhqDb(w<8NcqLvXuL-ZnWD6S^TQVma zBB5DC$>s4JiW3UqQke|m4>FPr#IxX+g-erOE7dIkvj@BBv%^S$IZqlx=@O`|4I{lP zv!(?C_RIx0lxlj;YHpBSzemAYHR$z#rM8Lan#*=%*$`4LUpPQ!!erz*2<0Z!b=}PG zMzKAK-K|GLM1e|IJ6MBtVUgtD414^Z`Qs&u$7@x{und=v4y#>}MeTN{&~Pz*BCe~5 zZc}^0eo4%z_g!Y@V*|;8sTTP7couPhZ^v%Iyo~?O>{};lwhIpqoIg+BXQ{P#-*|Sq zoZj1VuBD-)lLW_s^S$_8Gq4g)07;KgqOh!$%vfZKv}bbNd(wTs;`r6C)O44?1tzR~ z^1GAWF(@rv7sq-}?Hd>!29dRH^8=#OvjM@r-ey{GH8-(mf);x|$c_)%&$pVpoqhH_ z`Rh$!s%zh*!={U-;3?$AaTxjj%ONz3ttwn+HNUti`}wKgCLuU;rnvNA>r=X0u`H#u zUs)Oyb3wB?T6mFcAk|q-ChTI>)Si>>PPKMSI9DWG=~9|%0Ex98U_&ZWf@aQCc|$5Z z6`wCYQF(4MM2082yk;0|Ag9bhy zUGpB`hr#mlTI6ir>k@P@+Ye5D0xf-0A%n1 z03_JeL1TPee%L%?CS%B{O6tH>OY6Drx}KLQcJVs{e!NA3zOR?*=a!|}9q+sxyni(~ ztHAr{d-C~fcOG0&dZqIHvlKqqL0ovhgF$xlFeiu8k|j~kEMbJhq$q@d-}c^`dp&u; z(LQLMYJYPAw0bRRJ<;_n^+y8!%i7-)h0B84vWJZ(MRQ?Q)Ov1ZeDH=3imlAr#l0HC zJEP2*?a_?Z=p1JIz;b&{-xa$r(vQ@)cs_dJTAaS1tx{+QqI>KN!Z+Hq}L(Y+(9mCe#F z2F~VnJJNIf~$ln)K>Cjz6Dq??XEte}Au$X162PplWc9dAJrA zhBpo)7>_w48$wy+n1f5=scNfumVS1j$uHSuY_0K7QMtUqA?Z$tVgv5W_F`HoS*R+N zjBq;Mi%87^<9&w8chnMrnfJA1DR!2uUWiji?b~&!UX*wf>oUE?LibU~ZYWqaI(t{5 z?~uY}_qIIZhDn)Ir4C5@fEg5!-}-uvm?44vzJ0S=X+>HxX8v7SxbEYD=#k}+5{NZl z;f5#81b4;7|eh~D5-S26-Qek zm8YAYNt-U}F<-p8@*$mij>O9%b|8ek`|eH(-NIY5XAT8i5K|*}Bc&z}#U)Xm?5g#B zb8Qv!D>5<K3WuVJX2u_&O&y=FC3L?Mt;Ihb5J)=n4 zBa#P-i>k@RDG&CNR;+o8)r)i01kbY^e(gf+swcnj&3c6R%!q(%$BEWxkXD0S>;*(-gY*6nWciPJ>K6*S3KGAaX%JqsWPNs3q9 zlemNK7sHqnaBD2qI`&owO$%J@6Qh_82XQ}%#IoNA zY%$3+y=GtRXP3Ok()!-FD2Pt)iU-cyOG||n&V8nPUsJo!QL=V>W_qYW7?aaXlhV{S zZn5>F@4w-vS-$12#e&!i-JRKIOWh-Hi`du$`&^W2;Rug2o!*?2fK9|(POh(R&%iW0 zEmod)Yt%WgGH?nj-4kwt&9ykzP0RL?WJc#{raVi5R3Nsmzg?o$H{2j^ z#@z6Nl_qtT+_86VMG?9{txCwl!zKJ*rqASZ#kaDGJm>c%f%@j#l!pffFK_kne}BmA z!*H;t+WCE(S8VcH;j-~0S;Uc%D%k4%Q1G$>Wpd5yRn&zXyvS>+}Zq|7aRQ`e{PJoS7sU?uH=o*LKczD zZyn%wvswq0Fa@F$kdc6#9Z5|vn;rB|zf=(J%i%90T+&zRp zQTVr?>5X2SQ69Hs>Rk-~>N%%NsBGGp%yoc*DUU}zgvWqi@2(u_WU*s0_geW<{MrGI zYS=L|`}O7hOU%ZizbT}<efBau9COF;P*V8$cDc5 zp=hvZ6yIs4S3?hRj=JqE2-Di)a zzKvAqp~JuL4AxiPecVSfuPrxTE@IKrd&4C(S$1_|P?WDNX#^~N49a`<|A9xXg~nSy%Wn~&>N5) zJf5W7?g6ejpIphxJf59G(LRvzjG?F@vmi=Vr#lBB=&dpw$kGkrHIQ(lkEBbnV)wnU z;vcodSTMTArCA!G=QPRPBMCfjm`by9I4n#1=wSuB!3=1PJ+gIl zp8md2M3>Nv(%kb8%u);=h(7sbm4$}nU02L0WWB1wV5xT_xt4efH-JNi<>>W#Q~J*j z`44+y<@2rCc{~8%_&TvCU>NIT{a;EJ`@`W0b4O!c%+j1fKrkl<3}K73gCiWIIra4v z1;sgKWk{ru_V#dF81$!+A&9j`tU0i(2sHFZmo%q`I|6!QjzAICt}rwdV+;M&E`k0^ z4Lup?M~k-$9N{d@>4?FgpdgT!mlx1W7>IOt00~J*NPtdyIsY2U&h~FQl!v>^36-5K z2<8Giams>(fI^_3w8s+uPlY+Wwn?2=;*ykj#@ z@K}@+A%37>rwajjqg^l{q@6tktFHpF6;7F-dv!c18L5-0*}B6{Kn1a)z+|vuNeBuF z2|~bnLSU$f5L5^Pgh)t%{y_SJ{qJ2r4nV-s7`QFR2`$Fj#swy5i}XNXq&cw<&Pn5m zWBvC=q>U5I7V~>63hRRZ*(UTCJIdPK+QHo#<@mGXC$1OL-R}1`TSqLlEjF}q+5wW0 zva^N$d7i>zKnbuE=x6_r$-(U480^C?X!lo~MMg^x3|0n%H6Wt8f33-Xko=R=*2fmB z6w3(xM*Uaw4_XHp0)~y_Al+p&v74xQa+*%IQWyx~HiRRDAsqkgu*8N@j@Jw%3N$=W z={b71+90gqE@%+u=PeM0a9AW;L(fjfP1;ylecswcox$xjWnyGx5>E^&xYSA@O-82v zH4PYjo(}!VLdVWdi%R_S>vhACG&G^}#AayLf=F?q*hePk&i2R;MEh?0Zv!w1LhT$; z4PwGk%a#d2QLNx*A@Az%RRw5ON8I21PMh*?G?)nhfO?J}h8Y@$Io_v}fJ>Q)HhNf` zDxlu--dD*m?$NDAZVVZpAo&@xSoJQ~;iR z3oIZH0D4MpiH5QRqPfyMt-mn^e_4-fDS)Q*|0IPJd3PpV!0qy_*h$iAwTlcH-)P@c z5rF5*qEs_dqU)A;&ES=-R1sNSkGhp2pI;Lwa${;d*Qj7QO=MUd-h0J0dc#|GR5DLA zg7c&EhT=WYIMqUEw(jGpCrdA$eVbKzBI!t` zcI!xHd3;@{gQMs)wH_j zJRBTgs%=_nUboGZaHMti+!p<_bq1|#QgyfNDbF^O>3+kji#RZ3K9JQBte-V@jJgCtiG(j9UipWe2hcgbe{2xmON@ za>s00An}ImUP6}FHw9%f=3fqSlOX6!$sLXs9Yks^$@&TBT_3*1i zL`RFs#3gT@1TNgVi2|*LGZ%NRe7>ZwKvJzv$dM;@b6uLCYU0Lq-igM$A8^$u%`C2x z=w1)ae5~57P-fYmk0Pgr!}i};Js60-(RVEmI!E?eewtIPZ_Tiz>4Glv^MFwPv)Q@O zPmrc1gFVTHs{};i5AQ8C>L5srTfVvlnq zTwsmAUdgbY$aa&%cl}C~=F^`0)&>tjP0?2C#x&K&%&*k(@1WYFZ}9bGor~a8SLsco z@vM8qh&#C8uiPd~J3)W25*#Omx|jP*(AI1Wr;?*(WJ8vvT)ef(;8JGm0M8kp1ZR>4 zKtNDqm-8fv04Cm=NuMK>^$h*%vjjMZt)6>v^T<1*H|mOgvePS#KM6kq_h`RPOD$vb zESk7&XZ-X^p(t-2x)|5B&2L)xj4Hoc=^-ejI2k;*h?5*#Io4U9s^wJ|n@~q{Q;5#( zknL%ja(&%;EJ@f_Vx}@1-ep316Mx%;LOMM>zqvQABf+n6p#t6(yy_Ih`gD&|)JEMy zb`!Lxz(SrnGC>SfM@B_Y%pu|Lkt81KwGsTgmb~X5uF_Voi`fw2TH<#OI;#$AhnHAj zW^=z{K8K#OW3<0_#IX5|Ht38(UP1;pO+D{Jy2LA~#8uAWwg|G}0F&YEk*paCit6%l zS3ZIm{{xe%8%$arA!{lf+J_yP7ahoSM8h|WL3?qI?GKN$_DPtl))K&O)3$66DAgZ=G1#cKAa z5PyznoI;RdJ&Ql%8>d`<4qcpb8DY6>PXighGXBZ0d&-C*|EHJtSI$5AJWn~}D1P;T zp7Qluz@@P QfC~G^fe!%aa2(hEANYDrRsaA1 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/crl_revoked_leaf.odt b/xmlsecurity/test_docs/documents/crl_revoked_leaf.odt new file mode 100755 index 0000000000000000000000000000000000000000..a97598d554bd8cbef0a9667f67c9731e0ef023c3 GIT binary patch literal 9363 zcmbVy2|QHa`~RS95wd6BvYTOK-(@HJP8u^~H-j1bnv@W-%a*bfS+h%IiL$TRk|H~i zUAF(wr;k2;`+Wbu-|w31b?-UP^FGgW&OP@&n~ny~ISK#(9{?~^LrVgFIWA+a6_E%V zds}xm2-+TrKnVd+Xb9RJWesry>ijDo%^&z|oRAPS{J(MiX*3t4i@S?69O3?7Mx+13 zXfAF@TQ@lB{~+hdVE=pV&`6}yf9GQQgOv8p5L-A3s9=wFhPa^qQV|~?|34Pugjq|; zK%QUix-t-kgt}v-M5F9&5ty~Ws43v(>@;Lz8a-8eDPYbxQzlx|lOA8gOp8gJ7wZx; z`>i#%gg2(l=C&*ktO7N`n=ZD>##KF?9jez}bQI+mx6kAY0RtaRJ@dcjO_uv^_m&?v ziF3SI9^I9rUHRdVw!Y@c;zDXs_k0?T87SHJFhe78p0Q*wcPoiuhSXCdGOC_1%B-mx zbjAP?hiKH?j&l!UJ~W5YzeLu`;8lGAawD}oldsG+_}S9;ysy$ZHQHz_z`0CLjKqhJKXK^KLxg9K;&(UsJYfb>%ivX${cwU7O3zj?2 zeZHuNCDqrL7{y+B3{`?a6GrHScy13mH^0^1C?T491Q{5-AQh|Qy-hali&o|FuG5i= zUX~^G+&+};udfmY7PPUJyp3R{^yX^gyggRS6Uj6MQl1f49KjXX)YUzr+Y=o%Cb&y! zIKTD!bze+0ResAOa{n@^+3bmB8*AXRHekzPH}w?G0LdEc#_i}>R?^ah5JnsCCJ8|! z{;Jp}jg9JRy5lDiVZM(WhG}1ZsCe4%7e|M6Ifvl6Gj40{Epuk7M=p2cu5i@j2j*Td zXnjPCQ+uP!a56eY30L>ys$+BKcTFk35c#h@4breA)AY@AS&UxSU`Zi)xzaAy*=n+P z9|f7j&*4)B&az-#{z}U>-oo3)l{rzGO0KdXe4FMF92%m&)KeZfw!8@~+h#?Q6|eY- zIo8&R0dt?l%R(Bc3`)~YAO@r}&b#p(M@W(pIWPlwk++L}R`A1{NKv&~MKe#uIWSg4 z`z7NASz#D?&xk&Xe+kGt7f%@=$|xp{A{p-3B$wG;dPSV+y7$y|kEx$VQedOH7J9*D zp>0C|LAEADGv)5+GlOB?92Pr}d3MEzrI z9P3p`n6FAzj97}?|2{XkBB4#_}we z(7&DEzt~%9&Y5fD@Qz;VSuWL3@P&KUBK@K>ojP*rNu38;iNcScuhW6*Q{3>5;di@@ zUsn3dp^WS;RrGWXxU90I%Afd#2h+VXHli)&ec9C{GHNtX?xb%ucEP{%Fp40(2AvknrlH`i)c8s6@t?U0(r zC$SjWCCnQpvTuJV;rmeRZ=yl8$&nc9*HzfLz&D}R*r)p`oI07ZfIsR{#~QPO-rPeu z8^as26%FEX{@Q z*VqXLvL?*;2-}3za1yAdnLY+9-cth1PC4I;St)Jv-+2A~3dv-5jpw|G`{TUYn-ou| zobJYyBrA_1`p>tQ53P>fRT4lc_ZsyzCT$Pucu*oMguv)rn+^XiqQ#0v5IB3 zHOd@j99l7R6$&Es&*60j+C?clMAO3xgj-x18ne|)4)L*1j<_WSKf72aOj(!uknFto z{MKzL#k7?i#yfo^cqvSokv~=Um8Ydo{owN0txeccrWOKh0As{0G+h^w`(6n~T8xgF ziPO0t(*&10Gut^k?z~_{XT`NJ$c++TOx(L-YRfskM071DCGCs+QUTN5#YOtn*-$k< zbw?wPzI%m2&F#t8^LZ6(+xnDCWVYvHZCrvWUg&?+tvcVyBO%x}Ocxl~P#o{r#3~az z()5w-X`M!Y2YrK=AT>__dq#t_abW57imSXky57%y8V+{d(`~8gMvuPBdCDwW8qM_i zR-hQLmF8m|E(H6rhJ_ki9M7x7wpa!$2iqPj^;zBhbZ3`mX-i;ha`~8GWkR>5D{?aN z+b(CIaNQA(js_n7zLIKKJ1zi_Lka-=v@`Gl+8F!f+UFT^MJxbd7t>4m>u1p!g0Q!N zqtGWG!-|9n2W&x7<<)%(4MfM4LSv3>!1&;ctL}{NMeXssIrG`Z z&vYf=SR57ocrNM4xbrIOj<4voB0?95zE<3lplk1*{Cj2Rx@UIoJ}F83N??FcoDAo>MxDN zJ9j6mO6B4kiuE1mrrK63cF+Bsb-?MY-)I#g;>67M$%!!(0nYZ$aJ07z9OB~QWDh;H z4S^mAm;e%jvPTIZUEqkHR*C=`?uGsd_G1a(HOf10U;_Z$7XSdv4**3X&=`B>WZ`m* zw2j#wSyx7b-fQR)(clueVg9&Otay+ zJklaYw8ctOU0WI8l}@ZHd-6>9nSkT+ZUmo4@biWaziA6g*1^h^>~!sN)2xNAE@Hy> z@gTM8T0z!KE_qE5Q|FTfShz$1>|%6R4|Jb9Pgw>GHoLsM_B?-V#Rsk8G>p^#fLJ8U zmn}%UL-Oe~=JYRWL4bAQ9ML4LYja0mM=mHwMb4CR>X9`s^^M=3m$7n8*V_sa%Ve1t z9U8KwXz-oi*79n$Op7aI^mnlie3o{lVvS94wQhJ(de_$~?WSIu}zPTLU`qe!{u-~gG=X5+;` z7gxca>lVI#r8b1HyAK8N0#&YcG2GIJM-cBA_xa}e<0Om4=~T(kk5zsc(@>Cg+3QUs zXQTayUtbmVPU8s^kElt1M^@HjBgum4R{P1xZ2SP9uDyZ<8UNk6w+>{C9EpdHpJo#1 zU)|_zx-?Tsl%iMMvMsuE9gs53NTnyw+=Zi1*LEG24o*y@}Zq6qx-%bh6QYzSZ1d zHaRi!*PB74N;}ebW{Rfm(}+uB(eguAgUM;y)YvX*e{ogy_0_ybc%FcuwES@E<0IEn zSrTdAiVO)fhxVH&@DkDcbVm)DJ6CF^_Z{?iYjvYT*&^&!crw%j2q6Z54XFrm@_BRB z4XM!dbKG&ss`FF9GMrJBbz>kSG4&z+>dnL`OQf+uUELE0VRjvT6@sYu{F*93S_8Bf z@*aRjGO?CyI!1lj4)5!8iSz4_-J&;&Gr$ubxM^AK^TkSfTElnAwAJJrrxwXr=**~j z(>pqIx7z~O=4=zJ24sDjho_d1wjTRV&DRZ++j3G+5m3dta_1exKJXRP!s+Om<-}MiQ>w z$}aFa{+`OB6qd-L@>1>lC#iEFTQTrK7q#r>(bK1_R`kgR7V+cEW<|m0d7&|DZVki% z#|OZ5(u2*?yR4oqM!t(3yUa?G{UTDdNeK z6p{k3cJDnn9n8!)737p+Gx~w=&WF&x>1n9lv-C#SHsc{7Q42Nt7io`$D3v?7&~@hr z&_(`lmr@PhzlnM`+N-10QT?8V*XntD6h&$MK5$zgz7(jA2q%bTqXqJ zF5K`S|IA)>Wrd?qh!HQU>QIY^KpuECG_%pDR+m=mnxb62b&8bp?VZ&oXmu$gA9KfPsvc2lJ{5ma#3UfZ)O&w7jdJm=MV@T|n~=GQn~6%ZyYjLKXHL!f zfu*h*v4V_DV#qil{Czg2JBuAA-iKt3S)>{iT>^`2C zaO*T_sI)&^{2t+|EI|huKbJw3&?NRy{VhfsOt7%jLrXB@CMk&hI z+)~(s5=!B8@z`}Y*18WKelr?^7dY~kU^tJ0_S|`G16oElCa!b8)&uah%zYfa3&_OXhm~c z__kF@2x-UHHa6$oq;^D|2Y9`ON0LIQ(;*)ztdx_AFex z`^MMeUafjt25MHYN({IeKHq9rKO;Lp`1}*E1eRvPCLJnYJ1s9ws0y)t{p~V^q45Us z8?>J%yga45EX>BS%>~y<;$|6fXsEdVi$}B1*y7q4go}B72qk=;TUUk#-dfoj;QgLN z=S_XMuipKAn@e;`sc^+~iYWZpL>+XqbM)2>|I4eSc(2JVRq`%a1NAHAtK2kuJr-RS zWYoA2m9#-Q;u9cGnkSOXw|RFsKGH>oF_e_Q=(o$;e`&*_T@@=enigfO3vH@qSO^yPJoH&FA{1;X$Vjt3`whTW;>) zj~D&h3HqbfW>qJxX#1B!zj@5-t!=xF!$TI(|p?j zb{d#5vxW@i{mU#SqIMJ?xnWnZ)ty_^kBtuG7S?yU#IIjpoKquz1AVTaF-D(7_=pju zG*~oJPsnI@11xoJTwYYyn>3jdKQKyKe46fjJBo?%lh2&_+jdyHoD3q9Jo?@y)&0DO zQaj^S2B^^QyCV(N_a6@sF6hclRtn!}?e}vENtIpwJfgZZ8S(7~oowK}Ft%#C2x+fW z#>SVNNjOZ;SqYVsafemz_OG35=rV0Cb*8M4x5KBM-Y42PboG|4X)-zwcoz16-l#ty z=hkG3YP&nAjwQ94fo?JAuc0vSE>lgw3|#m z9AEt-muU(n|Tom~+UoPS;UX(7WkHEJsZztmUwTi5~2GW5r<*P9>x z{E+|fCk&LxH5YIIfRppopMawwC-%RTEao4x2iy&Xi8f2K3JQQ&nc)a15@wIEm1Z?G zQ05n7m6aisLfY8aL*WuXoeX}AHv(bCup&?rKf0t@-Q5rpr|yUZ0^$ruNuZ$;zxpK- zzfwz_4)mkN%gG+$D9vhzM!QG=fu5e80-j(2q?;{JP+VLbc-qVQ*HAF%-*hhSZce9E zFeni21V4?>0tE#Gfj?bNWbwc~ANJu2|?}1Kq_@UzIa6%xEF!0Cy&yj51U@)h@ z>3>lGLkkAl0$~s|gx|v+?#af={MS7GGT}n3%%=bnXg3G~WrK8cKK1VY#=}fG#=$#r z^Y~9hIThju3PxQapcl#s4Mf6hgfRB10Op2O=I2_SC?z9xsv6V{ehSKu5d|)T5lft3 zP>^2;WFQEV!2Cdh0wPzXfPWzU!T$HEpX4I!QD}Q8^C>MFV(kRyha%k(XlYi=gLB$= z8e{*x5ozrJhoXOPb-_gAf3^w!#qI)egV?%3T(;E+;|3UIkPN+8&V-(8> z{zm;*^AB2EI0BAI=^))?v@wgQeY%@Yml7->#BOYl01Gkyv%?CLQ8}42AQ%L477=Dw zaJP4Y@rw%!i~Kdr8KTr*&!fc2{LB1(_xGxuHvfDb{D=rJJe2cy#@O@87_a9fd1PSc z?re>K*gK(s=%1GYE(qHtqBYdqOzf2P&6}ULHeCp?`^{--XlTWfg9>=s&Px*!X@1KP zh+?5ceY~LugXxfpeR{oaJf4BVb^N>;lD#Ngnk+g@>)72MF^G5Idhj*?9WU6<9N8!e zj$E;d4~k>}y%F@P{a#amQn$nYE$*}_-=al#9sp=y{^6LR;OLWeI?cUQnCYU%#7F}g ztYW@N-eLc+)x?e_;^rqNAbMa^glxJYM{T+k^968xWF+!MuSDOWfb&Xa`E$#afc+JT z;YaUd#C)-G#M|js4-}gvacFP8otbL&P1|+|^nElIXff^AjbnF*hMi1Rf8Zt&f1ho+ z<)YE{_g0N~Czb(=D)tDuD$U*|nlA|RrIkgad_Lb7R2DLmUK-FTqgVB2g)#*KvYBRs zJ;g;uiwolu{eYP?V3c7(VZd`jGAqha;!%hmoH|muEaPw`-I-*s^(yrZ-?`BAy_KcH z;N_>S#Mj=7+K#tv+leyfIlXc*dF9j9F}|~rv0DDo_;oIg?@Lh|@&P)5$YF%VFbM}e z&>eu9mRlw#=@QcZ`ew#(W7_^j1GW_(ip2k;6jHc@;1Qqe)w>U-F4SsVq0Zc)=p;Q4 zTBwLr&rFM|U*@u~uWlm^&+d8Hs}fPH#8>1>+jO}}(P{?IxHhz3!8vNfOZJ0gzDPLh zu;aK`Jy&3y(k;)?125AX4)U=UBA0Wb^Y=96X6$3t3ng;&A5TA7F3H=OQ+pz5N2ILu z(73-@mNbi7ZH%OhBY(if?zKpAvOqX{?Ea`l!sf*(6nw#NK8f)HQT{>MBT@B?`eIII zW)SH%g*2DzW?Co`k~65P9wpUU4>6PhKhu>nz+pQqPN$j&)0nRyUz8w>HZ+L28qRuYlQmO zL$V&L_bOIc4Lx@uCbNehwA@U5ALTcolrJ$)^jdy~Rdis@xU88&pRPC{g!fX;Gl`Ev z&C5pnl8x8S{B$BkIkp?(G-0p21v+^4YXCIb=h;3$CP(J31GD>^$?XImAPj^W@;TTp&}d9quAS z-1Tbe^<>7|%s%T1k=nU^2@s-dH&eWh4ivk^~L+j~v|?|4VTMnFJN zQ;*{mAs;#pLTktz!azXv`qFtU#8zKS>;f`O#IL^8JLgfg=|}KGP@nGWjPwddkD|}_ zV5YeWg(6(}s8Vd_cfK=V0(D-E@*`kyX)0)b2`lwh^+b0=x{hc4gZO&#+k%v?M~t}{ zstxt)4+!sUC1s2#!F%z# z(;z_)J((bC(qogNCze8?ok&7=%~#>PdsbX5NvjmK>!Q|p*jDGdM;z71bVJK-py!@_ zLw^dn45P7$Ii}v+p$H;S%#Y7xCvV_NqD)pu$FFe=g(8T?0?fv?$FpZIUaYO0bml%E z?SE)i<43FG9=xX3r#D2NivIeUwOz<(Uh4Bora<~)?c$R21?vX#@es|>z4J`9iPxkY zt`X|6Z_ld7S;{hy!y`$QG77~nT#%>*;#o-Ih&TiX+nV>KwJ3}|8r$2Zcw!R2Xn3Ik zcaWsMbU5N@Kl6}DM*|C+0`TwU1(=upFUNl?Hu!g(lP|{EA%?m99p|k0;NMYB$`8&C z1m^O0lwXSx{vGF}9O3N9#a#Xe&OeG1{vGL`dVTr>(pj;>{}hD^lREibp0nbGe@8i~ zKsY-z|A6uz#SA~dewH)*n$h_uSQrNE|5My>_7wd&33Mh|CdQli8|?4kDaNutgZOhs z;|zid6IuM3-#Fv?bL!%Z3yR@_o+UDVXZ$^`d&U?@{Ld)w@0`EKJkL1OFa8<&bc zi*?3lLxmX;W1F2gTxVQ=w#3f3+%X&E-|VvAQGPd;&QNIRFf#vQI_YSf$0YIq08-2! N^Em*(lKJHB{{e6yM*;u< literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/crl_revoked_leaf_chain.odt b/xmlsecurity/test_docs/documents/crl_revoked_leaf_chain.odt new file mode 100755 index 0000000000000000000000000000000000000000..f82a02a4545c59d95c1404df33520a8fab7aabd2 GIT binary patch literal 9351 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 k<#%Q2426#gBl9n+la2-+CXfdJP+b400000 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/crldp_no_root_revocation_info.odt b/xmlsecurity/test_docs/documents/crldp_no_root_revocation_info.odt new file mode 100755 index 0000000000000000000000000000000000000000..d3f59e6015a1cdef1d26b4448d26cf0901b56a4c GIT binary patch literal 9379 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/crldp_revoked_chain.odt b/xmlsecurity/test_docs/documents/crldp_revoked_chain.odt new file mode 100755 index 0000000000000000000000000000000000000000..8c6416b808bab979eb16d69b39ae6a02682b56ac GIT binary patch literal 9381 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/crldp_revoked_leaf.odt b/xmlsecurity/test_docs/documents/crldp_revoked_leaf.odt new file mode 100755 index 0000000000000000000000000000000000000000..fce479cc66b2b488be8d9c456ce9ad8375103069 GIT binary patch literal 9380 zcmbVy2|QHa`~QS&5wd5^zQkaZoh19dWevlOF=1wyv9Co*vXqoPYh=w%SwbQEzJzR% zeJ6YWp-&%u`u6$$f4|@5&gMTbGixdu z$P1`yDFGo!8yBpU7&IJ)z^(;WO+j}@hdyJI$du*_zTb@K5|uOJuFHS0+rLqenVH0z zvf~_(ZVYj}M&WzN`?fK$8bm3EcoFkFIN~*5w#Y`yz2?h_N7W6w`*+vbR3cS_yzvsQ zsx9^sT|jmZ!Fz&qzpi}kkBt2Em5y^-fx;EDY1rko+o5pJ7WuHTC|HuCU;e zQ*82=c46PqtFAaep0?QpA8-AwgW{@=mF|PW)&@LX!#=^*zJ977cfT8d6 z#fq?Qirw#k&U$+eB7Z3yD}NT+4kiKsakv*1fXjAitRF62eFy@Oti6HbT9MUcDThUu z&uvh`xZoECZK*_UgR3qjcWWnHeN-t*rY3hpe^s-pmYv9OoLQ)vATI4m5X0H*bgB0Q z`$sJBF|%0O8HI_sFPae#&7V#+C2ea_b0>&D&^3V(4!=x7+>=Z_WUCzV0c0uCoYo*B^VanTF4j4w2(Ei^ zGfr#ZgAhS3S>nU0cJZ085^|$`^KV@|n&OUfo!>~M{Y}=0V1sbIN!p1H%$;V>mgEkD zX0@%#OcNOSv}i6VXalsnnuuR9b+r9-6k^!@V!rPkCtEfL$(5x5e*X43I$s=X-F^zb zqgK{4_=(0c!;KGfX*=gl+oCdDNkRrkVRr-7Had#GHm-q`YFG^k7xhSME!G z)hgw-{gFiJ1<(WHlu9y|qWAktL<{!!9d8tmw&+0UACY}XgGcmeSQqP;F8#xxjKxTX~{L} z&P!OnqGX?$rw+ zlaJN~nsGsUDvzDmcUwP3E)CsAzt$}66BQV)2QF

Qc`=>|X3Qo!o_lnzfZI;9q_7 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/crldp_revoked_leaf_chain.odt b/xmlsecurity/test_docs/documents/crldp_revoked_leaf_chain.odt new file mode 100755 index 0000000000000000000000000000000000000000..53d1e01e7ae3081cd0fc8dbe43176893223607b5 GIT binary patch literal 9383 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/dn_cyrillic_bmpstring.odt b/xmlsecurity/test_docs/documents/dn_cyrillic_bmpstring.odt new file mode 100755 index 0000000000000000000000000000000000000000..1f69a324823b3e058060d3abcf324257665f0055 GIT binary patch literal 9392 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/dn_latin_ext_greak_bmpstring.odt b/xmlsecurity/test_docs/documents/dn_latin_ext_greak_bmpstring.odt new file mode 100755 index 0000000000000000000000000000000000000000..53a29310e9f23b51ba79eb569e7dd3d7994d4877 GIT binary patch literal 9388 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 S0|0PfAF4Y5z@*)`tN#HZL%rqz literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/incomplete_path.odt b/xmlsecurity/test_docs/documents/incomplete_path.odt new file mode 100755 index 0000000000000000000000000000000000000000..cb0763b0a124a7f2e34e44d3a4cbf9d83427bc0a GIT binary patch literal 9308 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/invalid_ooo2_x_macro1.odt b/xmlsecurity/test_docs/documents/invalid_ooo2_x_macro1.odt new file mode 100755 index 0000000000000000000000000000000000000000..640a80dced51df8559ad4689e1bed91a1d5c424c GIT binary patch literal 12911 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 QK(K&+Y`|Z{G*3_e2TB3(SO5S3 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/invalid_ooo2_x_macro2.odt b/xmlsecurity/test_docs/documents/invalid_ooo2_x_macro2.odt new file mode 100755 index 0000000000000000000000000000000000000000..35847216be74f93ed39eb9d51df74cd06f396d92 GIT binary patch literal 12929 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 Q2o~^pDj-hFS4an3$_ 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 F{U4h92xR~O literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/invalid_ooo2_x_macro4.odt b/xmlsecurity/test_docs/documents/invalid_ooo2_x_macro4.odt new file mode 100755 index 0000000000000000000000000000000000000000..75a417cab6f7766c9a39808ee4e2ff0eb295539c GIT binary patch literal 13079 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 N1d0YcSx`N{{U4HT6)gY& literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/invalid_ooo2_x_macro5.odt b/xmlsecurity/test_docs/documents/invalid_ooo2_x_macro5.odt new file mode 100755 index 0000000000000000000000000000000000000000..f7d71762fd882a02406350828c9271d8f9dba92c GIT binary patch literal 20336 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 TUw)Bl1rBgye;0@P% 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/invalid_ooo3_2_doc3.odt b/xmlsecurity/test_docs/documents/invalid_ooo3_2_doc3.odt new file mode 100755 index 0000000000000000000000000000000000000000..5ad7b68abbbb0c0e56818a373260ebe0cb59b671 GIT binary patch literal 8908 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 v{L>KgJ}Um5LH};`dv^BI>g)Z^{F+xLEr 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/invalid_ooo_3_2_doc2.odt b/xmlsecurity/test_docs/documents/invalid_ooo_3_2_doc2.odt new file mode 100755 index 0000000000000000000000000000000000000000..dd475c354957c3316c41cccb55758f8a979b3853 GIT binary patch literal 9199 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 GyZ;BuB$yKb literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/ocsp_crl_revoked_leaf.odt b/xmlsecurity/test_docs/documents/ocsp_crl_revoked_leaf.odt new file mode 100755 index 0000000000000000000000000000000000000000..4d7c5cd8094de61ee734168864d8f81ca3e27984 GIT binary patch literal 9447 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 AfdBvi literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/stateOrProvinceName.odt b/xmlsecurity/test_docs/documents/stateOrProvinceName.odt new file mode 100755 index 0000000000000000000000000000000000000000..0979ae5a9d8608e9c3a7b9c5f0a2de21db7db0df GIT binary patch literal 10534 zcma)i1z40#_x_S1As{IsNQ1!A9TL(hjr6j>61&9GEmA5V-5~->3sREO(kUoQBO={h ze=uJBeEq)vZ@6}^*_pZTb0(gLbLJd1MHEy*00093$k!zo2K-jYF6vS+s0GB*+0hgZ zfkBZ|F1$gsR-mGZ;DUCKDtrG?`PmfMPzDogE6J;s#hlA}-3iPjNuil!r0* zXKVBv9mrE~cx`97ssi*hwdDyG#J78NjV5SAv)_xFoZt3xR1+~^_G1X%ZwWp)Be4^g z(f_z6MOpJjYk+G!h^R=(&60h7!Lx|9LVj4gIBkS*=Ex@@@SwZ^qoI()a+@f>@y?b! z;YiOp=&WZ)xp}N-Y$I@NzQ%#CK$}vaSadc)uV3ZW*%(~1cankN8H0q8S>4FV)2JFU4&2clYbq@@voD zoVB9g5o0;6>rj(9)u1mX{wVQ)xuVcs_e`Sy#;N~dsQCeSz-v86oE6QeO7S!OqhrDy zQ8DUwvkB_nlV!-K1kA6Korp(#EzniAXWfWn+dg$LFcT{^#CexX*a~Whzcp=cJLR66 z3aOd+5OY^sv9y0dgbn-dtQ?otf-j8^E!3&lKDvM*sd9eQ8~=0Q5qjLGVVzdP7S0_S@@L)SN6SQao^jsH zs3c{cj!tiClO?^*(M&FBQXJyn*mofF5}AVPD~Lk~KuTZL2m`{F$Ic#EU<~swRLuBc zC6soXB$w~{;)ET9XiVN|4Rg@nw~I{-|JV~p+*e;aLh>;@w_>t!FH5Vv{f&sTSlyFr zQc+Z)$?6a01H3+0T*K6F`n0?Vog2{@rh1HIsQZ=SW?)aJR2rdjWe`3tqNF$7V$44| zLbM555h&QN`m7A`YOyUs#kN?5=l%?vjRkMdVv6l{TPT-(qE&Lei1l?3Zt?I5{Z}Gx ztr+4}=R7!ll~sIF@3%h1BNU33FAjleY}IGkCqbNFv0jNbkKyJsIII&F#?zlsUR(bF zblrA6iWgqflT>ZNjVexp>hsn{G%p1rqr{QjkPR5HzZVfahc8Gv*>V=J`Z6cN$U(>E zAvSsP#{F2ZX_pg4mNx#1IV!E5f0u?3xh->%2)h;r9n|@`cB$-kwcm57WUQsiI2sGn z;D{)y9ZC+;EB3(fbz7gpWsMh4BUK@Z#;p4lcTidK=;e}-MRIfM2V8n(kc#M~znZ7+ zh%h5M9tD{jePbvo&h;AWaZl97!Qe5X)Q9m%7A2_{I4U-ZY?8b- zoRECOqn4A16>UgLV(Nf1*V&$`*+J(#0$7nWjGZ7H^TMs^#`YSFo{d7dVq|EXhyLoLDe%d4vp`B|ia%^9pnblfGaQZGq5~P~J;n z*F~;_);+}#B?BAve(lX4oEhjlWp_*{YG1D4VxtrkJ0kPy;rc>LeorfoP*(wCR!n(R z+AXG#`Z*1QqfWHSM2+L~@U7I0ohV)jj90eeBNggvB(EIl^Uqqk!&yYQspqz4nC3MD zsnRXazGet)3l$Bvr5~0Wvwg`~zBP9*ok)vOE}D)?aQ;3PVWZ{jX+ipJ@)u&I(q+?z z*O;t7SAVSbot_tD&uq8>TxO^9tX@Y8=*WAAs)S8TB*CTtq_)&~cSXAjwHZb})2(KfLr^VR#*c$&8)vKlKcrVmWM;vFp6VR{dC=5r*J+q^v_93ix7Clt047Pb4O zV~a_3q_9p8MW@L*4vI-pFxnOGIgSM}2`%@%EnOO7-F_2T#s6UanSR8`OQSazFTZ

*7Wr$Vw@P*dMk{Z*1yzwZKwLRe_Vjp8T@3t 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_no_revocation.odt b/xmlsecurity/test_docs/documents/valid_no_revocation.odt new file mode 100755 index 0000000000000000000000000000000000000000..f7c9bbf5ed402bd2427a66492c160fc69f74c5db GIT binary patch literal 9341 zcmbVy2V4_d(|72C^o~?1(n$!ti%9RiNQ)srC<&0zktT|OB27ek6-26ZM5=&N6sgh$ z1gX*y1oR7dy?A}R&-cFX!sfSo&dh&i&e^j&b7u53ad4>tfO7yqv%iN7;Fse9=2{7f zu!lQ%dO*-{BmxBnqRH zgETh}q=N?x^?%UwMA-k{Iy4gL^53~w|DYw@72*Ix0k6Q(t`IlWUnZVAckVwX;)GdS z*+@}PT}K6IhlF}!v_zxe4hYO#V9XTqadjCo8;#FaqYC;`3YzFlM_j(z?&zN*X=J1q zqvSjKfk#LxK`Ei>8~=FuNZO;4Ybm#%~sa*C`xR5i9g`1(mIVw^jP4w4ux^YZ)@ zylwFH1ZcODSvyUZOeUzY%6hWr31w2^Tjj-k6Z82pM~>H(^xlQC%rFxQ+MGcRTVcL5 zeXrmptLr;BT01d8{S0?<~=Yo4f#=_)*!FFnM}Y6K{D5H~MB-0sfQ1}7G-RXe(` zbIq-jIppwsCo^{EA$9aPsUL^@ohcmAb&?q33*(Eo1{RlckmQ|$be$0^+%GlBZ61b~ z#Q2Sl^E>C6UywFo5;uuxxY!DQH6ecISb(gX?SMkuxUQ80bju-wqR}CIG4HJ@kq)I1 zfq&WhwBzA$e?wV%R5N=?B=uqolQMp_m@>V094KUd9uP}nx!9I{1pK;QkGz29FZnQ@ zj@3rRT1p+#l$%^GKOZ)k6vfLhIA^*VyG?W0yu&OTYuZx5rd{?@Ly0V+AybUPM69O2 zwRVk2>(tUbS-J9Wkm9wFYkzJz^ilkR44 z$$Z}Ip?ifiAjvR6TGA}zb@+YJS61r}^H;y><$t_dddNaM&Q)y)rc@AVy{pm8%|<)V zb-R6?fio4KB8T3fHr4EYE2!;`k=P8&Bxnu5CS z2+Fz3Lz^xbMWk6kEN$m+?0cvk+oYF;)T6wFxx_SMxSO>uAQQa^Di?0QaiFA4rr27ovKoL*qHH9%X>Q1%lBwk+uqWVI3kNulO3g5SvV9!i~8c z>JM6OHj6KW#Y=ut$Jt?&Gpv)dO2MxZr`j%CaeAQr#!x@jd1~5S&?@m^fYsK*@ZB|D ztMS{`bxciEk0uW_J_wYE8Ia*wU&oF9QWYj&Cy)((A()R{$W?gc+rAk_A3+!Uid_F? zsi^SR%ptFBxgD9U;h$$=E%=KBwy!V7H=1FQVh3q7KQOs}k`MMelo@tE% zp0w{DLd(cviBjwQ7}@M7wrZQkE51b&&;`cfX6I+rMD5Oe7{{khj?zUebc^Nm-RfVS zZ!2Kz6&Zz>wbvtyD@9==Y-k!ewVp5As$2l@(+X$4FpuD|ind1|2! zS~T9a4(h<$pPFQ?sgyuHxzzl1iF4eG#+vD|(#n$^;4?a=Bjq5-f=>-8ce!=AZZZBG z(RY_s7bU3TJ%d+qPVQq*AKFSx6FvrbdFk%y6FV%^+bR-}$Fqu6>KqDhN8g~!N+ZM|~g*{I6Ld?rwU z%B8fm+xnbLwD``is-Ig%FjDg6d(vYqWsr_cF;8v5`eH!uOX6RoZPMw87>+OiHo-dp zFKdDB0?`9mx$~i##18SxqNesb&kFXalXi5_gOs}gbHJTjsy+l4*5$IEh9^DVa&Zzd zkPPR}TDQ2uY8Y+rxH7IdElt2lkBDYG?6+cko^Qg*+EN{qb=NbCxIQ)Q8Wz|3)ozW) z6)$5no&1;vnE<)59sWVGjcXg7#{oGLq&%y0eHNn>=&o=j-?SV?p}5fYFE6{NM+P#A zG+l?fZkSCyozS)MvU2#y&M|HS{P;%ohK!N#k@ch{!A;=?mSQ}W26D4cB(MA5;%;gY z8)qvl_j3?^?{BjyFRhdZWq5*7fkkLjiP^#kY%LBQ={DD=r^uj;|16Sgq9%K9O-CZhXN zu_;$Ak>C#DD$dKvQLz{WFx9&nq={Zlv7m8}73HN*0SxqDo6kj0s>${JN6H+&z2tK% zUaw@luvhL^YV+P>6I9c+#1iw-U4P!6RCoM#-eRt4fxa{hi>s=iz%30KkEgoj{DMh4 zDtwvvb5)2mUB?a2M8$k#?Lz>G;YIpMzAmZuVb7xvvxa!w?((oEVo7;0kwzp?%$85H~j$IP}yD1bQLtgpd#v93_NwgCTzUBSL7H z5BewAk12fJqUgGf4FK?-2LLet04NfH#&|9#6PIVAjT{FNzgRb=XDLg`xilI)tZ6_@ zk5BCAZFbGp)Hsd`@^yn#O6S`#53fn8ID+J3|KO}Y=dPND#l+{_SJgdcB}3p0oszA) zyxF{_E3j`n`#H65kfyA(^@WlUuA$smt-4Uh`418})z4s+Lfah$2GDNTCuMfk=-fdu zL*}QeIo;&^C1y2rIZId*4l>m!=xY}L*7mn^90YC|+9Zh1I62y@YXkgpi47Im1)>E) z&a3-T0$!m{o4Nz$EUnlFtJiYVbSuqsmU??hh=vnD>b3R4?3p}@S|HY*>?ONM=^{JQ z`@L_WhrCZzZH0ALt1TaTV7cUj)elJ67Kaxo0E-8>UcJl8KrR9 z96HIw%w!YET)3D>WpcA>@ z+r&Dtr0jL?y%U*Uv=Jz~>_t_LA}>D`36!6)7%v67xeLG5vGflpwyMmD1RA{>Z;PetnaIh7VL^!OW|8Fxz+EP0!H9vB^t6 z0Bt}gy3uEKjCtMt2(*5zjfDr&m^p_Ac$z5e}hjwrY)U%Eyh5yS|vEgL08wRlZ!TQ)ommp491ZE-eKo;$j_ zVGLvx)KU%B9$+~C1oP?2#9FcM9`)xqzH7)M zC8$Rc!ekO}L?Aj~YgOy_(ME1g(|^Uh!)%jVn`|t6e)L-FYsPCHH-)Z#a(G}fpy1aw zGP}b0sQ!EKlz`yjm;Od$LEGb5r)~Uyjt)UxZ$%aX0FcQG01#nD2Zi=^`4Q+$T1+D6 zYAJ%&Z6J$%jqjeN+Qsh=`}33t`Zcf7F0RS3Iz~Ku|KMs!ZjsOTuPGOmBNDk(pR0fU zAd3rfkQ6!UrBm4XmY>gV!<1xXnJ~^~Q4)&B4~^aMXd(&xegxbiKiZiAt}7>RCAm^k zjNtK$>3>ZUsS19bH)b{~UI443FmkWrg|`f5swEKE~CF3I+z z69Ts;!r#r!K^+UyTHHHLhrkk+>P*j4v%oYe-8|?9ya9B{jaMrvM#JsVuSfgzwBI%q zk{*syxWCuEOyywoCYq!zV0kLVuF)S!8H7;u6rYI?-{2tcZMxsISI!nyS0D2Qx6o|M zX%8$|qhNFH-J?h&FJhL>zJS$L%v(}Z$PGxa)0iZk1JBXA z((Ld79YwLlE&2_z;xA^#4tC-25A~br_BnFA*9d8_3fJR6^TeSAm-$^Lnh{~U(GZR3yaTC$Z=@~RAb^5SX>^?tUuG@+-?H4n-W`Yi1s1s%@SstK!^wbz4VP`syTC3j5GD**2 zr-LBoaBEoFz&!?;*E}v46Yw88tF}l-SJSYEEY)%Pc~jyyXwlQ^PLO_$a#xXNgpA{+ z(>`dGd?fxHs`~t`i6K8eC}Gh!N0zoOnB;b%nCN38vncBCM2RXZ8Y$(eiHFIbAw1<; zQGP8Std)TU5NuLdypDgv7%t6cR+<_vyN4r5HfZm`~XbM$D_ zWC&K|%wL8DE}|SJd9T14BNU_7dQni*2>af;&~nARs2x9`LifS?9sakjRK0709Aw7z zY!~2ErOZhxR&+KTX*0X*BV+;#UG1PTPJSLB;pZ-^SH*9W3N2tbiFCQQq&^&Y@;d~+ ze7`-dqt=5>EX*@P4wNdU?pW8Pq2f&r@t|k;I7ipPm))MeL`-IugnY}pM^pWr;#GQB z7iW^d`8U2&#zZ|g2bZXpET@_nv>S-isR?iXx#CpZIT3q8iaP4q2t?vREbDvj^rzV&_CH-1*y5{z6mLb%Gm;6*~w>|Wj5Qkw0 z3r8$zha|5fw+}(Smt;HG!sD*Z?<`8eX5wvTx7PO-V7hOtKbQ7tH##uWv5Tn2inPHN zI~*J56$Xf&e&CnJ(t5DNh$_@geUb{ULG0UTS>>}{TOxn_cV%I#(bYzmE68N$C*?<$I*sasK0WJU>+P*`W+cz(U$A*& zFsZxb&SE91m%ou3vGcVsCOYxy;v`SM{5&pP)d!V}EFoUnJ;v>0h6GnI1fi0UrNj%* zch_*=$iV=WTn$qF-ln&Aj*r`L`{iK4rw!{RL`%CKo+4AEH@XP>qc;}RrfnGdSHd^F z77g*$uC=Cc9J|5Prtdw3-v>1xeEx2b%ZkA~?Bq@L?*ce#Vr1qF87tnXu$+wkqLkr* zUB%IWyKESDKZsY<(2Y{iu(33+PSF~T+s_hfcv18l3rcygzo(M`Tjnzq3Po_sJvKFXJ^vsPM1*@0)7xW(^Q6 z>0h3%7Pao^4{!-fQCOdOueLHBwQ0?$5OgPkqn0sB&L@SX7`zqA6n&1HnB4U_K`UCSqrjymWJV6Z?Q)-zRr}I)t zyM{BL(3Q006x~xW=*ve4`lycuG4+9YOr+dtqi9lXS^c;^-?+C*Uo^47p<5ZL;^P?k z)(k2jdSFvr=~+#JB_njvG>z)>w=o6kM-OXQO%{L~tWlj4OSBJ!Bi{-ys4kWcGRo2o z5={B#R)vKY>Zs%wGhbDwvoQ)td2wzRJCIGD>3j25TgJ~1`Hy&lQv6EQ5)J@xa-PN$ zFf`=E|Cd$3{IGe!JW!Z@WjS_XArLzo3;{*j!4VE}?8Zhaf|BeC@xC-bt7zc%sUw5Jyk zX=e|{_^U#g8+Q4hb9G{ryzHrIP!HHCs31lam^?-;DM4XjL19TFVR31&q_l{*kc5aV z@DHRv*#DmOldJn<=sDAE&wmSe{}IH!%LyXn6-BCk8apy=OQ-7x#^ zKih==Vt0dhKpZ?EZjL`Ye&Tu~J?wsOgF0fUp_qKeSqD&F)($HDCp)F2L1IF}U|HbL z{vXD{?BHn3!!Bs|S8_#O&jYlEq)2S2@0&|+e5h7r=e|FelawjKa1{48-T*XB>uXw^;>;$DmMaBOT zbA~AU*YhZSGXC;^-~Bynr_DcK2S1`7=0}%rxMKYIBuvzEk|r{8^mM(BfWTc)K=jW` zAvc7>3h@T&(|p|Qbz9pHyE|@#*!|ZS=;;|GlY)!*I`QO)iM2ML?;M$vE6Ht5V^NzlMsB58PqQ9 zQ~$ND2&LhO{oB6Nj^aygMmzwZiS0*VhJv9_=IJ!cQe~l!8j~asY_f^nl)1$@vD?at zCgv3+Ata8mFG03iU#2r(iTw!p{>?=Eqd}RWQxW&2>dL29Yk`Mr(jytev6B8+c~V`B z>qkm$GB^yjujXev{8RUwg8Vbaf-L6(-rzXiqUWSgGaRrb7JTPWX|-&!_q9Va!R6wB zWesQ4KYb$HZCWQk2&uA^>r+qY`vnDSZEsEufgcLF@2H%#Jlq@fePxb@m zQ-RUO4~hey5>eRDjFOB(3}AHkR4USs*V0_c4m!l>to=WQryZ=V6o;4vnFgC0TkJdDOsdwH(`c=yV&iR+4J?9m*_ITQ1_7IftIT7X=J8GH?Hzn z!fQLpBXi$A>Qjv>RTe05XK209s$?@yU|JvEf5kO=+ecwSrcgYReZ+ZOvXLh!UOB{j z^vK8D+DS3aQv5>R{lWvS%k%I!jbiCM!>qaN)v_mFKB;HRI1;NUKQiraQy|abRUad( z;3^z&b8Hq*N)n3Xj5{2)e6T}0i-Ii$EIwp8Ph5CZks+ax-dM`b#s(taqn6`w-$@Ne zLh=@OX`gJ-=_$)L-nJ*BY$rDUIL-SwkUl!;dVCUIB{b4d1u}_uk*WFkj$8j-GvdO0 zP;#*PUd4+@(9(*GUjInyYkhW{_*{ASOdc@@;zazGK<$Dn-+~J!p-kX-Q&w+b8=W0N z`OKwf?>UJOG}lNRzAtAnmEVeLNGqe;Pj_$6S|u73O2~bUt-x9vrT@}Sk>Bm^F^?FTqBg`eojNK!4&)Q2pjwHO>)#nK@pkmToJFCx$O!R(#&X}hj9T+4kw>6+`pxNSRV-d5Gk5IFA73dJ=P5*$W4pfg zpBEw2;Mc7D1`I7v0WGdzrG(T@zG+I+^KOhuXr#I+OymBI<#D=NQ{z?)(XHL295ogk zF??E!8_#L_-dGYSwIJT$@V9@gn-B5pL zFhrGt{yf9p1@>E%omtBiN?Wd9UU5Bty@_f(Oe_2VkF`GWs;tvhB0bK%1&w$s1!gMP zJu>C=VyW}zrR#wNmNGcvPNAU=*WRVRyfT(CcCbgCZI-ZXe7*^PkgTzMBg0EQ&dL=29p$9f;Ox-)1ImAtE&Krc zS-9|PM(3Yk5g4%lPZ`76Q}pK~(3xhDm}uf}u)jA?F`oSy#Gf-7XAmbli$C)lXIy_y zU7T@gW4NGaiHzSFf8Wsb&foVu&p5+Lf87B+i97&+9P`J93jnCHo!tFDnQ&09 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_no_root_revocation_info.odt b/xmlsecurity/test_docs/documents/valid_no_root_revocation_info.odt new file mode 100755 index 0000000000000000000000000000000000000000..d26eb58f025c5c1a496a5dae63f19d1627f57243 GIT binary patch literal 9349 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_no_sub_ca_revocation_info.odt b/xmlsecurity/test_docs/documents/valid_no_sub_ca_revocation_info.odt new file mode 100755 index 0000000000000000000000000000000000000000..5d6c053c2b7c47597f9ed12afcf8822519a382b2 GIT binary patch literal 9352 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_ooo2_x_doc_macro.odt b/xmlsecurity/test_docs/documents/valid_ooo2_x_doc_macro.odt new file mode 100755 index 0000000000000000000000000000000000000000..09b63b40a3e04c2654b8137e4d1ef387cbb01aae GIT binary patch literal 12425 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 z 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 M#GU<4_3-Kc0W4FitN;K2 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_ooo3_0_doc1.odt b/xmlsecurity/test_docs/documents/valid_ooo3_0_doc1.odt new file mode 100755 index 0000000000000000000000000000000000000000..6c2bbd045a0e7da7f7e286680716ae556776194b GIT binary patch literal 12565 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_ooo3_0_doc_macro.odt b/xmlsecurity/test_docs/documents/valid_ooo3_0_doc_macro.odt new file mode 100755 index 0000000000000000000000000000000000000000..b8b036cc8fa77e0ce775f60c57b358bc20c43104 GIT binary patch literal 15656 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 J+wj~x{U4i&kP`p^ literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_ooo3_0_doc_unsigned_macro.odt b/xmlsecurity/test_docs/documents/valid_ooo3_0_doc_unsigned_macro.odt new file mode 100755 index 0000000000000000000000000000000000000000..6ba0ec52a9b7f4bdbc97a5b2afd0cce20527ee96 GIT binary patch literal 13975 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_ooo3_2_doc_macro.odt b/xmlsecurity/test_docs/documents/valid_ooo3_2_doc_macro.odt new file mode 100755 index 0000000000000000000000000000000000000000..f6575ec8857823fb88852aa5c0525317f835a91a GIT binary patch literal 15579 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 PBJfWR*is>4yM6jUXzn^L literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/documents/valid_ooo3_2_doc_unsigned_macro.odt b/xmlsecurity/test_docs/documents/valid_ooo3_2_doc_unsigned_macro.odt new file mode 100755 index 0000000000000000000000000000000000000000..41f676f6376e7cbc5d61dee4750509420d8cff02 GIT binary patch literal 13929 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/tools/README.txt b/xmlsecurity/test_docs/tools/README.txt new file mode 100755 index 000000000000..dd1431b7cf64 --- /dev/null +++ b/xmlsecurity/test_docs/tools/README.txt @@ -0,0 +1,23 @@ +httpserv +============ +Simple http server for testing of Certificate Revocation Lists (CRL). + +Netbeans 6.7.1 project. httpserv.jar requires java 6. + +Run with + +java -jar httpserv/dist/httpserv.jar --accept portnumber + +portnumber: an arbitrary port number to which the server should listen. + +httpserv looks for the requested file relativ to the current directory. For +example, you are in a directory which contains the index.html. From there +you run httpserv.jar: + +java -jar /httpserv.jar --accept 8000 + +now enter in the Browser: + +localhost:8000/index.html + + diff --git a/xmlsecurity/test_docs/tools/httpserv/build.xml b/xmlsecurity/test_docs/tools/httpserv/build.xml new file mode 100755 index 000000000000..831e963bce65 --- /dev/null +++ b/xmlsecurity/test_docs/tools/httpserv/build.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + Builds, tests, and runs the project httpserv. + + + diff --git a/xmlsecurity/test_docs/tools/httpserv/dist/README.TXT b/xmlsecurity/test_docs/tools/httpserv/dist/README.TXT new file mode 100755 index 000000000000..28db189bb94d --- /dev/null +++ b/xmlsecurity/test_docs/tools/httpserv/dist/README.TXT @@ -0,0 +1,33 @@ +======================== +BUILD OUTPUT DESCRIPTION +======================== + +When you build an Java application project that has a main class, the IDE +automatically copies all of the JAR +files on the projects classpath to your projects dist/lib folder. The IDE +also adds each of the JAR files to the Class-Path element in the application +JAR files manifest file (MANIFEST.MF). + +To run the project from the command line, go to the dist folder and +type the following: + +java -jar "httpserv.jar" + +To distribute this project, zip up the dist folder (including the lib folder) +and distribute the ZIP file. + +Notes: + +* If two JAR files on the project classpath have the same name, only the first +JAR file is copied to the lib folder. +* Only JAR files are copied to the lib folder. +If the classpath contains other types of files or folders, none of the +classpath elements are copied to the lib folder. In such a case, +you need to copy the classpath elements to the lib folder manually after the build. +* If a library on the projects classpath also has a Class-Path element +specified in the manifest,the content of the Class-Path element has to be on +the projects runtime path. +* To set a main class in a standard Java project, right-click the project node +in the Projects window and choose Properties. Then click Run and enter the +class name in the Main Class field. Alternatively, you can manually type the +class name in the manifest Main-Class element. diff --git a/xmlsecurity/test_docs/tools/httpserv/dist/httpserv.jar b/xmlsecurity/test_docs/tools/httpserv/dist/httpserv.jar new file mode 100755 index 0000000000000000000000000000000000000000..b80b60978dc0cab0be3412bf0b1a8fa2bb161f86 GIT binary patch literal 6994 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 literal 0 HcmV?d00001 diff --git a/xmlsecurity/test_docs/tools/httpserv/manifest.mf b/xmlsecurity/test_docs/tools/httpserv/manifest.mf new file mode 100755 index 000000000000..328e8e5bc3b7 --- /dev/null +++ b/xmlsecurity/test_docs/tools/httpserv/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/xmlsecurity/test_docs/tools/httpserv/nbproject/build-impl.xml b/xmlsecurity/test_docs/tools/httpserv/nbproject/build-impl.xml new file mode 100755 index 000000000000..9064a3305e2d --- /dev/null +++ b/xmlsecurity/test_docs/tools/httpserv/nbproject/build-impl.xml @@ -0,0 +1,700 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + + + + + + java -cp "${run.classpath.with.dist.jar}" ${main.class} + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + diff --git a/xmlsecurity/test_docs/tools/httpserv/nbproject/genfiles.properties b/xmlsecurity/test_docs/tools/httpserv/nbproject/genfiles.properties new file mode 100755 index 000000000000..562eec670951 --- /dev/null +++ b/xmlsecurity/test_docs/tools/httpserv/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8071b819 +build.xml.script.CRC32=deb21e95 +build.xml.stylesheet.CRC32=958a1d3e@1.26.2.45 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8071b819 +nbproject/build-impl.xml.script.CRC32=21d1be7e +nbproject/build-impl.xml.stylesheet.CRC32=5c621a33@1.26.2.45 diff --git a/xmlsecurity/test_docs/tools/httpserv/nbproject/project.properties b/xmlsecurity/test_docs/tools/httpserv/nbproject/project.properties new file mode 100755 index 000000000000..9addce600715 --- /dev/null +++ b/xmlsecurity/test_docs/tools/httpserv/nbproject/project.properties @@ -0,0 +1,64 @@ +application.title=httpserv +application.vendor=jochen +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/httpserv.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.source=1.5 +javac.target=1.5 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir}:\ + ${libs.junit.classpath}:\ + ${libs.junit_4.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=httpserv.Main +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project +# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value +# or test-sys-prop.name=value to set system properties for unit tests): +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/xmlsecurity/test_docs/tools/httpserv/nbproject/project.xml b/xmlsecurity/test_docs/tools/httpserv/nbproject/project.xml new file mode 100755 index 000000000000..6fc771ca7669 --- /dev/null +++ b/xmlsecurity/test_docs/tools/httpserv/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + httpserv + + + + + + + + + diff --git a/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java b/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java new file mode 100755 index 000000000000..c67e41549c5f --- /dev/null +++ b/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java @@ -0,0 +1,213 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: WeakReference.java,v $ + * $Revision: 1.3 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +package httpserv; + +import com.sun.net.httpserver.Headers; +import com.sun.net.httpserver.HttpExchange; +import com.sun.net.httpserver.HttpHandler; +import com.sun.net.httpserver.HttpServer; +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.OutputStream; +import java.net.InetSocketAddress; + +/** + * + * @author jochen + */ +public class Main { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + try { + + Option[] opts = new Option[2]; + opts[0] = new Option("--help", "-h", false); + opts[1] = new Option("--accept", "-a", true); + if (!parseOptions(args, opts)) { + return; + } + HttpServer server = HttpServer.create( + new InetSocketAddress((Integer) opts[1].value), 0); + server.createContext("/", new MyHandler()); + server.setExecutor(null); + server.start(); + } catch (Exception e) { + e.printStackTrace(); + } + } // TODO code application logic here + + static boolean parseOptions(String[] args, Option[] inout_options) { + if (args.length == 0) { + printUsage(); + return false; + } + + boolean bWrongArgs = true; + Option currentOpt = null; + + for (String s : args) { + // get the value for an option + if (currentOpt != null && currentOpt.bHasValue) { + //now we expect the value for the option + //check the type + try { + if (currentOpt.sLong.equals("--accept")) { + currentOpt.value = Integer.decode(s); + } + } catch (Exception e ) { + printUsage(); + return false; + } + currentOpt = null; + continue; + } else { + currentOpt = null; + } + + + // get the option + for (Option o : inout_options) { + if (s.equals(o.sLong) || s.equals(o.sShort)) { + bWrongArgs = false; + //special handling for --help + if (o.sLong.equals("--help")) { + printUsage(); + return false; + } + else + { + currentOpt = o; + if (!o.bHasValue) { + o.bSet = true; + } + break; + } + } + } + } + + if (bWrongArgs) { + printUsage(); + return false; + } + return true; + } + + static void printUsage() { + String usage = new String( + "Usage: \n" + + "java -jar httpserv [options] \n" + + "\n" + + "Options are: \n" + + "-h --help \t this help \n" + + "-a --accept port \t the port number to which this server listens \n"); + System.out.println(usage); + } +} + +class MyHandler implements HttpHandler { + + public void handle(HttpExchange xchange) throws IOException { + try { + //First get the path to the file + File fileCurrent = new File("."); + String sRequestPath = xchange.getRequestURI().getPath(); + System.out.println("requested: " + sRequestPath); + File fileRequest = new File(new File(".").getCanonicalPath(), sRequestPath); + if (!fileRequest.exists()) { + throw new Exception("The file " + fileRequest.toString() + " does not exist!\n"); + } + else if (fileRequest.isDirectory()) { + throw new Exception(fileRequest.toString() + " is a directory!\n"); + } + + + //Read the file into a byte array + byte[] data = new byte[(int) fileRequest.length()]; + FileInputStream fr = new FileInputStream(fileRequest); + int count = fr.read(data); + + //set the Content-type header + Headers h = xchange.getResponseHeaders(); + String canonicalPath = fileRequest.getCanonicalPath(); + int lastIndex = canonicalPath.lastIndexOf("."); + String fileExtension = canonicalPath.substring(lastIndex + 1); + + if (fileExtension.equalsIgnoreCase("crl")) + { + //h.set("Content-Type","application/x-pkcs7-crl"); + h.set("Content-Type","application/pkix-crl"); + } + else if (fileExtension.equalsIgnoreCase("crt") + || fileExtension.equalsIgnoreCase("cer") + || fileExtension.equalsIgnoreCase("der")) + { + h.set("Content-Type", "application/x-x509-ca-cert"); + } + + //write out the requested file + xchange.sendResponseHeaders(200, data.length); + OutputStream os = xchange.getResponseBody(); + os.write(data); + os.close(); + System.out.println("delivered: " + fileRequest.toString()); + + } catch (Exception e) { + xchange.sendResponseHeaders(404, e.getMessage().length()); + OutputStream os = xchange.getResponseBody(); + os.write(e.getMessage().getBytes()); + os.close(); + System.out.println("Error: " + e.getMessage()); + } + } +} + +class Option { + + Option(String _sLong, String _sShort, boolean _bHasValue) { + sLong = _sLong; + sShort = _sShort; + bHasValue = _bHasValue; + } + String sLong; + String sShort; + boolean bHasValue; + Object value; + //indicates if this option was set if it does not need a value. Otherwise value + //is set. + boolean bSet; +} + + From 0de12dba1aa5a192e594a495c84c8b90c96c892b Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Tue, 19 Jan 2010 17:27:28 +0100 Subject: [PATCH 38/45] #i107450#: some problems with the dialog factory --- cui/source/factory/dlgfact.cxx | 1 - cui/source/factory/dlgfact.hxx | 1 - 2 files changed, 2 deletions(-) diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 083a7d1d0936..6f313e2e2e2b 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -1955,4 +1955,3 @@ SvxAbstractInsRowColDlg* AbstractDialogFactory_Impl::CreateSvxInsRowColDlg( Wind { return new SvxInsRowColDlg( pParent, bCol, nHelpId ); } - diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index daa6cbc9ac0b..c4404568cea1 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -596,7 +596,6 @@ private: //AbstractDialogFactory_Impl implementations class AbstractDialogFactory_Impl : public SvxAbstractDialogFactory { - public: virtual VclAbstractDialog* CreateVclDialog( Window* pParent, sal_uInt32 nResId ); virtual VclAbstractDialog* CreateSfxDialog( Window* pParent, const SfxBindings& rBindings, sal_uInt32 nResId ); From 562dc041353f48d8aeb7106f1babeae81cd35ad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bosdonnat?= Date: Thu, 21 Jan 2010 13:58:49 +0100 Subject: [PATCH 39/45] cbosdo01: Changed the behaviour of nbsp autocorr * The Non-breaking space insertion autocorrection is now done when typing the :!?; character instead of the word separator following it. * Removed the custom quote replacement option in autocorrection. --- cui/source/inc/autocdlg.hxx | 1 - cui/source/tabpages/autocdlg.cxx | 12 ------------ cui/source/tabpages/autocdlg.src | 6 +----- 3 files changed, 1 insertion(+), 18 deletions(-) diff --git a/cui/source/inc/autocdlg.hxx b/cui/source/inc/autocdlg.hxx index 110848ad75b7..a1c7c89adba3 100644 --- a/cui/source/inc/autocdlg.hxx +++ b/cui/source/inc/autocdlg.hxx @@ -151,7 +151,6 @@ class OfaSwAutoFmtOptionsPage : public SfxTabPage String sUseReplaceTbl; String sCptlSttWord; String sCptlSttSent; - String sTypo; String sUserStyle; String sBullet; String sByInputBullet; diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index 1f5ab972965f..3c7516f60e99 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -456,7 +456,6 @@ enum OfaAutoFmtOptions DEL_EMPTY_NODE, REPLACE_USER_COLL, REPLACE_BULLETS, - REPLACE_QUOTATION, MERGE_SINGLE_LINE_PARA }; @@ -473,7 +472,6 @@ OfaSwAutoFmtOptionsPage::OfaSwAutoFmtOptionsPage( Window* pParent, sUseReplaceTbl (CUI_RES( ST_USE_REPLACE )), sCptlSttWord (CUI_RES( ST_CPTL_STT_WORD)), sCptlSttSent (CUI_RES( ST_CPTL_STT_SENT)), - sTypo (CUI_RES( ST_TYPO )), sUserStyle (CUI_RES( ST_USER_STYLE )), sBullet (CUI_RES( ST_BULLET )), sBoldUnder (CUI_RES( ST_BOLD_UNDER )), @@ -497,10 +495,6 @@ OfaSwAutoFmtOptionsPage::OfaSwAutoFmtOptionsPage( Window* pParent, //typ. Anfuehrungszeichen einsetzen SvtSysLocale aSysLcl; const LocaleDataWrapper& rLcl = aSysLcl.GetLocaleData(); - sTypo.SearchAndReplace( String::CreateFromAscii("%1"), - rLcl.getDoubleQuotationMarkStart()); - sTypo.SearchAndReplace( String::CreateFromAscii("%2"), - rLcl.getDoubleQuotationMarkEnd()); aCheckLB.SetHelpId(HID_OFAPAGE_AUTOFORMAT_CLB); aCheckLB.SetWindowBits(WB_HSCROLL| WB_VSCROLL); @@ -626,10 +620,6 @@ BOOL OfaSwAutoFmtOptionsPage::FillItemSet( SfxItemSet& ) bModified |= pOpt->bDelEmptyNode != bCheck; pOpt->bDelEmptyNode = bCheck; - bCheck = aCheckLB.IsChecked(REPLACE_QUOTATION, CBCOL_FIRST); - bModified |= pOpt->bReplaceQuote != bCheck; - pOpt->bReplaceQuote = bCheck; - bCheck = aCheckLB.IsChecked(REPLACE_USER_COLL, CBCOL_FIRST); bModified |= pOpt->bChgUserColl != bCheck; pOpt->bChgUserColl = bCheck; @@ -740,7 +730,6 @@ void OfaSwAutoFmtOptionsPage::Reset( const SfxItemSet& ) aCheckLB.GetModel()->Insert(CreateEntry(sDeleteEmptyPara, CBCOL_FIRST )); aCheckLB.GetModel()->Insert(CreateEntry(sUserStyle, CBCOL_FIRST )); aCheckLB.GetModel()->Insert(CreateEntry(sBullet, CBCOL_FIRST )); - aCheckLB.GetModel()->Insert(CreateEntry(sTypo, CBCOL_FIRST )); aCheckLB.GetModel()->Insert(CreateEntry(sRightMargin, CBCOL_FIRST )); aCheckLB.CheckEntryPos( USE_REPLACE_TABLE, CBCOL_FIRST, pOpt->bAutoCorrect ); @@ -761,7 +750,6 @@ void OfaSwAutoFmtOptionsPage::Reset( const SfxItemSet& ) aCheckLB.CheckEntryPos( DEL_SPACES_BETWEEN_LINES, CBCOL_FIRST, pOpt->bAFmtDelSpacesBetweenLines ); aCheckLB.CheckEntryPos( DEL_SPACES_BETWEEN_LINES, CBCOL_SECOND, pOpt->bAFmtByInpDelSpacesBetweenLines ); aCheckLB.CheckEntryPos( DEL_EMPTY_NODE, CBCOL_FIRST, pOpt->bDelEmptyNode ); - aCheckLB.CheckEntryPos( REPLACE_QUOTATION, CBCOL_FIRST, pOpt->bReplaceQuote ); aCheckLB.CheckEntryPos( REPLACE_USER_COLL, CBCOL_FIRST, pOpt->bChgUserColl ); aCheckLB.CheckEntryPos( REPLACE_BULLETS, CBCOL_FIRST, pOpt->bChgEnumNum ); diff --git a/cui/source/tabpages/autocdlg.src b/cui/source/tabpages/autocdlg.src index 01e3c2223ba9..77148ae6b1b3 100644 --- a/cui/source/tabpages/autocdlg.src +++ b/cui/source/tabpages/autocdlg.src @@ -207,10 +207,6 @@ TabPage RID_OFAPAGE_AUTOFMT_APPLY /* ### ACHTUNG: Neuer Text in Resource? Leere Absätze entfernen : Leere Absõtze entfernen */ Text [ en-US ] = "Remove blank paragraphs" ; }; - String ST_TYPO - { - Text [ en-US ] = "Replace \"standard\" quotes with %1custom%2 quotes" ; - }; String ST_USER_STYLE { Text [ en-US ] = "Replace Custom Styles" ; @@ -508,7 +504,7 @@ TabPage RID_OFAPAGE_AUTOCORR_QUOTE }; String ST_ORDINAL { - Text [ en-US ] = "Format ordinal numbers suffixes" ; + Text [ en-US ] = "Format ordinal numbers suffixes (1st -> 1^st)" ; }; FixedLine FL_SINGLE { From b6e7012e3348657b2f7d9fcfc3f39492bc9a6baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Fri, 22 Jan 2010 14:26:33 +0000 Subject: [PATCH 40/45] cmcfixes71: #i108577#: fix automation strict aliasing warnings --- automation/source/simplecm/simplecm.cxx | 4 ++-- automation/source/testtool/objtest.cxx | 12 ++++++++---- automation/source/testtool/objtest.hxx | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/automation/source/simplecm/simplecm.cxx b/automation/source/simplecm/simplecm.cxx index 6813b4c9b2c7..0552374fde49 100644 --- a/automation/source/simplecm/simplecm.cxx +++ b/automation/source/simplecm/simplecm.cxx @@ -279,9 +279,9 @@ SvStream* SimpleCommunicationLinkViaSocket::GetBestCommunicationStream() BOOL SimpleCommunicationLinkViaSocket::DoReceiveDataStream() { BOOL bWasError = FALSE; - char* pBuffer = NULL; + void* pBuffer = NULL; comm_UINT32 nLen; - bWasError = pPacketHandler->ReceiveData( (void* &)pBuffer, nLen ) != C_ERROR_NONE; + bWasError = pPacketHandler->ReceiveData( pBuffer, nLen ) != C_ERROR_NONE; if ( !bWasError ) { pReceiveStream = GetBestCommunicationStream(); diff --git a/automation/source/testtool/objtest.cxx b/automation/source/testtool/objtest.cxx index 84dc21a1321a..c45f075fdba3 100644 --- a/automation/source/testtool/objtest.cxx +++ b/automation/source/testtool/objtest.cxx @@ -886,7 +886,8 @@ void TestToolObj::ReadNames( String Filename, CNames *&pNames, CNames *&pUIds, B if ( !pUIds ) return; pNewDef = new ControlDef("Active",SmartId(0)); - if (! pUIds->C40_PTR_INSERT(ControlItem, (ControlItem*&)pNewDef)) + const ControlItem *pItem = pNewDef; + if (! pUIds->Insert(pItem)) { ADD_WARNING_LOG2( GEN_RES_STR1c( S_DOUBLE_NAME, "Active" ), Filename, nLineNr ); delete pNewDef; @@ -993,7 +994,8 @@ void TestToolObj::ReadNames( String Filename, CNames *&pNames, CNames *&pUIds, B OldTree = (ControlDef*)pNames->GetObject(nElement); pNewDef = new ControlDef(aLongname,aShortname,OldTree,TRUE); - if (! pNames->C40_PTR_INSERT(ControlItem, (ControlItem*&)pNewDef)) + const ControlItem *pItem = pNewDef; + if (! pNames->Insert(pItem)) { ADD_WARNING_LOG2( GEN_RES_STR1( S_DOUBLE_NAME, aLine ), Filename, nLineNr ); delete pNewDef; @@ -1060,7 +1062,8 @@ void TestToolObj::ReadNames( String Filename, CNames *&pNames, CNames *&pUIds, B } } - if (! pNames->C40_PTR_INSERT(ControlItem, (ControlItem*&)pNewDef)) + const ControlItem *pItem = pNewDef; + if (! pNames->Insert(pItem)) { ADD_WARNING_LOG2( GEN_RES_STR1( S_DOUBLE_NAME, aLine ), Filename, nLineNr ); delete pNewDef; @@ -1535,7 +1538,8 @@ BOOL TestToolObj::ReadNamesBin( String Filename, CNames *&pSIds, CNames *&pContr } } - if (! pNames->C40_PTR_INSERT(ControlItem, (ControlItem*&)pNewDef)) + const ControlItem *pItem = pNewDef; + if (! pNames->Insert(pItem)) { DBG_ERROR(" !!!! ACHTUNG !!!! Fehler beim einf�gen eines namens!"); delete pNewDef; diff --git a/automation/source/testtool/objtest.hxx b/automation/source/testtool/objtest.hxx index 260d54c0cef0..4727ca469d4d 100644 --- a/automation/source/testtool/objtest.hxx +++ b/automation/source/testtool/objtest.hxx @@ -139,7 +139,7 @@ DBG_DTOR(ControlItem,0); SV_DECL_PTRARR_SORT_DEL(CNames, ControlItem*, 50, 10) #define MK_SON_ACCESS( ClassName )\ - BOOL SonInsert( const ClassName *pNewEntry ) { return pSons->C40_PTR_INSERT( ControlItem, (ControlItem*&)pNewEntry ); }\ + BOOL SonInsert( const ClassName *pNewEntry ) { const ControlItem *pItem = pNewEntry; return pSons->Insert( pItem ); }\ BOOL SonSeek_Entry( const ClassName *pSearchEntry, USHORT *nRes = NULL) { return pSons->Seek_Entry( pSearchEntry, nRes ); }\ ClassName* SonGetObject( USHORT nNr ) { return (ClassName*)pSons->GetObject( nNr ); } From f898e1170f4567e79d1e82cebd670c8d9152e59c Mon Sep 17 00:00:00 2001 From: Dirk Voelzke Date: Mon, 25 Jan 2010 07:08:21 +0100 Subject: [PATCH 41/45] dv17: #i70994#: Proprty handler should work with 64bit, too --- .../source/win32/customactions/reg64/reg64.cxx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/setup_native/source/win32/customactions/reg64/reg64.cxx b/setup_native/source/win32/customactions/reg64/reg64.cxx index ffa225791ead..37dbb8276627 100755 --- a/setup_native/source/win32/customactions/reg64/reg64.cxx +++ b/setup_native/source/win32/customactions/reg64/reg64.cxx @@ -368,13 +368,13 @@ bool DoRegEntries( MSIHANDLE& rhMSI, OPERATION op, MSIHANDLE& rhView) case(-1): if (isInstall4AllUsers) { - key = HKEY_CURRENT_USER; - OutputDebugStringFormat(L"HKEY_CURRENT_USER" ); + key = HKEY_LOCAL_MACHINE; + OutputDebugStringFormat(L"HKEY_LOCAL_MACHINE" ); } else { - key = HKEY_LOCAL_MACHINE; - OutputDebugStringFormat(L"HKEY_LOCAL_MACHINE" ); + key = HKEY_CURRENT_USER; + OutputDebugStringFormat(L"HKEY_CURRENT_USER" ); } break; case(0): @@ -393,7 +393,9 @@ bool DoRegEntries( MSIHANDLE& rhMSI, OPERATION op, MSIHANDLE& rhView) key = HKEY_USERS; OutputDebugStringFormat(L"HKEY_USERS" ); break; - + default: + OutputDebugStringFormat(L"Unknown Root!" ); + break; } OutputDebugStringFormat(L"Key:"); From 83d2f8dc6a59c447d69d08745f28fac0c6172d77 Mon Sep 17 00:00:00 2001 From: mb93783 Date: Wed, 27 Jan 2010 14:04:30 +0100 Subject: [PATCH 42/45] fixed warning on Linux --- cui/source/tabpages/autocdlg.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index 3c7516f60e99..a74e20edefd7 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -494,7 +494,6 @@ OfaSwAutoFmtOptionsPage::OfaSwAutoFmtOptionsPage( Window* pParent, //typ. Anfuehrungszeichen einsetzen SvtSysLocale aSysLcl; - const LocaleDataWrapper& rLcl = aSysLcl.GetLocaleData(); aCheckLB.SetHelpId(HID_OFAPAGE_AUTOFORMAT_CLB); aCheckLB.SetWindowBits(WB_HSCROLL| WB_VSCROLL); From 91bd9fc237e864eceefd41b4cbfab94a1b6379e3 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Tue, 2 Feb 2010 23:59:20 +0100 Subject: [PATCH 43/45] #i107450#: some fixes for problems found in CAT0 test --- wizards/com/sun/star/wizards/letter/LocaleCodes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wizards/com/sun/star/wizards/letter/LocaleCodes.java b/wizards/com/sun/star/wizards/letter/LocaleCodes.java index 8e1ddfb34498..3dcf7523d8e7 100644 --- a/wizards/com/sun/star/wizards/letter/LocaleCodes.java +++ b/wizards/com/sun/star/wizards/letter/LocaleCodes.java @@ -45,7 +45,7 @@ public class LocaleCodes extends Resource public LocaleCodes(XMultiServiceFactory xmsf) { super(xmsf, UNIT_NAME, MODULE_NAME); - allLanguageStrings = getStringList(16300); // STR_ARR_SVT_LANGUAGE_TABLE from svtools/source/misc/langtab.src + allLanguageStrings = getStringList(16750); // STR_ARR_SVT_LANGUAGE_TABLE from svtools/source/misc/langtab.src } public String getLanguageString(String MSID) From 36de66bdf066b984ff15995035d2fa86d7123b42 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Fri, 12 Feb 2010 15:01:35 +0100 Subject: [PATCH 44/45] changefileheader2: #i109125#: change source file copyright notice from Sun Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision) --- UnoControls/inc/basecontainercontrol.hxx | 5 +- UnoControls/inc/basecontrol.hxx | 5 +- UnoControls/inc/definesunocontrols.hxx | 5 +- UnoControls/inc/multiplexer.hxx | 5 +- .../source/base/basecontainercontrol.cxx | 5 +- UnoControls/source/base/basecontrol.cxx | 5 +- UnoControls/source/base/makefile.mk | 6 +- UnoControls/source/base/multiplexer.cxx | 5 +- UnoControls/source/base/registercontrols.cxx | 5 +- .../OConnectionPointContainerHelper.cxx | 5 +- .../controls/OConnectionPointHelper.cxx | 5 +- UnoControls/source/controls/framecontrol.cxx | 5 +- UnoControls/source/controls/makefile.mk | 6 +- UnoControls/source/controls/progressbar.cxx | 5 +- .../source/controls/progressmonitor.cxx | 5 +- .../source/controls/statusindicator.cxx | 5 +- .../inc/OConnectionPointContainerHelper.hxx | 5 +- .../source/inc/OConnectionPointHelper.hxx | 5 +- UnoControls/source/inc/framecontrol.hxx | 5 +- UnoControls/source/inc/progressbar.hxx | 5 +- UnoControls/source/inc/progressmonitor.hxx | 5 +- UnoControls/source/inc/statusindicator.hxx | 5 +- UnoControls/util/makefile.mk | 6 +- UnoControls/util/makefile.pmk | 6 +- UnoControls/util/target.pmk | 6 +- .../accessibility/AccessBridge.java | 5 +- .../openoffice/accessibility/KeyHandler.java | 5 +- .../openoffice/accessibility/PopupWindow.java | 5 +- .../WindowsAccessBridgeAdapter.java | 5 +- .../org/openoffice/accessibility/makefile.mk | 6 +- .../java/accessibility/AbstractButton.java | 5 +- .../accessibility/AccessibleActionImpl.java | 5 +- .../AccessibleComponentImpl.java | 5 +- .../AccessibleEditableTextImpl.java | 5 +- .../AccessibleExtendedState.java | 5 +- .../AccessibleHypertextImpl.java | 5 +- .../accessibility/AccessibleIconImpl.java | 5 +- .../accessibility/AccessibleKeyBinding.java | 5 +- .../AccessibleObjectFactory.java | 5 +- .../AccessibleRelationAdapter.java | 5 +- .../accessibility/AccessibleRoleAdapter.java | 5 +- .../AccessibleSelectionImpl.java | 5 +- .../accessibility/AccessibleStateAdapter.java | 5 +- .../accessibility/AccessibleTextImpl.java | 5 +- .../accessibility/AccessibleValueImpl.java | 5 +- .../openoffice/java/accessibility/Alert.java | 5 +- .../java/accessibility/Application.java | 5 +- .../openoffice/java/accessibility/Button.java | 5 +- .../java/accessibility/CheckBox.java | 5 +- .../java/accessibility/ComboBox.java | 5 +- .../java/accessibility/Component.java | 5 +- .../java/accessibility/Container.java | 5 +- .../java/accessibility/DescendantManager.java | 5 +- .../openoffice/java/accessibility/Dialog.java | 5 +- .../accessibility/FocusTraversalPolicy.java | 5 +- .../openoffice/java/accessibility/Frame.java | 5 +- .../openoffice/java/accessibility/Icon.java | 5 +- .../openoffice/java/accessibility/Label.java | 5 +- .../openoffice/java/accessibility/List.java | 5 +- .../openoffice/java/accessibility/Menu.java | 5 +- .../java/accessibility/MenuContainer.java | 5 +- .../java/accessibility/MenuItem.java | 5 +- .../java/accessibility/NativeFrame.java | 5 +- .../java/accessibility/Paragraph.java | 5 +- .../java/accessibility/RadioButton.java | 5 +- .../java/accessibility/ScrollBar.java | 5 +- .../java/accessibility/Separator.java | 5 +- .../openoffice/java/accessibility/Table.java | 5 +- .../java/accessibility/TextComponent.java | 5 +- .../java/accessibility/ToggleButton.java | 5 +- .../java/accessibility/ToolTip.java | 5 +- .../openoffice/java/accessibility/Tree.java | 5 +- .../openoffice/java/accessibility/Window.java | 5 +- .../logging/XAccessibleEventLog.java | 5 +- .../logging/XAccessibleHypertextLog.java | 5 +- .../logging/XAccessibleTextLog.java | 5 +- .../openoffice/java/accessibility/makefile.mk | 6 +- .../java/WindowsAccessBridgeAdapter.cxx | 5 +- accessibility/bridge/source/java/makefile.mk | 6 +- .../extended/AccessibleBrowseBox.hxx | 5 +- .../extended/AccessibleBrowseBoxBase.hxx | 5 +- .../AccessibleBrowseBoxCheckBoxCell.hxx | 5 +- .../extended/AccessibleBrowseBoxHeaderBar.hxx | 5 +- .../AccessibleBrowseBoxHeaderCell.hxx | 5 +- .../extended/AccessibleBrowseBoxTable.hxx | 5 +- .../extended/AccessibleBrowseBoxTableBase.hxx | 5 +- .../extended/AccessibleBrowseBoxTableCell.hxx | 5 +- .../extended/AccessibleGridControl.hxx | 5 +- .../extended/AccessibleGridControlBase.hxx | 5 +- .../extended/AccessibleGridControlHeader.hxx | 5 +- .../AccessibleGridControlHeaderCell.hxx | 5 +- .../extended/AccessibleGridControlTable.hxx | 5 +- .../AccessibleGridControlTableBase.hxx | 5 +- .../AccessibleGridControlTableCell.hxx | 5 +- .../extended/accessiblebrowseboxcell.hxx | 5 +- .../extended/accessibleeditbrowseboxcell.hxx | 5 +- .../extended/accessibleiconchoicectrl.hxx | 5 +- .../accessibleiconchoicectrlentry.hxx | 5 +- .../extended/accessiblelistbox.hxx | 5 +- .../extended/accessiblelistboxentry.hxx | 5 +- .../extended/accessibletabbar.hxx | 5 +- .../extended/accessibletabbarbase.hxx | 5 +- .../extended/accessibletabbarpage.hxx | 5 +- .../extended/accessibletabbarpagelist.hxx | 5 +- .../extended/accessibletablistbox.hxx | 5 +- .../extended/accessibletablistboxtable.hxx | 5 +- .../extended/listboxaccessible.hxx | 5 +- .../extended/textwindowaccessibility.hxx | 5 +- .../helper/IComboListBoxHelper.hxx | 5 +- .../inc/accessibility/helper/acc_factory.hxx | 5 +- .../helper/accessiblestrings.hrc | 5 +- .../inc/accessibility/helper/accresmgr.hxx | 5 +- .../helper/characterattributeshelper.hxx | 5 +- .../accessibility/helper/listboxhelper.hxx | 5 +- .../standard/accessiblemenubasecomponent.hxx | 5 +- .../standard/accessiblemenucomponent.hxx | 5 +- .../standard/accessiblemenuitemcomponent.hxx | 5 +- .../standard/vclxaccessiblebox.hxx | 5 +- .../standard/vclxaccessiblebutton.hxx | 5 +- .../standard/vclxaccessiblecheckbox.hxx | 5 +- .../standard/vclxaccessiblecombobox.hxx | 5 +- .../vclxaccessibledropdowncombobox.hxx | 5 +- .../vclxaccessibledropdownlistbox.hxx | 5 +- .../standard/vclxaccessibleedit.hxx | 5 +- .../standard/vclxaccessiblefixedhyperlink.hxx | 5 +- .../standard/vclxaccessiblefixedtext.hxx | 5 +- .../standard/vclxaccessiblelist.hxx | 5 +- .../standard/vclxaccessiblelistbox.hxx | 5 +- .../standard/vclxaccessiblelistboxlist.hxx | 5 +- .../standard/vclxaccessiblelistitem.hxx | 5 +- .../standard/vclxaccessiblemenu.hxx | 5 +- .../standard/vclxaccessiblemenubar.hxx | 5 +- .../standard/vclxaccessiblemenuitem.hxx | 5 +- .../standard/vclxaccessiblemenuseparator.hxx | 5 +- .../standard/vclxaccessiblepopupmenu.hxx | 5 +- .../standard/vclxaccessibleradiobutton.hxx | 5 +- .../standard/vclxaccessiblescrollbar.hxx | 5 +- .../standard/vclxaccessiblestatusbar.hxx | 5 +- .../standard/vclxaccessiblestatusbaritem.hxx | 5 +- .../standard/vclxaccessibletabcontrol.hxx | 5 +- .../standard/vclxaccessibletabpage.hxx | 5 +- .../standard/vclxaccessibletabpagewindow.hxx | 5 +- .../standard/vclxaccessibletextcomponent.hxx | 5 +- .../standard/vclxaccessibletextfield.hxx | 5 +- .../standard/vclxaccessibletoolbox.hxx | 5 +- .../standard/vclxaccessibletoolboxitem.hxx | 5 +- accessibility/inc/makefile.mk | 6 +- .../inc/pch/precompiled_accessibility.cxx | 5 +- .../inc/pch/precompiled_accessibility.hxx | 5 +- .../source/extended/AccessibleBrowseBox.cxx | 5 +- .../extended/AccessibleBrowseBoxBase.cxx | 5 +- .../AccessibleBrowseBoxCheckBoxCell.cxx | 5 +- .../extended/AccessibleBrowseBoxHeaderBar.cxx | 5 +- .../AccessibleBrowseBoxHeaderCell.cxx | 5 +- .../extended/AccessibleBrowseBoxTable.cxx | 5 +- .../extended/AccessibleBrowseBoxTableBase.cxx | 5 +- .../extended/AccessibleBrowseBoxTableCell.cxx | 5 +- .../source/extended/AccessibleGridControl.cxx | 5 +- .../extended/AccessibleGridControlBase.cxx | 5 +- .../extended/AccessibleGridControlHeader.cxx | 5 +- .../AccessibleGridControlHeaderCell.cxx | 5 +- .../extended/AccessibleGridControlTable.cxx | 5 +- .../AccessibleGridControlTableBase.cxx | 5 +- .../AccessibleGridControlTableCell.cxx | 5 +- .../extended/accessiblebrowseboxcell.cxx | 5 +- .../extended/accessibleeditbrowseboxcell.cxx | 5 +- .../extended/accessibleiconchoicectrl.cxx | 5 +- .../accessibleiconchoicectrlentry.cxx | 5 +- .../source/extended/accessiblelistbox.cxx | 5 +- .../extended/accessiblelistboxentry.cxx | 5 +- .../source/extended/accessibletabbar.cxx | 5 +- .../source/extended/accessibletabbarbase.cxx | 5 +- .../source/extended/accessibletabbarpage.cxx | 5 +- .../extended/accessibletabbarpagelist.cxx | 5 +- .../source/extended/accessibletablistbox.cxx | 5 +- .../extended/accessibletablistboxtable.cxx | 5 +- .../source/extended/listboxaccessible.cxx | 5 +- accessibility/source/extended/makefile.mk | 6 +- .../extended/textwindowaccessibility.cxx | 5 +- accessibility/source/helper/acc_factory.cxx | 5 +- .../source/helper/accessiblestrings.src | 5 +- accessibility/source/helper/accresmgr.cxx | 5 +- .../helper/characterattributeshelper.cxx | 5 +- accessibility/source/helper/makefile.mk | 6 +- .../source/inc/floatingwindowaccessible.hxx | 6 +- .../standard/accessiblemenubasecomponent.cxx | 5 +- .../standard/accessiblemenucomponent.cxx | 5 +- .../standard/accessiblemenuitemcomponent.cxx | 5 +- .../standard/floatingwindowaccessible.cxx | 6 +- accessibility/source/standard/makefile.mk | 6 +- .../source/standard/vclxaccessiblebox.cxx | 5 +- .../source/standard/vclxaccessiblebutton.cxx | 5 +- .../standard/vclxaccessiblecheckbox.cxx | 5 +- .../standard/vclxaccessiblecombobox.cxx | 5 +- .../vclxaccessibledropdowncombobox.cxx | 5 +- .../vclxaccessibledropdownlistbox.cxx | 5 +- .../source/standard/vclxaccessibleedit.cxx | 5 +- .../standard/vclxaccessiblefixedhyperlink.cxx | 5 +- .../standard/vclxaccessiblefixedtext.cxx | 5 +- .../source/standard/vclxaccessiblelist.cxx | 5 +- .../source/standard/vclxaccessiblelistbox.cxx | 5 +- .../standard/vclxaccessiblelistboxlist.cxx | 5 +- .../standard/vclxaccessiblelistitem.cxx | 5 +- .../source/standard/vclxaccessiblemenu.cxx | 5 +- .../source/standard/vclxaccessiblemenubar.cxx | 5 +- .../standard/vclxaccessiblemenuitem.cxx | 5 +- .../standard/vclxaccessiblemenuseparator.cxx | 5 +- .../standard/vclxaccessiblepopupmenu.cxx | 5 +- .../standard/vclxaccessibleradiobutton.cxx | 5 +- .../standard/vclxaccessiblescrollbar.cxx | 5 +- .../standard/vclxaccessiblestatusbar.cxx | 5 +- .../standard/vclxaccessiblestatusbaritem.cxx | 5 +- .../standard/vclxaccessibletabcontrol.cxx | 5 +- .../source/standard/vclxaccessibletabpage.cxx | 5 +- .../standard/vclxaccessibletabpagewindow.cxx | 5 +- .../standard/vclxaccessibletextcomponent.cxx | 5 +- .../standard/vclxaccessibletextfield.cxx | 5 +- .../source/standard/vclxaccessibletoolbox.cxx | 5 +- .../standard/vclxaccessibletoolboxitem.cxx | 5 +- accessibility/util/makefile.mk | 6 +- .../awb/AccessibilityWorkBench.java | 66 +++++-------------- .../accessibility/awb/canvas/Canvas.java | 66 +++++-------------- .../accessibility/awb/canvas/CanvasShape.java | 66 +++++-------------- .../awb/canvas/ShapeContainer.java | 66 +++++-------------- .../accessibility/awb/canvas/makefile.common | 65 +++++------------- .../accessibility/awb/canvas/makefile.mk | 65 +++++------------- .../accessibility/awb/makefile.common | 27 ++++++++ .../openoffice/accessibility/awb/makefile.mk | 65 +++++------------- .../awb/tree/AccessibilityModel.java | 66 +++++-------------- .../awb/tree/AccessibilityNode.java | 66 +++++-------------- .../awb/tree/AccessibilityTree.java | 66 +++++-------------- .../awb/tree/AccessibilityTreeModel.java | 66 +++++-------------- .../awb/tree/DynamicAccessibilityModel.java | 66 +++++-------------- .../awb/tree/DynamicAccessibilityNode.java | 66 +++++-------------- .../accessibility/awb/tree/Makefile | 65 +++++------------- .../accessibility/awb/tree/ToolkitNode.java | 66 +++++-------------- .../accessibility/awb/tree/makefile.common | 65 +++++------------- .../accessibility/awb/tree/makefile.mk | 65 +++++------------- .../accessibility/awb/view/ComponentView.java | 66 +++++-------------- .../accessibility/awb/view/ContextView.java | 66 +++++-------------- .../awb/view/EditableTextView.java | 66 +++++-------------- .../awb/view/EventMonitorView.java | 66 +++++-------------- .../accessibility/awb/view/FocusView.java | 66 +++++-------------- .../accessibility/awb/view/LayoutManager.java | 66 +++++-------------- .../awb/view/ObjectViewContainer.java | 66 +++++-------------- .../accessibility/awb/view/ParentView.java | 66 +++++-------------- .../accessibility/awb/view/SelectionView.java | 66 +++++-------------- .../accessibility/awb/view/StateSetView.java | 66 +++++-------------- .../accessibility/awb/view/TableView.java | 66 +++++-------------- .../accessibility/awb/view/TextView.java | 66 +++++-------------- .../awb/view/ViewGridLayout.java | 66 +++++-------------- .../accessibility/awb/view/makefile.common | 65 +++++------------- .../accessibility/awb/view/makefile.mk | 65 +++++------------- .../awb/view/text/CaretSpinnerModel.java | 66 +++++-------------- .../awb/view/text/TextActionDialog.java | 66 +++++-------------- .../awb/view/text/TextAttributeDialog.java | 66 +++++-------------- .../awb/view/text/TextDialogFactory.java | 66 +++++-------------- .../awb/view/text/TextEditDialog.java | 66 +++++-------------- .../awb/view/text/makefile.common | 65 +++++------------- .../accessibility/awb/view/text/makefile.mk | 65 +++++------------- .../misc/AccessibleEventMulticaster.java | 62 +++++------------ .../openoffice/accessibility/misc/Makefile | 65 +++++------------- .../accessibility/misc/makefile.common | 65 +++++------------- .../openoffice/accessibility/misc/makefile.mk | 65 +++++------------- automation/inc/automation/automation.hxx | 5 +- automation/inc/automation/commdefines.hxx | 5 +- automation/inc/automation/commtypes.hxx | 5 +- automation/inc/automation/communi.hxx | 5 +- automation/inc/automation/simplecm.hxx | 5 +- automation/inc/makefile.mk | 6 +- automation/inc/pch/precompiled_automation.cxx | 5 +- automation/inc/pch/precompiled_automation.hxx | 5 +- automation/packimages/makefile.mk | 6 +- automation/source/app/makefile.mk | 6 +- automation/source/app/testbasi.cxx | 5 +- automation/source/app/testbasi.hxx | 5 +- automation/source/communi/communi.cxx | 5 +- automation/source/communi/makefile.mk | 6 +- automation/source/inc/cmdbasestream.hxx | 5 +- automation/source/inc/icommstream.hxx | 5 +- automation/source/inc/rcontrol.hxx | 5 +- automation/source/inc/sttresid.hxx | 5 +- automation/source/inc/svcommstream.hxx | 5 +- automation/source/inc/testapp.hxx | 5 +- automation/source/inc/testtool.hxx | 5 +- automation/source/miniapp/editwin.cxx | 5 +- automation/source/miniapp/editwin.hxx | 5 +- automation/source/miniapp/makefile.mk | 6 +- automation/source/miniapp/servres.cxx | 5 +- automation/source/miniapp/servres.hrc | 5 +- automation/source/miniapp/servres.hxx | 5 +- automation/source/miniapp/servres.src | 5 +- automation/source/miniapp/servuid.hxx | 5 +- automation/source/miniapp/testapp.cxx | 5 +- automation/source/miniapp/testapp.hxx | 5 +- automation/source/mozillaserver/makefile.mk | 6 +- .../mozillaserver/mozillatesttoolserver.idl | 5 +- .../mozillaserver/xmozillatesttoolserver.idl | 5 +- automation/source/server/XMLParser.cxx | 5 +- automation/source/server/cmdbasestream.cxx | 5 +- automation/source/server/editwin.cxx | 5 +- automation/source/server/editwin.hxx | 5 +- automation/source/server/makefile.mk | 6 +- automation/source/server/prof_nul.cxx | 5 +- automation/source/server/prof_usl.cxx | 5 +- automation/source/server/profiler.cxx | 5 +- automation/source/server/profiler.hxx | 5 +- automation/source/server/recorder.cxx | 5 +- automation/source/server/recorder.hxx | 5 +- automation/source/server/retstrm.cxx | 5 +- automation/source/server/retstrm.hxx | 5 +- automation/source/server/scmdstrm.cxx | 5 +- automation/source/server/scmdstrm.hxx | 5 +- automation/source/server/server.cxx | 5 +- automation/source/server/server.hxx | 5 +- automation/source/server/sta_list.cxx | 5 +- automation/source/server/statemnt.cxx | 5 +- automation/source/server/statemnt.hxx | 5 +- automation/source/server/svcommstream.cxx | 5 +- automation/source/server/testtool.hrc | 5 +- automation/source/simplecm/communiio.hxx | 5 +- automation/source/simplecm/makefile.mk | 6 +- automation/source/simplecm/packethandler.cxx | 5 +- automation/source/simplecm/packethandler.hxx | 5 +- automation/source/simplecm/simplecm.cxx | 5 +- automation/source/simplecm/tcpio.cxx | 5 +- automation/source/simplecm/tcpio.hxx | 5 +- automation/source/testtool/cmdstrm.cxx | 5 +- automation/source/testtool/cmdstrm.hxx | 5 +- automation/source/testtool/comm_bas.cxx | 5 +- automation/source/testtool/comm_bas.hxx | 5 +- automation/source/testtool/cretstrm.cxx | 5 +- automation/source/testtool/cretstrm.hxx | 5 +- automation/source/testtool/filter.pl | 6 +- automation/source/testtool/httprequest.cxx | 5 +- automation/source/testtool/httprequest.hxx | 5 +- automation/source/testtool/makefile.mk | 6 +- automation/source/testtool/objtest.cxx | 5 +- automation/source/testtool/objtest.hxx | 5 +- automation/source/testtool/registry_win.cxx | 5 +- automation/source/testtool/registry_win.hxx | 5 +- automation/source/testtool/sysdir_win.cxx | 5 +- automation/source/testtool/sysdir_win.hxx | 5 +- automation/source/testtool/tcommuni.cxx | 5 +- automation/source/testtool/tcommuni.hxx | 5 +- automation/util/makefile.mk | 6 +- basctl/inc/basidesh.hrc | 5 +- basctl/inc/helpid.hrc | 5 +- basctl/inc/iderdll.hxx | 5 +- basctl/inc/makefile.mk | 6 +- basctl/inc/pch/precompiled_basctl.cxx | 5 +- basctl/inc/pch/precompiled_basctl.hxx | 5 +- basctl/sdi/baside.sdi | 5 +- basctl/sdi/basslots.hrc | 5 +- basctl/sdi/basslots.sdi | 5 +- basctl/sdi/makefile.mk | 8 +-- .../accessibledialogcontrolshape.cxx | 5 +- .../accessibility/accessibledialogwindow.cxx | 5 +- basctl/source/accessibility/makefile.mk | 6 +- basctl/source/basicide/basdoc.cxx | 5 +- basctl/source/basicide/basdoc.hxx | 5 +- basctl/source/basicide/basicbox.cxx | 5 +- basctl/source/basicide/basicbox.hxx | 5 +- basctl/source/basicide/basicmod.hxx | 5 +- basctl/source/basicide/basicprint.src | 5 +- basctl/source/basicide/basicrenderable.cxx | 5 +- basctl/source/basicide/basicrenderable.hxx | 5 +- basctl/source/basicide/baside2.cxx | 5 +- basctl/source/basicide/baside2.hrc | 5 +- basctl/source/basicide/baside2.hxx | 5 +- basctl/source/basicide/baside2b.cxx | 5 +- basctl/source/basicide/baside3.cxx | 5 +- basctl/source/basicide/baside4.cxx | 5 +- basctl/source/basicide/basidectrlr.cxx | 5 +- basctl/source/basicide/basides1.cxx | 5 +- basctl/source/basicide/basides2.cxx | 5 +- basctl/source/basicide/basides3.cxx | 5 +- basctl/source/basicide/basidesh.cxx | 5 +- basctl/source/basicide/basidesh.src | 5 +- basctl/source/basicide/basobj2.cxx | 5 +- basctl/source/basicide/basobj3.cxx | 5 +- basctl/source/basicide/bastype2.cxx | 5 +- basctl/source/basicide/bastype2.hxx | 5 +- basctl/source/basicide/bastype3.cxx | 5 +- basctl/source/basicide/bastype3.hxx | 5 +- basctl/source/basicide/bastype4.hxx | 5 +- basctl/source/basicide/bastypes.cxx | 5 +- basctl/source/basicide/brkdlg.cxx | 5 +- basctl/source/basicide/brkdlg.hrc | 5 +- basctl/source/basicide/brkdlg.hxx | 5 +- basctl/source/basicide/brkdlg.src | 5 +- basctl/source/basicide/doceventnotifier.cxx | 5 +- basctl/source/basicide/docsignature.cxx | 5 +- .../source/basicide/documentenumeration.cxx | 5 +- .../source/basicide/documentenumeration.hxx | 5 +- basctl/source/basicide/ide_pch.cxx | 5 +- basctl/source/basicide/ide_pch.hxx | 5 +- basctl/source/basicide/iderdll.cxx | 5 +- basctl/source/basicide/iderdll2.hxx | 5 +- basctl/source/basicide/idetemp.hxx | 5 +- basctl/source/basicide/localizationmgr.cxx | 5 +- basctl/source/basicide/macrodlg.cxx | 5 +- basctl/source/basicide/macrodlg.hrc | 5 +- basctl/source/basicide/macrodlg.hxx | 5 +- basctl/source/basicide/macrodlg.src | 5 +- basctl/source/basicide/makefile.mk | 6 +- basctl/source/basicide/moduldl2.cxx | 5 +- basctl/source/basicide/moduldlg.cxx | 5 +- basctl/source/basicide/moduldlg.hrc | 5 +- basctl/source/basicide/moduldlg.hxx | 5 +- basctl/source/basicide/moduldlg.src | 5 +- basctl/source/basicide/moptions.hrc | 5 +- basctl/source/basicide/moptions.src | 5 +- basctl/source/basicide/objdlg.cxx | 5 +- basctl/source/basicide/objdlg.hrc | 5 +- basctl/source/basicide/objdlg.hxx | 5 +- basctl/source/basicide/objdlg.src | 5 +- basctl/source/basicide/register.cxx | 5 +- basctl/source/basicide/scriptdocument.cxx | 5 +- basctl/source/basicide/tbxctl.cxx | 5 +- basctl/source/basicide/tbxctl.hrc | 5 +- basctl/source/basicide/tbxctl.hxx | 5 +- basctl/source/basicide/tbxctl.src | 5 +- basctl/source/basicide/unomodel.cxx | 5 +- basctl/source/basicide/unomodel.hxx | 5 +- basctl/source/dlged/dlged.cxx | 5 +- basctl/source/dlged/dlgedclip.cxx | 5 +- basctl/source/dlged/dlgedfac.cxx | 5 +- basctl/source/dlged/dlgedfunc.cxx | 5 +- basctl/source/dlged/dlgedlist.cxx | 5 +- basctl/source/dlged/dlgedmod.cxx | 5 +- basctl/source/dlged/dlgedobj.cxx | 5 +- basctl/source/dlged/dlgedpage.cxx | 5 +- basctl/source/dlged/dlgedview.cxx | 5 +- basctl/source/dlged/dlgresid.src | 5 +- basctl/source/dlged/makefile.mk | 6 +- basctl/source/dlged/managelang.cxx | 5 +- basctl/source/dlged/managelang.hrc | 5 +- basctl/source/dlged/managelang.src | 5 +- basctl/source/dlged/propbrw.cxx | 5 +- .../inc/accessibledialogcontrolshape.hxx | 5 +- basctl/source/inc/accessibledialogwindow.hxx | 5 +- basctl/source/inc/baside3.hxx | 5 +- basctl/source/inc/basidectrlr.hxx | 5 +- basctl/source/inc/basidesh.hxx | 5 +- basctl/source/inc/basobj.hxx | 5 +- basctl/source/inc/bastypes.hxx | 5 +- basctl/source/inc/dlged.hxx | 5 +- basctl/source/inc/dlgedclip.hxx | 5 +- basctl/source/inc/dlgeddef.hxx | 5 +- basctl/source/inc/dlgedfac.hxx | 5 +- basctl/source/inc/dlgedfunc.hxx | 5 +- basctl/source/inc/dlgedlist.hxx | 5 +- basctl/source/inc/dlgedmod.hxx | 5 +- basctl/source/inc/dlgedobj.hxx | 5 +- basctl/source/inc/dlgedpage.hxx | 5 +- basctl/source/inc/dlgedview.hxx | 5 +- basctl/source/inc/dlgresid.hrc | 5 +- basctl/source/inc/doceventnotifier.hxx | 5 +- basctl/source/inc/docsignature.hxx | 5 +- basctl/source/inc/iderid.hxx | 5 +- basctl/source/inc/localizationmgr.hxx | 5 +- basctl/source/inc/managelang.hxx | 5 +- basctl/source/inc/propbrw.hxx | 5 +- basctl/source/inc/sbxitem.hxx | 5 +- basctl/source/inc/scriptdocument.hxx | 5 +- basctl/source/inc/svheader.hxx | 5 +- basctl/util/hidother.hrc | 5 +- basctl/util/hidother.src | 5 +- basctl/util/makefile.mk | 6 +- basctl/util/makefile.pmk | 6 +- bean/com/sun/star/beans/ContainerFactory.java | 5 +- .../sun/star/beans/JavaWindowPeerFake.java | 5 +- .../sun/star/beans/LocalOfficeConnection.java | 5 +- .../com/sun/star/beans/LocalOfficeWindow.java | 5 +- bean/com/sun/star/beans/NativeConnection.java | 5 +- bean/com/sun/star/beans/NativeService.java | 5 +- bean/com/sun/star/beans/OfficeConnection.java | 5 +- bean/com/sun/star/beans/OfficeWindow.java | 5 +- bean/com/sun/star/beans/makefile.mk | 6 +- .../sun/star/comp/beans/CallWatchThread.java | 5 +- .../sun/star/comp/beans/ContainerFactory.java | 5 +- bean/com/sun/star/comp/beans/Controller.java | 5 +- bean/com/sun/star/comp/beans/Frame.java | 5 +- .../comp/beans/HasConnectionException.java | 5 +- .../comp/beans/InvalidArgumentException.java | 5 +- .../star/comp/beans/JavaWindowPeerFake.java | 5 +- .../comp/beans/LocalOfficeConnection.java | 5 +- .../star/comp/beans/LocalOfficeWindow.java | 5 +- .../sun/star/comp/beans/NativeConnection.java | 5 +- .../sun/star/comp/beans/NativeService.java | 5 +- .../comp/beans/NoConnectionException.java | 5 +- .../star/comp/beans/NoDocumentException.java | 5 +- bean/com/sun/star/comp/beans/OOoBean.java | 5 +- .../sun/star/comp/beans/OfficeConnection.java | 5 +- .../sun/star/comp/beans/OfficeDocument.java | 5 +- .../com/sun/star/comp/beans/OfficeWindow.java | 5 +- .../comp/beans/SystemWindowException.java | 5 +- bean/com/sun/star/comp/beans/Wrapper.java | 5 +- bean/com/sun/star/comp/beans/makefile.mk | 6 +- .../com_sun_star_beans_LocalOfficeWindow.c | 5 +- ...om_sun_star_comp_beans_LocalOfficeWindow.c | 5 +- .../com_sun_star_beans_LocalOfficeWindow.c | 5 +- ...om_sun_star_comp_beans_LocalOfficeWindow.c | 5 +- bean/qa/complex/OOoBeanTest.java | 5 +- bean/qa/complex/ScreenComparer.java | 5 +- bean/qa/complex/WriterFrame.java | 5 +- bean/qa/complex/makefile.mk | 6 +- bean/test/Test.java | 5 +- bean/test/applet/oooapplet/OOoViewer.java | 5 +- bean/test/applet/oooapplet/makefile.mk | 6 +- bean/test/makefile.mk | 6 +- bean/util/makefile.mk | 6 +- crashrep/scripts/crash_report.sh | 6 +- crashrep/scripts/makefile.mk | 6 +- crashrep/source/all/makefile.mk | 6 +- crashrep/source/unx/interface.cxx | 5 +- crashrep/source/unx/interface.hxx | 5 +- crashrep/source/unx/main.cxx | 5 +- crashrep/source/unx/makefile.mk | 6 +- crashrep/source/unx/res.cxx | 5 +- crashrep/source/unx/res/makefile.mk | 6 +- crashrep/source/unx/res/unxcrashres.cxx | 5 +- crashrep/source/win32/base64.cpp | 5 +- crashrep/source/win32/base64.h | 5 +- crashrep/source/win32/makefile.mk | 6 +- crashrep/source/win32/rcheader.txt | 5 +- crashrep/source/win32/resource.h | 5 +- crashrep/source/win32/soreport.cpp | 5 +- cui/inc/makefile.mk | 6 +- cui/inc/pch/precompiled_cui.cxx | 5 +- cui/inc/pch/precompiled_cui.hxx | 5 +- cui/source/customize/acccfg.cxx | 5 +- cui/source/customize/acccfg.hrc | 5 +- cui/source/customize/acccfg.src | 5 +- cui/source/customize/cfg.cxx | 5 +- cui/source/customize/cfg.hrc | 5 +- cui/source/customize/cfg.src | 5 +- cui/source/customize/cfgutil.cxx | 5 +- cui/source/customize/eventdlg.cxx | 5 +- cui/source/customize/eventdlg.hrc | 5 +- cui/source/customize/eventdlg.hxx | 5 +- cui/source/customize/eventdlg.src | 5 +- cui/source/customize/macropg.cxx | 5 +- cui/source/customize/macropg.hrc | 5 +- cui/source/customize/macropg.src | 5 +- cui/source/customize/macropg_impl.hxx | 5 +- cui/source/customize/makefile.mk | 8 +-- cui/source/customize/selector.cxx | 5 +- cui/source/customize/selector.hrc | 5 +- cui/source/customize/selector.src | 5 +- cui/source/dialogs/SpellAttrib.cxx | 5 +- cui/source/dialogs/SpellAttrib.hxx | 5 +- cui/source/dialogs/SpellDialog.cxx | 5 +- cui/source/dialogs/SpellDialog.hrc | 5 +- cui/source/dialogs/SpellDialog.src | 5 +- cui/source/dialogs/charmap.hrc | 5 +- cui/source/dialogs/charmap.src | 5 +- cui/source/dialogs/commonlingui.cxx | 5 +- cui/source/dialogs/commonlingui.hxx | 5 +- cui/source/dialogs/commonlingui.src | 5 +- cui/source/dialogs/cuicharmap.cxx | 2 +- cui/source/dialogs/cuifmsearch.cxx | 5 +- cui/source/dialogs/cuigaldlg.cxx | 5 +- cui/source/dialogs/cuigrfflt.cxx | 5 +- cui/source/dialogs/cuihyperdlg.cxx | 5 +- cui/source/dialogs/cuiimapdlg.hrc | 5 +- cui/source/dialogs/cuiimapdlg.src | 5 +- cui/source/dialogs/cuiimapwnd.cxx | 5 +- cui/source/dialogs/cuitbxform.cxx | 5 +- cui/source/dialogs/dlgname.cxx | 5 +- cui/source/dialogs/dlgname.hrc | 5 +- cui/source/dialogs/dlgname.src | 5 +- cui/source/dialogs/fmsearch.hrc | 5 +- cui/source/dialogs/fmsearch.src | 5 +- cui/source/dialogs/gallery.src | 5 +- cui/source/dialogs/grfflt.hrc | 5 +- cui/source/dialogs/grfflt.src | 5 +- cui/source/dialogs/hangulhanjadlg.cxx | 5 +- cui/source/dialogs/hangulhanjadlg.hrc | 5 +- cui/source/dialogs/hangulhanjadlg.src | 5 +- cui/source/dialogs/hldocntp.cxx | 5 +- cui/source/dialogs/hldoctp.cxx | 5 +- cui/source/dialogs/hlinettp.cxx | 5 +- cui/source/dialogs/hlmailtp.cxx | 5 +- cui/source/dialogs/hlmarkwn.cxx | 5 +- cui/source/dialogs/hlmarkwn.hrc | 5 +- cui/source/dialogs/hlmarkwn.src | 5 +- cui/source/dialogs/hltpbase.cxx | 5 +- cui/source/dialogs/hyperdlg.hrc | 5 +- cui/source/dialogs/hyperdlg.src | 5 +- cui/source/dialogs/iconcdlg.cxx | 5 +- cui/source/dialogs/iconcdlg.src | 5 +- cui/source/dialogs/insdlg.cxx | 5 +- cui/source/dialogs/insrc.cxx | 5 +- cui/source/dialogs/insrc.hrc | 5 +- cui/source/dialogs/insrc.src | 5 +- cui/source/dialogs/linkdlg.cxx | 5 +- cui/source/dialogs/makefile.mk | 8 +-- cui/source/dialogs/multifil.cxx | 5 +- cui/source/dialogs/multipat.cxx | 5 +- cui/source/dialogs/multipat.hrc | 5 +- cui/source/dialogs/multipat.src | 5 +- cui/source/dialogs/newtabledlg.cxx | 5 +- cui/source/dialogs/newtabledlg.hrc | 5 +- cui/source/dialogs/newtabledlg.src | 5 +- cui/source/dialogs/pastedlg.cxx | 5 +- cui/source/dialogs/plfilter.cxx | 5 +- cui/source/dialogs/postdlg.cxx | 5 +- cui/source/dialogs/postdlg.hrc | 5 +- cui/source/dialogs/postdlg.src | 5 +- cui/source/dialogs/scriptdlg.cxx | 5 +- cui/source/dialogs/scriptdlg.hrc | 5 +- cui/source/dialogs/scriptdlg.src | 5 +- cui/source/dialogs/sdrcelldlg.cxx | 5 +- cui/source/dialogs/sdrcelldlg.src | 5 +- cui/source/dialogs/showcols.cxx | 5 +- cui/source/dialogs/showcols.src | 5 +- cui/source/dialogs/splitcelldlg.cxx | 5 +- cui/source/dialogs/splitcelldlg.hrc | 5 +- cui/source/dialogs/splitcelldlg.src | 5 +- cui/source/dialogs/srchxtra.cxx | 5 +- cui/source/dialogs/srchxtra.hrc | 5 +- cui/source/dialogs/srchxtra.src | 5 +- cui/source/dialogs/svuidlg.hrc | 5 +- cui/source/dialogs/svuidlg.src | 5 +- cui/source/dialogs/tbxform.src | 5 +- cui/source/dialogs/winpluginlib.cpp | 5 +- cui/source/dialogs/zoom.cxx | 5 +- cui/source/dialogs/zoom.hrc | 5 +- cui/source/dialogs/zoom.src | 5 +- cui/source/factory/cuiexp.cxx | 5 +- cui/source/factory/cuiresmgr.cxx | 5 +- cui/source/factory/dlgfact.cxx | 5 +- cui/source/factory/dlgfact.hxx | 5 +- cui/source/factory/init.cxx | 5 +- cui/source/factory/makefile.mk | 8 +-- cui/source/inc/ControlFocusHelper.hxx | 5 +- cui/source/inc/SpellDialog.hxx | 5 +- cui/source/inc/acccfg.hxx | 5 +- cui/source/inc/align.hxx | 5 +- cui/source/inc/autocdlg.hxx | 5 +- cui/source/inc/backgrnd.hxx | 5 +- cui/source/inc/bbdlg.hxx | 5 +- cui/source/inc/border.hxx | 5 +- cui/source/inc/cfg.hxx | 5 +- cui/source/inc/cfgutil.hxx | 5 +- cui/source/inc/chardlg.hxx | 5 +- cui/source/inc/connect.hxx | 5 +- cui/source/inc/cuicharmap.hxx | 5 +- cui/source/inc/cuifmsearch.hxx | 5 +- cui/source/inc/cuigaldlg.hxx | 5 +- cui/source/inc/cuigrfflt.hxx | 5 +- cui/source/inc/cuihyperdlg.hxx | 5 +- cui/source/inc/cuioptgenrl.hxx | 5 +- cui/source/inc/cuires.hrc | 5 +- cui/source/inc/cuisrchdlg.hxx | 5 +- cui/source/inc/cuitabarea.hxx | 5 +- cui/source/inc/cuitabline.hxx | 5 +- cui/source/inc/dbregister.hxx | 5 +- cui/source/inc/defdlgname.hxx | 5 +- cui/source/inc/dialmgr.hxx | 2 +- cui/source/inc/dlgname.hxx | 5 +- cui/source/inc/dstribut.hxx | 5 +- cui/source/inc/gallery.hrc | 5 +- cui/source/inc/grfpage.hxx | 5 +- cui/source/inc/hangulhanjadlg.hxx | 5 +- cui/source/inc/headertablistbox.hxx | 5 +- cui/source/inc/helpid.hrc | 5 +- cui/source/inc/hldocntp.hxx | 5 +- cui/source/inc/hldoctp.hxx | 5 +- cui/source/inc/hlinettp.hxx | 5 +- cui/source/inc/hlmailtp.hxx | 5 +- cui/source/inc/hlmarkwn.hxx | 5 +- cui/source/inc/hlmarkwn_def.hxx | 5 +- cui/source/inc/hltpbase.hxx | 5 +- cui/source/inc/iconcdlg.hxx | 5 +- cui/source/inc/insdlg.hxx | 5 +- cui/source/inc/insrc.hxx | 5 +- cui/source/inc/internationaloptions.hxx | 5 +- cui/source/inc/labdlg.hxx | 5 +- cui/source/inc/linkdlg.hxx | 5 +- cui/source/inc/macroass.hxx | 5 +- cui/source/inc/macropg.hxx | 5 +- cui/source/inc/measure.hxx | 5 +- cui/source/inc/multifil.hxx | 5 +- cui/source/inc/multipat.hxx | 5 +- cui/source/inc/newtabledlg.hxx | 5 +- cui/source/inc/numfmt.hxx | 5 +- cui/source/inc/numpages.hxx | 5 +- cui/source/inc/optasian.hxx | 5 +- cui/source/inc/optdict.hxx | 5 +- cui/source/inc/optimprove.hxx | 5 +- cui/source/inc/optlingu.hxx | 5 +- cui/source/inc/optpath.hxx | 5 +- cui/source/inc/page.hxx | 5 +- cui/source/inc/paragrph.hxx | 5 +- cui/source/inc/pastedlg.hxx | 5 +- cui/source/inc/postdlg.hxx | 5 +- cui/source/inc/radiobtnbox.hxx | 5 +- cui/source/inc/scriptdlg.hxx | 5 +- cui/source/inc/sdrcelldlg.hxx | 5 +- cui/source/inc/selector.hxx | 5 +- cui/source/inc/showcols.hxx | 5 +- cui/source/inc/splitcelldlg.hxx | 5 +- cui/source/inc/srchxtra.hxx | 5 +- cui/source/inc/tabstpge.hxx | 5 +- cui/source/inc/textanim.hxx | 5 +- cui/source/inc/textattr.hxx | 5 +- cui/source/inc/transfrm.hxx | 5 +- cui/source/inc/treeopt.hxx | 5 +- cui/source/inc/zoom.hxx | 5 +- cui/source/options/cfgchart.cxx | 5 +- cui/source/options/cfgchart.hxx | 5 +- cui/source/options/connpoolconfig.cxx | 5 +- cui/source/options/connpoolconfig.hxx | 5 +- cui/source/options/connpooloptions.cxx | 5 +- cui/source/options/connpooloptions.hrc | 5 +- cui/source/options/connpooloptions.hxx | 5 +- cui/source/options/connpooloptions.src | 5 +- cui/source/options/connpoolsettings.cxx | 5 +- cui/source/options/connpoolsettings.hxx | 5 +- cui/source/options/cuisrchdlg.cxx | 5 +- cui/source/options/dbregister.cxx | 5 +- cui/source/options/dbregister.hrc | 5 +- cui/source/options/dbregister.src | 5 +- .../options/dbregisterednamesconfig.cxx | 5 +- .../options/dbregisterednamesconfig.hxx | 5 +- cui/source/options/dbregistersettings.cxx | 5 +- cui/source/options/dbregistersettings.hxx | 5 +- cui/source/options/doclinkdialog.cxx | 5 +- cui/source/options/doclinkdialog.hrc | 5 +- cui/source/options/doclinkdialog.hxx | 5 +- cui/source/options/doclinkdialog.src | 5 +- cui/source/options/fontsubs.cxx | 5 +- cui/source/options/fontsubs.hrc | 5 +- cui/source/options/fontsubs.hxx | 5 +- cui/source/options/fontsubs.src | 5 +- cui/source/options/internationaloptions.cxx | 5 +- cui/source/options/internationaloptions.hrc | 5 +- cui/source/options/internationaloptions.src | 5 +- cui/source/options/makefile.mk | 8 +-- cui/source/options/optHeaderTabListbox.cxx | 5 +- cui/source/options/optHeaderTabListbox.hxx | 5 +- cui/source/options/optaccessibility.cxx | 5 +- cui/source/options/optaccessibility.hrc | 5 +- cui/source/options/optaccessibility.hxx | 5 +- cui/source/options/optaccessibility.src | 5 +- cui/source/options/optasian.cxx | 5 +- cui/source/options/optasian.hrc | 5 +- cui/source/options/optasian.src | 5 +- cui/source/options/optchart.cxx | 5 +- cui/source/options/optchart.hrc | 5 +- cui/source/options/optchart.hxx | 5 +- cui/source/options/optchart.src | 5 +- cui/source/options/optcolor.cxx | 5 +- cui/source/options/optcolor.hrc | 5 +- cui/source/options/optcolor.hxx | 5 +- cui/source/options/optcolor.src | 5 +- cui/source/options/optctl.cxx | 5 +- cui/source/options/optctl.hrc | 5 +- cui/source/options/optctl.hxx | 5 +- cui/source/options/optctl.src | 5 +- cui/source/options/optdict.cxx | 5 +- cui/source/options/optdict.hrc | 5 +- cui/source/options/optdict.src | 5 +- cui/source/options/optfltr.cxx | 5 +- cui/source/options/optfltr.hrc | 5 +- cui/source/options/optfltr.hxx | 5 +- cui/source/options/optfltr.src | 5 +- cui/source/options/optgdlg.cxx | 5 +- cui/source/options/optgdlg.hrc | 5 +- cui/source/options/optgdlg.hxx | 5 +- cui/source/options/optgdlg.src | 5 +- cui/source/options/optgenrl.cxx | 5 +- cui/source/options/optgenrl.hrc | 5 +- cui/source/options/optgenrl.src | 5 +- cui/source/options/opthtml.cxx | 5 +- cui/source/options/opthtml.hrc | 5 +- cui/source/options/opthtml.hxx | 5 +- cui/source/options/opthtml.src | 5 +- cui/source/options/optimprove.cxx | 5 +- cui/source/options/optimprove.hrc | 5 +- cui/source/options/optimprove.src | 5 +- cui/source/options/optimprove2.cxx | 5 +- cui/source/options/optinet2.cxx | 5 +- cui/source/options/optinet2.hrc | 5 +- cui/source/options/optinet2.hxx | 5 +- cui/source/options/optinet2.src | 5 +- cui/source/options/optjava.cxx | 5 +- cui/source/options/optjava.hrc | 5 +- cui/source/options/optjava.hxx | 5 +- cui/source/options/optjava.src | 5 +- cui/source/options/optjsearch.cxx | 5 +- cui/source/options/optjsearch.hrc | 5 +- cui/source/options/optjsearch.hxx | 5 +- cui/source/options/optjsearch.src | 5 +- cui/source/options/optlingu.cxx | 5 +- cui/source/options/optlingu.hrc | 5 +- cui/source/options/optlingu.src | 5 +- cui/source/options/optmemory.cxx | 5 +- cui/source/options/optmemory.hrc | 5 +- cui/source/options/optmemory.hxx | 5 +- cui/source/options/optmemory.src | 5 +- cui/source/options/optpath.cxx | 5 +- cui/source/options/optpath.hrc | 5 +- cui/source/options/optpath.src | 5 +- cui/source/options/optsave.cxx | 5 +- cui/source/options/optsave.hrc | 5 +- cui/source/options/optsave.hxx | 5 +- cui/source/options/optsave.src | 5 +- cui/source/options/optspell.hrc | 5 +- cui/source/options/optspell.src | 5 +- cui/source/options/optupdt.cxx | 5 +- cui/source/options/optupdt.hrc | 5 +- cui/source/options/optupdt.hxx | 5 +- cui/source/options/optupdt.src | 5 +- cui/source/options/radiobtnbox.cxx | 5 +- cui/source/options/readonlyimage.cxx | 5 +- cui/source/options/readonlyimage.hxx | 5 +- cui/source/options/readonlyimage.src | 5 +- cui/source/options/sdbcdriverenum.cxx | 5 +- cui/source/options/sdbcdriverenum.hxx | 5 +- cui/source/options/securityoptions.cxx | 5 +- cui/source/options/securityoptions.hrc | 5 +- cui/source/options/securityoptions.hxx | 5 +- cui/source/options/securityoptions.src | 5 +- cui/source/options/treeopt.cxx | 5 +- cui/source/options/treeopt.hrc | 5 +- cui/source/options/treeopt.src | 5 +- cui/source/options/webconninfo.cxx | 5 +- cui/source/options/webconninfo.hrc | 5 +- cui/source/options/webconninfo.hxx | 5 +- cui/source/options/webconninfo.src | 5 +- cui/source/tabpages/align.cxx | 5 +- cui/source/tabpages/align.hrc | 5 +- cui/source/tabpages/align.src | 5 +- cui/source/tabpages/autocdlg.cxx | 5 +- cui/source/tabpages/autocdlg.hrc | 5 +- cui/source/tabpages/autocdlg.src | 5 +- cui/source/tabpages/backgrnd.cxx | 5 +- cui/source/tabpages/backgrnd.hrc | 5 +- cui/source/tabpages/backgrnd.src | 5 +- cui/source/tabpages/bbdlg.cxx | 5 +- cui/source/tabpages/bbdlg.src | 5 +- cui/source/tabpages/border.cxx | 5 +- cui/source/tabpages/border.hrc | 5 +- cui/source/tabpages/border.src | 5 +- cui/source/tabpages/borderconn.cxx | 5 +- cui/source/tabpages/borderconn.hxx | 5 +- cui/source/tabpages/chardlg.cxx | 5 +- cui/source/tabpages/chardlg.h | 5 +- cui/source/tabpages/chardlg.hrc | 5 +- cui/source/tabpages/chardlg.src | 5 +- cui/source/tabpages/connect.cxx | 5 +- cui/source/tabpages/connect.hrc | 5 +- cui/source/tabpages/connect.src | 5 +- cui/source/tabpages/dstribut.cxx | 5 +- cui/source/tabpages/dstribut.hrc | 5 +- cui/source/tabpages/dstribut.src | 5 +- cui/source/tabpages/frmdirlbox.src | 5 +- cui/source/tabpages/grfpage.cxx | 5 +- cui/source/tabpages/grfpage.hrc | 5 +- cui/source/tabpages/grfpage.src | 5 +- cui/source/tabpages/labdlg.cxx | 5 +- cui/source/tabpages/labdlg.hrc | 5 +- cui/source/tabpages/labdlg.src | 5 +- cui/source/tabpages/macroass.cxx | 5 +- cui/source/tabpages/macroass.hrc | 5 +- cui/source/tabpages/macroass.src | 5 +- cui/source/tabpages/makefile.mk | 8 +-- cui/source/tabpages/measure.cxx | 5 +- cui/source/tabpages/measure.hrc | 5 +- cui/source/tabpages/measure.src | 5 +- cui/source/tabpages/numfmt.cxx | 5 +- cui/source/tabpages/numfmt.hrc | 5 +- cui/source/tabpages/numfmt.src | 5 +- cui/source/tabpages/numpages.cxx | 5 +- cui/source/tabpages/numpages.hrc | 5 +- cui/source/tabpages/numpages.src | 5 +- cui/source/tabpages/page.cxx | 5 +- cui/source/tabpages/page.h | 5 +- cui/source/tabpages/page.hrc | 5 +- cui/source/tabpages/page.src | 5 +- cui/source/tabpages/paragrph.cxx | 5 +- cui/source/tabpages/paragrph.hrc | 5 +- cui/source/tabpages/paragrph.src | 5 +- cui/source/tabpages/strings.src | 2 +- cui/source/tabpages/swpossizetabpage.cxx | 5 +- cui/source/tabpages/swpossizetabpage.hrc | 5 +- cui/source/tabpages/swpossizetabpage.hxx | 5 +- cui/source/tabpages/swpossizetabpage.src | 5 +- cui/source/tabpages/tabarea.cxx | 5 +- cui/source/tabpages/tabarea.hrc | 5 +- cui/source/tabpages/tabarea.src | 5 +- cui/source/tabpages/tabline.cxx | 5 +- cui/source/tabpages/tabline.hrc | 5 +- cui/source/tabpages/tabline.src | 5 +- cui/source/tabpages/tabstpge.cxx | 5 +- cui/source/tabpages/tabstpge.hrc | 5 +- cui/source/tabpages/tabstpge.src | 5 +- cui/source/tabpages/textanim.cxx | 5 +- cui/source/tabpages/textanim.hrc | 5 +- cui/source/tabpages/textanim.src | 5 +- cui/source/tabpages/textattr.cxx | 5 +- cui/source/tabpages/textattr.hrc | 5 +- cui/source/tabpages/textattr.src | 5 +- cui/source/tabpages/tparea.cxx | 5 +- cui/source/tabpages/tpbitmap.cxx | 5 +- cui/source/tabpages/tpcolor.cxx | 5 +- cui/source/tabpages/tpgradnt.cxx | 5 +- cui/source/tabpages/tphatch.cxx | 5 +- cui/source/tabpages/tpline.cxx | 5 +- cui/source/tabpages/tplnedef.cxx | 5 +- cui/source/tabpages/tplneend.cxx | 5 +- cui/source/tabpages/tpshadow.cxx | 5 +- cui/source/tabpages/transfrm.cxx | 5 +- cui/source/tabpages/transfrm.hrc | 5 +- cui/source/tabpages/transfrm.src | 5 +- cui/util/hidother.src | 5 +- cui/util/makefile.mk | 8 +-- cui/util/makefile.pmk | 6 +- embedserv/source/embed/docholder.cxx | 5 +- embedserv/source/embed/ed_idataobj.cxx | 5 +- embedserv/source/embed/ed_iinplace.cxx | 5 +- embedserv/source/embed/ed_ioleobject.cxx | 5 +- embedserv/source/embed/ed_ipersiststr.cxx | 5 +- embedserv/source/embed/esdll.cxx | 5 +- embedserv/source/embed/guid.cxx | 5 +- embedserv/source/embed/iipaobj.cxx | 5 +- embedserv/source/embed/intercept.cxx | 5 +- embedserv/source/embed/makefile.mk | 6 +- embedserv/source/embed/register.cxx | 5 +- embedserv/source/embed/servprov.cxx | 5 +- embedserv/source/embed/syswinwrapper.cxx | 5 +- embedserv/source/embed/tracker.cxx | 5 +- embedserv/source/embed/xwin.cxx | 5 +- embedserv/source/inc/common.h | 5 +- embedserv/source/inc/docholder.hxx | 5 +- embedserv/source/inc/embeddoc.hxx | 5 +- embedserv/source/inc/embeddocaccess.hxx | 5 +- embedserv/source/inc/embservconst.h | 40 +++++------ embedserv/source/inc/iipaobj.hxx | 5 +- embedserv/source/inc/intercept.hxx | 5 +- embedserv/source/inc/servprov.hxx | 5 +- embedserv/source/inc/syswinwrapper.hxx | 5 +- embedserv/source/inc/xwin.hxx | 5 +- embedserv/source/inprocserv/advisesink.cxx | 40 +++++------ embedserv/source/inprocserv/advisesink.hxx | 40 +++++------ embedserv/source/inprocserv/dllentry.cxx | 40 +++++------ embedserv/source/inprocserv/inprocembobj.cxx | 40 +++++------ embedserv/source/inprocserv/inprocembobj.h | 40 +++++------ embedserv/source/inprocserv/makefile.mk | 42 +++++------- embedserv/source/inprocserv/smartpointer.hxx | 40 +++++------ embedserv/util/makefile.mk | 6 +- extensions/inc/abpilot.hrc | 45 ++++++------- extensions/inc/appsettings.hxx | 5 +- extensions/inc/bibliography.hrc | 45 ++++++------- extensions/inc/dbpilots.hrc | 45 ++++++------- extensions/inc/extensio.hrc | 5 +- extensions/inc/makefile.mk | 6 +- extensions/inc/pch/precompiled_extensions.cxx | 5 +- extensions/inc/pch/precompiled_extensions.hxx | 5 +- extensions/inc/propctrlr.hrc | 45 ++++++------- extensions/inc/ucbhelper/ext_content.hxx | 5 +- extensions/inc/update.hrc | 45 ++++++------- .../extensions/OfficeResourceLoader.java | 5 +- extensions/qa/complex/extensions/makefile.mk | 6 +- extensions/qa/complex/extensions/orl_de.src | 5 +- .../qa/complex/extensions/orl_en-US.src | 5 +- .../extensions/ComponentFactory.java | 5 +- .../integration/extensions/ConsoleWait.java | 5 +- .../qa/integration/extensions/Frame.java | 5 +- .../integration/extensions/MethodHandler.java | 5 +- .../extensions/ObjectInspector.java | 5 +- .../extensions/ServicesHandler.java | 5 +- .../integration/extensions/TestSkeleton.java | 5 +- .../qa/integration/extensions/makefile.mk | 6 +- extensions/qa/unoapi/makefile.mk | 6 +- extensions/source/abpilot/abpfinalpage.cxx | 5 +- extensions/source/abpilot/abpfinalpage.hxx | 5 +- extensions/source/abpilot/abpresid.hrc | 5 +- extensions/source/abpilot/abpservices.cxx | 5 +- extensions/source/abpilot/abptypes.hxx | 5 +- extensions/source/abpilot/abspage.cxx | 5 +- extensions/source/abpilot/abspage.hxx | 5 +- extensions/source/abpilot/abspilot.cxx | 5 +- extensions/source/abpilot/abspilot.hxx | 5 +- extensions/source/abpilot/abspilot.src | 5 +- extensions/source/abpilot/addresssettings.hxx | 5 +- .../source/abpilot/admininvokationimpl.cxx | 5 +- .../source/abpilot/admininvokationimpl.hxx | 5 +- .../source/abpilot/admininvokationpage.cxx | 5 +- .../source/abpilot/admininvokationpage.hxx | 5 +- .../source/abpilot/datasourcehandling.cxx | 5 +- .../source/abpilot/datasourcehandling.hxx | 5 +- .../source/abpilot/fieldmappingimpl.cxx | 5 +- .../source/abpilot/fieldmappingimpl.hxx | 5 +- .../source/abpilot/fieldmappingpage.cxx | 5 +- .../source/abpilot/fieldmappingpage.hxx | 5 +- extensions/source/abpilot/makefile.mk | 8 +-- extensions/source/abpilot/moduleabp.cxx | 5 +- .../source/abpilot/tableselectionpage.cxx | 5 +- .../source/abpilot/tableselectionpage.hxx | 5 +- .../source/abpilot/typeselectionpage.cxx | 5 +- .../source/abpilot/typeselectionpage.hxx | 5 +- extensions/source/abpilot/unodialogabp.cxx | 5 +- extensions/source/abpilot/unodialogabp.hxx | 5 +- extensions/source/activex/main/makefile.mk | 8 +-- extensions/source/activex/msidl/makefile.mk | 6 +- extensions/source/bibliography/bib.hrc | 5 +- extensions/source/bibliography/bib.src | 5 +- extensions/source/bibliography/bibbeam.cxx | 5 +- extensions/source/bibliography/bibbeam.hxx | 5 +- extensions/source/bibliography/bibconfig.cxx | 5 +- extensions/source/bibliography/bibconfig.hxx | 5 +- extensions/source/bibliography/bibcont.cxx | 5 +- extensions/source/bibliography/bibcont.hxx | 5 +- extensions/source/bibliography/bibload.cxx | 5 +- extensions/source/bibliography/bibmod.cxx | 5 +- extensions/source/bibliography/bibmod.hxx | 5 +- extensions/source/bibliography/bibprop.hrc | 5 +- extensions/source/bibliography/bibresid.hxx | 5 +- .../bibliography/bibshortcuthandler.hxx | 5 +- extensions/source/bibliography/bibtools.hxx | 5 +- extensions/source/bibliography/bibview.cxx | 5 +- extensions/source/bibliography/bibview.hxx | 5 +- extensions/source/bibliography/datman.cxx | 5 +- extensions/source/bibliography/datman.hrc | 5 +- extensions/source/bibliography/datman.hxx | 5 +- extensions/source/bibliography/datman.src | 5 +- .../bibliography/formcontrolcontainer.cxx | 5 +- .../bibliography/formcontrolcontainer.hxx | 5 +- extensions/source/bibliography/framectr.cxx | 5 +- extensions/source/bibliography/framectr.hxx | 5 +- extensions/source/bibliography/general.cxx | 5 +- extensions/source/bibliography/general.hxx | 5 +- extensions/source/bibliography/hidother.src | 5 +- .../bibliography/loadlisteneradapter.cxx | 5 +- .../bibliography/loadlisteneradapter.hxx | 5 +- extensions/source/bibliography/makefile.mk | 6 +- extensions/source/bibliography/menu.src | 5 +- extensions/source/bibliography/sections.hrc | 5 +- extensions/source/bibliography/sections.src | 5 +- extensions/source/bibliography/toolbar.cxx | 5 +- extensions/source/bibliography/toolbar.hrc | 5 +- extensions/source/bibliography/toolbar.hxx | 5 +- extensions/source/bibliography/toolbar.src | 5 +- .../source/config/ldap/componentdef.cxx | 5 +- extensions/source/config/ldap/ldapaccess.cxx | 5 +- extensions/source/config/ldap/ldapaccess.hxx | 5 +- .../source/config/ldap/ldapuserprof.cxx | 5 +- .../source/config/ldap/ldapuserprof.hxx | 5 +- .../source/config/ldap/ldapuserprofilebe.cxx | 5 +- .../source/config/ldap/ldapuserprofilebe.hxx | 5 +- .../config/ldap/ldapuserprofilelayer.cxx | 5 +- .../config/ldap/ldapuserprofilelayer.hxx | 5 +- extensions/source/config/ldap/makefile.mk | 6 +- .../source/config/ldap/propertysethelper.cxx | 5 +- .../source/config/ldap/propertysethelper.hxx | 5 +- .../source/config/ldap/wrapldapinclude.hxx | 5 +- extensions/source/dbpilots/commonpagesdbp.cxx | 5 +- extensions/source/dbpilots/commonpagesdbp.hxx | 5 +- extensions/source/dbpilots/commonpagesdbp.src | 5 +- extensions/source/dbpilots/controlwizard.cxx | 5 +- extensions/source/dbpilots/controlwizard.hxx | 5 +- extensions/source/dbpilots/dbpilots.src | 5 +- extensions/source/dbpilots/dbpresid.hrc | 5 +- extensions/source/dbpilots/dbpservices.cxx | 5 +- extensions/source/dbpilots/dbptools.cxx | 5 +- extensions/source/dbpilots/dbptools.hxx | 5 +- extensions/source/dbpilots/dbptypes.hxx | 5 +- extensions/source/dbpilots/gridpages.src | 5 +- extensions/source/dbpilots/gridwizard.cxx | 5 +- extensions/source/dbpilots/gridwizard.hxx | 5 +- extensions/source/dbpilots/groupboxpages.src | 5 +- extensions/source/dbpilots/groupboxwiz.cxx | 5 +- extensions/source/dbpilots/groupboxwiz.hxx | 5 +- extensions/source/dbpilots/listcombopages.src | 5 +- .../source/dbpilots/listcombowizard.cxx | 5 +- .../source/dbpilots/listcombowizard.hxx | 5 +- extensions/source/dbpilots/makefile.mk | 8 +-- extensions/source/dbpilots/moduledbp.cxx | 5 +- .../source/dbpilots/optiongrouplayouter.cxx | 5 +- .../source/dbpilots/optiongrouplayouter.hxx | 5 +- extensions/source/dbpilots/unoautopilot.hxx | 5 +- extensions/source/dbpilots/unoautopilot.inl | 5 +- extensions/source/dbpilots/wizardcontext.hxx | 5 +- extensions/source/dbpilots/wizardservices.cxx | 5 +- extensions/source/dbpilots/wizardservices.hxx | 5 +- extensions/source/inc/componentmodule.cxx | 5 +- extensions/source/inc/componentmodule.hxx | 5 +- extensions/source/logging/consolehandler.cxx | 5 +- extensions/source/logging/csvformatter.cxx | 49 +++++++------- extensions/source/logging/filehandler.cxx | 5 +- extensions/source/logging/log_module.cxx | 5 +- extensions/source/logging/log_module.hxx | 5 +- extensions/source/logging/log_services.cxx | 5 +- extensions/source/logging/logger.cxx | 5 +- extensions/source/logging/loggerconfig.cxx | 5 +- extensions/source/logging/loggerconfig.hxx | 5 +- extensions/source/logging/loghandler.cxx | 5 +- extensions/source/logging/loghandler.hxx | 5 +- extensions/source/logging/logrecord.cxx | 5 +- extensions/source/logging/logrecord.hxx | 5 +- extensions/source/logging/makefile.mk | 6 +- extensions/source/logging/methodguard.hxx | 5 +- .../source/logging/plaintextformatter.cxx | 5 +- .../macosx/spotlight/GetMetadataForFile.m | 5 +- .../macosx/spotlight/OOoContentDataParser.h | 5 +- .../macosx/spotlight/OOoContentDataParser.m | 5 +- .../macosx/spotlight/OOoMetaDataParser.h | 5 +- .../macosx/spotlight/OOoMetaDataParser.m | 5 +- .../macosx/spotlight/OOoSpotlightImporter.h | 5 +- .../macosx/spotlight/OOoSpotlightImporter.m | 5 +- extensions/source/macosx/spotlight/ioapi.h | 5 +- extensions/source/macosx/spotlight/ioapi.m | 5 +- .../source/macosx/spotlight/makefile.mk | 6 +- extensions/source/macosx/spotlight/unzip.h | 5 +- extensions/source/macosx/spotlight/unzip.m | 5 +- extensions/source/nsplugin/source/makefile.mk | 6 +- extensions/source/nsplugin/source/npshell.cxx | 5 +- extensions/source/nsplugin/source/npshell.hxx | 5 +- .../source/nsplugin/source/ns_debug.hxx | 5 +- .../source/nsplugin/source/nsp_func.hxx | 5 +- .../source/nsplugin/source/nsp_windows.cxx | 5 +- .../source/nsplugin/source/nsp_windows.hxx | 5 +- extensions/source/nsplugin/source/nsplugin.rc | 5 +- .../source/nsplugin/source/nsplugin_oo.rc | 5 +- .../nsplugin/source/so_closelistener.cxx | 5 +- .../nsplugin/source/so_closelistener.hxx | 5 +- extensions/source/nsplugin/source/so_env.cxx | 5 +- extensions/source/nsplugin/source/so_env.hxx | 5 +- .../source/nsplugin/source/so_instance.cxx | 5 +- .../source/nsplugin/source/so_instance.hxx | 5 +- extensions/source/nsplugin/source/so_main.cxx | 5 +- extensions/source/nsplugin/source/so_msg.hxx | 5 +- extensions/source/ole/comifaces.hxx | 5 +- extensions/source/ole/jscriptclasses.cxx | 5 +- extensions/source/ole/jscriptclasses.hxx | 5 +- extensions/source/ole/makefile.mk | 6 +- extensions/source/ole/ole2uno.cxx | 5 +- extensions/source/ole/ole2uno.hxx | 5 +- extensions/source/ole/oledll.cxx | 5 +- extensions/source/ole/oleobjw.cxx | 5 +- extensions/source/ole/oleobjw.hxx | 5 +- extensions/source/ole/olethread.cxx | 5 +- extensions/source/ole/servprov.cxx | 5 +- extensions/source/ole/servprov.hxx | 5 +- extensions/source/ole/servreg.cxx | 5 +- .../source/ole/unoconversionutilities.hxx | 5 +- extensions/source/ole/unoobjw.cxx | 5 +- extensions/source/ole/unoobjw.hxx | 5 +- extensions/source/ole/unotypewrapper.cxx | 5 +- extensions/source/ole/unotypewrapper.hxx | 5 +- extensions/source/ole/windata.cxx | 5 +- extensions/source/ole/windata.hxx | 5 +- extensions/source/oooimprovecore/core.cxx | 7 +- extensions/source/oooimprovecore/makefile.mk | 6 +- .../oooimprovecore/oooimprovecore_module.cxx | 5 +- .../oooimprovecore/oooimprovecore_module.hxx | 5 +- .../oooimprovecore_services.cxx | 5 +- extensions/source/oooimprovement/config.cxx | 7 +- extensions/source/oooimprovement/config.hxx | 7 +- .../source/oooimprovement/corecontroller.cxx | 7 +- .../source/oooimprovement/corecontroller.hxx | 7 +- .../source/oooimprovement/errormail.cxx | 7 +- .../source/oooimprovement/errormail.hxx | 7 +- .../source/oooimprovement/invite_job.cxx | 7 +- .../source/oooimprovement/invite_job.hxx | 7 +- .../source/oooimprovement/logpacker.cxx | 7 +- .../source/oooimprovement/logpacker.hxx | 7 +- .../source/oooimprovement/logstorage.cxx | 7 +- .../source/oooimprovement/logstorage.hxx | 7 +- extensions/source/oooimprovement/makefile.mk | 8 +-- .../oooimprovement/myconfigurationhelper.cxx | 5 +- .../oooimprovement/myconfigurationhelper.hxx | 5 +- .../source/oooimprovement/onlogrotate_job.cxx | 7 +- .../source/oooimprovement/onlogrotate_job.hxx | 7 +- .../oooimprovement/oooimprovement_exports.cxx | 7 +- .../source/oooimprovement/soaprequest.cxx | 7 +- .../source/oooimprovement/soaprequest.hxx | 7 +- .../source/oooimprovement/soapsender.cxx | 7 +- .../source/oooimprovement/soapsender.hxx | 7 +- extensions/source/plugin/aqua/macmgr.cxx | 5 +- extensions/source/plugin/aqua/makefile.mk | 6 +- extensions/source/plugin/aqua/sysplug.cxx | 5 +- extensions/source/plugin/base/context.cxx | 5 +- extensions/source/plugin/base/evtlstnr.cxx | 5 +- extensions/source/plugin/base/makefile.mk | 6 +- extensions/source/plugin/base/manager.cxx | 5 +- extensions/source/plugin/base/multiplx.cxx | 5 +- extensions/source/plugin/base/nfuncs.cxx | 5 +- extensions/source/plugin/base/plcom.cxx | 5 +- extensions/source/plugin/base/plctrl.cxx | 5 +- extensions/source/plugin/base/plmodel.cxx | 5 +- extensions/source/plugin/base/service.cxx | 5 +- extensions/source/plugin/base/xplugin.cxx | 5 +- .../source/plugin/inc/plugin/aqua/sysplug.hxx | 5 +- extensions/source/plugin/inc/plugin/impl.hxx | 5 +- extensions/source/plugin/inc/plugin/model.hxx | 5 +- .../source/plugin/inc/plugin/multiplx.hxx | 5 +- extensions/source/plugin/inc/plugin/plcom.hxx | 5 +- .../source/plugin/inc/plugin/plctrl.hxx | 5 +- .../source/plugin/inc/plugin/unx/mediator.hxx | 5 +- .../source/plugin/inc/plugin/unx/plugcon.hxx | 5 +- .../source/plugin/inc/plugin/unx/sysplug.hxx | 5 +- .../source/plugin/inc/plugin/win/sysplug.hxx | 5 +- extensions/source/plugin/unx/makefile.mk | 6 +- extensions/source/plugin/unx/mediator.cxx | 5 +- extensions/source/plugin/unx/npwrap.cxx | 5 +- extensions/source/plugin/unx/plugcon.cxx | 5 +- extensions/source/plugin/unx/sysplug.cxx | 5 +- extensions/source/plugin/unx/unxmgr.cxx | 5 +- extensions/source/plugin/util/makefile.mk | 8 +-- extensions/source/plugin/util/makefile.pmk | 6 +- extensions/source/plugin/win/makefile.mk | 6 +- extensions/source/plugin/win/sysplug.cxx | 5 +- extensions/source/plugin/win/winmgr.cxx | 5 +- extensions/source/preload/makefile.mk | 8 +-- extensions/source/preload/modulepreload.cxx | 5 +- extensions/source/preload/oemwiz.cxx | 5 +- extensions/source/preload/oemwiz.hxx | 5 +- extensions/source/preload/preload.hrc | 5 +- extensions/source/preload/preload.src | 5 +- extensions/source/preload/preloadservices.cxx | 5 +- extensions/source/preload/preloadservices.hxx | 5 +- extensions/source/preload/services.cxx | 5 +- extensions/source/preload/unoautopilot.hxx | 5 +- extensions/source/preload/unoautopilot.inl | 5 +- .../propctrlr/MasterDetailLinkDialog.cxx | 5 +- .../propctrlr/MasterDetailLinkDialog.hxx | 5 +- extensions/source/propctrlr/browserline.cxx | 5 +- extensions/source/propctrlr/browserline.hxx | 5 +- .../source/propctrlr/browserlistbox.cxx | 5 +- .../source/propctrlr/browserlistbox.hxx | 5 +- extensions/source/propctrlr/browserpage.cxx | 5 +- extensions/source/propctrlr/browserpage.hxx | 5 +- extensions/source/propctrlr/browserview.cxx | 5 +- extensions/source/propctrlr/browserview.hxx | 5 +- .../propctrlr/buttonnavigationhandler.cxx | 5 +- .../propctrlr/buttonnavigationhandler.hxx | 5 +- .../source/propctrlr/cellbindinghandler.cxx | 5 +- .../source/propctrlr/cellbindinghandler.hxx | 5 +- .../source/propctrlr/cellbindinghelper.cxx | 5 +- .../source/propctrlr/cellbindinghelper.hxx | 5 +- extensions/source/propctrlr/commoncontrol.cxx | 5 +- extensions/source/propctrlr/commoncontrol.hxx | 5 +- .../source/propctrlr/composeduiupdate.cxx | 5 +- .../source/propctrlr/composeduiupdate.hxx | 5 +- .../source/propctrlr/controlfontdialog.cxx | 5 +- .../source/propctrlr/controlfontdialog.hxx | 5 +- extensions/source/propctrlr/controltype.hxx | 5 +- .../propctrlr/defaultforminspection.cxx | 5 +- .../propctrlr/defaultforminspection.hxx | 5 +- .../source/propctrlr/defaulthelpprovider.cxx | 5 +- .../source/propctrlr/defaulthelpprovider.hxx | 5 +- .../source/propctrlr/editpropertyhandler.cxx | 5 +- .../source/propctrlr/editpropertyhandler.hxx | 5 +- extensions/source/propctrlr/eformshelper.cxx | 5 +- extensions/source/propctrlr/eformshelper.hxx | 5 +- .../propctrlr/eformspropertyhandler.cxx | 5 +- .../propctrlr/eformspropertyhandler.hxx | 5 +- .../source/propctrlr/enumrepresentation.hxx | 5 +- extensions/source/propctrlr/eventhandler.cxx | 5 +- extensions/source/propctrlr/eventhandler.hxx | 5 +- extensions/source/propctrlr/fontdialog.cxx | 5 +- extensions/source/propctrlr/fontdialog.hxx | 5 +- extensions/source/propctrlr/fontdialog.src | 5 +- extensions/source/propctrlr/fontitemids.hxx | 5 +- .../source/propctrlr/formbrowsertools.cxx | 5 +- .../source/propctrlr/formbrowsertools.hxx | 5 +- .../source/propctrlr/formcomponenthandler.cxx | 5 +- .../source/propctrlr/formcomponenthandler.hxx | 5 +- .../source/propctrlr/formcontroller.cxx | 5 +- .../source/propctrlr/formcontroller.hxx | 5 +- .../source/propctrlr/formgeometryhandler.cxx | 45 ++++++------- .../source/propctrlr/formlinkdialog.cxx | 5 +- .../source/propctrlr/formlinkdialog.hrc | 5 +- .../source/propctrlr/formlinkdialog.hxx | 5 +- .../source/propctrlr/formlinkdialog.src | 5 +- extensions/source/propctrlr/formlocalid.hrc | 5 +- extensions/source/propctrlr/formmetadata.cxx | 5 +- extensions/source/propctrlr/formmetadata.hxx | 5 +- extensions/source/propctrlr/formres.src | 5 +- extensions/source/propctrlr/formresid.hrc | 5 +- extensions/source/propctrlr/formstrings.cxx | 5 +- extensions/source/propctrlr/formstrings.hxx | 5 +- .../propctrlr/genericpropertyhandler.cxx | 5 +- .../propctrlr/genericpropertyhandler.hxx | 5 +- extensions/source/propctrlr/handlerhelper.cxx | 5 +- extensions/source/propctrlr/handlerhelper.hxx | 5 +- .../source/propctrlr/inspectorhelpwindow.cxx | 5 +- .../source/propctrlr/inspectorhelpwindow.hxx | 5 +- .../source/propctrlr/inspectormodelbase.cxx | 5 +- .../source/propctrlr/inspectormodelbase.hxx | 5 +- .../source/propctrlr/linedescriptor.hxx | 5 +- .../source/propctrlr/listselectiondlg.cxx | 5 +- .../source/propctrlr/listselectiondlg.hrc | 5 +- .../source/propctrlr/listselectiondlg.hxx | 5 +- .../source/propctrlr/listselectiondlg.src | 5 +- extensions/source/propctrlr/makefile.mk | 6 +- extensions/source/propctrlr/modulepcr.cxx | 5 +- extensions/source/propctrlr/modulepcr.hxx | 5 +- extensions/source/propctrlr/newdatatype.cxx | 5 +- extensions/source/propctrlr/newdatatype.hrc | 5 +- extensions/source/propctrlr/newdatatype.hxx | 5 +- extensions/source/propctrlr/newdatatype.src | 5 +- .../source/propctrlr/objectinspectormodel.cxx | 5 +- extensions/source/propctrlr/pcrcommon.cxx | 5 +- extensions/source/propctrlr/pcrcommon.hxx | 5 +- .../source/propctrlr/pcrcommontypes.hxx | 5 +- .../source/propctrlr/pcrcomponentcontext.cxx | 5 +- .../source/propctrlr/pcrcomponentcontext.hxx | 5 +- extensions/source/propctrlr/pcrmiscres.src | 5 +- extensions/source/propctrlr/pcrservices.cxx | 5 +- extensions/source/propctrlr/pcrstrings.cxx | 5 +- extensions/source/propctrlr/pcrstrings.hxx | 5 +- extensions/source/propctrlr/pcrunodialogs.cxx | 5 +- extensions/source/propctrlr/pcrunodialogs.hxx | 5 +- .../source/propctrlr/propcontroller.cxx | 5 +- .../source/propctrlr/propcontroller.hxx | 5 +- .../source/propctrlr/propcontrolobserver.hxx | 5 +- .../source/propctrlr/propertycomposer.cxx | 5 +- .../source/propctrlr/propertycomposer.hxx | 5 +- .../propctrlr/propertycontrolextender.cxx | 49 +++++++------- .../propctrlr/propertycontrolextender.hxx | 49 +++++++------- .../source/propctrlr/propertyeditor.cxx | 5 +- .../source/propctrlr/propertyeditor.hxx | 5 +- .../source/propctrlr/propertyhandler.cxx | 5 +- .../source/propctrlr/propertyhandler.hxx | 5 +- extensions/source/propctrlr/propertyinfo.hxx | 5 +- .../source/propctrlr/propeventtranslation.cxx | 5 +- .../source/propctrlr/propeventtranslation.hxx | 5 +- .../source/propctrlr/proplinelistener.hxx | 5 +- extensions/source/propctrlr/propres.src | 5 +- extensions/source/propctrlr/propresid.hrc | 5 +- .../source/propctrlr/pushbuttonnavigation.cxx | 5 +- .../source/propctrlr/pushbuttonnavigation.hxx | 5 +- .../source/propctrlr/selectlabeldialog.cxx | 5 +- .../source/propctrlr/selectlabeldialog.hxx | 5 +- .../source/propctrlr/selectlabeldialog.src | 5 +- .../source/propctrlr/sqlcommanddesign.cxx | 5 +- .../source/propctrlr/sqlcommanddesign.hxx | 5 +- .../source/propctrlr/standardcontrol.cxx | 5 +- .../source/propctrlr/standardcontrol.hxx | 5 +- extensions/source/propctrlr/stlops.hxx | 5 +- extensions/source/propctrlr/stringdefine.hxx | 5 +- .../source/propctrlr/stringrepresentation.cxx | 5 +- .../source/propctrlr/submissionhandler.cxx | 5 +- .../source/propctrlr/submissionhandler.hxx | 5 +- extensions/source/propctrlr/taborder.cxx | 5 +- extensions/source/propctrlr/taborder.hrc | 5 +- extensions/source/propctrlr/taborder.hxx | 5 +- extensions/source/propctrlr/taborder.src | 5 +- extensions/source/propctrlr/unourl.cxx | 5 +- extensions/source/propctrlr/unourl.hxx | 5 +- extensions/source/propctrlr/usercontrol.cxx | 5 +- extensions/source/propctrlr/usercontrol.hxx | 5 +- extensions/source/propctrlr/xsddatatypes.cxx | 5 +- extensions/source/propctrlr/xsddatatypes.hxx | 5 +- .../source/propctrlr/xsdvalidationhelper.cxx | 5 +- .../source/propctrlr/xsdvalidationhelper.hxx | 5 +- .../xsdvalidationpropertyhandler.cxx | 5 +- .../xsdvalidationpropertyhandler.hxx | 5 +- extensions/source/resource/makefile.mk | 6 +- .../source/resource/oooresourceloader.cxx | 5 +- extensions/source/resource/res_services.cxx | 5 +- extensions/source/resource/res_services.hxx | 5 +- extensions/source/resource/resource.cxx | 5 +- extensions/source/scanner/grid.cxx | 5 +- extensions/source/scanner/grid.hrc | 5 +- extensions/source/scanner/grid.hxx | 5 +- extensions/source/scanner/grid.src | 5 +- extensions/source/scanner/makefile.mk | 6 +- extensions/source/scanner/sane.cxx | 5 +- extensions/source/scanner/sane.hxx | 5 +- extensions/source/scanner/sanedlg.cxx | 5 +- extensions/source/scanner/sanedlg.hrc | 5 +- extensions/source/scanner/sanedlg.hxx | 5 +- extensions/source/scanner/sanedlg.src | 5 +- extensions/source/scanner/scanner.cxx | 5 +- extensions/source/scanner/scanner.hxx | 5 +- extensions/source/scanner/scanunx.cxx | 5 +- extensions/source/scanner/scanwin.cxx | 5 +- extensions/source/scanner/scnserv.cxx | 5 +- extensions/source/scanner/twain.cxx | 5 +- extensions/source/scanner/twain.hxx | 5 +- extensions/source/svg/makefile.mk | 6 +- extensions/source/svg/svgaction.cxx | 5 +- extensions/source/svg/svgaction.hxx | 5 +- extensions/source/svg/svgcom.hxx | 5 +- extensions/source/svg/svgprinter.cxx | 5 +- extensions/source/svg/svgprinter.hxx | 5 +- extensions/source/svg/svguno.cxx | 5 +- extensions/source/svg/svgwriter.cxx | 5 +- extensions/source/svg/svgwriter.hxx | 5 +- .../source/unoactivex/main/initwindowpeer.cxx | 5 +- .../source/update/check/actionlistener.hxx | 5 +- extensions/source/update/check/download.cxx | 5 +- extensions/source/update/check/download.hxx | 5 +- extensions/source/update/check/makefile.mk | 6 +- extensions/source/update/check/transform.pl | 6 +- .../source/update/check/updatecheck.cxx | 4 +- .../source/update/check/updatecheck.hxx | 5 +- .../source/update/check/updatecheckconfig.cxx | 2 +- .../source/update/check/updatecheckconfig.hxx | 5 +- .../check/updatecheckconfiglistener.hxx | 5 +- .../source/update/check/updatecheckjob.cxx | 5 +- extensions/source/update/check/updatehdl.cxx | 4 +- extensions/source/update/check/updatehdl.hrc | 5 +- extensions/source/update/check/updatehdl.hxx | 5 +- extensions/source/update/check/updatehdl.src | 5 +- extensions/source/update/check/updateinfo.hxx | 5 +- .../source/update/check/updateprotocol.cxx | 5 +- .../source/update/check/updateprotocol.hxx | 5 +- .../update/check/updateprotocoltest.cxx | 5 +- extensions/source/update/feed/makefile.mk | 8 +-- .../source/update/feed/test/makefile.mk | 6 +- .../update/feed/test/updatefeedtest.cxx | 5 +- extensions/source/update/feed/updatefeed.cxx | 5 +- extensions/source/update/tools/makefile.mk | 6 +- extensions/source/update/tools/ztool.cxx | 5 +- extensions/source/update/ui/makefile.mk | 6 +- extensions/source/update/ui/updatecheckui.cxx | 5 +- extensions/source/update/ui/updatecheckui.hrc | 5 +- extensions/source/update/ui/updatecheckui.src | 5 +- extensions/source/xmlextract/makefile.mk | 6 +- extensions/source/xmlextract/xmxcom.hxx | 5 +- extensions/source/xmlextract/xmxtrct.cxx | 5 +- extensions/source/xmlextract/xmxtrct.hxx | 5 +- extensions/source/xmlextract/xmxuno.cxx | 5 +- extensions/stardiv/fontest/fontest.idl | 5 +- extensions/stardiv/fontest/makefile.mk | 6 +- extensions/stardiv/oinstchk/makefile.mk | 6 +- extensions/stardiv/oinstchk/oinstchk.idl | 5 +- extensions/stardiv/pgp/makefile.mk | 6 +- .../ole/AxTestComponents/AxTestComponents.cpp | 5 +- .../ole/AxTestComponents/AxTestComponents.idl | 5 +- .../ole/AxTestComponents/AxTestComponents.rc | 5 +- .../test/ole/AxTestComponents/Basic.cpp | 5 +- extensions/test/ole/AxTestComponents/Basic.h | 5 +- extensions/test/ole/AxTestComponents/Foo.cpp | 5 +- extensions/test/ole/AxTestComponents/Foo.h | 5 +- .../test/ole/AxTestComponents/StdAfx.cpp | 5 +- extensions/test/ole/AxTestComponents/StdAfx.h | 5 +- .../test/ole/AxTestComponents/resource.h | 5 +- .../VBEventListener/VBEventListener.cls | 6 +- extensions/test/ole/OleClient/axhost.cxx | 5 +- extensions/test/ole/OleClient/axhost.hxx | 5 +- extensions/test/ole/OleClient/clientTest.cxx | 5 +- extensions/test/ole/OleClient/funcs.cxx | 5 +- extensions/test/ole/OleClient/makefile.mk | 6 +- .../test/ole/OleConverterVar1/convTest.cxx | 5 +- .../test/ole/OleConverterVar1/makefile.mk | 6 +- .../test/ole/OleConverterVar1/smartarray.h | 5 +- extensions/test/ole/cpnt/cpnt.cxx | 5 +- extensions/test/ole/cpnt/makefile.mk | 6 +- extensions/test/ole/cppToUno/makefile.mk | 6 +- extensions/test/ole/cppToUno/testcppuno.cxx | 5 +- extensions/test/ole/cpptest/cpptest.cxx | 5 +- extensions/test/ole/cpptest/makefile.mk | 6 +- extensions/test/ole/idl/oletest.idl | 5 +- extensions/test/ole/unloading/makefile.mk | 6 +- extensions/test/ole/unloading/unloadTest.cxx | 5 +- .../test/ole/unoTocomCalls/Test/StdAfx.cpp | 5 +- .../test/ole/unoTocomCalls/Test/StdAfx.h | 5 +- .../test/ole/unoTocomCalls/Test/Test.cpp | 5 +- .../unoTocomCalls/XCallback_Impl/Callback.cpp | 5 +- .../unoTocomCalls/XCallback_Impl/Callback.h | 5 +- .../unoTocomCalls/XCallback_Impl/Simple.cpp | 5 +- .../ole/unoTocomCalls/XCallback_Impl/Simple.h | 5 +- .../unoTocomCalls/XCallback_Impl/StdAfx.cpp | 5 +- .../ole/unoTocomCalls/XCallback_Impl/StdAfx.h | 5 +- .../XCallback_Impl/XCallback_Impl.cpp | 5 +- .../XCallback_Impl/XCallback_Impl.idl | 5 +- .../XCallback_Impl/XCallback_Impl.rc | 5 +- .../unoTocomCalls/XCallback_Impl/resource.h | 5 +- extensions/test/pgp/TestPGP.java | 5 +- extensions/test/pgp/makefile.mk | 6 +- extensions/test/sax/factory.hxx | 5 +- extensions/test/sax/makefile.mk | 6 +- extensions/test/sax/testsax.cxx | 5 +- extensions/test/sax/testwriter.cxx | 5 +- extensions/test/stm/datatest.cxx | 5 +- extensions/test/stm/makefile.mk | 6 +- extensions/test/stm/marktest.cxx | 5 +- extensions/test/stm/pipetest.cxx | 5 +- extensions/test/stm/testfactreg.cxx | 5 +- extensions/test/stm/testfactreg.hxx | 5 +- extensions/util/hidother.src | 5 +- extensions/util/makefile.mk | 6 +- extensions/util/makefile.pmk | 6 +- extensions/util/target.pmk | 6 +- extensions/workben/makefile.mk | 6 +- extensions/workben/pythonautotest.cxx | 5 +- extensions/workben/pythontest.cxx | 5 +- extensions/workben/testcomponent.cxx | 5 +- extensions/workben/testframecontrol.cxx | 5 +- extensions/workben/testpgp.cxx | 5 +- extensions/workben/testresource.cxx | 5 +- extensions/workben/testresource.src | 5 +- forms/inc/makefile.mk | 6 +- forms/inc/pch/precompiled_forms.cxx | 5 +- forms/inc/pch/precompiled_forms.hxx | 5 +- forms/makefile.pmk | 8 +-- .../qa/complex/forms/CheckOGroupBoxModel.java | 5 +- forms/qa/complex/forms/makefile.mk | 6 +- .../integration/forms/ControlValidation.java | 5 +- .../integration/forms/ControlValidator.java | 5 +- forms/qa/integration/forms/DateValidator.java | 5 +- .../qa/integration/forms/DocumentHelper.java | 5 +- forms/qa/integration/forms/DocumentType.java | 5 +- .../integration/forms/DocumentViewHelper.java | 5 +- forms/qa/integration/forms/FormComponent.java | 5 +- .../qa/integration/forms/FormControlTest.java | 5 +- forms/qa/integration/forms/FormLayer.java | 5 +- .../integration/forms/FormPropertyBags.java | 5 +- forms/qa/integration/forms/ListBox.java | 2 +- forms/qa/integration/forms/ListSelection.java | 5 +- .../forms/ListSelectionValidator.java | 5 +- .../integration/forms/MasterDetailForms.java | 5 +- .../integration/forms/NumericValidator.java | 5 +- forms/qa/integration/forms/RadioButtons.java | 5 +- .../forms/SingleControlValidation.java | 5 +- .../forms/SpreadsheetDocument.java | 5 +- .../qa/integration/forms/SpreadsheetView.java | 5 +- .../forms/TableCellTextBinding.java | 5 +- forms/qa/integration/forms/TestCase.java | 5 +- forms/qa/integration/forms/TestSkeleton.java | 2 +- forms/qa/integration/forms/TextValidator.java | 5 +- forms/qa/integration/forms/TimeValidator.java | 5 +- forms/qa/integration/forms/ValueBinding.java | 5 +- forms/qa/integration/forms/WaitForInput.java | 5 +- .../qa/integration/forms/XMLFormSettings.java | 5 +- forms/qa/makefile.mk | 6 +- forms/qa/unoapi/makefile.mk | 6 +- forms/source/component/BaseListBox.hxx | 5 +- forms/source/component/Button.cxx | 5 +- forms/source/component/Button.hxx | 5 +- forms/source/component/CheckBox.cxx | 5 +- forms/source/component/CheckBox.hxx | 5 +- forms/source/component/Columns.cxx | 5 +- forms/source/component/Columns.hxx | 5 +- forms/source/component/ComboBox.cxx | 5 +- forms/source/component/ComboBox.hxx | 5 +- forms/source/component/Currency.cxx | 5 +- forms/source/component/Currency.hxx | 5 +- forms/source/component/DatabaseForm.cxx | 5 +- forms/source/component/DatabaseForm.hxx | 5 +- forms/source/component/Date.cxx | 5 +- forms/source/component/Date.hxx | 5 +- forms/source/component/Edit.cxx | 5 +- forms/source/component/Edit.hxx | 5 +- forms/source/component/EditBase.cxx | 5 +- forms/source/component/EditBase.hxx | 5 +- forms/source/component/EventThread.cxx | 5 +- forms/source/component/EventThread.hxx | 5 +- forms/source/component/File.cxx | 5 +- forms/source/component/File.hxx | 5 +- forms/source/component/Filter.cxx | 5 +- forms/source/component/Filter.hxx | 5 +- forms/source/component/FixedText.cxx | 5 +- forms/source/component/FixedText.hxx | 5 +- forms/source/component/FormComponent.cxx | 5 +- forms/source/component/FormattedField.cxx | 5 +- forms/source/component/FormattedField.hxx | 5 +- .../component/FormattedFieldWrapper.cxx | 5 +- .../component/FormattedFieldWrapper.hxx | 5 +- forms/source/component/FormsCollection.cxx | 5 +- forms/source/component/FormsCollection.hxx | 5 +- forms/source/component/Grid.cxx | 5 +- forms/source/component/Grid.hxx | 5 +- forms/source/component/GroupBox.cxx | 5 +- forms/source/component/GroupBox.hxx | 5 +- forms/source/component/GroupManager.cxx | 5 +- forms/source/component/GroupManager.hxx | 5 +- forms/source/component/Hidden.cxx | 5 +- forms/source/component/Hidden.hxx | 5 +- forms/source/component/ImageButton.cxx | 5 +- forms/source/component/ImageButton.hxx | 5 +- forms/source/component/ImageControl.cxx | 5 +- forms/source/component/ImageControl.hxx | 5 +- forms/source/component/ListBox.cxx | 5 +- forms/source/component/ListBox.hxx | 5 +- forms/source/component/Numeric.cxx | 5 +- forms/source/component/Numeric.hxx | 5 +- forms/source/component/Pattern.cxx | 5 +- forms/source/component/Pattern.hxx | 5 +- forms/source/component/RadioButton.cxx | 5 +- forms/source/component/RadioButton.hxx | 5 +- forms/source/component/Time.cxx | 5 +- forms/source/component/Time.hxx | 5 +- forms/source/component/cachedrowset.cxx | 5 +- forms/source/component/cachedrowset.hxx | 5 +- forms/source/component/clickableimage.cxx | 5 +- forms/source/component/clickableimage.hxx | 5 +- forms/source/component/cloneable.cxx | 5 +- forms/source/component/entrylisthelper.cxx | 5 +- forms/source/component/entrylisthelper.hxx | 5 +- forms/source/component/errorbroadcaster.cxx | 5 +- forms/source/component/errorbroadcaster.hxx | 5 +- forms/source/component/findpos.cxx | 5 +- forms/source/component/findpos.hxx | 5 +- forms/source/component/formcontrolfont.cxx | 5 +- forms/source/component/imgprod.cxx | 5 +- forms/source/component/imgprod.hxx | 5 +- forms/source/component/makefile.mk | 6 +- forms/source/component/navigationbar.cxx | 5 +- forms/source/component/navigationbar.hxx | 5 +- forms/source/component/propertybaghelper.cxx | 5 +- forms/source/component/refvaluecomponent.cxx | 5 +- forms/source/component/refvaluecomponent.hxx | 5 +- forms/source/component/scrollbar.cxx | 5 +- forms/source/component/scrollbar.hxx | 5 +- forms/source/component/spinbutton.cxx | 5 +- forms/source/component/spinbutton.hxx | 5 +- .../helper/commanddescriptionprovider.cxx | 45 ++++++------- forms/source/helper/commandimageprovider.cxx | 45 ++++++------- .../helper/controlfeatureinterception.cxx | 5 +- forms/source/helper/formnavigation.cxx | 5 +- forms/source/helper/makefile.mk | 6 +- forms/source/helper/resettable.cxx | 45 ++++++------- forms/source/helper/urltransformer.cxx | 5 +- forms/source/helper/windowstateguard.cxx | 5 +- forms/source/inc/FormComponent.hxx | 5 +- forms/source/inc/InterfaceContainer.hxx | 5 +- forms/source/inc/cloneable.hxx | 5 +- .../source/inc/commanddescriptionprovider.hxx | 45 ++++++------- forms/source/inc/commandimageprovider.hxx | 45 ++++++------- forms/source/inc/componenttools.hxx | 5 +- .../source/inc/controlfeatureinterception.hxx | 5 +- forms/source/inc/featuredispatcher.hxx | 5 +- forms/source/inc/formcontrolfont.hxx | 5 +- forms/source/inc/formnavigation.hxx | 5 +- forms/source/inc/forms_module.hxx | 5 +- forms/source/inc/frm_module.hxx | 5 +- forms/source/inc/frm_resource.hrc | 5 +- forms/source/inc/frm_resource.hxx | 5 +- forms/source/inc/frm_strings.hxx | 5 +- forms/source/inc/ids.hxx | 5 +- forms/source/inc/limitedformats.hxx | 5 +- forms/source/inc/listenercontainers.hxx | 5 +- forms/source/inc/property.hrc | 5 +- forms/source/inc/property.hxx | 5 +- forms/source/inc/propertybaghelper.hxx | 5 +- forms/source/inc/resettable.hxx | 45 ++++++------- forms/source/inc/services.hxx | 5 +- forms/source/inc/togglestate.hxx | 45 ++++++------- forms/source/inc/urltransformer.hxx | 5 +- forms/source/inc/windowstateguard.hxx | 5 +- forms/source/misc/InterfaceContainer.cxx | 5 +- forms/source/misc/componenttools.cxx | 5 +- forms/source/misc/frm_module.cxx | 5 +- forms/source/misc/frm_strings.cxx | 5 +- forms/source/misc/ids.cxx | 5 +- forms/source/misc/limitedformats.cxx | 5 +- forms/source/misc/listenercontainers.cxx | 5 +- forms/source/misc/makefile.mk | 6 +- forms/source/misc/property.cxx | 5 +- forms/source/misc/services.cxx | 5 +- forms/source/resource/frm_resource.cxx | 5 +- forms/source/resource/makefile.mk | 6 +- forms/source/resource/strings.src | 5 +- forms/source/resource/xforms.src | 5 +- forms/source/richtext/attributedispatcher.cxx | 5 +- forms/source/richtext/attributedispatcher.hxx | 5 +- forms/source/richtext/clipboarddispatcher.cxx | 5 +- forms/source/richtext/clipboarddispatcher.hxx | 5 +- forms/source/richtext/featuredispatcher.cxx | 5 +- forms/source/richtext/featuredispatcher.hxx | 5 +- forms/source/richtext/makefile.mk | 6 +- .../parametrizedattributedispatcher.cxx | 5 +- .../parametrizedattributedispatcher.hxx | 5 +- forms/source/richtext/richtextcontrol.cxx | 5 +- forms/source/richtext/richtextcontrol.hxx | 5 +- forms/source/richtext/richtextengine.cxx | 5 +- forms/source/richtext/richtextengine.hxx | 5 +- forms/source/richtext/richtextimplcontrol.cxx | 5 +- forms/source/richtext/richtextimplcontrol.hxx | 5 +- forms/source/richtext/richtextmodel.cxx | 5 +- forms/source/richtext/richtextmodel.hxx | 5 +- forms/source/richtext/richtextunowrapper.cxx | 5 +- forms/source/richtext/richtextunowrapper.hxx | 5 +- forms/source/richtext/richtextvclcontrol.cxx | 5 +- forms/source/richtext/richtextvclcontrol.hxx | 5 +- forms/source/richtext/richtextviewport.cxx | 5 +- forms/source/richtext/richtextviewport.hxx | 5 +- forms/source/richtext/rtattributehandler.cxx | 5 +- forms/source/richtext/rtattributehandler.hxx | 5 +- forms/source/richtext/rtattributes.hxx | 5 +- forms/source/richtext/specialdispatchers.cxx | 5 +- forms/source/richtext/specialdispatchers.hxx | 5 +- .../source/richtext/textattributelistener.hxx | 5 +- forms/source/runtime/formoperations.cxx | 5 +- forms/source/runtime/formoperations.hxx | 5 +- forms/source/runtime/makefile.mk | 6 +- forms/source/solar/component/makefile.mk | 6 +- .../source/solar/component/navbarcontrol.cxx | 5 +- .../source/solar/component/navbarcontrol.hxx | 5 +- forms/source/solar/control/makefile.mk | 6 +- forms/source/solar/control/navtoolbar.cxx | 5 +- forms/source/solar/inc/navtoolbar.hxx | 5 +- forms/source/xforms/NameContainer.hxx | 5 +- forms/source/xforms/binding.cxx | 5 +- forms/source/xforms/binding.hxx | 5 +- forms/source/xforms/boolexpression.cxx | 5 +- forms/source/xforms/boolexpression.hxx | 5 +- forms/source/xforms/collection.hxx | 5 +- forms/source/xforms/computedexpression.cxx | 5 +- forms/source/xforms/computedexpression.hxx | 5 +- forms/source/xforms/convert.cxx | 5 +- forms/source/xforms/convert.hxx | 5 +- forms/source/xforms/datatyperepository.cxx | 5 +- forms/source/xforms/datatyperepository.hxx | 5 +- forms/source/xforms/datatypes.cxx | 5 +- forms/source/xforms/datatypes.hxx | 5 +- forms/source/xforms/datatypes_impl.hxx | 5 +- forms/source/xforms/enumeration.cxx | 5 +- forms/source/xforms/enumeration.hxx | 5 +- forms/source/xforms/evaluationcontext.hxx | 5 +- forms/source/xforms/makefile.mk | 6 +- forms/source/xforms/mip.cxx | 5 +- forms/source/xforms/mip.hxx | 5 +- forms/source/xforms/model.cxx | 5 +- forms/source/xforms/model.hxx | 5 +- forms/source/xforms/model_helper.hxx | 5 +- forms/source/xforms/model_ui.cxx | 5 +- forms/source/xforms/namedcollection.hxx | 5 +- forms/source/xforms/pathexpression.cxx | 5 +- forms/source/xforms/pathexpression.hxx | 5 +- forms/source/xforms/propertysetbase.cxx | 5 +- forms/source/xforms/propertysetbase.hxx | 5 +- forms/source/xforms/resourcehelper.cxx | 5 +- forms/source/xforms/resourcehelper.hxx | 5 +- forms/source/xforms/submission.cxx | 5 +- forms/source/xforms/submission.hxx | 5 +- forms/source/xforms/submission/makefile.mk | 6 +- forms/source/xforms/submission/replace.cxx | 5 +- .../xforms/submission/serialization.hxx | 5 +- .../submission/serialization_app_xml.cxx | 5 +- .../submission/serialization_app_xml.hxx | 5 +- .../submission/serialization_multi_form.hxx | 5 +- .../serialization_multi_related.hxx | 5 +- .../submission/serialization_urlencoded.cxx | 5 +- .../submission/serialization_urlencoded.hxx | 5 +- forms/source/xforms/submission/submission.hxx | 5 +- .../xforms/submission/submission_get.cxx | 5 +- .../xforms/submission/submission_get.hxx | 5 +- .../xforms/submission/submission_post.cxx | 5 +- .../xforms/submission/submission_post.hxx | 5 +- .../xforms/submission/submission_put.cxx | 5 +- .../xforms/submission/submission_put.hxx | 5 +- forms/source/xforms/unohelper.cxx | 5 +- forms/source/xforms/unohelper.hxx | 5 +- .../xforms/warnings_guard_unicode_regex.h | 5 +- forms/source/xforms/xforms_services.cxx | 5 +- forms/source/xforms/xformsevent.cxx | 5 +- forms/source/xforms/xmlhelper.cxx | 5 +- forms/source/xforms/xmlhelper.hxx | 5 +- forms/source/xforms/xpathlib/extension.cxx | 5 +- forms/source/xforms/xpathlib/makefile.mk | 6 +- forms/source/xforms/xpathlib/xpathlib.cxx | 5 +- forms/util/makefile.mk | 6 +- javainstaller2/makefile.mk | 6 +- .../src/Helpfiles/create_helpfiles.pl | 6 +- .../src/Helpfiles/helpfilenames.txt | 6 +- javainstaller2/src/Helpfiles/makefile.mk | 6 +- .../setup/Controller/AcceptLicenseCtrl.java | 5 +- .../Controller/ChooseComponentsCtrl.java | 5 +- .../setup/Controller/ChooseDirectoryCtrl.java | 5 +- .../ChooseInstallationTypeCtrl.java | 5 +- .../ChooseUninstallationComponentsCtrl.java | 5 +- .../ChooseUninstallationTypeCtrl.java | 5 +- .../Controller/InstallationCompletedCtrl.java | 5 +- .../Controller/InstallationImminentCtrl.java | 5 +- .../Controller/InstallationOngoingCtrl.java | 5 +- .../setup/Controller/PrologueCtrl.java | 5 +- .../UninstallationCompletedCtrl.java | 5 +- .../UninstallationImminentCtrl.java | 5 +- .../Controller/UninstallationOngoingCtrl.java | 5 +- .../UninstallationPrologueCtrl.java | 5 +- .../org/openoffice/setup/DeckOfPanels.java | 5 +- .../setup/Dialogs/DatabaseDialog.java | 5 +- .../setup/Dialogs/DetailsDialog.java | 5 +- .../openoffice/setup/Dialogs/HelpDialog.java | 5 +- .../org/openoffice/setup/InstallData.java | 5 +- .../openoffice/setup/Installer/Installer.java | 5 +- .../setup/Installer/InstallerFactory.java | 5 +- .../setup/Installer/LinuxInstaller.java | 5 +- .../setup/Installer/SolarisInstaller.java | 5 +- .../setup/InstallerHelper/LinuxHelper.java | 5 +- .../setup/InstallerHelper/SolarisHelper.java | 5 +- .../JavaSetup/org/openoffice/setup/Main.java | 5 +- .../openoffice/setup/Panel/AcceptLicense.java | 5 +- .../setup/Panel/ChooseComponents.java | 5 +- .../setup/Panel/ChooseDirectory.java | 5 +- .../setup/Panel/ChooseInstallationType.java | 5 +- .../Panel/ChooseUninstallationComponents.java | 5 +- .../setup/Panel/ChooseUninstallationType.java | 5 +- .../setup/Panel/InstallationImminent.java | 5 +- .../setup/Panel/InstallationOngoing.java | 5 +- .../org/openoffice/setup/Panel/Prologue.java | 5 +- .../setup/Panel/UninstallationCompleted.java | 5 +- .../setup/Panel/UninstallationImminent.java | 5 +- .../setup/Panel/UninstallationOngoing.java | 5 +- .../setup/Panel/UninstallationPrologue.java | 5 +- .../setup/Panel/installationCompleted.java | 5 +- .../org/openoffice/setup/PanelController.java | 5 +- .../setup/PanelHelper/PanelLabel.java | 5 +- .../setup/PanelHelper/PanelTitle.java | 5 +- .../setup/PanelHelper/TreeNodeRenderer.java | 5 +- .../org/openoffice/setup/ResourceManager.java | 5 +- .../openoffice/setup/SetupActionListener.java | 5 +- .../SetupData/DisplayPackageDescription.java | 5 +- .../setup/SetupData/PackageDescription.java | 5 +- .../setup/SetupData/ProductDescription.java | 5 +- .../setup/SetupData/SetupDataProvider.java | 5 +- .../SetupData/XMLPackageDescription.java | 5 +- .../org/openoffice/setup/SetupFrame.java | 5 +- .../openoffice/setup/Util/AbortInstaller.java | 5 +- .../org/openoffice/setup/Util/Calculator.java | 5 +- .../org/openoffice/setup/Util/Controller.java | 5 +- .../org/openoffice/setup/Util/Converter.java | 5 +- .../Util/DialogFocusTraversalPolicy.java | 5 +- .../org/openoffice/setup/Util/Dumper.java | 5 +- .../openoffice/setup/Util/ExecuteProcess.java | 5 +- .../setup/Util/FileExtensionFilter.java | 5 +- .../org/openoffice/setup/Util/InfoCtrl.java | 5 +- .../org/openoffice/setup/Util/InfoDir.java | 5 +- .../org/openoffice/setup/Util/Informer.java | 5 +- .../setup/Util/InstallChangeCtrl.java | 5 +- .../org/openoffice/setup/Util/LogManager.java | 5 +- .../org/openoffice/setup/Util/ModuleCtrl.java | 5 +- .../setup/Util/PackageCollector.java | 5 +- .../org/openoffice/setup/Util/Parser.java | 5 +- .../openoffice/setup/Util/SystemManager.java | 5 +- javainstaller2/src/Localization/makefile.mk | 6 +- .../src/Localization/setupstrings.ulf | 5 +- .../src/Properties/create_property.pl | 6 +- javainstaller2/src/Properties/makefile.mk | 6 +- lingucomponent/inc/makefile.mk | 6 +- .../inc/pch/precompiled_lingucomponent.cxx | 5 +- .../inc/pch/precompiled_lingucomponent.hxx | 5 +- .../hyphenator/altlinuxhyph/hyphen/hreg.cxx | 5 +- .../altlinuxhyph/hyphen/hyphenimp.cxx | 5 +- .../altlinuxhyph/hyphen/hyphenimp.hxx | 5 +- .../altlinuxhyph/hyphen/makefile.mk | 6 +- .../source/languageguessing/altstrfunc.cxx | 5 +- .../source/languageguessing/altstrfunc.hxx | 5 +- .../source/languageguessing/guess.cxx | 5 +- .../source/languageguessing/guess.hxx | 5 +- .../source/languageguessing/guesslang.cxx | 5 +- .../source/languageguessing/makefile.mk | 6 +- .../source/languageguessing/simpleguesser.cxx | 5 +- .../source/languageguessing/simpleguesser.hxx | 5 +- lingucomponent/source/lingutil/lingutil.cxx | 5 +- lingucomponent/source/lingutil/lingutil.hxx | 5 +- lingucomponent/source/lingutil/makefile.mk | 6 +- .../source/spellcheck/macosxspell/macreg.cxx | 5 +- .../spellcheck/macosxspell/macspellimp.cxx | 5 +- .../spellcheck/macosxspell/macspellimp.hxx | 5 +- .../source/spellcheck/macosxspell/makefile.mk | 6 +- .../source/spellcheck/spell/makefile.mk | 8 +-- .../source/spellcheck/spell/sreg.cxx | 5 +- .../source/spellcheck/spell/sspellimp.cxx | 5 +- .../source/spellcheck/spell/sspellimp.hxx | 5 +- .../source/thesaurus/libnth/makefile.mk | 6 +- .../source/thesaurus/libnth/nthesdta.cxx | 5 +- .../source/thesaurus/libnth/nthesdta.hxx | 5 +- .../source/thesaurus/libnth/nthesimp.cxx | 5 +- .../source/thesaurus/libnth/nthesimp.hxx | 5 +- .../source/thesaurus/libnth/ntreg.cxx | 5 +- .../source/thesaurus/mythes/example.cxx | 5 +- .../source/thesaurus/mythes/makefile.mk | 6 +- .../source/thesaurus/mythes/mythes.cxx | 5 +- package/dtd/Manifest.dtd | 8 +-- package/inc/ByteChucker.hxx | 5 +- package/inc/ByteGrabber.hxx | 5 +- package/inc/CRC32.hxx | 5 +- package/inc/Deflater.hxx | 5 +- package/inc/EncryptedDataHeader.hxx | 5 +- package/inc/EncryptionData.hxx | 5 +- package/inc/HashMaps.hxx | 5 +- package/inc/Inflater.hxx | 5 +- package/inc/PackageConstants.hxx | 5 +- package/inc/ZipEntry.hxx | 5 +- package/inc/ZipEnumeration.hxx | 5 +- package/inc/ZipFile.hxx | 5 +- package/inc/ZipOutputStream.hxx | 5 +- package/inc/ZipPackage.hxx | 5 +- package/inc/ZipPackageBuffer.hxx | 5 +- package/inc/ZipPackageFolder.hxx | 5 +- package/inc/makefile.mk | 6 +- package/inc/mutexholder.hxx | 5 +- package/inc/pch/precompiled_package.cxx | 5 +- package/inc/pch/precompiled_package.hxx | 5 +- package/inc/zipfileaccess.hxx | 5 +- .../qa/ofopxmlstorages/StorageUnitTest.java | 5 +- package/qa/ofopxmlstorages/makefile.mk | 6 +- package/qa/storages/StorageUnitTest.java | 5 +- package/qa/storages/makefile.mk | 6 +- package/source/manifest/Base64Codec.cxx | 5 +- package/source/manifest/Base64Codec.hxx | 5 +- package/source/manifest/ManifestDefines.hxx | 5 +- package/source/manifest/ManifestExport.cxx | 5 +- package/source/manifest/ManifestExport.hxx | 5 +- package/source/manifest/ManifestImport.cxx | 7 +- package/source/manifest/ManifestImport.hxx | 5 +- package/source/manifest/ManifestReader.cxx | 5 +- package/source/manifest/ManifestReader.hxx | 5 +- package/source/manifest/ManifestWriter.cxx | 5 +- package/source/manifest/ManifestWriter.hxx | 5 +- package/source/manifest/UnoRegister.cxx | 5 +- package/source/manifest/makefile.mk | 6 +- package/source/xstor/disposelistener.cxx | 5 +- package/source/xstor/disposelistener.hxx | 5 +- package/source/xstor/makefile.mk | 6 +- package/source/xstor/ocompinstream.cxx | 5 +- package/source/xstor/ocompinstream.hxx | 5 +- package/source/xstor/ohierarchyholder.cxx | 5 +- package/source/xstor/ohierarchyholder.hxx | 5 +- package/source/xstor/oseekinstream.cxx | 5 +- package/source/xstor/oseekinstream.hxx | 5 +- package/source/xstor/owriteablestream.cxx | 5 +- package/source/xstor/owriteablestream.hxx | 5 +- package/source/xstor/register.cxx | 5 +- .../source/xstor/selfterminatefilestream.cxx | 5 +- .../source/xstor/selfterminatefilestream.hxx | 5 +- .../source/xstor/switchpersistencestream.cxx | 5 +- .../source/xstor/switchpersistencestream.hxx | 5 +- package/source/xstor/xfactory.cxx | 5 +- package/source/xstor/xfactory.hxx | 5 +- package/source/xstor/xstorage.cxx | 5 +- package/source/xstor/xstorage.hxx | 5 +- package/source/zipapi/ByteChucker.cxx | 5 +- package/source/zipapi/ByteGrabber.cxx | 5 +- package/source/zipapi/CRC32.cxx | 5 +- package/source/zipapi/Deflater.cxx | 5 +- package/source/zipapi/EntryInputStream.cxx | 5 +- package/source/zipapi/EntryInputStream.hxx | 5 +- package/source/zipapi/Inflater.cxx | 5 +- package/source/zipapi/MemoryByteGrabber.hxx | 5 +- package/source/zipapi/XFileStream.cxx | 5 +- package/source/zipapi/XFileStream.hxx | 5 +- package/source/zipapi/XMemoryStream.cxx | 5 +- package/source/zipapi/XMemoryStream.hxx | 5 +- package/source/zipapi/XUnbufferedStream.cxx | 5 +- package/source/zipapi/XUnbufferedStream.hxx | 5 +- package/source/zipapi/ZipEnumeration.cxx | 5 +- package/source/zipapi/ZipFile.cxx | 5 +- package/source/zipapi/ZipOutputStream.cxx | 5 +- package/source/zipapi/makefile.mk | 6 +- package/source/zippackage/ContentInfo.hxx | 5 +- package/source/zippackage/ZipPackage.cxx | 5 +- .../source/zippackage/ZipPackageBuffer.cxx | 5 +- package/source/zippackage/ZipPackageEntry.cxx | 5 +- package/source/zippackage/ZipPackageEntry.hxx | 5 +- .../source/zippackage/ZipPackageFolder.cxx | 5 +- .../ZipPackageFolderEnumeration.cxx | 5 +- .../ZipPackageFolderEnumeration.hxx | 5 +- package/source/zippackage/ZipPackageSink.cxx | 5 +- package/source/zippackage/ZipPackageSink.hxx | 5 +- .../source/zippackage/ZipPackageStream.cxx | 5 +- .../source/zippackage/ZipPackageStream.hxx | 5 +- package/source/zippackage/makefile.mk | 6 +- .../source/zippackage/wrapstreamforshare.cxx | 5 +- .../source/zippackage/wrapstreamforshare.hxx | 5 +- package/source/zippackage/zipfileaccess.cxx | 5 +- package/util/makefile.mk | 6 +- setup_native/inc/setup_native/qswin32.h | 5 +- setup_native/scripts/admin.pl | 6 +- setup_native/scripts/makefile.mk | 6 +- setup_native/scripts/source/makefile.mk | 6 +- setup_native/scripts/stclient_wrapper.sh | 2 +- setup_native/scripts/userland.txt | 6 +- setup_native/source/java/javaversion.dat | 6 +- setup_native/source/java/javaversion2.dat | 6 +- setup_native/source/mac/makefile.mk | 42 +++++------- .../source/packinfo/packinfo_brand.txt | 6 +- .../source/packinfo/packinfo_sdkoo.txt | 6 +- setup_native/source/packinfo/packinfo_ure.txt | 6 +- .../source/packinfo/private1copyrightfile | 2 +- .../source/packinfo/solariscopyrightfile | 2 +- setup_native/source/ulfconv/makefile.mk | 6 +- setup_native/source/ulfconv/ulfconv.cxx | 5 +- .../customactions/indexingfilter/makefile.mk | 6 +- .../indexingfilter/restartindexingservice.cxx | 5 +- .../customactions/javafilter/jfregca.cxx | 5 +- .../customactions/javafilter/makefile.mk | 6 +- .../checkrunningofficelanguagepack.cxx | 5 +- .../languagepacks/lngpckinsthelper.cxx | 5 +- .../customactions/languagepacks/makefile.mk | 6 +- .../languagepacks/respintest.cxx | 5 +- .../win32/customactions/patch/makefile.mk | 6 +- .../customactions/patch/swappatchfiles.cxx | 5 +- .../customactions/quickstarter/makefile.mk | 6 +- .../quickstarter/remove_quickstart_link.cxx | 5 +- .../quickstarter/shutdown_quickstart.cxx | 5 +- .../win32/customactions/rebase/makefile.mk | 6 +- .../customactions/reg4allmsdoc/makefile.mk | 6 +- .../customactions/reg4allmsdoc/reg4allmsi.cxx | 6 +- .../customactions/reg4msdoc/constants.hxx | 5 +- .../win32/customactions/reg4msdoc/makefile.mk | 6 +- .../customactions/reg4msdoc/reg4msdocmsi.cxx | 5 +- .../customactions/reg4msdoc/register.cxx | 5 +- .../customactions/reg4msdoc/register.hxx | 5 +- .../customactions/reg4msdoc/registry.cxx | 5 +- .../customactions/reg4msdoc/registry.hxx | 5 +- .../customactions/reg4msdoc/registryw9x.cxx | 5 +- .../customactions/reg4msdoc/registryw9x.hxx | 5 +- .../customactions/reg4msdoc/registrywnt.cxx | 5 +- .../customactions/reg4msdoc/registrywnt.hxx | 5 +- .../reg4msdoc/stringconverter.cxx | 5 +- .../reg4msdoc/stringconverter.hxx | 5 +- .../win32/customactions/reg64/makefile.mk | 6 +- .../win32/customactions/reg64/reg64.cxx | 49 +++++++------- .../customactions/regactivex/makefile.mk | 6 +- .../customactions/regactivex/regactivex.cxx | 5 +- .../customactions/regpatchactivex/makefile.mk | 6 +- .../regpatchactivex/regpatchactivex.cxx | 5 +- .../win32/customactions/relnotes/makefile.mk | 6 +- .../win32/customactions/relnotes/relnotes.cxx | 2 +- .../shellextensions/checkdirectory.cxx | 5 +- .../shellextensions/checkpatches.cxx | 5 +- .../shellextensions/checkrunningoffice.cxx | 5 +- .../shellextensions/copyeditiondata.cxx | 5 +- .../shellextensions/copyextensiondata.cxx | 5 +- .../shellextensions/dotnetcheck.cxx | 5 +- .../shellextensions/iconcache.cxx | 5 +- .../shellextensions/layerlinks.cxx | 5 +- .../customactions/shellextensions/makefile.mk | 6 +- .../shellextensions/migrateinstallpath.cxx | 5 +- .../shellextensions/postuninstall.cxx | 5 +- .../shellextensions/registerextensions.cxx | 5 +- .../shellextensions/setadmininstall.cxx | 5 +- .../shellextensions/shellextensions.cxx | 5 +- .../shellextensions/startmenuicon.cxx | 5 +- .../customactions/shellextensions/upgrade.cxx | 5 +- .../shellextensions/vistaspecial.cxx | 5 +- .../customactions/tools/checkversion.cxx | 5 +- .../win32/customactions/tools/makefile.mk | 6 +- .../win32/customactions/tools/seterror.cxx | 5 +- .../win32/customactions/tools/seterror.hxx | 5 +- .../star/wizards/agenda/AgendaTemplate.java | 5 +- .../wizards/agenda/AgendaWizardDialog.java | 5 +- .../agenda/AgendaWizardDialogConst.java | 5 +- .../agenda/AgendaWizardDialogImpl.java | 5 +- .../agenda/AgendaWizardDialogResources.java | 5 +- .../com/sun/star/wizards/agenda/CGAgenda.java | 5 +- .../com/sun/star/wizards/agenda/CGTopic.java | 5 +- .../sun/star/wizards/agenda/CallWizard.java | 5 +- .../star/wizards/agenda/TemplateConsts.java | 5 +- .../star/wizards/agenda/TopicsControl.java | 5 +- .../com/sun/star/wizards/agenda/makefile.mk | 6 +- .../sun/star/wizards/common/ConfigGroup.java | 5 +- .../sun/star/wizards/common/ConfigNode.java | 5 +- .../sun/star/wizards/common/ConfigSet.java | 5 +- .../star/wizards/common/Configuration.java | 5 +- .../sun/star/wizards/common/DebugHelper.java | 6 +- .../com/sun/star/wizards/common/Desktop.java | 5 +- .../sun/star/wizards/common/FileAccess.java | 5 +- .../com/sun/star/wizards/common/Helper.java | 5 +- .../sun/star/wizards/common/IRenderer.java | 5 +- .../sun/star/wizards/common/Indexable.java | 6 +- .../wizards/common/InvalidQueryException.java | 6 +- .../sun/star/wizards/common/JavaTools.java | 5 +- .../wizards/common/NoValidPathException.java | 6 +- .../star/wizards/common/NumberFormatter.java | 5 +- .../star/wizards/common/NumericalHelper.java | 6 +- .../sun/star/wizards/common/Properties.java | 6 +- .../wizards/common/PropertySetHelper.java | 6 +- .../com/sun/star/wizards/common/Resource.java | 5 +- .../sun/star/wizards/common/SystemDialog.java | 5 +- .../common/TerminateWizardException.java | 6 +- wizards/com/sun/star/wizards/common/UCB.java | 6 +- .../sun/star/wizards/common/XMLHelper.java | 6 +- .../sun/star/wizards/common/XMLProvider.java | 6 +- .../sun/star/wizards/db/BlindtextCreator.java | 5 +- .../star/wizards/db/ColumnPropertySet.java | 5 +- .../sun/star/wizards/db/CommandMetaData.java | 5 +- .../com/sun/star/wizards/db/CommandName.java | 5 +- .../com/sun/star/wizards/db/DBMetaData.java | 5 +- .../com/sun/star/wizards/db/FieldColumn.java | 5 +- .../sun/star/wizards/db/QueryMetaData.java | 5 +- .../com/sun/star/wizards/db/RecordParser.java | 5 +- .../star/wizards/db/RelationController.java | 5 +- .../sun/star/wizards/db/SQLQueryComposer.java | 5 +- .../sun/star/wizards/db/TableDescriptor.java | 5 +- .../sun/star/wizards/db/TypeInspector.java | 5 +- .../sun/star/wizards/document/Control.java | 5 +- .../wizards/document/DatabaseControl.java | 5 +- .../star/wizards/document/FormHandler.java | 5 +- .../star/wizards/document/GridControl.java | 5 +- .../star/wizards/document/OfficeDocument.java | 5 +- .../com/sun/star/wizards/document/Shape.java | 5 +- .../wizards/document/TimeStampControl.java | 5 +- wizards/com/sun/star/wizards/fax/CGFax.java | 6 +- .../com/sun/star/wizards/fax/CGFaxWizard.java | 6 +- .../com/sun/star/wizards/fax/CallWizard.java | 6 +- .../com/sun/star/wizards/fax/FaxDocument.java | 6 +- .../sun/star/wizards/fax/FaxWizardDialog.java | 6 +- .../wizards/fax/FaxWizardDialogConst.java | 6 +- .../star/wizards/fax/FaxWizardDialogImpl.java | 6 +- .../wizards/fax/FaxWizardDialogResources.java | 6 +- wizards/com/sun/star/wizards/fax/makefile.mk | 6 +- .../sun/star/wizards/form/CallFormWizard.java | 5 +- .../star/wizards/form/DataEntrySetter.java | 5 +- .../sun/star/wizards/form/FieldLinker.java | 5 +- .../com/sun/star/wizards/form/Finalizer.java | 5 +- .../star/wizards/form/FormConfiguration.java | 5 +- .../wizards/form/FormControlArranger.java | 5 +- .../sun/star/wizards/form/FormDocument.java | 5 +- .../com/sun/star/wizards/form/FormWizard.java | 5 +- .../sun/star/wizards/form/StyleApplier.java | 5 +- .../star/wizards/form/UIControlArranger.java | 5 +- .../star/wizards/form/XCallFormWizard.java | 5 +- wizards/com/sun/star/wizards/form/makefile.mk | 6 +- .../com/sun/star/wizards/letter/CGLetter.java | 6 +- .../star/wizards/letter/CGLetterWizard.java | 6 +- .../letter/CGPaperElementLocation.java | 6 +- .../sun/star/wizards/letter/CallWizard.java | 6 +- .../star/wizards/letter/LetterDocument.java | 6 +- .../wizards/letter/LetterWizardDialog.java | 6 +- .../letter/LetterWizardDialogConst.java | 6 +- .../letter/LetterWizardDialogEvents.java | 6 +- .../letter/LetterWizardDialogImpl.java | 6 +- .../letter/LetterWizardDialogResources.java | 6 +- .../sun/star/wizards/letter/LocaleCodes.java | 6 +- .../com/sun/star/wizards/letter/makefile.mk | 6 +- wizards/com/sun/star/wizards/makefile.mk | 6 +- .../star/wizards/query/CallQueryWizard.java | 5 +- .../com/sun/star/wizards/query/Finalizer.java | 5 +- .../sun/star/wizards/query/QuerySummary.java | 5 +- .../sun/star/wizards/query/QueryWizard.java | 5 +- .../star/wizards/query/XCallQueryWizard.java | 6 +- .../com/sun/star/wizards/query/makefile.mk | 6 +- .../star/wizards/report/CallReportWizard.java | 5 +- .../com/sun/star/wizards/report/DBColumn.java | 5 +- .../sun/star/wizards/report/Dataimport.java | 5 +- .../wizards/report/GroupFieldHandler.java | 5 +- .../report/IReportBuilderLayouter.java | 6 +- .../report/IReportDefinitionReadAccess.java | 6 +- .../star/wizards/report/IReportDocument.java | 6 +- .../sun/star/wizards/report/RecordTable.java | 5 +- .../star/wizards/report/ReportFinalizer.java | 6 +- .../report/ReportImplementationHelper.java | 6 +- .../star/wizards/report/ReportLayouter.java | 5 +- .../wizards/report/ReportTextDocument.java | 6 +- .../report/ReportTextImplementation.java | 6 +- .../sun/star/wizards/report/ReportWizard.java | 5 +- .../wizards/report/XCallReportWizard.java | 6 +- .../com/sun/star/wizards/report/makefile.mk | 6 +- .../ReportBuilderImplementation.java | 6 +- .../layout/ColumnarSingleColumn.java | 6 +- .../layout/ColumnarThreeColumns.java | 6 +- .../layout/ColumnarTwoColumns.java | 6 +- .../reportbuilder/layout/DesignTemplate.java | 6 +- .../layout/InBlocksLabelsAbove.java | 6 +- .../layout/InBlocksLabelsLeft.java | 6 +- .../reportbuilder/layout/LayoutConstants.java | 6 +- .../layout/ReportBuilderLayouter.java | 6 +- .../layout/SectionEmptyObject.java | 6 +- .../reportbuilder/layout/SectionLabel.java | 6 +- .../reportbuilder/layout/SectionObject.java | 6 +- .../layout/SectionTextField.java | 6 +- .../wizards/reportbuilder/layout/Tabular.java | 6 +- .../wizards/reportbuilder/layout/makefile.mk | 6 +- .../star/wizards/reportbuilder/makefile.mk | 6 +- .../sun/star/wizards/table/CGCategory.java | 5 +- .../com/sun/star/wizards/table/CGTable.java | 5 +- .../star/wizards/table/CallTableWizard.java | 5 +- .../star/wizards/table/FieldDescription.java | 5 +- .../star/wizards/table/FieldFormatter.java | 5 +- .../com/sun/star/wizards/table/Finalizer.java | 5 +- .../star/wizards/table/PrimaryKeyHandler.java | 5 +- .../star/wizards/table/ScenarioSelector.java | 5 +- .../sun/star/wizards/table/TableWizard.java | 5 +- .../star/wizards/table/XCallTableWizard.java | 6 +- .../com/sun/star/wizards/table/makefile.mk | 6 +- .../sun/star/wizards/text/TextDocument.java | 5 +- .../star/wizards/text/TextFieldHandler.java | 5 +- .../star/wizards/text/TextFrameHandler.java | 6 +- .../star/wizards/text/TextSectionHandler.java | 5 +- .../star/wizards/text/TextStyleHandler.java | 5 +- .../star/wizards/text/TextTableHandler.java | 5 +- .../sun/star/wizards/text/ViewHandler.java | 5 +- .../star/wizards/ui/AggregateComponent.java | 5 +- .../com/sun/star/wizards/ui/ButtonList.java | 5 +- .../wizards/ui/CommandFieldSelection.java | 5 +- .../sun/star/wizards/ui/ControlScroller.java | 5 +- .../wizards/ui/DBLimitedFieldSelection.java | 5 +- .../sun/star/wizards/ui/DocumentPreview.java | 5 +- .../sun/star/wizards/ui/FieldSelection.java | 5 +- .../sun/star/wizards/ui/FilterComponent.java | 5 +- .../com/sun/star/wizards/ui/ImageList.java | 5 +- .../sun/star/wizards/ui/PathSelection.java | 6 +- .../com/sun/star/wizards/ui/PeerConfig.java | 5 +- .../sun/star/wizards/ui/SortingComponent.java | 5 +- .../sun/star/wizards/ui/TitlesComponent.java | 5 +- .../com/sun/star/wizards/ui/UnoDialog.java | 5 +- .../com/sun/star/wizards/ui/UnoDialog2.java | 5 +- .../com/sun/star/wizards/ui/WizardDialog.java | 5 +- .../wizards/ui/XCommandSelectionListener.java | 6 +- .../com/sun/star/wizards/ui/XCompletion.java | 5 +- .../wizards/ui/XFieldSelectionListener.java | 6 +- .../wizards/ui/XPathSelectionListener.java | 6 +- .../wizards/ui/event/AbstractListener.java | 5 +- .../star/wizards/ui/event/CommonListener.java | 5 +- .../sun/star/wizards/ui/event/DataAware.java | 5 +- .../wizards/ui/event/DataAwareFields.java | 5 +- .../sun/star/wizards/ui/event/EventNames.java | 5 +- .../wizards/ui/event/ListModelBinder.java | 5 +- .../wizards/ui/event/MethodInvocation.java | 5 +- .../star/wizards/ui/event/RadioDataAware.java | 5 +- .../wizards/ui/event/SimpleDataAware.java | 5 +- .../com/sun/star/wizards/ui/event/Task.java | 5 +- .../sun/star/wizards/ui/event/TaskEvent.java | 5 +- .../star/wizards/ui/event/TaskListener.java | 5 +- .../star/wizards/ui/event/UnoDataAware.java | 5 +- .../wizards/web/AbstractErrorHandler.java | 5 +- .../star/wizards/web/BackgroundsDialog.java | 5 +- .../com/sun/star/wizards/web/CallWizard.java | 5 +- .../sun/star/wizards/web/ErrorHandler.java | 5 +- .../star/wizards/web/ExtensionVerifier.java | 5 +- .../com/sun/star/wizards/web/FTPDialog.java | 5 +- .../star/wizards/web/FTPDialogResources.java | 5 +- .../com/sun/star/wizards/web/IconsDialog.java | 5 +- .../sun/star/wizards/web/ImageListDialog.java | 5 +- .../sun/star/wizards/web/LogTaskListener.java | 6 +- wizards/com/sun/star/wizards/web/Process.java | 5 +- .../star/wizards/web/ProcessErrorHandler.java | 5 +- .../sun/star/wizards/web/ProcessErrors.java | 5 +- .../wizards/web/ProcessStatusRenderer.java | 5 +- .../sun/star/wizards/web/StatusDialog.java | 5 +- .../sun/star/wizards/web/StylePreview.java | 5 +- .../com/sun/star/wizards/web/TOCPreview.java | 5 +- .../com/sun/star/wizards/web/WWD_Events.java | 5 +- .../com/sun/star/wizards/web/WWD_General.java | 5 +- .../com/sun/star/wizards/web/WWD_Startup.java | 5 +- wizards/com/sun/star/wizards/web/WWHID.java | 6 +- .../com/sun/star/wizards/web/WebWizard.java | 6 +- .../sun/star/wizards/web/WebWizardConst.java | 6 +- .../sun/star/wizards/web/WebWizardDialog.java | 5 +- .../wizards/web/WebWizardDialogResources.java | 6 +- .../sun/star/wizards/web/data/CGArgument.java | 5 +- .../sun/star/wizards/web/data/CGContent.java | 5 +- .../sun/star/wizards/web/data/CGDesign.java | 5 +- .../sun/star/wizards/web/data/CGDocument.java | 5 +- .../sun/star/wizards/web/data/CGExporter.java | 5 +- .../sun/star/wizards/web/data/CGFilter.java | 5 +- .../star/wizards/web/data/CGGeneralInfo.java | 5 +- .../sun/star/wizards/web/data/CGIconSet.java | 5 +- .../sun/star/wizards/web/data/CGImage.java | 6 +- .../sun/star/wizards/web/data/CGLayout.java | 5 +- .../sun/star/wizards/web/data/CGPublish.java | 5 +- .../sun/star/wizards/web/data/CGSession.java | 5 +- .../star/wizards/web/data/CGSessionName.java | 5 +- .../sun/star/wizards/web/data/CGSettings.java | 6 +- .../sun/star/wizards/web/data/CGStyle.java | 5 +- .../star/wizards/web/data/ConfigSetItem.java | 6 +- .../star/wizards/web/data/TypeDetection.java | 6 +- .../com/sun/star/wizards/web/data/makefile.mk | 6 +- .../wizards/web/export/AbstractExporter.java | 6 +- .../web/export/ConfiguredExporter.java | 6 +- .../star/wizards/web/export/CopyExporter.java | 6 +- .../sun/star/wizards/web/export/Exporter.java | 5 +- .../wizards/web/export/FilterExporter.java | 5 +- .../web/export/ImpressHTMLExporter.java | 5 +- .../sun/star/wizards/web/export/makefile.mk | 6 +- wizards/com/sun/star/wizards/web/makefile.mk | 6 +- .../sun/star/wizards/web/status/ErrorLog.java | 6 +- .../wizards/web/status/ErrorReporter.java | 6 +- .../wizards/web/status/LogTaskListener.java | 6 +- .../com/sun/star/wizards/web/status/Task.java | 6 +- .../star/wizards/web/status/TaskEvent.java | 6 +- .../star/wizards/web/status/TaskListener.java | 6 +- wizards/source/config/makefile.mk | 6 +- wizards/source/configshare/makefile.mk | 6 +- wizards/source/depot/makefile.mk | 6 +- wizards/source/euro/euro.src | 5 +- wizards/source/euro/makefile.mk | 6 +- wizards/source/formwizard/dbwizres.src | 5 +- wizards/source/formwizard/makefile.mk | 6 +- wizards/source/gimmicks/makefile.mk | 6 +- wizards/source/imagelists/imagelists.src | 5 +- wizards/source/imagelists/makefile.mk | 6 +- wizards/source/importwizard/importwi.src | 5 +- wizards/source/importwizard/makefile.mk | 6 +- wizards/source/launcher/makefile.mk | 6 +- wizards/source/schedule/makefile.mk | 6 +- wizards/source/schedule/schedule.src | 5 +- wizards/source/standard/makefile.mk | 6 +- wizards/source/template/makefile.mk | 6 +- wizards/source/template/template.src | 5 +- wizards/source/tools/makefile.mk | 6 +- wizards/source/tutorials/makefile.mk | 6 +- wizards/source/webwizard/makefile.mk | 6 +- wizards/source/webwizard/webwizar.src | 5 +- wizards/util/hidother.src | 5 +- wizards/util/makefile.mk | 6 +- wizards/util/target.pmk | 6 +- xmlsecurity/inc/makefile.mk | 6 +- .../inc/pch/precompiled_xmlsecurity.cxx | 5 +- .../inc/pch/precompiled_xmlsecurity.hxx | 5 +- xmlsecurity/inc/xmlsecurity/biginteger.hxx | 5 +- .../inc/xmlsecurity/certificatechooser.hxx | 5 +- .../inc/xmlsecurity/certificateviewer.hxx | 5 +- xmlsecurity/inc/xmlsecurity/certvalidity.hxx | 5 +- .../xmlsecurity/digitalsignaturesdialog.hxx | 5 +- .../xmlsecurity/documentsignaturehelper.hxx | 5 +- xmlsecurity/inc/xmlsecurity/global.hrc | 5 +- xmlsecurity/inc/xmlsecurity/macrosecurity.hxx | 5 +- xmlsecurity/inc/xmlsecurity/sigstruct.hxx | 5 +- xmlsecurity/inc/xmlsecurity/stbcontrl.hxx | 5 +- xmlsecurity/inc/xmlsecurity/warnings.hxx | 5 +- .../inc/xmlsecurity/xmlsignaturehelper.hxx | 5 +- .../source/component/certificatecontainer.cxx | 5 +- .../source/component/certificatecontainer.hxx | 5 +- .../component/documentdigitalsignatures.cxx | 5 +- .../component/documentdigitalsignatures.hxx | 5 +- xmlsecurity/source/component/makefile.mk | 6 +- .../source/component/registerservices.cxx | 5 +- xmlsecurity/source/component/warnbox.src | 5 +- .../source/dialogs/certificatechooser.cxx | 5 +- .../source/dialogs/certificatechooser.src | 5 +- .../source/dialogs/certificateviewer.cxx | 5 +- .../source/dialogs/certificateviewer.src | 5 +- xmlsecurity/source/dialogs/dialogs.hrc | 5 +- .../dialogs/digitalsignaturesdialog.cxx | 5 +- .../dialogs/digitalsignaturesdialog.hrc | 46 ++++++------- .../dialogs/digitalsignaturesdialog.src | 5 +- xmlsecurity/source/dialogs/helpids.hrc | 5 +- xmlsecurity/source/dialogs/macrosecurity.cxx | 5 +- xmlsecurity/source/dialogs/macrosecurity.src | 5 +- xmlsecurity/source/dialogs/makefile.mk | 6 +- .../source/dialogs/resourcemanager.cxx | 5 +- .../source/dialogs/resourcemanager.hxx | 5 +- xmlsecurity/source/dialogs/stbcontrl.cxx | 5 +- xmlsecurity/source/dialogs/warnings.cxx | 5 +- xmlsecurity/source/dialogs/warnings.src | 5 +- xmlsecurity/source/framework/buffernode.cxx | 5 +- xmlsecurity/source/framework/buffernode.hxx | 5 +- .../source/framework/decryptorimpl.cxx | 5 +- .../source/framework/decryptorimpl.hxx | 5 +- .../source/framework/elementcollector.cxx | 5 +- .../source/framework/elementcollector.hxx | 5 +- xmlsecurity/source/framework/elementmark.cxx | 5 +- xmlsecurity/source/framework/elementmark.hxx | 5 +- .../source/framework/encryptionengine.cxx | 5 +- .../source/framework/encryptionengine.hxx | 5 +- .../source/framework/encryptorimpl.cxx | 5 +- .../source/framework/encryptorimpl.hxx | 5 +- xmlsecurity/source/framework/makefile.mk | 6 +- .../source/framework/saxeventkeeperimpl.cxx | 5 +- .../source/framework/saxeventkeeperimpl.hxx | 5 +- .../source/framework/securityengine.cxx | 5 +- .../source/framework/securityengine.hxx | 5 +- .../source/framework/signaturecreatorimpl.cxx | 5 +- .../source/framework/signaturecreatorimpl.hxx | 5 +- .../source/framework/signatureengine.cxx | 5 +- .../source/framework/signatureengine.hxx | 5 +- .../framework/signatureverifierimpl.cxx | 5 +- .../framework/signatureverifierimpl.hxx | 5 +- .../framework/xmlencryptiontemplateimpl.cxx | 5 +- .../framework/xmlencryptiontemplateimpl.hxx | 5 +- .../framework/xmlsignaturetemplateimpl.cxx | 5 +- .../framework/xmlsignaturetemplateimpl.hxx | 5 +- .../source/framework/xsec_framework.cxx | 5 +- .../source/helper/documentsignaturehelper.cxx | 49 +++++++------- xmlsecurity/source/helper/makefile.mk | 6 +- .../source/helper/xmlsignaturehelper.cxx | 5 +- .../source/helper/xmlsignaturehelper2.cxx | 5 +- .../source/helper/xmlsignaturehelper2.hxx | 5 +- xmlsecurity/source/helper/xsecctl.cxx | 5 +- xmlsecurity/source/helper/xsecctl.hxx | 5 +- xmlsecurity/source/helper/xsecparser.cxx | 5 +- xmlsecurity/source/helper/xsecparser.hxx | 5 +- xmlsecurity/source/helper/xsecsign.cxx | 5 +- xmlsecurity/source/helper/xsecverify.cxx | 5 +- xmlsecurity/source/xmlsec/biginteger.cxx | 5 +- .../certificateextension_xmlsecimpl.cxx | 5 +- .../certificateextension_xmlsecimpl.hxx | 5 +- xmlsecurity/source/xmlsec/certvalidity.cxx | 5 +- xmlsecurity/source/xmlsec/errorcallback.cxx | 5 +- xmlsecurity/source/xmlsec/errorcallback.hxx | 5 +- xmlsecurity/source/xmlsec/makefile.mk | 6 +- xmlsecurity/source/xmlsec/mscrypt/makefile.mk | 6 +- xmlsecurity/source/xmlsec/mscrypt/oid.hxx | 5 +- .../securityenvironment_mscryptimpl.cxx | 5 +- .../securityenvironment_mscryptimpl.hxx | 5 +- .../mscrypt/seinitializer_mscryptimpl.cxx | 5 +- .../mscrypt/seinitializer_mscryptimpl.hxx | 5 +- .../mscrypt/x509certificate_mscryptimpl.cxx | 5 +- .../mscrypt/x509certificate_mscryptimpl.hxx | 5 +- .../mscrypt/xmlencryption_mscryptimpl.cxx | 5 +- .../mscrypt/xmlencryption_mscryptimpl.hxx | 5 +- .../xmlsecuritycontext_mscryptimpl.cxx | 5 +- .../xmlsecuritycontext_mscryptimpl.hxx | 5 +- .../mscrypt/xmlsignature_mscryptimpl.cxx | 5 +- .../mscrypt/xmlsignature_mscryptimpl.hxx | 5 +- .../source/xmlsec/mscrypt/xsec_mscrypt.cxx | 5 +- xmlsecurity/source/xmlsec/nss/makefile.mk | 6 +- .../nss/securityenvironment_nssimpl.cxx | 5 +- .../nss/securityenvironment_nssimpl.hxx | 5 +- .../xmlsec/nss/seinitializer_nssimpl.cxx | 5 +- .../xmlsec/nss/seinitializer_nssimpl.hxx | 5 +- .../xmlsec/nss/x509certificate_nssimpl.cxx | 5 +- .../xmlsec/nss/x509certificate_nssimpl.hxx | 5 +- .../xmlsec/nss/xmlencryption_nssimpl.cxx | 5 +- .../xmlsec/nss/xmlencryption_nssimpl.hxx | 5 +- .../xmlsec/nss/xmlsecuritycontext_nssimpl.cxx | 5 +- .../xmlsec/nss/xmlsecuritycontext_nssimpl.hxx | 5 +- .../xmlsec/nss/xmlsignature_nssimpl.cxx | 5 +- .../xmlsec/nss/xmlsignature_nssimpl.hxx | 5 +- xmlsecurity/source/xmlsec/nss/xsec_nss.cxx | 5 +- xmlsecurity/source/xmlsec/saxhelper.cxx | 5 +- xmlsecurity/source/xmlsec/saxhelper.hxx | 5 +- .../xmlsec/xmldocumentwrapper_xmlsecimpl.cxx | 5 +- .../xmlsec/xmldocumentwrapper_xmlsecimpl.hxx | 5 +- .../xmlsec/xmlelementwrapper_xmlsecimpl.cxx | 5 +- .../xmlsec/xmlelementwrapper_xmlsecimpl.hxx | 5 +- xmlsecurity/source/xmlsec/xmlstreamio.cxx | 5 +- xmlsecurity/source/xmlsec/xmlstreamio.hxx | 5 +- xmlsecurity/source/xmlsec/xsec_xmlsec.cxx | 5 +- xmlsecurity/tools/demo/JavaFlatFilter.java | 5 +- xmlsecurity/tools/demo/makefile.mk | 6 +- xmlsecurity/tools/demo/mozprofile.cxx | 5 +- xmlsecurity/tools/demo/multisigdemo.cxx | 5 +- xmlsecurity/tools/demo/performance.cxx | 5 +- xmlsecurity/tools/demo/signdemo.cxx | 5 +- xmlsecurity/tools/demo/util.cxx | 5 +- xmlsecurity/tools/demo/util.hxx | 5 +- xmlsecurity/tools/demo/util2.cxx | 5 +- xmlsecurity/tools/demo/verifydemo.cxx | 5 +- .../tools/standalone/csfit/certmngr.cxx | 5 +- .../tools/standalone/csfit/decrypter.cxx | 5 +- .../tools/standalone/csfit/encrypter.cxx | 5 +- xmlsecurity/tools/standalone/csfit/helper.cxx | 5 +- xmlsecurity/tools/standalone/csfit/helper.hxx | 5 +- .../tools/standalone/csfit/makefile.mk | 6 +- xmlsecurity/tools/standalone/csfit/signer.cxx | 5 +- .../tools/standalone/csfit/util/makefile.mk | 6 +- .../tools/standalone/csfit/verifier.cxx | 5 +- .../tools/standalone/mscsfit/makefile.mk | 6 +- .../tools/standalone/mscsfit/util/makefile.mk | 6 +- xmlsecurity/tools/uno/AdapterNode.java | 5 +- .../tools/uno/AttributeListHelper.java | 5 +- .../tools/uno/DomToTreeModelAdapter.java | 5 +- xmlsecurity/tools/uno/EncryptionEntity.java | 5 +- xmlsecurity/tools/uno/ParsingThread.java | 5 +- xmlsecurity/tools/uno/SAXEventCollector.java | 5 +- xmlsecurity/tools/uno/SAXEventPrinter.java | 5 +- xmlsecurity/tools/uno/SecurityEntity.java | 5 +- xmlsecurity/tools/uno/SignatureEntity.java | 5 +- xmlsecurity/tools/uno/TestTool.java | 5 +- .../uno/UnsolvedReferenceTableModel.java | 5 +- xmlsecurity/tools/uno/XMLFileFilter.java | 5 +- .../uno/XMLSecurityFrameworkController.java | 5 +- .../tools/uno/XMLTreeCellRanderer.java | 5 +- xmlsecurity/tools/uno/makefile.mk | 6 +- xmlsecurity/util/makefile.mk | 6 +- xmlsecurity/util/target.pmk | 6 +- xmlsecurity/workben/makefile.mk | 6 +- xmlsecurity/workben/signaturetest.cxx | 5 +- 2465 files changed, 3742 insertions(+), 12651 deletions(-) mode change 100755 => 100644 cui/source/customize/makefile.mk mode change 100755 => 100644 cui/source/dialogs/cuiimapdlg.hrc mode change 100755 => 100644 cui/source/dialogs/cuiimapdlg.src mode change 100755 => 100644 cui/source/dialogs/makefile.mk mode change 100755 => 100644 cui/source/factory/makefile.mk mode change 100755 => 100644 cui/source/inc/headertablistbox.hxx mode change 100755 => 100644 cui/source/inc/macroass.hxx mode change 100755 => 100644 cui/source/options/makefile.mk mode change 100755 => 100644 cui/source/tabpages/makefile.mk diff --git a/UnoControls/inc/basecontainercontrol.hxx b/UnoControls/inc/basecontainercontrol.hxx index f8179da97a6b..34563ec3441d 100644 --- a/UnoControls/inc/basecontainercontrol.hxx +++ b/UnoControls/inc/basecontainercontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basecontainercontrol.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/inc/basecontrol.hxx b/UnoControls/inc/basecontrol.hxx index b49d6d39edc8..050fd10fa2cc 100644 --- a/UnoControls/inc/basecontrol.hxx +++ b/UnoControls/inc/basecontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basecontrol.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/inc/definesunocontrols.hxx b/UnoControls/inc/definesunocontrols.hxx index d78b35bf713d..cf072736c4b5 100644 --- a/UnoControls/inc/definesunocontrols.hxx +++ b/UnoControls/inc/definesunocontrols.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: definesunocontrols.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/inc/multiplexer.hxx b/UnoControls/inc/multiplexer.hxx index ee75035d4db5..b22513e5f16c 100644 --- a/UnoControls/inc/multiplexer.hxx +++ b/UnoControls/inc/multiplexer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multiplexer.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/base/basecontainercontrol.cxx b/UnoControls/source/base/basecontainercontrol.cxx index 81990b971f77..68ed6287c2b4 100644 --- a/UnoControls/source/base/basecontainercontrol.cxx +++ b/UnoControls/source/base/basecontainercontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basecontainercontrol.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/base/basecontrol.cxx b/UnoControls/source/base/basecontrol.cxx index 184921ad01db..030f19d6d452 100644 --- a/UnoControls/source/base/basecontrol.cxx +++ b/UnoControls/source/base/basecontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basecontrol.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/base/makefile.mk b/UnoControls/source/base/makefile.mk index 73ce81bde13d..74c6d4d43656 100644 --- a/UnoControls/source/base/makefile.mk +++ b/UnoControls/source/base/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/base/multiplexer.cxx b/UnoControls/source/base/multiplexer.cxx index b28218550b45..0c1ded49694e 100644 --- a/UnoControls/source/base/multiplexer.cxx +++ b/UnoControls/source/base/multiplexer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multiplexer.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/base/registercontrols.cxx b/UnoControls/source/base/registercontrols.cxx index 15eb0c70c613..686c7578b88d 100644 --- a/UnoControls/source/base/registercontrols.cxx +++ b/UnoControls/source/base/registercontrols.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registercontrols.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx index 91c690db796b..56f336124a7d 100644 --- a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx +++ b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OConnectionPointContainerHelper.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/controls/OConnectionPointHelper.cxx b/UnoControls/source/controls/OConnectionPointHelper.cxx index f2e5239917bc..24b08f6a4937 100644 --- a/UnoControls/source/controls/OConnectionPointHelper.cxx +++ b/UnoControls/source/controls/OConnectionPointHelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OConnectionPointHelper.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/controls/framecontrol.cxx b/UnoControls/source/controls/framecontrol.cxx index eb7f5f56ad21..2ae0e27dc56c 100644 --- a/UnoControls/source/controls/framecontrol.cxx +++ b/UnoControls/source/controls/framecontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: framecontrol.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/controls/makefile.mk b/UnoControls/source/controls/makefile.mk index bccdd5704bae..20314ea8e321 100644 --- a/UnoControls/source/controls/makefile.mk +++ b/UnoControls/source/controls/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/controls/progressbar.cxx b/UnoControls/source/controls/progressbar.cxx index 9b089eaf4441..842affed16da 100644 --- a/UnoControls/source/controls/progressbar.cxx +++ b/UnoControls/source/controls/progressbar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: progressbar.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx index 024bc229b48c..39bf4d84f8b9 100644 --- a/UnoControls/source/controls/progressmonitor.cxx +++ b/UnoControls/source/controls/progressmonitor.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: progressmonitor.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/controls/statusindicator.cxx b/UnoControls/source/controls/statusindicator.cxx index fc87cfd53109..5dd5bd647017 100644 --- a/UnoControls/source/controls/statusindicator.cxx +++ b/UnoControls/source/controls/statusindicator.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: statusindicator.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/inc/OConnectionPointContainerHelper.hxx b/UnoControls/source/inc/OConnectionPointContainerHelper.hxx index a3ebfdc1e95c..92e7e7df0fe2 100644 --- a/UnoControls/source/inc/OConnectionPointContainerHelper.hxx +++ b/UnoControls/source/inc/OConnectionPointContainerHelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OConnectionPointContainerHelper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/inc/OConnectionPointHelper.hxx b/UnoControls/source/inc/OConnectionPointHelper.hxx index 799894425aa5..0856db8027f4 100644 --- a/UnoControls/source/inc/OConnectionPointHelper.hxx +++ b/UnoControls/source/inc/OConnectionPointHelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OConnectionPointHelper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/inc/framecontrol.hxx b/UnoControls/source/inc/framecontrol.hxx index a0d4553b863d..4ec2683e1ba6 100644 --- a/UnoControls/source/inc/framecontrol.hxx +++ b/UnoControls/source/inc/framecontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: framecontrol.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/inc/progressbar.hxx b/UnoControls/source/inc/progressbar.hxx index da27876d8258..743d0568f879 100644 --- a/UnoControls/source/inc/progressbar.hxx +++ b/UnoControls/source/inc/progressbar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: progressbar.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/inc/progressmonitor.hxx b/UnoControls/source/inc/progressmonitor.hxx index 142ed6c06161..dfb6a1ae9fb9 100644 --- a/UnoControls/source/inc/progressmonitor.hxx +++ b/UnoControls/source/inc/progressmonitor.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: progressmonitor.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/source/inc/statusindicator.hxx b/UnoControls/source/inc/statusindicator.hxx index a583bca6d2e9..3ea07a4e0d0b 100644 --- a/UnoControls/source/inc/statusindicator.hxx +++ b/UnoControls/source/inc/statusindicator.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: statusindicator.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/util/makefile.mk b/UnoControls/util/makefile.mk index d2c225a4b214..5cd23262a481 100644 --- a/UnoControls/util/makefile.mk +++ b/UnoControls/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/util/makefile.pmk b/UnoControls/util/makefile.pmk index c4e096c60bf5..02a34a2434a1 100644 --- a/UnoControls/util/makefile.pmk +++ b/UnoControls/util/makefile.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.pmk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/UnoControls/util/target.pmk b/UnoControls/util/target.pmk index d05e76184ac7..c7c1de9c2563 100644 --- a/UnoControls/util/target.pmk +++ b/UnoControls/util/target.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: target.pmk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/accessibility/AccessBridge.java b/accessibility/bridge/org/openoffice/accessibility/AccessBridge.java index 391978cc566a..454cd15154d4 100755 --- a/accessibility/bridge/org/openoffice/accessibility/AccessBridge.java +++ b/accessibility/bridge/org/openoffice/accessibility/AccessBridge.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessBridge.java,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/accessibility/KeyHandler.java b/accessibility/bridge/org/openoffice/accessibility/KeyHandler.java index 1be6bf76aa28..1e9f2f6520ae 100755 --- a/accessibility/bridge/org/openoffice/accessibility/KeyHandler.java +++ b/accessibility/bridge/org/openoffice/accessibility/KeyHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: KeyHandler.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/accessibility/PopupWindow.java b/accessibility/bridge/org/openoffice/accessibility/PopupWindow.java index 22a0b2c2a7bc..a63b0589b4fa 100644 --- a/accessibility/bridge/org/openoffice/accessibility/PopupWindow.java +++ b/accessibility/bridge/org/openoffice/accessibility/PopupWindow.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PopupWindow.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/accessibility/WindowsAccessBridgeAdapter.java b/accessibility/bridge/org/openoffice/accessibility/WindowsAccessBridgeAdapter.java index 00c07b1aa3d4..28e58940867d 100644 --- a/accessibility/bridge/org/openoffice/accessibility/WindowsAccessBridgeAdapter.java +++ b/accessibility/bridge/org/openoffice/accessibility/WindowsAccessBridgeAdapter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WindowsAccessBridgeAdapter.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/accessibility/makefile.mk b/accessibility/bridge/org/openoffice/accessibility/makefile.mk index dc6f848fb0d3..9510a3156a59 100755 --- a/accessibility/bridge/org/openoffice/accessibility/makefile.mk +++ b/accessibility/bridge/org/openoffice/accessibility/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9.24.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AbstractButton.java b/accessibility/bridge/org/openoffice/java/accessibility/AbstractButton.java index c5b1612c7f13..be7b72df8732 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AbstractButton.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AbstractButton.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AbstractButton.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleActionImpl.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleActionImpl.java index c432a0338232..e4905752d833 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleActionImpl.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleActionImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleActionImpl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleComponentImpl.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleComponentImpl.java index 82c59cf8b32b..5bac982756a2 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleComponentImpl.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleComponentImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleComponentImpl.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleEditableTextImpl.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleEditableTextImpl.java index a21c6a8e9dca..4863b560ef71 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleEditableTextImpl.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleEditableTextImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleEditableTextImpl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleExtendedState.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleExtendedState.java index bea4ece51ff7..3d4500d322df 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleExtendedState.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleExtendedState.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleExtendedState.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleHypertextImpl.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleHypertextImpl.java index b445bef1b58c..1bb3bc5961ad 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleHypertextImpl.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleHypertextImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleHypertextImpl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleIconImpl.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleIconImpl.java index 63830edea592..ba41534f245b 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleIconImpl.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleIconImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleIconImpl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleKeyBinding.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleKeyBinding.java index bb9e32856f32..1eb3201c5d68 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleKeyBinding.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleKeyBinding.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleKeyBinding.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleObjectFactory.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleObjectFactory.java index a2b21299b644..129a3b820993 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleObjectFactory.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleObjectFactory.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleObjectFactory.java,v $ - * $Revision: 1.26 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleRelationAdapter.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleRelationAdapter.java index 0754545f7634..2f1709acac45 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleRelationAdapter.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleRelationAdapter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleRelationAdapter.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleRoleAdapter.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleRoleAdapter.java index 88daa252d367..c7f630fdd3ab 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleRoleAdapter.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleRoleAdapter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleRoleAdapter.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleSelectionImpl.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleSelectionImpl.java index a126043f389e..6e40c1e7a78d 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleSelectionImpl.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleSelectionImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleSelectionImpl.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleStateAdapter.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleStateAdapter.java index 237a555ec227..ea1979a545ed 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleStateAdapter.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleStateAdapter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleStateAdapter.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleTextImpl.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleTextImpl.java index d83b13433d6a..c3bcbde2a71a 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleTextImpl.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleTextImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleTextImpl.java,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleValueImpl.java b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleValueImpl.java index 5112d5d89aa6..cabbf3f5d323 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/AccessibleValueImpl.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/AccessibleValueImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleValueImpl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Alert.java b/accessibility/bridge/org/openoffice/java/accessibility/Alert.java index 742d49b4b001..e853fabecba0 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Alert.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Alert.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Alert.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Application.java b/accessibility/bridge/org/openoffice/java/accessibility/Application.java index bb8df972b8c8..c67da714f4df 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Application.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Application.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Application.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Button.java b/accessibility/bridge/org/openoffice/java/accessibility/Button.java index 5129237e483f..44bccc30ffc1 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Button.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Button.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Button.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/CheckBox.java b/accessibility/bridge/org/openoffice/java/accessibility/CheckBox.java index 17297abd494b..624dfd048c89 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/CheckBox.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/CheckBox.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CheckBox.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/ComboBox.java b/accessibility/bridge/org/openoffice/java/accessibility/ComboBox.java index fdfc44c8207c..5f5cf4a34374 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/ComboBox.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/ComboBox.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ComboBox.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Component.java b/accessibility/bridge/org/openoffice/java/accessibility/Component.java index 0ce4fe260c98..21043e1f5098 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Component.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Component.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Component.java,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Container.java b/accessibility/bridge/org/openoffice/java/accessibility/Container.java index 2b649d413256..257cdab8b757 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Container.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Container.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Container.java,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/DescendantManager.java b/accessibility/bridge/org/openoffice/java/accessibility/DescendantManager.java index de69c9fe80db..5b8c45b716b4 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/DescendantManager.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/DescendantManager.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DescendantManager.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Dialog.java b/accessibility/bridge/org/openoffice/java/accessibility/Dialog.java index 84fee4215830..dcb067368996 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Dialog.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Dialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Dialog.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/FocusTraversalPolicy.java b/accessibility/bridge/org/openoffice/java/accessibility/FocusTraversalPolicy.java index 770c0d2e900b..75f6c91354f4 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/FocusTraversalPolicy.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/FocusTraversalPolicy.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FocusTraversalPolicy.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Frame.java b/accessibility/bridge/org/openoffice/java/accessibility/Frame.java index a7d8677c491a..b7f37b2d6b18 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Frame.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Frame.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Frame.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Icon.java b/accessibility/bridge/org/openoffice/java/accessibility/Icon.java index d8f1c6768232..8ccc97def4d8 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Icon.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Icon.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Icon.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Label.java b/accessibility/bridge/org/openoffice/java/accessibility/Label.java index 67878e98160c..9afaa0a1ae37 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Label.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Label.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Label.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/List.java b/accessibility/bridge/org/openoffice/java/accessibility/List.java index b3802e776866..c0583bf9b692 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/List.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/List.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: List.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Menu.java b/accessibility/bridge/org/openoffice/java/accessibility/Menu.java index 9dff6bd321c3..346baca749b3 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Menu.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Menu.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Menu.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/MenuContainer.java b/accessibility/bridge/org/openoffice/java/accessibility/MenuContainer.java index d2920f1f95e1..ccae0ccadd04 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/MenuContainer.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/MenuContainer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: MenuContainer.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/MenuItem.java b/accessibility/bridge/org/openoffice/java/accessibility/MenuItem.java index 5a39fe6d6aec..39aa1b73ce30 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/MenuItem.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/MenuItem.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: MenuItem.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/NativeFrame.java b/accessibility/bridge/org/openoffice/java/accessibility/NativeFrame.java index 0e676b7331fc..bcc4c0dddebc 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/NativeFrame.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/NativeFrame.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NativeFrame.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Paragraph.java b/accessibility/bridge/org/openoffice/java/accessibility/Paragraph.java index c5feeaafcd9e..6088bf48eabe 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Paragraph.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Paragraph.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Paragraph.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/RadioButton.java b/accessibility/bridge/org/openoffice/java/accessibility/RadioButton.java index 9bd58e2c8df9..3daeee6cd8de 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/RadioButton.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/RadioButton.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: RadioButton.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/ScrollBar.java b/accessibility/bridge/org/openoffice/java/accessibility/ScrollBar.java index c3f927e22048..83b17d698201 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/ScrollBar.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/ScrollBar.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ScrollBar.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Separator.java b/accessibility/bridge/org/openoffice/java/accessibility/Separator.java index 01ff8b49c261..892768e07cbb 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Separator.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Separator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Separator.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Table.java b/accessibility/bridge/org/openoffice/java/accessibility/Table.java index cd0fcd52e53e..24ea912d4217 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Table.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Table.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Table.java,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/TextComponent.java b/accessibility/bridge/org/openoffice/java/accessibility/TextComponent.java index 4d26ad244b06..a142297c4c12 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/TextComponent.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/TextComponent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TextComponent.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/ToggleButton.java b/accessibility/bridge/org/openoffice/java/accessibility/ToggleButton.java index d1ef7af4dcfb..bac8035a2ece 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/ToggleButton.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/ToggleButton.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ToggleButton.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/ToolTip.java b/accessibility/bridge/org/openoffice/java/accessibility/ToolTip.java index 3dc5adc0f1e0..071a6a37fd98 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/ToolTip.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/ToolTip.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ToolTip.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Tree.java b/accessibility/bridge/org/openoffice/java/accessibility/Tree.java index 83f8c9a10c49..5fdd5a196397 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Tree.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Tree.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Tree.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/Window.java b/accessibility/bridge/org/openoffice/java/accessibility/Window.java index 81c5b32fd477..ef44c3380a48 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/Window.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/Window.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Window.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleEventLog.java b/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleEventLog.java index 19c5857b2079..36bec1cab8fb 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleEventLog.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleEventLog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XAccessibleEventLog.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleHypertextLog.java b/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleHypertextLog.java index f6a82e660187..f14da6d8280b 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleHypertextLog.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleHypertextLog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XAccessibleHypertextLog.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleTextLog.java b/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleTextLog.java index 9e46c7d9ce7e..4b415ee60c74 100644 --- a/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleTextLog.java +++ b/accessibility/bridge/org/openoffice/java/accessibility/logging/XAccessibleTextLog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XAccessibleTextLog.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/org/openoffice/java/accessibility/makefile.mk b/accessibility/bridge/org/openoffice/java/accessibility/makefile.mk index c1909a807863..f99b19cd6590 100755 --- a/accessibility/bridge/org/openoffice/java/accessibility/makefile.mk +++ b/accessibility/bridge/org/openoffice/java/accessibility/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.26.4.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx b/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx index cb9860cbb2c6..a281b3aa51a1 100644 --- a/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx +++ b/accessibility/bridge/source/java/WindowsAccessBridgeAdapter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WindowsAccessBridgeAdapter.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/bridge/source/java/makefile.mk b/accessibility/bridge/source/java/makefile.mk index 7f81f85275df..6bb380725ac0 100644 --- a/accessibility/bridge/source/java/makefile.mk +++ b/accessibility/bridge/source/java/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.8.24.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx index 6ece87727cc0..fd86653ca5ed 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBox.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx index b9f313ee8b9c..dc43e500dadd 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxBase.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxCheckBoxCell.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxCheckBoxCell.hxx index 96a9ee459ca0..5ab160535aa0 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxCheckBoxCell.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxCheckBoxCell.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxCheckBoxCell.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderBar.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderBar.hxx index 97f259a7c64d..ac0b2761eb1f 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderBar.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderBar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxHeaderBar.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderCell.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderCell.hxx index 214e7c57eb9f..68d4405ff25b 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderCell.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxHeaderCell.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxHeaderCell.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTable.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTable.hxx index b2982cc1faa6..afb345487239 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTable.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTable.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxTable.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableBase.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableBase.hxx index 97f6eb60e5dc..fa6ce94cfc7f 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableBase.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableBase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxTableBase.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableCell.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableCell.hxx index 22c9709949d8..ec12e40dc179 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableCell.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxTableCell.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxTableCell.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleGridControl.hxx b/accessibility/inc/accessibility/extended/AccessibleGridControl.hxx index 219cf03dfe88..957b0a508bd8 100755 --- a/accessibility/inc/accessibility/extended/AccessibleGridControl.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleGridControl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2009 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControl.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleGridControlBase.hxx b/accessibility/inc/accessibility/extended/AccessibleGridControlBase.hxx index 3cfdc182aee8..3bdd5abe8912 100755 --- a/accessibility/inc/accessibility/extended/AccessibleGridControlBase.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleGridControlBase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlBase.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleGridControlHeader.hxx b/accessibility/inc/accessibility/extended/AccessibleGridControlHeader.hxx index 1c1a3aee2804..b45ad5bdae5a 100755 --- a/accessibility/inc/accessibility/extended/AccessibleGridControlHeader.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleGridControlHeader.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlHeader.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleGridControlHeaderCell.hxx b/accessibility/inc/accessibility/extended/AccessibleGridControlHeaderCell.hxx index 3827cc7dad0a..648614a9e214 100755 --- a/accessibility/inc/accessibility/extended/AccessibleGridControlHeaderCell.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleGridControlHeaderCell.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlHeaderCell.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleGridControlTable.hxx b/accessibility/inc/accessibility/extended/AccessibleGridControlTable.hxx index c71bfd5eb65f..8058594d2938 100755 --- a/accessibility/inc/accessibility/extended/AccessibleGridControlTable.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleGridControlTable.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlTable.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleGridControlTableBase.hxx b/accessibility/inc/accessibility/extended/AccessibleGridControlTableBase.hxx index 79c294952acf..35b7a69f5aa6 100755 --- a/accessibility/inc/accessibility/extended/AccessibleGridControlTableBase.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleGridControlTableBase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlTableBase.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/AccessibleGridControlTableCell.hxx b/accessibility/inc/accessibility/extended/AccessibleGridControlTableCell.hxx index 537cbc138b1c..dd44927d7fc1 100755 --- a/accessibility/inc/accessibility/extended/AccessibleGridControlTableCell.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleGridControlTableCell.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlTableCell.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessiblebrowseboxcell.hxx b/accessibility/inc/accessibility/extended/accessiblebrowseboxcell.hxx index ef0d7e0c4f56..a7b78c092213 100644 --- a/accessibility/inc/accessibility/extended/accessiblebrowseboxcell.hxx +++ b/accessibility/inc/accessibility/extended/accessiblebrowseboxcell.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblebrowseboxcell.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibleeditbrowseboxcell.hxx b/accessibility/inc/accessibility/extended/accessibleeditbrowseboxcell.hxx index 5b0a292f655e..a38877d5aeae 100644 --- a/accessibility/inc/accessibility/extended/accessibleeditbrowseboxcell.hxx +++ b/accessibility/inc/accessibility/extended/accessibleeditbrowseboxcell.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibleeditbrowseboxcell.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibleiconchoicectrl.hxx b/accessibility/inc/accessibility/extended/accessibleiconchoicectrl.hxx index e007eede71e9..05dc41313fdd 100644 --- a/accessibility/inc/accessibility/extended/accessibleiconchoicectrl.hxx +++ b/accessibility/inc/accessibility/extended/accessibleiconchoicectrl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibleiconchoicectrl.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx b/accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx index fc508f19b893..245645dfebf0 100644 --- a/accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx +++ b/accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibleiconchoicectrlentry.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessiblelistbox.hxx b/accessibility/inc/accessibility/extended/accessiblelistbox.hxx index 058b55a40be4..a92ac6356fa2 100644 --- a/accessibility/inc/accessibility/extended/accessiblelistbox.hxx +++ b/accessibility/inc/accessibility/extended/accessiblelistbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblelistbox.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessiblelistboxentry.hxx b/accessibility/inc/accessibility/extended/accessiblelistboxentry.hxx index 6ffd0fa1d5ba..ce0fa5ad0ac0 100644 --- a/accessibility/inc/accessibility/extended/accessiblelistboxentry.hxx +++ b/accessibility/inc/accessibility/extended/accessiblelistboxentry.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblelistboxentry.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibletabbar.hxx b/accessibility/inc/accessibility/extended/accessibletabbar.hxx index d9c078361574..df30cc1dc647 100644 --- a/accessibility/inc/accessibility/extended/accessibletabbar.hxx +++ b/accessibility/inc/accessibility/extended/accessibletabbar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletabbar.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibletabbarbase.hxx b/accessibility/inc/accessibility/extended/accessibletabbarbase.hxx index c50e9c7331fb..eac79b152b75 100644 --- a/accessibility/inc/accessibility/extended/accessibletabbarbase.hxx +++ b/accessibility/inc/accessibility/extended/accessibletabbarbase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletabbarbase.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx b/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx index 40f0b192c953..9ddf20b6cc65 100644 --- a/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx +++ b/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletabbarpage.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibletabbarpagelist.hxx b/accessibility/inc/accessibility/extended/accessibletabbarpagelist.hxx index c1271f9c7d6e..d834e3ef86c7 100644 --- a/accessibility/inc/accessibility/extended/accessibletabbarpagelist.hxx +++ b/accessibility/inc/accessibility/extended/accessibletabbarpagelist.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletabbarpagelist.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibletablistbox.hxx b/accessibility/inc/accessibility/extended/accessibletablistbox.hxx index 9ca20d1da3e4..b488e9c6068b 100644 --- a/accessibility/inc/accessibility/extended/accessibletablistbox.hxx +++ b/accessibility/inc/accessibility/extended/accessibletablistbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletablistbox.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx b/accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx index fedbd855f82f..7365a17e6138 100644 --- a/accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx +++ b/accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletablistboxtable.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/listboxaccessible.hxx b/accessibility/inc/accessibility/extended/listboxaccessible.hxx index 27ba02bb5dce..f05926f3abda 100644 --- a/accessibility/inc/accessibility/extended/listboxaccessible.hxx +++ b/accessibility/inc/accessibility/extended/listboxaccessible.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listboxaccessible.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/extended/textwindowaccessibility.hxx b/accessibility/inc/accessibility/extended/textwindowaccessibility.hxx index 5f264b388fda..d4b3be6c5bf3 100644 --- a/accessibility/inc/accessibility/extended/textwindowaccessibility.hxx +++ b/accessibility/inc/accessibility/extended/textwindowaccessibility.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textwindowaccessibility.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/helper/IComboListBoxHelper.hxx b/accessibility/inc/accessibility/helper/IComboListBoxHelper.hxx index ebf2863bbf6b..847896a14588 100644 --- a/accessibility/inc/accessibility/helper/IComboListBoxHelper.hxx +++ b/accessibility/inc/accessibility/helper/IComboListBoxHelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: IComboListBoxHelper.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/helper/acc_factory.hxx b/accessibility/inc/accessibility/helper/acc_factory.hxx index 2fc6e63d56ce..21c5ce47e5c7 100644 --- a/accessibility/inc/accessibility/helper/acc_factory.hxx +++ b/accessibility/inc/accessibility/helper/acc_factory.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: acc_factory.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/helper/accessiblestrings.hrc b/accessibility/inc/accessibility/helper/accessiblestrings.hrc index 8f0ce9e390e3..859da828beb1 100644 --- a/accessibility/inc/accessibility/helper/accessiblestrings.hrc +++ b/accessibility/inc/accessibility/helper/accessiblestrings.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblestrings.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/helper/accresmgr.hxx b/accessibility/inc/accessibility/helper/accresmgr.hxx index 76e27752b7de..add0aaced7e3 100644 --- a/accessibility/inc/accessibility/helper/accresmgr.hxx +++ b/accessibility/inc/accessibility/helper/accresmgr.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accresmgr.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/helper/characterattributeshelper.hxx b/accessibility/inc/accessibility/helper/characterattributeshelper.hxx index fcda493924fe..25fb3ac121b3 100644 --- a/accessibility/inc/accessibility/helper/characterattributeshelper.hxx +++ b/accessibility/inc/accessibility/helper/characterattributeshelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: characterattributeshelper.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/helper/listboxhelper.hxx b/accessibility/inc/accessibility/helper/listboxhelper.hxx index 683f9bef4616..e0a1fed7f8e8 100644 --- a/accessibility/inc/accessibility/helper/listboxhelper.hxx +++ b/accessibility/inc/accessibility/helper/listboxhelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listboxhelper.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/accessiblemenubasecomponent.hxx b/accessibility/inc/accessibility/standard/accessiblemenubasecomponent.hxx index 19a3616f128e..4555c91ebf75 100644 --- a/accessibility/inc/accessibility/standard/accessiblemenubasecomponent.hxx +++ b/accessibility/inc/accessibility/standard/accessiblemenubasecomponent.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblemenubasecomponent.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/accessiblemenucomponent.hxx b/accessibility/inc/accessibility/standard/accessiblemenucomponent.hxx index 89b95b60cb8e..8450be8f3a49 100644 --- a/accessibility/inc/accessibility/standard/accessiblemenucomponent.hxx +++ b/accessibility/inc/accessibility/standard/accessiblemenucomponent.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblemenucomponent.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/accessiblemenuitemcomponent.hxx b/accessibility/inc/accessibility/standard/accessiblemenuitemcomponent.hxx index d83be52340f5..d5e513e555ea 100644 --- a/accessibility/inc/accessibility/standard/accessiblemenuitemcomponent.hxx +++ b/accessibility/inc/accessibility/standard/accessiblemenuitemcomponent.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblemenuitemcomponent.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblebox.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblebox.hxx index 43ce408757dc..123016f070bd 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblebox.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblebox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblebox.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblebutton.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblebutton.hxx index eab14ca012b2..76e8b3da9343 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblebutton.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblebutton.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblebutton.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblecheckbox.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblecheckbox.hxx index 16ace783423b..a876a236455c 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblecheckbox.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblecheckbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblecheckbox.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblecombobox.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblecombobox.hxx index 5ac63cb09689..ce62ea845b5c 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblecombobox.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblecombobox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblecombobox.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibledropdowncombobox.hxx b/accessibility/inc/accessibility/standard/vclxaccessibledropdowncombobox.hxx index a456a6d9eb20..6f54ede32d21 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibledropdowncombobox.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibledropdowncombobox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibledropdowncombobox.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibledropdownlistbox.hxx b/accessibility/inc/accessibility/standard/vclxaccessibledropdownlistbox.hxx index 41f0235734c4..72289f210aa2 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibledropdownlistbox.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibledropdownlistbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibledropdownlistbox.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibleedit.hxx b/accessibility/inc/accessibility/standard/vclxaccessibleedit.hxx index 0e3f1a929f8d..fe4bd8389d09 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibleedit.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibleedit.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibleedit.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblefixedhyperlink.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblefixedhyperlink.hxx index 7cccf13ac248..250d5f7551f5 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblefixedhyperlink.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblefixedhyperlink.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblefixedhyperlink.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblefixedtext.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblefixedtext.hxx index e902a037de12..e013fdc8d475 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblefixedtext.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblefixedtext.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblefixedtext.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx index f9451092a063..dfebec17b4e9 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblelist.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblelistbox.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblelistbox.hxx index f776a1a3857c..c814cb83d84a 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblelistbox.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblelistbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblelistbox.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblelistboxlist.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblelistboxlist.hxx index a76f81aee221..9a266d78bb05 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblelistboxlist.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblelistboxlist.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblelistboxlist.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblelistitem.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblelistitem.hxx index 8711abc6b444..ec07745bb0d4 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblelistitem.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblelistitem.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblelistitem.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblemenu.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblemenu.hxx index c35052e24b4d..35851788853b 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblemenu.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblemenu.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblemenu.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblemenubar.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblemenubar.hxx index fcba9e22364d..d9899b52dc2f 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblemenubar.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblemenubar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblemenubar.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblemenuitem.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblemenuitem.hxx index 34bc26aad2da..e2e430d9300b 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblemenuitem.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblemenuitem.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblemenuitem.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblemenuseparator.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblemenuseparator.hxx index f69401816f8f..30ae2e764cdb 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblemenuseparator.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblemenuseparator.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblemenuseparator.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblepopupmenu.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblepopupmenu.hxx index 02eabe046c5f..d4ccd5f09ff5 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblepopupmenu.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblepopupmenu.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblepopupmenu.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibleradiobutton.hxx b/accessibility/inc/accessibility/standard/vclxaccessibleradiobutton.hxx index 390597012623..615ed08ca2da 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibleradiobutton.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibleradiobutton.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibleradiobutton.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblescrollbar.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblescrollbar.hxx index d4e35f6f356d..063204214a19 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblescrollbar.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblescrollbar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblescrollbar.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblestatusbar.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblestatusbar.hxx index 0be0bbd1a4f6..5243229b4902 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblestatusbar.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblestatusbar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblestatusbar.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblestatusbaritem.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblestatusbaritem.hxx index 61cb1736b8cd..442645c6d88f 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblestatusbaritem.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblestatusbaritem.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblestatusbaritem.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibletabcontrol.hxx b/accessibility/inc/accessibility/standard/vclxaccessibletabcontrol.hxx index ba7aaa9bcf35..f663ca3475fc 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibletabcontrol.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibletabcontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletabcontrol.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibletabpage.hxx b/accessibility/inc/accessibility/standard/vclxaccessibletabpage.hxx index 4d119a3813f2..ed47ce9f0e94 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibletabpage.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibletabpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletabpage.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibletabpagewindow.hxx b/accessibility/inc/accessibility/standard/vclxaccessibletabpagewindow.hxx index 09dc5e30ca05..5ba980cc8c4f 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibletabpagewindow.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibletabpagewindow.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletabpagewindow.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibletextcomponent.hxx b/accessibility/inc/accessibility/standard/vclxaccessibletextcomponent.hxx index 99560f712781..47e7189cd95a 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibletextcomponent.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibletextcomponent.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletextcomponent.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx b/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx index 91cf681e3609..70d35acb305a 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletextfield.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibletoolbox.hxx b/accessibility/inc/accessibility/standard/vclxaccessibletoolbox.hxx index 3c06fa11a25c..168938d50a6c 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibletoolbox.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibletoolbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletoolbox.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/accessibility/standard/vclxaccessibletoolboxitem.hxx b/accessibility/inc/accessibility/standard/vclxaccessibletoolboxitem.hxx index 7d74b4ec2a14..4e2073a47a89 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessibletoolboxitem.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessibletoolboxitem.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletoolboxitem.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/makefile.mk b/accessibility/inc/makefile.mk index d33fe86887e9..3afcad166928 100644 --- a/accessibility/inc/makefile.mk +++ b/accessibility/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/pch/precompiled_accessibility.cxx b/accessibility/inc/pch/precompiled_accessibility.cxx index 3f3765141f16..de6282ce69cb 100644 --- a/accessibility/inc/pch/precompiled_accessibility.cxx +++ b/accessibility/inc/pch/precompiled_accessibility.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_accessibility.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/inc/pch/precompiled_accessibility.hxx b/accessibility/inc/pch/precompiled_accessibility.hxx index f00b18b0d2f8..4d3020b4e289 100644 --- a/accessibility/inc/pch/precompiled_accessibility.hxx +++ b/accessibility/inc/pch/precompiled_accessibility.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_accessibility.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleBrowseBox.cxx b/accessibility/source/extended/AccessibleBrowseBox.cxx index aabe357810d6..677c15513d7a 100644 --- a/accessibility/source/extended/AccessibleBrowseBox.cxx +++ b/accessibility/source/extended/AccessibleBrowseBox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBox.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleBrowseBoxBase.cxx b/accessibility/source/extended/AccessibleBrowseBoxBase.cxx index 4332943a52c2..f8b43ecdced2 100644 --- a/accessibility/source/extended/AccessibleBrowseBoxBase.cxx +++ b/accessibility/source/extended/AccessibleBrowseBoxBase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxBase.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleBrowseBoxCheckBoxCell.cxx b/accessibility/source/extended/AccessibleBrowseBoxCheckBoxCell.cxx index a1eb2af9c019..560878b544f3 100644 --- a/accessibility/source/extended/AccessibleBrowseBoxCheckBoxCell.cxx +++ b/accessibility/source/extended/AccessibleBrowseBoxCheckBoxCell.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxCheckBoxCell.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx b/accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx index c20705ef08d3..e801a6cf2c20 100644 --- a/accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx +++ b/accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxHeaderBar.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleBrowseBoxHeaderCell.cxx b/accessibility/source/extended/AccessibleBrowseBoxHeaderCell.cxx index c277ec7357ec..9e9f63ec72c8 100644 --- a/accessibility/source/extended/AccessibleBrowseBoxHeaderCell.cxx +++ b/accessibility/source/extended/AccessibleBrowseBoxHeaderCell.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxHeaderCell.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleBrowseBoxTable.cxx b/accessibility/source/extended/AccessibleBrowseBoxTable.cxx index 284033d7d810..00a095a104d7 100644 --- a/accessibility/source/extended/AccessibleBrowseBoxTable.cxx +++ b/accessibility/source/extended/AccessibleBrowseBoxTable.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxTable.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx b/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx index 5374674b9e93..7a7aed644f5c 100644 --- a/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx +++ b/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxTableBase.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleBrowseBoxTableCell.cxx b/accessibility/source/extended/AccessibleBrowseBoxTableCell.cxx index 70a97ce6c8f6..fe79593e5613 100644 --- a/accessibility/source/extended/AccessibleBrowseBoxTableCell.cxx +++ b/accessibility/source/extended/AccessibleBrowseBoxTableCell.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleBrowseBoxTableCell.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleGridControl.cxx b/accessibility/source/extended/AccessibleGridControl.cxx index 4671f3284110..e8111657d7d0 100755 --- a/accessibility/source/extended/AccessibleGridControl.cxx +++ b/accessibility/source/extended/AccessibleGridControl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControl.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleGridControlBase.cxx b/accessibility/source/extended/AccessibleGridControlBase.cxx index 91dd9bd3bdc5..12d4a7d141a4 100755 --- a/accessibility/source/extended/AccessibleGridControlBase.cxx +++ b/accessibility/source/extended/AccessibleGridControlBase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlBase.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleGridControlHeader.cxx b/accessibility/source/extended/AccessibleGridControlHeader.cxx index a5a2be4049dc..c7622c18981e 100755 --- a/accessibility/source/extended/AccessibleGridControlHeader.cxx +++ b/accessibility/source/extended/AccessibleGridControlHeader.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlHeader.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleGridControlHeaderCell.cxx b/accessibility/source/extended/AccessibleGridControlHeaderCell.cxx index 52139a694aef..485c57c40ae1 100755 --- a/accessibility/source/extended/AccessibleGridControlHeaderCell.cxx +++ b/accessibility/source/extended/AccessibleGridControlHeaderCell.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlHeaderCell.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleGridControlTable.cxx b/accessibility/source/extended/AccessibleGridControlTable.cxx index 3b51c986b8b1..efd78fc8634a 100755 --- a/accessibility/source/extended/AccessibleGridControlTable.cxx +++ b/accessibility/source/extended/AccessibleGridControlTable.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlTable.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleGridControlTableBase.cxx b/accessibility/source/extended/AccessibleGridControlTableBase.cxx index 76584bf4b965..8a7e3102bdf7 100755 --- a/accessibility/source/extended/AccessibleGridControlTableBase.cxx +++ b/accessibility/source/extended/AccessibleGridControlTableBase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2009 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlTableBase.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/AccessibleGridControlTableCell.cxx b/accessibility/source/extended/AccessibleGridControlTableCell.cxx index 981a3e6086b0..f511eb43cbf8 100755 --- a/accessibility/source/extended/AccessibleGridControlTableCell.cxx +++ b/accessibility/source/extended/AccessibleGridControlTableCell.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AccessibleGridControlTableCell.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessiblebrowseboxcell.cxx b/accessibility/source/extended/accessiblebrowseboxcell.cxx index 12cc465545bb..1c7aca77e603 100644 --- a/accessibility/source/extended/accessiblebrowseboxcell.cxx +++ b/accessibility/source/extended/accessiblebrowseboxcell.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblebrowseboxcell.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibleeditbrowseboxcell.cxx b/accessibility/source/extended/accessibleeditbrowseboxcell.cxx index 637349947f19..5f5472d04050 100644 --- a/accessibility/source/extended/accessibleeditbrowseboxcell.cxx +++ b/accessibility/source/extended/accessibleeditbrowseboxcell.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibleeditbrowseboxcell.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibleiconchoicectrl.cxx b/accessibility/source/extended/accessibleiconchoicectrl.cxx index 225e68f2027d..397161fd6ac0 100644 --- a/accessibility/source/extended/accessibleiconchoicectrl.cxx +++ b/accessibility/source/extended/accessibleiconchoicectrl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibleiconchoicectrl.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx index 3466761c1f0a..19e809bcc6ea 100644 --- a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx +++ b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibleiconchoicectrlentry.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessiblelistbox.cxx b/accessibility/source/extended/accessiblelistbox.cxx index 2db3debe33a4..a352ed51a78c 100644 --- a/accessibility/source/extended/accessiblelistbox.cxx +++ b/accessibility/source/extended/accessiblelistbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblelistbox.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessiblelistboxentry.cxx b/accessibility/source/extended/accessiblelistboxentry.cxx index a18d828ffb0f..5ce10cbc81b3 100644 --- a/accessibility/source/extended/accessiblelistboxentry.cxx +++ b/accessibility/source/extended/accessiblelistboxentry.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblelistboxentry.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibletabbar.cxx b/accessibility/source/extended/accessibletabbar.cxx index a1b47265509d..fc1fb578bd21 100644 --- a/accessibility/source/extended/accessibletabbar.cxx +++ b/accessibility/source/extended/accessibletabbar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletabbar.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibletabbarbase.cxx b/accessibility/source/extended/accessibletabbarbase.cxx index 99f5a9b1c073..5f290178ea25 100644 --- a/accessibility/source/extended/accessibletabbarbase.cxx +++ b/accessibility/source/extended/accessibletabbarbase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletabbarbase.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibletabbarpage.cxx b/accessibility/source/extended/accessibletabbarpage.cxx index c0e34982570f..32dfb591a3ad 100644 --- a/accessibility/source/extended/accessibletabbarpage.cxx +++ b/accessibility/source/extended/accessibletabbarpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletabbarpage.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibletabbarpagelist.cxx b/accessibility/source/extended/accessibletabbarpagelist.cxx index 9d8a3d378a86..e852e0ed54cc 100644 --- a/accessibility/source/extended/accessibletabbarpagelist.cxx +++ b/accessibility/source/extended/accessibletabbarpagelist.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletabbarpagelist.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibletablistbox.cxx b/accessibility/source/extended/accessibletablistbox.cxx index 2912056827b4..aed68e55e482 100644 --- a/accessibility/source/extended/accessibletablistbox.cxx +++ b/accessibility/source/extended/accessibletablistbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletablistbox.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/accessibletablistboxtable.cxx b/accessibility/source/extended/accessibletablistboxtable.cxx index 50fc793f8ff6..59408a31fe84 100644 --- a/accessibility/source/extended/accessibletablistboxtable.cxx +++ b/accessibility/source/extended/accessibletablistboxtable.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibletablistboxtable.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/listboxaccessible.cxx b/accessibility/source/extended/listboxaccessible.cxx index 2d9abdcd7301..8600003c2bff 100644 --- a/accessibility/source/extended/listboxaccessible.cxx +++ b/accessibility/source/extended/listboxaccessible.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listboxaccessible.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/makefile.mk b/accessibility/source/extended/makefile.mk index 34f9158f1f02..bafd2b40c334 100644 --- a/accessibility/source/extended/makefile.mk +++ b/accessibility/source/extended/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/extended/textwindowaccessibility.cxx b/accessibility/source/extended/textwindowaccessibility.cxx index 6487d3730fed..04b07215d372 100644 --- a/accessibility/source/extended/textwindowaccessibility.cxx +++ b/accessibility/source/extended/textwindowaccessibility.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textwindowaccessibility.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/helper/acc_factory.cxx b/accessibility/source/helper/acc_factory.cxx index e1e8eae2ac78..8fe463d00c05 100644 --- a/accessibility/source/helper/acc_factory.cxx +++ b/accessibility/source/helper/acc_factory.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: acc_factory.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/helper/accessiblestrings.src b/accessibility/source/helper/accessiblestrings.src index 06b0e7a0edba..4df1391f3c1d 100644 --- a/accessibility/source/helper/accessiblestrings.src +++ b/accessibility/source/helper/accessiblestrings.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblestrings.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/helper/accresmgr.cxx b/accessibility/source/helper/accresmgr.cxx index 881d2f4fed4f..41647837df4e 100644 --- a/accessibility/source/helper/accresmgr.cxx +++ b/accessibility/source/helper/accresmgr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accresmgr.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/helper/characterattributeshelper.cxx b/accessibility/source/helper/characterattributeshelper.cxx index b8aa71ba9f7b..6444925dfbac 100644 --- a/accessibility/source/helper/characterattributeshelper.cxx +++ b/accessibility/source/helper/characterattributeshelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: characterattributeshelper.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/helper/makefile.mk b/accessibility/source/helper/makefile.mk index 198d7dc77f69..72284e38f3bc 100644 --- a/accessibility/source/helper/makefile.mk +++ b/accessibility/source/helper/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/inc/floatingwindowaccessible.hxx b/accessibility/source/inc/floatingwindowaccessible.hxx index 2aab648f075e..2d5e0e603f5a 100644 --- a/accessibility/source/inc/floatingwindowaccessible.hxx +++ b/accessibility/source/inc/floatingwindowaccessible.hxx @@ -2,14 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: floatingwindowaccessible.hxx,v $ - * - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/accessiblemenubasecomponent.cxx b/accessibility/source/standard/accessiblemenubasecomponent.cxx index defde95ce4b3..cb1f425b08cf 100644 --- a/accessibility/source/standard/accessiblemenubasecomponent.cxx +++ b/accessibility/source/standard/accessiblemenubasecomponent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblemenubasecomponent.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/accessiblemenucomponent.cxx b/accessibility/source/standard/accessiblemenucomponent.cxx index cd08b1da09ee..05ba722a9453 100644 --- a/accessibility/source/standard/accessiblemenucomponent.cxx +++ b/accessibility/source/standard/accessiblemenucomponent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblemenucomponent.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/accessiblemenuitemcomponent.cxx b/accessibility/source/standard/accessiblemenuitemcomponent.cxx index eac5b8fe43ec..6bc7f59b75d9 100644 --- a/accessibility/source/standard/accessiblemenuitemcomponent.cxx +++ b/accessibility/source/standard/accessiblemenuitemcomponent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessiblemenuitemcomponent.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/floatingwindowaccessible.cxx b/accessibility/source/standard/floatingwindowaccessible.cxx index aa886c7a0bce..5286bfd387ba 100644 --- a/accessibility/source/standard/floatingwindowaccessible.cxx +++ b/accessibility/source/standard/floatingwindowaccessible.cxx @@ -2,14 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: floatingwindowaccessible.cxx,v $ - * - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/makefile.mk b/accessibility/source/standard/makefile.mk index f98d8a3e766a..b79d98f659e5 100644 --- a/accessibility/source/standard/makefile.mk +++ b/accessibility/source/standard/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblebox.cxx b/accessibility/source/standard/vclxaccessiblebox.cxx index ad1f4ab2e01b..784588938bb8 100644 --- a/accessibility/source/standard/vclxaccessiblebox.cxx +++ b/accessibility/source/standard/vclxaccessiblebox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblebox.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblebutton.cxx b/accessibility/source/standard/vclxaccessiblebutton.cxx index 41f8c686bdde..690babdf5c41 100644 --- a/accessibility/source/standard/vclxaccessiblebutton.cxx +++ b/accessibility/source/standard/vclxaccessiblebutton.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblebutton.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblecheckbox.cxx b/accessibility/source/standard/vclxaccessiblecheckbox.cxx index c6ea1603d647..18a7be8bf810 100644 --- a/accessibility/source/standard/vclxaccessiblecheckbox.cxx +++ b/accessibility/source/standard/vclxaccessiblecheckbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblecheckbox.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblecombobox.cxx b/accessibility/source/standard/vclxaccessiblecombobox.cxx index 69f87a085588..9ac9a13591e1 100644 --- a/accessibility/source/standard/vclxaccessiblecombobox.cxx +++ b/accessibility/source/standard/vclxaccessiblecombobox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblecombobox.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx b/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx index 24fa4367d884..f396ff422947 100644 --- a/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx +++ b/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibledropdowncombobox.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx b/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx index 1245fbb1df3d..4d08d40245fb 100644 --- a/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx +++ b/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibledropdownlistbox.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibleedit.cxx b/accessibility/source/standard/vclxaccessibleedit.cxx index 06dd0e1e094c..0dd8376580ec 100644 --- a/accessibility/source/standard/vclxaccessibleedit.cxx +++ b/accessibility/source/standard/vclxaccessibleedit.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibleedit.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblefixedhyperlink.cxx b/accessibility/source/standard/vclxaccessiblefixedhyperlink.cxx index 29c71b260e34..90218e629669 100644 --- a/accessibility/source/standard/vclxaccessiblefixedhyperlink.cxx +++ b/accessibility/source/standard/vclxaccessiblefixedhyperlink.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblefixedhyperlink.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblefixedtext.cxx b/accessibility/source/standard/vclxaccessiblefixedtext.cxx index 11a9fe527367..ca89fa0417ab 100644 --- a/accessibility/source/standard/vclxaccessiblefixedtext.cxx +++ b/accessibility/source/standard/vclxaccessiblefixedtext.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblefixedtext.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblelist.cxx b/accessibility/source/standard/vclxaccessiblelist.cxx index 4651903820be..6d287a02f0e9 100644 --- a/accessibility/source/standard/vclxaccessiblelist.cxx +++ b/accessibility/source/standard/vclxaccessiblelist.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblelist.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblelistbox.cxx b/accessibility/source/standard/vclxaccessiblelistbox.cxx index 96b91a91161c..7645d2067c1a 100644 --- a/accessibility/source/standard/vclxaccessiblelistbox.cxx +++ b/accessibility/source/standard/vclxaccessiblelistbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblelistbox.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblelistboxlist.cxx b/accessibility/source/standard/vclxaccessiblelistboxlist.cxx index 9ceacb80392f..df37c3239667 100644 --- a/accessibility/source/standard/vclxaccessiblelistboxlist.cxx +++ b/accessibility/source/standard/vclxaccessiblelistboxlist.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblelistboxlist.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblelistitem.cxx b/accessibility/source/standard/vclxaccessiblelistitem.cxx index 8100e67330c3..56bcf14f1980 100644 --- a/accessibility/source/standard/vclxaccessiblelistitem.cxx +++ b/accessibility/source/standard/vclxaccessiblelistitem.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblelistitem.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblemenu.cxx b/accessibility/source/standard/vclxaccessiblemenu.cxx index 5dfa96d0a52c..f7e77f3fb8e2 100644 --- a/accessibility/source/standard/vclxaccessiblemenu.cxx +++ b/accessibility/source/standard/vclxaccessiblemenu.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblemenu.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblemenubar.cxx b/accessibility/source/standard/vclxaccessiblemenubar.cxx index 8c50d80a9c6f..825e5990e783 100644 --- a/accessibility/source/standard/vclxaccessiblemenubar.cxx +++ b/accessibility/source/standard/vclxaccessiblemenubar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblemenubar.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblemenuitem.cxx b/accessibility/source/standard/vclxaccessiblemenuitem.cxx index 2548ad0a7dbb..7332386e4303 100644 --- a/accessibility/source/standard/vclxaccessiblemenuitem.cxx +++ b/accessibility/source/standard/vclxaccessiblemenuitem.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblemenuitem.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblemenuseparator.cxx b/accessibility/source/standard/vclxaccessiblemenuseparator.cxx index 5c2dc3a004b1..07c8c0f2a3d4 100644 --- a/accessibility/source/standard/vclxaccessiblemenuseparator.cxx +++ b/accessibility/source/standard/vclxaccessiblemenuseparator.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblemenuseparator.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblepopupmenu.cxx b/accessibility/source/standard/vclxaccessiblepopupmenu.cxx index 438708362f5e..328e015c60e5 100644 --- a/accessibility/source/standard/vclxaccessiblepopupmenu.cxx +++ b/accessibility/source/standard/vclxaccessiblepopupmenu.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblepopupmenu.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibleradiobutton.cxx b/accessibility/source/standard/vclxaccessibleradiobutton.cxx index f797ff2d70ae..76940967fcce 100644 --- a/accessibility/source/standard/vclxaccessibleradiobutton.cxx +++ b/accessibility/source/standard/vclxaccessibleradiobutton.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibleradiobutton.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblescrollbar.cxx b/accessibility/source/standard/vclxaccessiblescrollbar.cxx index ed561c6fdc20..9bd9cf45f94b 100644 --- a/accessibility/source/standard/vclxaccessiblescrollbar.cxx +++ b/accessibility/source/standard/vclxaccessiblescrollbar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblescrollbar.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblestatusbar.cxx b/accessibility/source/standard/vclxaccessiblestatusbar.cxx index cc3c6d3aa666..5dd35a699b27 100644 --- a/accessibility/source/standard/vclxaccessiblestatusbar.cxx +++ b/accessibility/source/standard/vclxaccessiblestatusbar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblestatusbar.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessiblestatusbaritem.cxx b/accessibility/source/standard/vclxaccessiblestatusbaritem.cxx index e5f4f974d4ea..c3badc50bdbf 100644 --- a/accessibility/source/standard/vclxaccessiblestatusbaritem.cxx +++ b/accessibility/source/standard/vclxaccessiblestatusbaritem.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessiblestatusbaritem.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibletabcontrol.cxx b/accessibility/source/standard/vclxaccessibletabcontrol.cxx index e2b77802e771..ac6aca77dda0 100644 --- a/accessibility/source/standard/vclxaccessibletabcontrol.cxx +++ b/accessibility/source/standard/vclxaccessibletabcontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletabcontrol.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibletabpage.cxx b/accessibility/source/standard/vclxaccessibletabpage.cxx index 8cc85a022188..6b871fced829 100644 --- a/accessibility/source/standard/vclxaccessibletabpage.cxx +++ b/accessibility/source/standard/vclxaccessibletabpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletabpage.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibletabpagewindow.cxx b/accessibility/source/standard/vclxaccessibletabpagewindow.cxx index 1624e194afd4..93fc1b3da2ff 100644 --- a/accessibility/source/standard/vclxaccessibletabpagewindow.cxx +++ b/accessibility/source/standard/vclxaccessibletabpagewindow.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletabpagewindow.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibletextcomponent.cxx b/accessibility/source/standard/vclxaccessibletextcomponent.cxx index 87b25ffda078..c6bbaddf6426 100644 --- a/accessibility/source/standard/vclxaccessibletextcomponent.cxx +++ b/accessibility/source/standard/vclxaccessibletextcomponent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletextcomponent.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibletextfield.cxx b/accessibility/source/standard/vclxaccessibletextfield.cxx index 1d1dadd0e907..e77d203d443a 100644 --- a/accessibility/source/standard/vclxaccessibletextfield.cxx +++ b/accessibility/source/standard/vclxaccessibletextfield.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletextfield.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibletoolbox.cxx b/accessibility/source/standard/vclxaccessibletoolbox.cxx index 3e4ecd843d7d..52b7a7f83cab 100644 --- a/accessibility/source/standard/vclxaccessibletoolbox.cxx +++ b/accessibility/source/standard/vclxaccessibletoolbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletoolbox.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/source/standard/vclxaccessibletoolboxitem.cxx b/accessibility/source/standard/vclxaccessibletoolboxitem.cxx index 76507d22e3cf..7580d1a3ae2c 100644 --- a/accessibility/source/standard/vclxaccessibletoolboxitem.cxx +++ b/accessibility/source/standard/vclxaccessibletoolboxitem.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: vclxaccessibletoolboxitem.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/util/makefile.mk b/accessibility/util/makefile.mk index 7b235983512c..42a6061fa2c9 100644 --- a/accessibility/util/makefile.mk +++ b/accessibility/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java b/accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java index fd1d0e1fa13d..02ec7fea2232 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: AccessibilityWorkBench.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.3 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2008/05/14 13:21:34 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java b/accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java index 9edf5dd928ae..86b642e8091c 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: Canvas.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.2 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:35 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java b/accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java index 5b1b2fb1f4e2..f2595351a4f5 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: CanvasShape.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.2 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:35 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/ShapeContainer.java b/accessibility/workben/org/openoffice/accessibility/awb/canvas/ShapeContainer.java index fd99d5601cc0..03ad4bf38c46 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/canvas/ShapeContainer.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/ShapeContainer.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: ShapeContainer.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.2 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:35 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.common b/accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.common index 5bb567414220..df47f1bc8028 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.common +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.common @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.common,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.mk b/accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.mk index 6e3ef06aab8b..1e56c10c98b4 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.mk +++ b/accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.mk @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.mk,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/makefile.common b/accessibility/workben/org/openoffice/accessibility/awb/makefile.common index 80633d7e66ea..0bf38a0fada2 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/makefile.common +++ b/accessibility/workben/org/openoffice/accessibility/awb/makefile.common @@ -1,3 +1,30 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. +# +#************************************************************************* + JAVAFILES = \ AccessibilityWorkBench.java \ HelpWindow.java diff --git a/accessibility/workben/org/openoffice/accessibility/awb/makefile.mk b/accessibility/workben/org/openoffice/accessibility/awb/makefile.mk index 032a75b16d04..a07d631d6f11 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/makefile.mk +++ b/accessibility/workben/org/openoffice/accessibility/awb/makefile.mk @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.mk,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java index 6bdb5976f843..159467778554 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: AccessibilityModel.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:39 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java index 36c5d71b240e..93823e9a1941 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: AccessibilityNode.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.2 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:39 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java index f7e71d21574e..e485c993706a 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: AccessibilityTree.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.2 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:39 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java index acecd0100a2e..6069c8f5f5ee 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: AccessibilityTreeModel.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:28 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc.,y October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java index 0f5626852238..f2b4c6f0e97f 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: DynamicAccessibilityModel.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:39 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java index ff6f5ddd45ea..a982ad71c4d5 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: DynamicAccessibilityNode.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:40 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/Makefile b/accessibility/workben/org/openoffice/accessibility/awb/tree/Makefile index 8166c0b91312..579b8822ce76 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/Makefile +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/Makefile @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: Makefile,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/ToolkitNode.java b/accessibility/workben/org/openoffice/accessibility/awb/tree/ToolkitNode.java index 30a6f578f06e..8eaa9dab6c02 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/ToolkitNode.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/ToolkitNode.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: ToolkitNode.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:41 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.common b/accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.common index 6b32a5db09a8..e44be51360e7 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.common +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.common @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.common,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.mk b/accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.mk index 7867cf1cc672..0135ca9d6422 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.mk +++ b/accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.mk @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.mk,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java index 7d3da7c0ac16..d4c0e102b7a9 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: ComponentView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:32 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java index 16d51b6edd97..a8588cd18ca6 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: ContextView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:32 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java index b60404f22efd..2e39f117f62e 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: EditableTextView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:33 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java index e01f665b5e22..5b4bdcdcc4e4 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: EventMonitorView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:33 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java index 6f3f850aeb14..4dec27958d71 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: FocusView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:34 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java b/accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java index 590d17c94954..728b3dc426d7 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: LayoutManager.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:34 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java index e5eeec95b41a..54855cbaf885 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: ObjectViewContainer.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.2 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2003/09/19 09:21:42 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ParentView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ParentView.java index a6fb52a40ecb..216bc3a82bfc 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/ParentView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ParentView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: ParentView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:36 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java index 5967e4ae1ad4..ad5a83467372 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: SelectionView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:36 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/StateSetView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/StateSetView.java index a0d6e289156d..44638b099edc 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/StateSetView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/StateSetView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: StateSetView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:37 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java index ad185ce86f7b..07b5d2bb9b78 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: TableView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:37 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/TextView.java b/accessibility/workben/org/openoffice/accessibility/awb/view/TextView.java index 56f4c8758e61..4a838aa85884 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/TextView.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/TextView.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: TextView.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.2 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2008/05/14 13:21:35 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/ViewGridLayout.java b/accessibility/workben/org/openoffice/accessibility/awb/view/ViewGridLayout.java index e4f020a51455..bc598dcaf2fa 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/ViewGridLayout.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/ViewGridLayout.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: ViewGridLayout.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:38 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/makefile.common b/accessibility/workben/org/openoffice/accessibility/awb/view/makefile.common index 4f5f99ed0cf1..38033b3ab658 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/makefile.common +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/makefile.common @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.common,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/makefile.mk b/accessibility/workben/org/openoffice/accessibility/awb/view/makefile.mk index c8ddd587635a..0bfa48537ea2 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/makefile.mk +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/makefile.mk @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.mk,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java index 6289697ee375..c210b0eff086 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: CaretSpinnerModel.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.2 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: obr $ $Date: 2008/05/14 13:21:37 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextActionDialog.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextActionDialog.java index 420119515a41..f37969d5ee59 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextActionDialog.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextActionDialog.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: TextActionDialog.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:42 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java index 36d81162462c..dad548ca730e 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: TextAttributeDialog.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:42 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java index 397c3f8b1877..cdb3f26b5e55 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: TextDialogFactory.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:43 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java index 55dfea6fb0b2..a8710cbad7cc 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java @@ -1,61 +1,27 @@ /************************************************************************* * - * $RCSfile: TextEditDialog.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $Revision: 1.1 $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * last change: $Author: af $ $Date: 2003/06/13 16:30:43 $ + * OpenOffice.org - a multi-platform office productivity suite * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * This file is part of OpenOffice.org. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * Sun Microsystems Inc., October, 2000 - * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common b/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common index e3303bb6890f..7d9a5e8febfa 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.common,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk b/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk index 05f5b3a99c35..1ec7da26619b 100644 --- a/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk +++ b/accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.mk,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java b/accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java index f9212e05a35c..0f56117e1fdf 100644 --- a/accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java +++ b/accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java @@ -1,57 +1,27 @@ /************************************************************************* * - * $RCSfile: AccessibleEventMulticaster.java,v $ + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * The Contents of this file are made available subject to the terms of - * either of the following licenses + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * - GNU Lesser General Public License Version 2.1 - * - Sun Industry Standards Source License Version 1.1 + * OpenOffice.org - a multi-platform office productivity suite * - * Sun Microsystems Inc., October, 2000 + * This file is part of OpenOffice.org. * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2000 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA - * - * - * Sun Industry Standards Source License Version 1.1 - * ================================================= - * The contents of this file are subject to the Sun Industry Standards - * Source License Version 1.1 (the "License"); You may not use this file - * except in compliance with the License. You may obtain a copy of the - * License at http://www.openoffice.org/license.html. - * - * Software provided under this License is provided on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, - * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. - * See the License for the specific provisions governing your rights and - * obligations concerning the Software. - * - * The Initial Developer of the Original Code is: Sun Microsystems, Inc. - * - * Copyright: 2000 by Sun Microsystems, Inc. - * - * All Rights Reserved. - * - * Contributor(s): _______________________________________ + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/accessibility/workben/org/openoffice/accessibility/misc/Makefile b/accessibility/workben/org/openoffice/accessibility/misc/Makefile index a33a430c0eaa..ce9091d5d735 100644 --- a/accessibility/workben/org/openoffice/accessibility/misc/Makefile +++ b/accessibility/workben/org/openoffice/accessibility/misc/Makefile @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: Makefile,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/misc/makefile.common b/accessibility/workben/org/openoffice/accessibility/misc/makefile.common index f2462a88f841..0d7b0a3f51df 100644 --- a/accessibility/workben/org/openoffice/accessibility/misc/makefile.common +++ b/accessibility/workben/org/openoffice/accessibility/misc/makefile.common @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.common,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/accessibility/workben/org/openoffice/accessibility/misc/makefile.mk b/accessibility/workben/org/openoffice/accessibility/misc/makefile.mk index f0b71f860c3e..312410c1de48 100644 --- a/accessibility/workben/org/openoffice/accessibility/misc/makefile.mk +++ b/accessibility/workben/org/openoffice/accessibility/misc/makefile.mk @@ -1,58 +1,27 @@ #************************************************************************* # -# $RCSfile: makefile.mk,v $ +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# The Contents of this file are made available subject to the terms of -# either of the following licenses +# OpenOffice.org - a multi-platform office productivity suite # -# - GNU Lesser General Public License Version 2.1 -# - Sun Industry Standards Source License Version 1.1 +# This file is part of OpenOffice.org. # -# Sun Microsystems Inc., October, 2000 -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2000 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# -# -# Sun Industry Standards Source License Version 1.1 -# ================================================= -# The contents of this file are subject to the Sun Industry Standards -# Source License Version 1.1 (the "License"); You may not use this file -# except in compliance with the License. You may obtain a copy of the -# License at http://www.openoffice.org/license.html. -# -# Software provided under this License is provided on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, -# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. -# See the License for the specific provisions governing your rights and -# obligations concerning the Software. -# -# The Initial Developer of the Original Code is: Sun Microsystems, Inc. -# -# Copyright: 2000 by Sun Microsystems, Inc. -# -# All Rights Reserved. -# -# Contributor(s): _______________________________________ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/automation/inc/automation/automation.hxx b/automation/inc/automation/automation.hxx index 87e1502f39ba..38babd58849e 100644 --- a/automation/inc/automation/automation.hxx +++ b/automation/inc/automation/automation.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: automation.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/inc/automation/commdefines.hxx b/automation/inc/automation/commdefines.hxx index f8f323e3c6e0..98ebf308c3a7 100644 --- a/automation/inc/automation/commdefines.hxx +++ b/automation/inc/automation/commdefines.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commdefines.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/inc/automation/commtypes.hxx b/automation/inc/automation/commtypes.hxx index 7966aed66d1e..ad8443518e85 100644 --- a/automation/inc/automation/commtypes.hxx +++ b/automation/inc/automation/commtypes.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commtypes.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/inc/automation/communi.hxx b/automation/inc/automation/communi.hxx index 3804ad3048e5..36a6660f1a6d 100644 --- a/automation/inc/automation/communi.hxx +++ b/automation/inc/automation/communi.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: communi.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/inc/automation/simplecm.hxx b/automation/inc/automation/simplecm.hxx index e5d4a45fff14..018fdceba7d7 100644 --- a/automation/inc/automation/simplecm.hxx +++ b/automation/inc/automation/simplecm.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: simplecm.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/inc/makefile.mk b/automation/inc/makefile.mk index 391de82d4216..782b6a805b9b 100644 --- a/automation/inc/makefile.mk +++ b/automation/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/inc/pch/precompiled_automation.cxx b/automation/inc/pch/precompiled_automation.cxx index 3eec04310196..9ceb299f199c 100644 --- a/automation/inc/pch/precompiled_automation.cxx +++ b/automation/inc/pch/precompiled_automation.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_automation.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/inc/pch/precompiled_automation.hxx b/automation/inc/pch/precompiled_automation.hxx index 011ac55f673c..ac38a7ce5cc8 100644 --- a/automation/inc/pch/precompiled_automation.hxx +++ b/automation/inc/pch/precompiled_automation.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_automation.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/packimages/makefile.mk b/automation/packimages/makefile.mk index 1c497b2099f8..928155039773 100644 --- a/automation/packimages/makefile.mk +++ b/automation/packimages/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.12 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/app/makefile.mk b/automation/source/app/makefile.mk index ab1de73cbe24..8a430b3c3a96 100644 --- a/automation/source/app/makefile.mk +++ b/automation/source/app/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/app/testbasi.cxx b/automation/source/app/testbasi.cxx index a7454dc549bd..292cd70b34a4 100644 --- a/automation/source/app/testbasi.cxx +++ b/automation/source/app/testbasi.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testbasi.cxx,v $ - * $Revision: 1.9.14.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/app/testbasi.hxx b/automation/source/app/testbasi.hxx index ad23306162ef..882b697f1cf3 100644 --- a/automation/source/app/testbasi.hxx +++ b/automation/source/app/testbasi.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testbasi.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/communi/communi.cxx b/automation/source/communi/communi.cxx index 6f79551ecd72..e62e060ba89c 100644 --- a/automation/source/communi/communi.cxx +++ b/automation/source/communi/communi.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: communi.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/communi/makefile.mk b/automation/source/communi/makefile.mk index 6c3a576c2e21..1d01badab455 100644 --- a/automation/source/communi/makefile.mk +++ b/automation/source/communi/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/inc/cmdbasestream.hxx b/automation/source/inc/cmdbasestream.hxx index 9af701f4fc25..d103dd071e43 100644 --- a/automation/source/inc/cmdbasestream.hxx +++ b/automation/source/inc/cmdbasestream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cmdbasestream.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/inc/icommstream.hxx b/automation/source/inc/icommstream.hxx index 9e0c0a44df47..efc1315bc9b1 100644 --- a/automation/source/inc/icommstream.hxx +++ b/automation/source/inc/icommstream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: icommstream.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/inc/rcontrol.hxx b/automation/source/inc/rcontrol.hxx index 8a5750284578..829dd320beb6 100644 --- a/automation/source/inc/rcontrol.hxx +++ b/automation/source/inc/rcontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: rcontrol.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/inc/sttresid.hxx b/automation/source/inc/sttresid.hxx index cd84e72ae9a1..4bfa73cdc2c9 100644 --- a/automation/source/inc/sttresid.hxx +++ b/automation/source/inc/sttresid.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sttresid.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/inc/svcommstream.hxx b/automation/source/inc/svcommstream.hxx index 9474009824fd..545f8adc7887 100644 --- a/automation/source/inc/svcommstream.hxx +++ b/automation/source/inc/svcommstream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svcommstream.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/inc/testapp.hxx b/automation/source/inc/testapp.hxx index cf76571a81de..14b9e30362d0 100644 --- a/automation/source/inc/testapp.hxx +++ b/automation/source/inc/testapp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testapp.hxx,v $ - * $Revision: 1.12.24.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/inc/testtool.hxx b/automation/source/inc/testtool.hxx index 3acf66b05d9d..33c9e225b684 100644 --- a/automation/source/inc/testtool.hxx +++ b/automation/source/inc/testtool.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testtool.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/editwin.cxx b/automation/source/miniapp/editwin.cxx index 6f141178cb12..f00917e6d2e5 100644 --- a/automation/source/miniapp/editwin.cxx +++ b/automation/source/miniapp/editwin.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: editwin.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/editwin.hxx b/automation/source/miniapp/editwin.hxx index 8c480afd792b..8fbf04227382 100644 --- a/automation/source/miniapp/editwin.hxx +++ b/automation/source/miniapp/editwin.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: editwin.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/makefile.mk b/automation/source/miniapp/makefile.mk index 4ab23d923cda..14a6d1ff0e1d 100644 --- a/automation/source/miniapp/makefile.mk +++ b/automation/source/miniapp/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/servres.cxx b/automation/source/miniapp/servres.cxx index fa0551c738fd..a708e026a2a6 100644 --- a/automation/source/miniapp/servres.cxx +++ b/automation/source/miniapp/servres.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servres.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/servres.hrc b/automation/source/miniapp/servres.hrc index 21e7911a966d..2f95a34a60b6 100644 --- a/automation/source/miniapp/servres.hrc +++ b/automation/source/miniapp/servres.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servres.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/servres.hxx b/automation/source/miniapp/servres.hxx index fb85c0868444..848779a39fa7 100644 --- a/automation/source/miniapp/servres.hxx +++ b/automation/source/miniapp/servres.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servres.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/servres.src b/automation/source/miniapp/servres.src index c9fb27ac5b7f..426be8b81532 100644 --- a/automation/source/miniapp/servres.src +++ b/automation/source/miniapp/servres.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servres.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/servuid.hxx b/automation/source/miniapp/servuid.hxx index 1bc874b84335..7d66c5473fac 100644 --- a/automation/source/miniapp/servuid.hxx +++ b/automation/source/miniapp/servuid.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servuid.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/testapp.cxx b/automation/source/miniapp/testapp.cxx index babe0e428440..0a29fcc7e6e1 100644 --- a/automation/source/miniapp/testapp.cxx +++ b/automation/source/miniapp/testapp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testapp.cxx,v $ - * $Revision: 1.9.24.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/miniapp/testapp.hxx b/automation/source/miniapp/testapp.hxx index 55048d05cbb0..31a480a0173e 100644 --- a/automation/source/miniapp/testapp.hxx +++ b/automation/source/miniapp/testapp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testapp.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/mozillaserver/makefile.mk b/automation/source/mozillaserver/makefile.mk index 761f09d15c33..fee12e3e6649 100644 --- a/automation/source/mozillaserver/makefile.mk +++ b/automation/source/mozillaserver/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/mozillaserver/mozillatesttoolserver.idl b/automation/source/mozillaserver/mozillatesttoolserver.idl index ac756be62095..5b5b5acc1e16 100644 --- a/automation/source/mozillaserver/mozillatesttoolserver.idl +++ b/automation/source/mozillaserver/mozillatesttoolserver.idl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: mozillatesttoolserver.idl,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/mozillaserver/xmozillatesttoolserver.idl b/automation/source/mozillaserver/xmozillatesttoolserver.idl index c266a6df1d80..51755a67a35d 100644 --- a/automation/source/mozillaserver/xmozillatesttoolserver.idl +++ b/automation/source/mozillaserver/xmozillatesttoolserver.idl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmozillatesttoolserver.idl,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/XMLParser.cxx b/automation/source/server/XMLParser.cxx index d9ef14461a1f..6e6c3dc859a7 100644 --- a/automation/source/server/XMLParser.cxx +++ b/automation/source/server/XMLParser.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMLParser.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/cmdbasestream.cxx b/automation/source/server/cmdbasestream.cxx index 48a982d78d31..718bc52dad70 100644 --- a/automation/source/server/cmdbasestream.cxx +++ b/automation/source/server/cmdbasestream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cmdbasestream.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/editwin.cxx b/automation/source/server/editwin.cxx index 137fc850a0a9..0bcb35a8b306 100644 --- a/automation/source/server/editwin.cxx +++ b/automation/source/server/editwin.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: editwin.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/editwin.hxx b/automation/source/server/editwin.hxx index 04da97fb8444..021982333d39 100644 --- a/automation/source/server/editwin.hxx +++ b/automation/source/server/editwin.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: editwin.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/makefile.mk b/automation/source/server/makefile.mk index 5f0ada293432..bced075be72a 100644 --- a/automation/source/server/makefile.mk +++ b/automation/source/server/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/prof_nul.cxx b/automation/source/server/prof_nul.cxx index a437c42dc9b5..c8f70eb06821 100644 --- a/automation/source/server/prof_nul.cxx +++ b/automation/source/server/prof_nul.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: prof_nul.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/prof_usl.cxx b/automation/source/server/prof_usl.cxx index f2d8d9c47c38..91048e0c6c75 100644 --- a/automation/source/server/prof_usl.cxx +++ b/automation/source/server/prof_usl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: prof_usl.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/profiler.cxx b/automation/source/server/profiler.cxx index 5da7c55057d7..150b0d1ec5ef 100644 --- a/automation/source/server/profiler.cxx +++ b/automation/source/server/profiler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: profiler.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/profiler.hxx b/automation/source/server/profiler.hxx index 1a17c601e406..e5c3b6d02a15 100644 --- a/automation/source/server/profiler.hxx +++ b/automation/source/server/profiler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: profiler.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/recorder.cxx b/automation/source/server/recorder.cxx index 49f6f7608ef0..6c941032f104 100644 --- a/automation/source/server/recorder.cxx +++ b/automation/source/server/recorder.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: recorder.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/recorder.hxx b/automation/source/server/recorder.hxx index 13e78f46d480..baa6355848ff 100644 --- a/automation/source/server/recorder.hxx +++ b/automation/source/server/recorder.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: recorder.hxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/retstrm.cxx b/automation/source/server/retstrm.cxx index 04b73ac9ebb6..13a9e9b72258 100644 --- a/automation/source/server/retstrm.cxx +++ b/automation/source/server/retstrm.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: retstrm.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/retstrm.hxx b/automation/source/server/retstrm.hxx index 537aa3db216c..888d1717422c 100644 --- a/automation/source/server/retstrm.hxx +++ b/automation/source/server/retstrm.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: retstrm.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/scmdstrm.cxx b/automation/source/server/scmdstrm.cxx index a8abce528746..0c4485f46a6b 100644 --- a/automation/source/server/scmdstrm.cxx +++ b/automation/source/server/scmdstrm.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scmdstrm.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/scmdstrm.hxx b/automation/source/server/scmdstrm.hxx index 874e9f41bbb6..0e71b2723801 100644 --- a/automation/source/server/scmdstrm.hxx +++ b/automation/source/server/scmdstrm.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scmdstrm.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/server.cxx b/automation/source/server/server.cxx index 890e6ace540d..e4e59251dd63 100644 --- a/automation/source/server/server.cxx +++ b/automation/source/server/server.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: server.cxx,v $ - * $Revision: 1.26 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/server.hxx b/automation/source/server/server.hxx index f3674c79af16..099973bee6bb 100644 --- a/automation/source/server/server.hxx +++ b/automation/source/server/server.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: server.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/sta_list.cxx b/automation/source/server/sta_list.cxx index 6f114ae57f5b..7f346c298563 100644 --- a/automation/source/server/sta_list.cxx +++ b/automation/source/server/sta_list.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sta_list.cxx,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/statemnt.cxx b/automation/source/server/statemnt.cxx index be501ae901f6..68ff61bbaa0d 100644 --- a/automation/source/server/statemnt.cxx +++ b/automation/source/server/statemnt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: statemnt.cxx,v $ - * $Revision: 1.40 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/statemnt.hxx b/automation/source/server/statemnt.hxx index 2d287bcafa85..4e580a09749c 100644 --- a/automation/source/server/statemnt.hxx +++ b/automation/source/server/statemnt.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: statemnt.hxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/svcommstream.cxx b/automation/source/server/svcommstream.cxx index 8b78facd7276..7ff77b30d242 100644 --- a/automation/source/server/svcommstream.cxx +++ b/automation/source/server/svcommstream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svcommstream.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/server/testtool.hrc b/automation/source/server/testtool.hrc index a1f539c64bd6..d6a234b74236 100644 --- a/automation/source/server/testtool.hrc +++ b/automation/source/server/testtool.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testtool.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/simplecm/communiio.hxx b/automation/source/simplecm/communiio.hxx index 45c6a4880767..5431c9d49621 100644 --- a/automation/source/simplecm/communiio.hxx +++ b/automation/source/simplecm/communiio.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: communiio.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/simplecm/makefile.mk b/automation/source/simplecm/makefile.mk index ab2e70ee2713..b6318ab4fd46 100644 --- a/automation/source/simplecm/makefile.mk +++ b/automation/source/simplecm/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/simplecm/packethandler.cxx b/automation/source/simplecm/packethandler.cxx index e323fffec45d..91f787fbff2f 100644 --- a/automation/source/simplecm/packethandler.cxx +++ b/automation/source/simplecm/packethandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: packethandler.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/simplecm/packethandler.hxx b/automation/source/simplecm/packethandler.hxx index a44bae8e74c3..ce0c22c100c9 100644 --- a/automation/source/simplecm/packethandler.hxx +++ b/automation/source/simplecm/packethandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: packethandler.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/simplecm/simplecm.cxx b/automation/source/simplecm/simplecm.cxx index 6813b4c9b2c7..46747ec66f00 100644 --- a/automation/source/simplecm/simplecm.cxx +++ b/automation/source/simplecm/simplecm.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: simplecm.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/simplecm/tcpio.cxx b/automation/source/simplecm/tcpio.cxx index 9d96c0a167c0..5498e3a69774 100644 --- a/automation/source/simplecm/tcpio.cxx +++ b/automation/source/simplecm/tcpio.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tcpio.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/simplecm/tcpio.hxx b/automation/source/simplecm/tcpio.hxx index 26a7458b8e22..626f164ba0f5 100644 --- a/automation/source/simplecm/tcpio.hxx +++ b/automation/source/simplecm/tcpio.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tcpio.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/cmdstrm.cxx b/automation/source/testtool/cmdstrm.cxx index 162ab4ed950c..4f6d413f4280 100644 --- a/automation/source/testtool/cmdstrm.cxx +++ b/automation/source/testtool/cmdstrm.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cmdstrm.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/cmdstrm.hxx b/automation/source/testtool/cmdstrm.hxx index 1f14aa48b803..857517483280 100644 --- a/automation/source/testtool/cmdstrm.hxx +++ b/automation/source/testtool/cmdstrm.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cmdstrm.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/comm_bas.cxx b/automation/source/testtool/comm_bas.cxx index 31a170945964..e35448c012c5 100644 --- a/automation/source/testtool/comm_bas.cxx +++ b/automation/source/testtool/comm_bas.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: comm_bas.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/comm_bas.hxx b/automation/source/testtool/comm_bas.hxx index aa3e884372e9..d39f0895eefd 100644 --- a/automation/source/testtool/comm_bas.hxx +++ b/automation/source/testtool/comm_bas.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: comm_bas.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/cretstrm.cxx b/automation/source/testtool/cretstrm.cxx index 1c911568278a..a6850b1c2cc4 100644 --- a/automation/source/testtool/cretstrm.cxx +++ b/automation/source/testtool/cretstrm.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cretstrm.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/cretstrm.hxx b/automation/source/testtool/cretstrm.hxx index bd0626d15ff5..75229bb32cb7 100644 --- a/automation/source/testtool/cretstrm.hxx +++ b/automation/source/testtool/cretstrm.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cretstrm.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/filter.pl b/automation/source/testtool/filter.pl index e23d3a0f44e1..79b7add5c5b3 100644 --- a/automation/source/testtool/filter.pl +++ b/automation/source/testtool/filter.pl @@ -3,14 +3,10 @@ #* # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: filter.pl,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/httprequest.cxx b/automation/source/testtool/httprequest.cxx index 55aef16ff338..1e45fd1fc976 100644 --- a/automation/source/testtool/httprequest.cxx +++ b/automation/source/testtool/httprequest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: httprequest.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/httprequest.hxx b/automation/source/testtool/httprequest.hxx index 3db9a4516505..44234239b81f 100644 --- a/automation/source/testtool/httprequest.hxx +++ b/automation/source/testtool/httprequest.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: httprequest.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/makefile.mk b/automation/source/testtool/makefile.mk index e72c92c3b8e1..962f9d6e2694 100644 --- a/automation/source/testtool/makefile.mk +++ b/automation/source/testtool/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.13 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/objtest.cxx b/automation/source/testtool/objtest.cxx index 84dc21a1321a..04e4522be813 100644 --- a/automation/source/testtool/objtest.cxx +++ b/automation/source/testtool/objtest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: objtest.cxx,v $ - * $Revision: 1.40 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/objtest.hxx b/automation/source/testtool/objtest.hxx index 260d54c0cef0..435cb0a2e787 100644 --- a/automation/source/testtool/objtest.hxx +++ b/automation/source/testtool/objtest.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: objtest.hxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/registry_win.cxx b/automation/source/testtool/registry_win.cxx index 742013154b97..d0b1c0a0aa1b 100644 --- a/automation/source/testtool/registry_win.cxx +++ b/automation/source/testtool/registry_win.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registry_win.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/registry_win.hxx b/automation/source/testtool/registry_win.hxx index c10d96c78260..7099f39a3874 100644 --- a/automation/source/testtool/registry_win.hxx +++ b/automation/source/testtool/registry_win.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registry_win.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/sysdir_win.cxx b/automation/source/testtool/sysdir_win.cxx index f5e4ff124fcd..ec87c65cfb4a 100644 --- a/automation/source/testtool/sysdir_win.cxx +++ b/automation/source/testtool/sysdir_win.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sysdir_win.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/sysdir_win.hxx b/automation/source/testtool/sysdir_win.hxx index df84a14800d9..f406f69572db 100644 --- a/automation/source/testtool/sysdir_win.hxx +++ b/automation/source/testtool/sysdir_win.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sysdir_win.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/tcommuni.cxx b/automation/source/testtool/tcommuni.cxx index 3ac135829f6d..97684cfba2cf 100644 --- a/automation/source/testtool/tcommuni.cxx +++ b/automation/source/testtool/tcommuni.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tcommuni.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/source/testtool/tcommuni.hxx b/automation/source/testtool/tcommuni.hxx index f31d397a7a00..4374edfd7fc9 100644 --- a/automation/source/testtool/tcommuni.hxx +++ b/automation/source/testtool/tcommuni.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tcommuni.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/automation/util/makefile.mk b/automation/util/makefile.mk index 8d68000c7c5a..e683e73631b8 100644 --- a/automation/util/makefile.mk +++ b/automation/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.27 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/inc/basidesh.hrc b/basctl/inc/basidesh.hrc index d4f048cda8d7..51d1ed2be6fc 100644 --- a/basctl/inc/basidesh.hrc +++ b/basctl/inc/basidesh.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidesh.hrc,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/inc/helpid.hrc b/basctl/inc/helpid.hrc index 00356d2bc5c4..0f666941e57e 100644 --- a/basctl/inc/helpid.hrc +++ b/basctl/inc/helpid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: helpid.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/inc/iderdll.hxx b/basctl/inc/iderdll.hxx index 51e8a2b6b796..602a5d1a94e4 100644 --- a/basctl/inc/iderdll.hxx +++ b/basctl/inc/iderdll.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iderdll.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/inc/makefile.mk b/basctl/inc/makefile.mk index 805af9950129..f1ef542c9963 100644 --- a/basctl/inc/makefile.mk +++ b/basctl/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/inc/pch/precompiled_basctl.cxx b/basctl/inc/pch/precompiled_basctl.cxx index 7af001b37595..6058cef5d832 100644 --- a/basctl/inc/pch/precompiled_basctl.cxx +++ b/basctl/inc/pch/precompiled_basctl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_basctl.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/inc/pch/precompiled_basctl.hxx b/basctl/inc/pch/precompiled_basctl.hxx index be1612ea7429..d50f85f5549c 100644 --- a/basctl/inc/pch/precompiled_basctl.hxx +++ b/basctl/inc/pch/precompiled_basctl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_basctl.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/sdi/baside.sdi b/basctl/sdi/baside.sdi index 2ada0ff3159c..bc9232c08bfd 100644 --- a/basctl/sdi/baside.sdi +++ b/basctl/sdi/baside.sdi @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: baside.sdi,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/sdi/basslots.hrc b/basctl/sdi/basslots.hrc index ca42723efeff..67140ff4af49 100644 --- a/basctl/sdi/basslots.hrc +++ b/basctl/sdi/basslots.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basslots.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/sdi/basslots.sdi b/basctl/sdi/basslots.sdi index d2b3cb602ab8..f6cf7ce83a30 100644 --- a/basctl/sdi/basslots.sdi +++ b/basctl/sdi/basslots.sdi @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basslots.sdi,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/sdi/makefile.mk b/basctl/sdi/makefile.mk index 2244eafcd654..2e8a49ef992d 100644 --- a/basctl/sdi/makefile.mk +++ b/basctl/sdi/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/accessibility/accessibledialogcontrolshape.cxx b/basctl/source/accessibility/accessibledialogcontrolshape.cxx index 9601c74aa1e9..a73d51c79990 100644 --- a/basctl/source/accessibility/accessibledialogcontrolshape.cxx +++ b/basctl/source/accessibility/accessibledialogcontrolshape.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibledialogcontrolshape.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/accessibility/accessibledialogwindow.cxx b/basctl/source/accessibility/accessibledialogwindow.cxx index 380cf7859840..c774f2d166eb 100644 --- a/basctl/source/accessibility/accessibledialogwindow.cxx +++ b/basctl/source/accessibility/accessibledialogwindow.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibledialogwindow.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/accessibility/makefile.mk b/basctl/source/accessibility/makefile.mk index 7871bcb7ff19..ec899b893944 100644 --- a/basctl/source/accessibility/makefile.mk +++ b/basctl/source/accessibility/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basdoc.cxx b/basctl/source/basicide/basdoc.cxx index 4dd0dbd2aeca..72c665df19b0 100644 --- a/basctl/source/basicide/basdoc.cxx +++ b/basctl/source/basicide/basdoc.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basdoc.cxx,v $ - * $Revision: 1.21.22.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basdoc.hxx b/basctl/source/basicide/basdoc.hxx index a589ef700b33..e1832a27521a 100644 --- a/basctl/source/basicide/basdoc.hxx +++ b/basctl/source/basicide/basdoc.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basdoc.hxx,v $ - * $Revision: 1.8.22.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basicbox.cxx b/basctl/source/basicide/basicbox.cxx index fb73babe54a5..1b981c9dacdf 100644 --- a/basctl/source/basicide/basicbox.cxx +++ b/basctl/source/basicide/basicbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basicbox.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basicbox.hxx b/basctl/source/basicide/basicbox.hxx index 25f47c980c5d..3a8d26581350 100644 --- a/basctl/source/basicide/basicbox.hxx +++ b/basctl/source/basicide/basicbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basicbox.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basicmod.hxx b/basctl/source/basicide/basicmod.hxx index fbfec72fe803..374b933c4ea6 100644 --- a/basctl/source/basicide/basicmod.hxx +++ b/basctl/source/basicide/basicmod.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basicmod.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basicprint.src b/basctl/source/basicide/basicprint.src index be5e7d2e1de3..1f301d3461a9 100644 --- a/basctl/source/basicide/basicprint.src +++ b/basctl/source/basicide/basicprint.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidesh.src,v $ - * $Revision: 1.107 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basicrenderable.cxx b/basctl/source/basicide/basicrenderable.cxx index fa30af874cff..e2042d49876c 100644 --- a/basctl/source/basicide/basicrenderable.cxx +++ b/basctl/source/basicide/basicrenderable.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidesh.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basicrenderable.hxx b/basctl/source/basicide/basicrenderable.hxx index 7cad19c784be..6f199d371527 100644 --- a/basctl/source/basicide/basicrenderable.hxx +++ b/basctl/source/basicide/basicrenderable.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidesh.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/baside2.cxx b/basctl/source/basicide/baside2.cxx index 6612f82fb92b..9fc700948249 100644 --- a/basctl/source/basicide/baside2.cxx +++ b/basctl/source/basicide/baside2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: baside2.cxx,v $ - * $Revision: 1.46.2.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/baside2.hrc b/basctl/source/basicide/baside2.hrc index 4877cb0d05cf..f97a0d897912 100644 --- a/basctl/source/basicide/baside2.hrc +++ b/basctl/source/basicide/baside2.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: baside2.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/baside2.hxx b/basctl/source/basicide/baside2.hxx index 25a04b0da6ab..6d35f0a027a8 100644 --- a/basctl/source/basicide/baside2.hxx +++ b/basctl/source/basicide/baside2.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: baside2.hxx,v $ - * $Revision: 1.26.22.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 66065d77f71e..b6b4accb7dd6 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: baside2b.cxx,v $ - * $Revision: 1.59 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/baside3.cxx b/basctl/source/basicide/baside3.cxx index 77181a0a2044..a2f7f0887a7c 100644 --- a/basctl/source/basicide/baside3.cxx +++ b/basctl/source/basicide/baside3.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: baside3.cxx,v $ - * $Revision: 1.43 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/baside4.cxx b/basctl/source/basicide/baside4.cxx index 92b921d971d9..c080427ee013 100644 --- a/basctl/source/basicide/baside4.cxx +++ b/basctl/source/basicide/baside4.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: baside4.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basidectrlr.cxx b/basctl/source/basicide/basidectrlr.cxx index 9635a3b7c2a4..cc354f826aa1 100644 --- a/basctl/source/basicide/basidectrlr.cxx +++ b/basctl/source/basicide/basidectrlr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidectrlr.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basides1.cxx b/basctl/source/basicide/basides1.cxx index 044c61d5cc21..909a28543fae 100644 --- a/basctl/source/basicide/basides1.cxx +++ b/basctl/source/basicide/basides1.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basides1.cxx,v $ - * $Revision: 1.56 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basides2.cxx b/basctl/source/basicide/basides2.cxx index eb59ca4f082b..20de8e9aafba 100644 --- a/basctl/source/basicide/basides2.cxx +++ b/basctl/source/basicide/basides2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basides2.cxx,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basides3.cxx b/basctl/source/basicide/basides3.cxx index 581c685427d2..22fbdc4a9c7b 100644 --- a/basctl/source/basicide/basides3.cxx +++ b/basctl/source/basicide/basides3.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basides3.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basidesh.cxx b/basctl/source/basicide/basidesh.cxx index 2d2e0f6a5693..2c3ccc4eb678 100644 --- a/basctl/source/basicide/basidesh.cxx +++ b/basctl/source/basicide/basidesh.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidesh.cxx,v $ - * $Revision: 1.49.26.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basidesh.src b/basctl/source/basicide/basidesh.src index 1c8d734d1997..f0c0727cd22f 100644 --- a/basctl/source/basicide/basidesh.src +++ b/basctl/source/basicide/basidesh.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidesh.src,v $ - * $Revision: 1.107 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basobj2.cxx b/basctl/source/basicide/basobj2.cxx index f7ddd62e144a..d2672f39928f 100644 --- a/basctl/source/basicide/basobj2.cxx +++ b/basctl/source/basicide/basobj2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basobj2.cxx,v $ - * $Revision: 1.37 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/basobj3.cxx b/basctl/source/basicide/basobj3.cxx index a1887e0ea7a0..8d04320ec010 100644 --- a/basctl/source/basicide/basobj3.cxx +++ b/basctl/source/basicide/basobj3.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basobj3.cxx,v $ - * $Revision: 1.44 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/bastype2.cxx b/basctl/source/basicide/bastype2.cxx index 562a0ce121a3..a37eb752e2ea 100644 --- a/basctl/source/basicide/bastype2.cxx +++ b/basctl/source/basicide/bastype2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bastype2.cxx,v $ - * $Revision: 1.26 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/bastype2.hxx b/basctl/source/basicide/bastype2.hxx index ce96ca3892a9..401282f7e1bf 100644 --- a/basctl/source/basicide/bastype2.hxx +++ b/basctl/source/basicide/bastype2.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bastype2.hxx,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/bastype3.cxx b/basctl/source/basicide/bastype3.cxx index 01fbc25feefc..a0320d89e88a 100644 --- a/basctl/source/basicide/bastype3.cxx +++ b/basctl/source/basicide/bastype3.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bastype3.cxx,v $ - * $Revision: 1.26 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/bastype3.hxx b/basctl/source/basicide/bastype3.hxx index 02dbb9cd95dd..119357185b64 100644 --- a/basctl/source/basicide/bastype3.hxx +++ b/basctl/source/basicide/bastype3.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bastype3.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/bastype4.hxx b/basctl/source/basicide/bastype4.hxx index 28623c235edc..e1b76ea1e897 100644 --- a/basctl/source/basicide/bastype4.hxx +++ b/basctl/source/basicide/bastype4.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bastype4.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/bastypes.cxx b/basctl/source/basicide/bastypes.cxx index c44d3d00fdf0..af42503a5dae 100644 --- a/basctl/source/basicide/bastypes.cxx +++ b/basctl/source/basicide/bastypes.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bastypes.cxx,v $ - * $Revision: 1.32.30.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/brkdlg.cxx b/basctl/source/basicide/brkdlg.cxx index 393c49bc45aa..6d126784cac0 100644 --- a/basctl/source/basicide/brkdlg.cxx +++ b/basctl/source/basicide/brkdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: brkdlg.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/brkdlg.hrc b/basctl/source/basicide/brkdlg.hrc index 1fcfc9286cff..921990d35e6c 100644 --- a/basctl/source/basicide/brkdlg.hrc +++ b/basctl/source/basicide/brkdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: brkdlg.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/brkdlg.hxx b/basctl/source/basicide/brkdlg.hxx index 6664673ef86d..8e8f6cb2f9e4 100644 --- a/basctl/source/basicide/brkdlg.hxx +++ b/basctl/source/basicide/brkdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: brkdlg.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/brkdlg.src b/basctl/source/basicide/brkdlg.src index ededb6909e8f..00fd8fbf8968 100644 --- a/basctl/source/basicide/brkdlg.src +++ b/basctl/source/basicide/brkdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: brkdlg.src,v $ - * $Revision: 1.27 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/doceventnotifier.cxx b/basctl/source/basicide/doceventnotifier.cxx index f97420da5926..1635232c95ae 100644 --- a/basctl/source/basicide/doceventnotifier.cxx +++ b/basctl/source/basicide/doceventnotifier.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: doceventnotifier.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/docsignature.cxx b/basctl/source/basicide/docsignature.cxx index a4f02ab2caba..2acf2a332be4 100644 --- a/basctl/source/basicide/docsignature.cxx +++ b/basctl/source/basicide/docsignature.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: docsignature.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/documentenumeration.cxx b/basctl/source/basicide/documentenumeration.cxx index 14ff75cde2da..7044dbde9382 100644 --- a/basctl/source/basicide/documentenumeration.cxx +++ b/basctl/source/basicide/documentenumeration.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: documentenumeration.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/documentenumeration.hxx b/basctl/source/basicide/documentenumeration.hxx index 279333545355..ba23986a5ee7 100644 --- a/basctl/source/basicide/documentenumeration.hxx +++ b/basctl/source/basicide/documentenumeration.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: documentenumeration.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/ide_pch.cxx b/basctl/source/basicide/ide_pch.cxx index a080dc938cf1..f19c0c8dac67 100644 --- a/basctl/source/basicide/ide_pch.cxx +++ b/basctl/source/basicide/ide_pch.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ide_pch.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/ide_pch.hxx b/basctl/source/basicide/ide_pch.hxx index 9f294b87577d..507b70e02058 100644 --- a/basctl/source/basicide/ide_pch.hxx +++ b/basctl/source/basicide/ide_pch.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ide_pch.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/iderdll.cxx b/basctl/source/basicide/iderdll.cxx index 5f2ed2301758..b4d2877e19fa 100644 --- a/basctl/source/basicide/iderdll.cxx +++ b/basctl/source/basicide/iderdll.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iderdll.cxx,v $ - * $Revision: 1.26 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/iderdll2.hxx b/basctl/source/basicide/iderdll2.hxx index e679c38a6996..162d08ddcb5e 100644 --- a/basctl/source/basicide/iderdll2.hxx +++ b/basctl/source/basicide/iderdll2.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iderdll2.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/idetemp.hxx b/basctl/source/basicide/idetemp.hxx index 011b89745df8..8c959552315b 100644 --- a/basctl/source/basicide/idetemp.hxx +++ b/basctl/source/basicide/idetemp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: idetemp.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/localizationmgr.cxx b/basctl/source/basicide/localizationmgr.cxx index fead4ae0aa4c..996a4e772be1 100644 --- a/basctl/source/basicide/localizationmgr.cxx +++ b/basctl/source/basicide/localizationmgr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: localizationmgr.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/macrodlg.cxx b/basctl/source/basicide/macrodlg.cxx index 40e823ffd122..f3e41e60d34b 100644 --- a/basctl/source/basicide/macrodlg.cxx +++ b/basctl/source/basicide/macrodlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macrodlg.cxx,v $ - * $Revision: 1.38 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/macrodlg.hrc b/basctl/source/basicide/macrodlg.hrc index 23005cddd294..ae96e1b0b92f 100644 --- a/basctl/source/basicide/macrodlg.hrc +++ b/basctl/source/basicide/macrodlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macrodlg.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/macrodlg.hxx b/basctl/source/basicide/macrodlg.hxx index 5cbad058595b..b610b2041b50 100644 --- a/basctl/source/basicide/macrodlg.hxx +++ b/basctl/source/basicide/macrodlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macrodlg.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/macrodlg.src b/basctl/source/basicide/macrodlg.src index de79163c6f23..5037879802b0 100644 --- a/basctl/source/basicide/macrodlg.src +++ b/basctl/source/basicide/macrodlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macrodlg.src,v $ - * $Revision: 1.59 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/makefile.mk b/basctl/source/basicide/makefile.mk index c5222951da6c..70681b50f35a 100644 --- a/basctl/source/basicide/makefile.mk +++ b/basctl/source/basicide/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.29 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index ea5f7cec9878..714fc6656941 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moduldl2.cxx,v $ - * $Revision: 1.65 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/moduldlg.cxx b/basctl/source/basicide/moduldlg.cxx index 110fce24e35a..478d56546f41 100644 --- a/basctl/source/basicide/moduldlg.cxx +++ b/basctl/source/basicide/moduldlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moduldlg.cxx,v $ - * $Revision: 1.34 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/moduldlg.hrc b/basctl/source/basicide/moduldlg.hrc index 755e382cf618..1eed98e0bdca 100644 --- a/basctl/source/basicide/moduldlg.hrc +++ b/basctl/source/basicide/moduldlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moduldlg.hrc,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/moduldlg.hxx b/basctl/source/basicide/moduldlg.hxx index b5066463ec51..f9efa779357e 100644 --- a/basctl/source/basicide/moduldlg.hxx +++ b/basctl/source/basicide/moduldlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moduldlg.hxx,v $ - * $Revision: 1.25 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/moduldlg.src b/basctl/source/basicide/moduldlg.src index 1bbfd9406b42..a6ac943f29d0 100644 --- a/basctl/source/basicide/moduldlg.src +++ b/basctl/source/basicide/moduldlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moduldlg.src,v $ - * $Revision: 1.62 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/moptions.hrc b/basctl/source/basicide/moptions.hrc index ca1e43e080fb..2636a39a8484 100644 --- a/basctl/source/basicide/moptions.hrc +++ b/basctl/source/basicide/moptions.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moptions.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/moptions.src b/basctl/source/basicide/moptions.src index 511447dfb5f8..ef1be222095c 100644 --- a/basctl/source/basicide/moptions.src +++ b/basctl/source/basicide/moptions.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moptions.src,v $ - * $Revision: 1.29 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/objdlg.cxx b/basctl/source/basicide/objdlg.cxx index d71f1b2929d7..ac7a2c28531d 100644 --- a/basctl/source/basicide/objdlg.cxx +++ b/basctl/source/basicide/objdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: objdlg.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/objdlg.hrc b/basctl/source/basicide/objdlg.hrc index 490a38a5c8fd..930ab31a4ae8 100644 --- a/basctl/source/basicide/objdlg.hrc +++ b/basctl/source/basicide/objdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: objdlg.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/objdlg.hxx b/basctl/source/basicide/objdlg.hxx index 6a07deb76ae8..796d3cd4fbf6 100644 --- a/basctl/source/basicide/objdlg.hxx +++ b/basctl/source/basicide/objdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: objdlg.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/objdlg.src b/basctl/source/basicide/objdlg.src index d6d9ac7505a1..c8de023dec53 100644 --- a/basctl/source/basicide/objdlg.src +++ b/basctl/source/basicide/objdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: objdlg.src,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/register.cxx b/basctl/source/basicide/register.cxx index 4204765ab704..0ee179dc1aa6 100644 --- a/basctl/source/basicide/register.cxx +++ b/basctl/source/basicide/register.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: register.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx index a87ad521c2f5..dd10a00e2bde 100644 --- a/basctl/source/basicide/scriptdocument.cxx +++ b/basctl/source/basicide/scriptdocument.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scriptdocument.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/tbxctl.cxx b/basctl/source/basicide/tbxctl.cxx index bac7e8854cf6..8a7afc6b64c2 100644 --- a/basctl/source/basicide/tbxctl.cxx +++ b/basctl/source/basicide/tbxctl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tbxctl.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/tbxctl.hrc b/basctl/source/basicide/tbxctl.hrc index b26570b5b8bf..2765b5ba8c80 100644 --- a/basctl/source/basicide/tbxctl.hrc +++ b/basctl/source/basicide/tbxctl.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tbxctl.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/tbxctl.hxx b/basctl/source/basicide/tbxctl.hxx index 2dc247592f15..94dfd32b96e6 100644 --- a/basctl/source/basicide/tbxctl.hxx +++ b/basctl/source/basicide/tbxctl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tbxctl.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/tbxctl.src b/basctl/source/basicide/tbxctl.src index 730958f46939..89d839619238 100644 --- a/basctl/source/basicide/tbxctl.src +++ b/basctl/source/basicide/tbxctl.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tbxctl.src,v $ - * $Revision: 1.51 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/unomodel.cxx b/basctl/source/basicide/unomodel.cxx index 0832c04da025..71342582fead 100644 --- a/basctl/source/basicide/unomodel.cxx +++ b/basctl/source/basicide/unomodel.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unomodel.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/basicide/unomodel.hxx b/basctl/source/basicide/unomodel.hxx index aa9fb8eac2c3..2eb79a34e946 100644 --- a/basctl/source/basicide/unomodel.hxx +++ b/basctl/source/basicide/unomodel.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unomodel.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlged.cxx b/basctl/source/dlged/dlged.cxx index 80b9c26e07b4..326098976d87 100644 --- a/basctl/source/dlged/dlged.cxx +++ b/basctl/source/dlged/dlged.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlged.cxx,v $ - * $Revision: 1.54 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgedclip.cxx b/basctl/source/dlged/dlgedclip.cxx index 84c13bbe4bdb..14720dee58f8 100644 --- a/basctl/source/dlged/dlgedclip.cxx +++ b/basctl/source/dlged/dlgedclip.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedclip.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgedfac.cxx b/basctl/source/dlged/dlgedfac.cxx index 0b37539c4384..892e04e5cab8 100644 --- a/basctl/source/dlged/dlgedfac.cxx +++ b/basctl/source/dlged/dlgedfac.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedfac.cxx,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgedfunc.cxx b/basctl/source/dlged/dlgedfunc.cxx index e02214cbdd37..576fd4cab99d 100644 --- a/basctl/source/dlged/dlgedfunc.cxx +++ b/basctl/source/dlged/dlgedfunc.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedfunc.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgedlist.cxx b/basctl/source/dlged/dlgedlist.cxx index 9360d8c0063c..a980a6403534 100644 --- a/basctl/source/dlged/dlgedlist.cxx +++ b/basctl/source/dlged/dlgedlist.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedlist.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgedmod.cxx b/basctl/source/dlged/dlgedmod.cxx index cfb21708d2f5..5e3bb6b42656 100644 --- a/basctl/source/dlged/dlgedmod.cxx +++ b/basctl/source/dlged/dlgedmod.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedmod.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgedobj.cxx b/basctl/source/dlged/dlgedobj.cxx index 6211b8552bc3..5af7519f85f0 100644 --- a/basctl/source/dlged/dlgedobj.cxx +++ b/basctl/source/dlged/dlgedobj.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedobj.cxx,v $ - * $Revision: 1.53 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgedpage.cxx b/basctl/source/dlged/dlgedpage.cxx index a43277b8477c..eaabbfef0ff2 100644 --- a/basctl/source/dlged/dlgedpage.cxx +++ b/basctl/source/dlged/dlgedpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedpage.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgedview.cxx b/basctl/source/dlged/dlgedview.cxx index 19b58e763113..da8bbc638a1e 100644 --- a/basctl/source/dlged/dlgedview.cxx +++ b/basctl/source/dlged/dlgedview.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedview.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/dlgresid.src b/basctl/source/dlged/dlgresid.src index 85d336d2216a..ee37d82233e1 100644 --- a/basctl/source/dlged/dlgresid.src +++ b/basctl/source/dlged/dlgresid.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgresid.src,v $ - * $Revision: 1.34 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/makefile.mk b/basctl/source/dlged/makefile.mk index cdd85e583b8c..1b765ad91ae4 100644 --- a/basctl/source/dlged/makefile.mk +++ b/basctl/source/dlged/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.11 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/managelang.cxx b/basctl/source/dlged/managelang.cxx index d1ba13209147..57f36dcdc3cc 100644 --- a/basctl/source/dlged/managelang.cxx +++ b/basctl/source/dlged/managelang.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: managelang.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/managelang.hrc b/basctl/source/dlged/managelang.hrc index eb61115dc201..e3a7f7f1edde 100644 --- a/basctl/source/dlged/managelang.hrc +++ b/basctl/source/dlged/managelang.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: managelang.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/managelang.src b/basctl/source/dlged/managelang.src index 8bf52326bdfa..b03421e1aa22 100644 --- a/basctl/source/dlged/managelang.src +++ b/basctl/source/dlged/managelang.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: managelang.src,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/dlged/propbrw.cxx b/basctl/source/dlged/propbrw.cxx index 33ae8e482506..52e29c12e1c8 100644 --- a/basctl/source/dlged/propbrw.cxx +++ b/basctl/source/dlged/propbrw.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propbrw.cxx,v $ - * $Revision: 1.29 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/accessibledialogcontrolshape.hxx b/basctl/source/inc/accessibledialogcontrolshape.hxx index ab7d469e1e21..8f64869d9954 100644 --- a/basctl/source/inc/accessibledialogcontrolshape.hxx +++ b/basctl/source/inc/accessibledialogcontrolshape.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibledialogcontrolshape.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/accessibledialogwindow.hxx b/basctl/source/inc/accessibledialogwindow.hxx index db446d479ead..e73308ff675c 100644 --- a/basctl/source/inc/accessibledialogwindow.hxx +++ b/basctl/source/inc/accessibledialogwindow.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: accessibledialogwindow.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/baside3.hxx b/basctl/source/inc/baside3.hxx index 7920e9ebdfc6..c55e5bd721d5 100644 --- a/basctl/source/inc/baside3.hxx +++ b/basctl/source/inc/baside3.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: baside3.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/basidectrlr.hxx b/basctl/source/inc/basidectrlr.hxx index fe56db8cb68b..dd02cc892f5c 100644 --- a/basctl/source/inc/basidectrlr.hxx +++ b/basctl/source/inc/basidectrlr.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidectrlr.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/basidesh.hxx b/basctl/source/inc/basidesh.hxx index f4f118b0b277..cf21d3488dd3 100644 --- a/basctl/source/inc/basidesh.hxx +++ b/basctl/source/inc/basidesh.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basidesh.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/basobj.hxx b/basctl/source/inc/basobj.hxx index a2911dcccb8f..d4fa39fcb67d 100644 --- a/basctl/source/inc/basobj.hxx +++ b/basctl/source/inc/basobj.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: basobj.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/bastypes.hxx b/basctl/source/inc/bastypes.hxx index a9540762172d..c9981001e456 100644 --- a/basctl/source/inc/bastypes.hxx +++ b/basctl/source/inc/bastypes.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bastypes.hxx,v $ - * $Revision: 1.10.30.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlged.hxx b/basctl/source/inc/dlged.hxx index 001c689a78a5..1444bab59c65 100644 --- a/basctl/source/inc/dlged.hxx +++ b/basctl/source/inc/dlged.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlged.hxx,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgedclip.hxx b/basctl/source/inc/dlgedclip.hxx index 530f39a71e29..5ebc3768311f 100644 --- a/basctl/source/inc/dlgedclip.hxx +++ b/basctl/source/inc/dlgedclip.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedclip.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgeddef.hxx b/basctl/source/inc/dlgeddef.hxx index 1f665965203b..d93ef9001959 100644 --- a/basctl/source/inc/dlgeddef.hxx +++ b/basctl/source/inc/dlgeddef.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgeddef.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgedfac.hxx b/basctl/source/inc/dlgedfac.hxx index 47e7af741a40..9faf5a451383 100644 --- a/basctl/source/inc/dlgedfac.hxx +++ b/basctl/source/inc/dlgedfac.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedfac.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgedfunc.hxx b/basctl/source/inc/dlgedfunc.hxx index fc4f10f0305f..d603321f782e 100644 --- a/basctl/source/inc/dlgedfunc.hxx +++ b/basctl/source/inc/dlgedfunc.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedfunc.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgedlist.hxx b/basctl/source/inc/dlgedlist.hxx index 18c6d2504a18..a796ab515e2c 100644 --- a/basctl/source/inc/dlgedlist.hxx +++ b/basctl/source/inc/dlgedlist.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedlist.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgedmod.hxx b/basctl/source/inc/dlgedmod.hxx index 5ccca22e5e58..5a0118fe25eb 100644 --- a/basctl/source/inc/dlgedmod.hxx +++ b/basctl/source/inc/dlgedmod.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedmod.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgedobj.hxx b/basctl/source/inc/dlgedobj.hxx index e352ad738da4..a2e817c78055 100644 --- a/basctl/source/inc/dlgedobj.hxx +++ b/basctl/source/inc/dlgedobj.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedobj.hxx,v $ - * $Revision: 1.26 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgedpage.hxx b/basctl/source/inc/dlgedpage.hxx index ad7a6238a726..ec1f7d10600b 100644 --- a/basctl/source/inc/dlgedpage.hxx +++ b/basctl/source/inc/dlgedpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedpage.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgedview.hxx b/basctl/source/inc/dlgedview.hxx index 11d580634e99..003c56721cba 100644 --- a/basctl/source/inc/dlgedview.hxx +++ b/basctl/source/inc/dlgedview.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgedview.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/dlgresid.hrc b/basctl/source/inc/dlgresid.hrc index b92be11b286f..3499cd5ed7c6 100644 --- a/basctl/source/inc/dlgresid.hrc +++ b/basctl/source/inc/dlgresid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgresid.hrc,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/doceventnotifier.hxx b/basctl/source/inc/doceventnotifier.hxx index f5c54b7ffd0c..b6e90b2bffb0 100644 --- a/basctl/source/inc/doceventnotifier.hxx +++ b/basctl/source/inc/doceventnotifier.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: doceventnotifier.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/docsignature.hxx b/basctl/source/inc/docsignature.hxx index 93f11b4a1b18..d4e7ba1fde00 100644 --- a/basctl/source/inc/docsignature.hxx +++ b/basctl/source/inc/docsignature.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: docsignature.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/iderid.hxx b/basctl/source/inc/iderid.hxx index c42a1cea5c2a..ef88708b734e 100644 --- a/basctl/source/inc/iderid.hxx +++ b/basctl/source/inc/iderid.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iderid.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/localizationmgr.hxx b/basctl/source/inc/localizationmgr.hxx index 2380f47089bd..2b12401c2e12 100644 --- a/basctl/source/inc/localizationmgr.hxx +++ b/basctl/source/inc/localizationmgr.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: localizationmgr.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/managelang.hxx b/basctl/source/inc/managelang.hxx index a166334dacb5..9f1a4d389dc1 100644 --- a/basctl/source/inc/managelang.hxx +++ b/basctl/source/inc/managelang.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: managelang.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/propbrw.hxx b/basctl/source/inc/propbrw.hxx index f9be90b38b4b..98b2db3ebd8e 100644 --- a/basctl/source/inc/propbrw.hxx +++ b/basctl/source/inc/propbrw.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propbrw.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/sbxitem.hxx b/basctl/source/inc/sbxitem.hxx index b1192b51d9bf..f863b00aac7c 100644 --- a/basctl/source/inc/sbxitem.hxx +++ b/basctl/source/inc/sbxitem.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sbxitem.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/scriptdocument.hxx b/basctl/source/inc/scriptdocument.hxx index c96a62c14112..34d1a72963ce 100644 --- a/basctl/source/inc/scriptdocument.hxx +++ b/basctl/source/inc/scriptdocument.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scriptdocument.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/source/inc/svheader.hxx b/basctl/source/inc/svheader.hxx index 96a65df1625f..a70bb2698ecf 100644 --- a/basctl/source/inc/svheader.hxx +++ b/basctl/source/inc/svheader.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svheader.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/util/hidother.hrc b/basctl/util/hidother.hrc index 605d36df6a1d..68bb57a274b3 100644 --- a/basctl/util/hidother.hrc +++ b/basctl/util/hidother.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hidother.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/util/hidother.src b/basctl/util/hidother.src index 926847993a2f..cd8fe7b26bf5 100644 --- a/basctl/util/hidother.src +++ b/basctl/util/hidother.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hidother.src,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/util/makefile.mk b/basctl/util/makefile.mk index 0f2a919ff655..9f2cb576a42e 100644 --- a/basctl/util/makefile.mk +++ b/basctl/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.24 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/basctl/util/makefile.pmk b/basctl/util/makefile.pmk index 20f3ecd2fbf7..7653d1c09c73 100644 --- a/basctl/util/makefile.pmk +++ b/basctl/util/makefile.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.pmk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/ContainerFactory.java b/bean/com/sun/star/beans/ContainerFactory.java index 29a623196a7a..493ea1cbc338 100644 --- a/bean/com/sun/star/beans/ContainerFactory.java +++ b/bean/com/sun/star/beans/ContainerFactory.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ContainerFactory.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/JavaWindowPeerFake.java b/bean/com/sun/star/beans/JavaWindowPeerFake.java index 4a1b223e651d..c89978c894c5 100644 --- a/bean/com/sun/star/beans/JavaWindowPeerFake.java +++ b/bean/com/sun/star/beans/JavaWindowPeerFake.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: JavaWindowPeerFake.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/LocalOfficeConnection.java b/bean/com/sun/star/beans/LocalOfficeConnection.java index ec2a535e2b18..11283066cc34 100644 --- a/bean/com/sun/star/beans/LocalOfficeConnection.java +++ b/bean/com/sun/star/beans/LocalOfficeConnection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LocalOfficeConnection.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/LocalOfficeWindow.java b/bean/com/sun/star/beans/LocalOfficeWindow.java index 1c3ae9ccfacb..7d4470415856 100644 --- a/bean/com/sun/star/beans/LocalOfficeWindow.java +++ b/bean/com/sun/star/beans/LocalOfficeWindow.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LocalOfficeWindow.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/NativeConnection.java b/bean/com/sun/star/beans/NativeConnection.java index 46bfb41c1cd1..7cf2bcb581a5 100644 --- a/bean/com/sun/star/beans/NativeConnection.java +++ b/bean/com/sun/star/beans/NativeConnection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NativeConnection.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/NativeService.java b/bean/com/sun/star/beans/NativeService.java index 9ca45156c073..ad7f73c29a0f 100644 --- a/bean/com/sun/star/beans/NativeService.java +++ b/bean/com/sun/star/beans/NativeService.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NativeService.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/OfficeConnection.java b/bean/com/sun/star/beans/OfficeConnection.java index 56a9a5f55a9a..6d25015e87f1 100644 --- a/bean/com/sun/star/beans/OfficeConnection.java +++ b/bean/com/sun/star/beans/OfficeConnection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OfficeConnection.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/OfficeWindow.java b/bean/com/sun/star/beans/OfficeWindow.java index 68e6ebad9e14..0e7232bab617 100644 --- a/bean/com/sun/star/beans/OfficeWindow.java +++ b/bean/com/sun/star/beans/OfficeWindow.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OfficeWindow.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/beans/makefile.mk b/bean/com/sun/star/beans/makefile.mk index cb4be6263a37..9fd82df5117d 100644 --- a/bean/com/sun/star/beans/makefile.mk +++ b/bean/com/sun/star/beans/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/CallWatchThread.java b/bean/com/sun/star/comp/beans/CallWatchThread.java index 270987a2975a..1ab89337c74e 100644 --- a/bean/com/sun/star/comp/beans/CallWatchThread.java +++ b/bean/com/sun/star/comp/beans/CallWatchThread.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallWatchThread.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/ContainerFactory.java b/bean/com/sun/star/comp/beans/ContainerFactory.java index 11841700b15e..c7f084df5d8c 100644 --- a/bean/com/sun/star/comp/beans/ContainerFactory.java +++ b/bean/com/sun/star/comp/beans/ContainerFactory.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ContainerFactory.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/Controller.java b/bean/com/sun/star/comp/beans/Controller.java index 005997e1defb..db99de7a5d5f 100644 --- a/bean/com/sun/star/comp/beans/Controller.java +++ b/bean/com/sun/star/comp/beans/Controller.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Controller.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/Frame.java b/bean/com/sun/star/comp/beans/Frame.java index f09effdce78c..59382eeaebb9 100644 --- a/bean/com/sun/star/comp/beans/Frame.java +++ b/bean/com/sun/star/comp/beans/Frame.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Frame.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/HasConnectionException.java b/bean/com/sun/star/comp/beans/HasConnectionException.java index 8fff32ab3f38..fcebebf9334f 100644 --- a/bean/com/sun/star/comp/beans/HasConnectionException.java +++ b/bean/com/sun/star/comp/beans/HasConnectionException.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: HasConnectionException.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/InvalidArgumentException.java b/bean/com/sun/star/comp/beans/InvalidArgumentException.java index 0a169cf1e4eb..b9e0690a86f4 100644 --- a/bean/com/sun/star/comp/beans/InvalidArgumentException.java +++ b/bean/com/sun/star/comp/beans/InvalidArgumentException.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InvalidArgumentException.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/JavaWindowPeerFake.java b/bean/com/sun/star/comp/beans/JavaWindowPeerFake.java index 04581d54a260..75069385dd32 100644 --- a/bean/com/sun/star/comp/beans/JavaWindowPeerFake.java +++ b/bean/com/sun/star/comp/beans/JavaWindowPeerFake.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: JavaWindowPeerFake.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java index 6843fa10288d..8467f1b75812 100644 --- a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java +++ b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LocalOfficeConnection.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/LocalOfficeWindow.java b/bean/com/sun/star/comp/beans/LocalOfficeWindow.java index 07b07126c23c..b7c7ccd16f41 100644 --- a/bean/com/sun/star/comp/beans/LocalOfficeWindow.java +++ b/bean/com/sun/star/comp/beans/LocalOfficeWindow.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LocalOfficeWindow.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/NativeConnection.java b/bean/com/sun/star/comp/beans/NativeConnection.java index 09aa6d78da99..ab8bd7b7bf01 100644 --- a/bean/com/sun/star/comp/beans/NativeConnection.java +++ b/bean/com/sun/star/comp/beans/NativeConnection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NativeConnection.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/NativeService.java b/bean/com/sun/star/comp/beans/NativeService.java index 0dd5a1bd127b..c28ca10a1901 100644 --- a/bean/com/sun/star/comp/beans/NativeService.java +++ b/bean/com/sun/star/comp/beans/NativeService.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NativeService.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/NoConnectionException.java b/bean/com/sun/star/comp/beans/NoConnectionException.java index d53af8e17ca9..a351983a7aad 100644 --- a/bean/com/sun/star/comp/beans/NoConnectionException.java +++ b/bean/com/sun/star/comp/beans/NoConnectionException.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NoConnectionException.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/NoDocumentException.java b/bean/com/sun/star/comp/beans/NoDocumentException.java index fcd813fcec0e..d9aa3b162bdd 100644 --- a/bean/com/sun/star/comp/beans/NoDocumentException.java +++ b/bean/com/sun/star/comp/beans/NoDocumentException.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NoDocumentException.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/OOoBean.java b/bean/com/sun/star/comp/beans/OOoBean.java index 444680af90ea..b10becb3ce9a 100644 --- a/bean/com/sun/star/comp/beans/OOoBean.java +++ b/bean/com/sun/star/comp/beans/OOoBean.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoBean.java,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/OfficeConnection.java b/bean/com/sun/star/comp/beans/OfficeConnection.java index 912cf244948e..9087b34fae47 100644 --- a/bean/com/sun/star/comp/beans/OfficeConnection.java +++ b/bean/com/sun/star/comp/beans/OfficeConnection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OfficeConnection.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/OfficeDocument.java b/bean/com/sun/star/comp/beans/OfficeDocument.java index 5820d73b57f5..8e3a970bd03c 100644 --- a/bean/com/sun/star/comp/beans/OfficeDocument.java +++ b/bean/com/sun/star/comp/beans/OfficeDocument.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OfficeDocument.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/OfficeWindow.java b/bean/com/sun/star/comp/beans/OfficeWindow.java index 8446ea4238b5..0b755ce58cc0 100644 --- a/bean/com/sun/star/comp/beans/OfficeWindow.java +++ b/bean/com/sun/star/comp/beans/OfficeWindow.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OfficeWindow.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/SystemWindowException.java b/bean/com/sun/star/comp/beans/SystemWindowException.java index d13d1c23748c..2742eac8c837 100644 --- a/bean/com/sun/star/comp/beans/SystemWindowException.java +++ b/bean/com/sun/star/comp/beans/SystemWindowException.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SystemWindowException.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/Wrapper.java b/bean/com/sun/star/comp/beans/Wrapper.java index e662b98e1793..b5b259752e5f 100644 --- a/bean/com/sun/star/comp/beans/Wrapper.java +++ b/bean/com/sun/star/comp/beans/Wrapper.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Wrapper.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/com/sun/star/comp/beans/makefile.mk b/bean/com/sun/star/comp/beans/makefile.mk index 2faff8ac14ae..31781d6f0cb3 100644 --- a/bean/com/sun/star/comp/beans/makefile.mk +++ b/bean/com/sun/star/comp/beans/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/native/unix/com_sun_star_beans_LocalOfficeWindow.c b/bean/native/unix/com_sun_star_beans_LocalOfficeWindow.c index cb2fcece511c..ef39ea6d7ccc 100644 --- a/bean/native/unix/com_sun_star_beans_LocalOfficeWindow.c +++ b/bean/native/unix/com_sun_star_beans_LocalOfficeWindow.c @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: com_sun_star_beans_LocalOfficeWindow.c,v $ - * $Revision: 1.7.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c b/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c index 3325b0c02fb3..2e6670befd70 100644 --- a/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c +++ b/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: com_sun_star_comp_beans_LocalOfficeWindow.c,v $ - * $Revision: 1.7.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/native/win32/com_sun_star_beans_LocalOfficeWindow.c b/bean/native/win32/com_sun_star_beans_LocalOfficeWindow.c index 28d439af7cec..288cf80401df 100644 --- a/bean/native/win32/com_sun_star_beans_LocalOfficeWindow.c +++ b/bean/native/win32/com_sun_star_beans_LocalOfficeWindow.c @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: com_sun_star_beans_LocalOfficeWindow.c,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/native/win32/com_sun_star_comp_beans_LocalOfficeWindow.c b/bean/native/win32/com_sun_star_comp_beans_LocalOfficeWindow.c index 2d68dde115b0..bf01745f9886 100644 --- a/bean/native/win32/com_sun_star_comp_beans_LocalOfficeWindow.c +++ b/bean/native/win32/com_sun_star_comp_beans_LocalOfficeWindow.c @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: com_sun_star_comp_beans_LocalOfficeWindow.c,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/qa/complex/OOoBeanTest.java b/bean/qa/complex/OOoBeanTest.java index 8c8dfcd8d308..2d038e8b37af 100644 --- a/bean/qa/complex/OOoBeanTest.java +++ b/bean/qa/complex/OOoBeanTest.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoBeanTest.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/qa/complex/ScreenComparer.java b/bean/qa/complex/ScreenComparer.java index 8ef7bc5d9c55..a2547a763c58 100644 --- a/bean/qa/complex/ScreenComparer.java +++ b/bean/qa/complex/ScreenComparer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ScreenComparer.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/qa/complex/WriterFrame.java b/bean/qa/complex/WriterFrame.java index 16e680cf8d22..b2aff726ad05 100644 --- a/bean/qa/complex/WriterFrame.java +++ b/bean/qa/complex/WriterFrame.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WriterFrame.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/qa/complex/makefile.mk b/bean/qa/complex/makefile.mk index 4fb1ce0ea8b2..e7b88ce3400c 100644 --- a/bean/qa/complex/makefile.mk +++ b/bean/qa/complex/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5.8.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/test/Test.java b/bean/test/Test.java index 5c1bce1613f4..04f3a42132f9 100644 --- a/bean/test/Test.java +++ b/bean/test/Test.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Test.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/test/applet/oooapplet/OOoViewer.java b/bean/test/applet/oooapplet/OOoViewer.java index 5ac17beac10a..c7c96b6a0ab8 100644 --- a/bean/test/applet/oooapplet/OOoViewer.java +++ b/bean/test/applet/oooapplet/OOoViewer.java @@ -2,13 +2,10 @@ // * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoViewer.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/test/applet/oooapplet/makefile.mk b/bean/test/applet/oooapplet/makefile.mk index 8abfe7131aed..79a58cd3a6e1 100644 --- a/bean/test/applet/oooapplet/makefile.mk +++ b/bean/test/applet/oooapplet/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3.8.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/test/makefile.mk b/bean/test/makefile.mk index 5a29c4b1033c..1032566dd36e 100644 --- a/bean/test/makefile.mk +++ b/bean/test/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5.8.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/bean/util/makefile.mk b/bean/util/makefile.mk index ac495a77f554..b463b3461819 100644 --- a/bean/util/makefile.mk +++ b/bean/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/scripts/crash_report.sh b/crashrep/scripts/crash_report.sh index 42cfe7ea1402..62c4bde5d578 100755 --- a/crashrep/scripts/crash_report.sh +++ b/crashrep/scripts/crash_report.sh @@ -3,14 +3,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: crash_report.sh,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/scripts/makefile.mk b/crashrep/scripts/makefile.mk index 95b2bcb23562..64fa13d9f551 100755 --- a/crashrep/scripts/makefile.mk +++ b/crashrep/scripts/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/all/makefile.mk b/crashrep/source/all/makefile.mk index 95a3dd72572b..1e66e40a0267 100644 --- a/crashrep/source/all/makefile.mk +++ b/crashrep/source/all/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/unx/interface.cxx b/crashrep/source/unx/interface.cxx index f9768ed4a5de..4ea18931bf49 100755 --- a/crashrep/source/unx/interface.cxx +++ b/crashrep/source/unx/interface.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: interface.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/unx/interface.hxx b/crashrep/source/unx/interface.hxx index ad80c218fa65..a8d4fb5d0b65 100755 --- a/crashrep/source/unx/interface.hxx +++ b/crashrep/source/unx/interface.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: interface.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/unx/main.cxx b/crashrep/source/unx/main.cxx index ca24d508ae07..afdba0afeebc 100755 --- a/crashrep/source/unx/main.cxx +++ b/crashrep/source/unx/main.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: main.cxx,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/unx/makefile.mk b/crashrep/source/unx/makefile.mk index 2f8be8f96a76..906184e194e4 100755 --- a/crashrep/source/unx/makefile.mk +++ b/crashrep/source/unx/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.19 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/unx/res.cxx b/crashrep/source/unx/res.cxx index 54968bb2259d..d9d5bc08484f 100755 --- a/crashrep/source/unx/res.cxx +++ b/crashrep/source/unx/res.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: res.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/unx/res/makefile.mk b/crashrep/source/unx/res/makefile.mk index 4e6d733e2d37..9e738bf08629 100755 --- a/crashrep/source/unx/res/makefile.mk +++ b/crashrep/source/unx/res/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/unx/res/unxcrashres.cxx b/crashrep/source/unx/res/unxcrashres.cxx index 4bfd34f58ba0..606ebe407449 100755 --- a/crashrep/source/unx/res/unxcrashres.cxx +++ b/crashrep/source/unx/res/unxcrashres.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unxcrashres.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/win32/base64.cpp b/crashrep/source/win32/base64.cpp index d6194b244054..dd30ce4d5d16 100755 --- a/crashrep/source/win32/base64.cpp +++ b/crashrep/source/win32/base64.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: base64.cpp,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/win32/base64.h b/crashrep/source/win32/base64.h index 9d293a73eff7..d6ab0e2760d2 100755 --- a/crashrep/source/win32/base64.h +++ b/crashrep/source/win32/base64.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: base64.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/win32/makefile.mk b/crashrep/source/win32/makefile.mk index 565305cc5bb8..fe4078c08602 100755 --- a/crashrep/source/win32/makefile.mk +++ b/crashrep/source/win32/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.14 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/win32/rcheader.txt b/crashrep/source/win32/rcheader.txt index a33940e672b9..afecc9cda681 100755 --- a/crashrep/source/win32/rcheader.txt +++ b/crashrep/source/win32/rcheader.txt @@ -2,13 +2,10 @@ # * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: rcheader.txt,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/win32/resource.h b/crashrep/source/win32/resource.h index eb70673395df..21d4ba4e6617 100755 --- a/crashrep/source/win32/resource.h +++ b/crashrep/source/win32/resource.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: resource.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/crashrep/source/win32/soreport.cpp b/crashrep/source/win32/soreport.cpp index 043ad62b0051..f3d19ca98790 100755 --- a/crashrep/source/win32/soreport.cpp +++ b/crashrep/source/win32/soreport.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: soreport.cpp,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/inc/makefile.mk b/cui/inc/makefile.mk index 74e38ff96c51..41536376415f 100644 --- a/cui/inc/makefile.mk +++ b/cui/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/inc/pch/precompiled_cui.cxx b/cui/inc/pch/precompiled_cui.cxx index 2dcd495e1647..ff1079af431b 100644 --- a/cui/inc/pch/precompiled_cui.cxx +++ b/cui/inc/pch/precompiled_cui.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_svx.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/inc/pch/precompiled_cui.hxx b/cui/inc/pch/precompiled_cui.hxx index 1704b8281d86..d6dd418d30d6 100644 --- a/cui/inc/pch/precompiled_cui.hxx +++ b/cui/inc/pch/precompiled_cui.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_svx.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index 8ff50323cc76..a75a7cf1f24d 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: acccfg.cxx,v $ - * $Revision: 1.40 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/acccfg.hrc b/cui/source/customize/acccfg.hrc index 2144af68df35..be0771b83fc8 100644 --- a/cui/source/customize/acccfg.hrc +++ b/cui/source/customize/acccfg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfg.hrc,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/acccfg.src b/cui/source/customize/acccfg.src index 4c26725a69d9..74188426a787 100644 --- a/cui/source/customize/acccfg.src +++ b/cui/source/customize/acccfg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfg.src,v $ - * $Revision: 1.47 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index 4697a957662c..ec2429ec654c 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfg.cxx,v $ - * $Revision: 1.50.84.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/cfg.hrc b/cui/source/customize/cfg.hrc index 49c155ef96bf..74d7804dce8e 100644 --- a/cui/source/customize/cfg.hrc +++ b/cui/source/customize/cfg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfg.hrc,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/cfg.src b/cui/source/customize/cfg.src index 15ac23125668..0b2489557053 100644 --- a/cui/source/customize/cfg.src +++ b/cui/source/customize/cfg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfg.src,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx index 37b2b9a54ab0..952de1f9275e 100644 --- a/cui/source/customize/cfgutil.cxx +++ b/cui/source/customize/cfgutil.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfg.cxx,v $ - * $Revision: 1.65 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/eventdlg.cxx b/cui/source/customize/eventdlg.cxx index 7f90560d5ab1..8592dbaded5f 100644 --- a/cui/source/customize/eventdlg.cxx +++ b/cui/source/customize/eventdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eventdlg.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/eventdlg.hrc b/cui/source/customize/eventdlg.hrc index 6340186d527c..8e482d83b97f 100644 --- a/cui/source/customize/eventdlg.hrc +++ b/cui/source/customize/eventdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eventdlg.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/eventdlg.hxx b/cui/source/customize/eventdlg.hxx index 37fc58ea7639..dc2e657d65fb 100644 --- a/cui/source/customize/eventdlg.hxx +++ b/cui/source/customize/eventdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eventdlg.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/eventdlg.src b/cui/source/customize/eventdlg.src index 8c16b8f45d56..e8c0e21677ac 100644 --- a/cui/source/customize/eventdlg.src +++ b/cui/source/customize/eventdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eventdlg.src,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/macropg.cxx b/cui/source/customize/macropg.cxx index 2bd9194b219b..e7d70dd9d396 100644 --- a/cui/source/customize/macropg.cxx +++ b/cui/source/customize/macropg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg.cxx,v $ - * $Revision: 1.22.166.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/macropg.hrc b/cui/source/customize/macropg.hrc index ccf348d0cee0..a7387e410432 100644 --- a/cui/source/customize/macropg.hrc +++ b/cui/source/customize/macropg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/macropg.src b/cui/source/customize/macropg.src index c5db4bab6af7..26aaea2c34db 100644 --- a/cui/source/customize/macropg.src +++ b/cui/source/customize/macropg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg.src,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/macropg_impl.hxx b/cui/source/customize/macropg_impl.hxx index 0563c2e05151..63c977cf2422 100644 --- a/cui/source/customize/macropg_impl.hxx +++ b/cui/source/customize/macropg_impl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg_impl.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/makefile.mk b/cui/source/customize/makefile.mk old mode 100755 new mode 100644 index f4c9303cc6ba..4b7f5d1639bd --- a/cui/source/customize/makefile.mk +++ b/cui/source/customize/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.65 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/selector.cxx b/cui/source/customize/selector.cxx index 4379c1287d70..3e99f3e95b5f 100644 --- a/cui/source/customize/selector.cxx +++ b/cui/source/customize/selector.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: selector.cxx,v $ - * $Revision: 1.28 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/selector.hrc b/cui/source/customize/selector.hrc index 68c87b493593..78929c8c9de5 100644 --- a/cui/source/customize/selector.hrc +++ b/cui/source/customize/selector.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: selector.hrc,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/customize/selector.src b/cui/source/customize/selector.src index 3985975fb4cf..cd4ea9dd5d12 100644 --- a/cui/source/customize/selector.src +++ b/cui/source/customize/selector.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: selector.src,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/SpellAttrib.cxx b/cui/source/dialogs/SpellAttrib.cxx index 9c26dc321f7b..4d3240597259 100644 --- a/cui/source/dialogs/SpellAttrib.cxx +++ b/cui/source/dialogs/SpellAttrib.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SpellAttrib.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/SpellAttrib.hxx b/cui/source/dialogs/SpellAttrib.hxx index ac2bb278c594..bbd631f056b0 100644 --- a/cui/source/dialogs/SpellAttrib.hxx +++ b/cui/source/dialogs/SpellAttrib.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SpellAttrib.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx index 0e69585a4ff4..6664368aaeb5 100644 --- a/cui/source/dialogs/SpellDialog.cxx +++ b/cui/source/dialogs/SpellDialog.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SpellDialog.cxx,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/SpellDialog.hrc b/cui/source/dialogs/SpellDialog.hrc index f571525a25db..5c9a82ffef0e 100644 --- a/cui/source/dialogs/SpellDialog.hrc +++ b/cui/source/dialogs/SpellDialog.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SpellDialog.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/SpellDialog.src b/cui/source/dialogs/SpellDialog.src index 61ef8b4e6ab2..5a97025f02af 100644 --- a/cui/source/dialogs/SpellDialog.src +++ b/cui/source/dialogs/SpellDialog.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SpellDialog.src,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/charmap.hrc b/cui/source/dialogs/charmap.hrc index 49dae5c98f06..0b3aa3e09b49 100644 --- a/cui/source/dialogs/charmap.hrc +++ b/cui/source/dialogs/charmap.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: charmap.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/charmap.src b/cui/source/dialogs/charmap.src index c8b1030cb328..02e2e728f412 100644 --- a/cui/source/dialogs/charmap.src +++ b/cui/source/dialogs/charmap.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: charmap.src,v $ - * $Revision: 1.57 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/commonlingui.cxx b/cui/source/dialogs/commonlingui.cxx index 4f2ab5677b63..f1cc2a869d6a 100644 --- a/cui/source/dialogs/commonlingui.cxx +++ b/cui/source/dialogs/commonlingui.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commonlingui.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/commonlingui.hxx b/cui/source/dialogs/commonlingui.hxx index d1781e83348f..645ce5f6b05a 100644 --- a/cui/source/dialogs/commonlingui.hxx +++ b/cui/source/dialogs/commonlingui.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commonlingui.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/commonlingui.src b/cui/source/dialogs/commonlingui.src index 1a58a9ef7fa8..60a1eff0e14f 100644 --- a/cui/source/dialogs/commonlingui.src +++ b/cui/source/dialogs/commonlingui.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commonlingui.src,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/cuicharmap.cxx b/cui/source/dialogs/cuicharmap.cxx index 83dc06e606a3..86f21009ad32 100644 --- a/cui/source/dialogs/cuicharmap.cxx +++ b/cui/source/dialogs/cuicharmap.cxx @@ -2,7 +2,7 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * diff --git a/cui/source/dialogs/cuifmsearch.cxx b/cui/source/dialogs/cuifmsearch.cxx index 7411224a0f93..cd67d1ab5bb3 100644 --- a/cui/source/dialogs/cuifmsearch.cxx +++ b/cui/source/dialogs/cuifmsearch.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuifmsearch.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx index 426d6fef86ea..6181d5d73ec0 100644 --- a/cui/source/dialogs/cuigaldlg.cxx +++ b/cui/source/dialogs/cuigaldlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuigaldlg.cxx,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/cuigrfflt.cxx b/cui/source/dialogs/cuigrfflt.cxx index be2b401320fd..8bbbfb5f8df2 100644 --- a/cui/source/dialogs/cuigrfflt.cxx +++ b/cui/source/dialogs/cuigrfflt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuigrfflt.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/cuihyperdlg.cxx b/cui/source/dialogs/cuihyperdlg.cxx index a73cc0007a6f..db4a3d15f4a4 100644 --- a/cui/source/dialogs/cuihyperdlg.cxx +++ b/cui/source/dialogs/cuihyperdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuihyperdlg.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/cuiimapdlg.hrc b/cui/source/dialogs/cuiimapdlg.hrc old mode 100755 new mode 100644 index 9424d94c1f05..5be30abc13a7 --- a/cui/source/dialogs/cuiimapdlg.hrc +++ b/cui/source/dialogs/cuiimapdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: imapdlg.hrc,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/cuiimapdlg.src b/cui/source/dialogs/cuiimapdlg.src old mode 100755 new mode 100644 index de41ca0d1d55..9b60adf854ca --- a/cui/source/dialogs/cuiimapdlg.src +++ b/cui/source/dialogs/cuiimapdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: imapdlg.src,v $ - * $Revision: 1.53 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/cuiimapwnd.cxx b/cui/source/dialogs/cuiimapwnd.cxx index 841b9ca59b78..950d400bb42e 100644 --- a/cui/source/dialogs/cuiimapwnd.cxx +++ b/cui/source/dialogs/cuiimapwnd.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuiimapwnd.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/cuitbxform.cxx b/cui/source/dialogs/cuitbxform.cxx index 1ca37f425a10..e3115875fab2 100644 --- a/cui/source/dialogs/cuitbxform.cxx +++ b/cui/source/dialogs/cuitbxform.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuitbxform.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/dlgname.cxx b/cui/source/dialogs/dlgname.cxx index 8cf36980decf..c5bf6d8ffa39 100644 --- a/cui/source/dialogs/dlgname.cxx +++ b/cui/source/dialogs/dlgname.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgname.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/dlgname.hrc b/cui/source/dialogs/dlgname.hrc index 787a5b9bd6df..04e9377be619 100644 --- a/cui/source/dialogs/dlgname.hrc +++ b/cui/source/dialogs/dlgname.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgname.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/dlgname.src b/cui/source/dialogs/dlgname.src index 93a2e5979671..e3e961880dfc 100644 --- a/cui/source/dialogs/dlgname.src +++ b/cui/source/dialogs/dlgname.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgname.src,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/fmsearch.hrc b/cui/source/dialogs/fmsearch.hrc index 579602ec2b5f..cfad011101c2 100644 --- a/cui/source/dialogs/fmsearch.hrc +++ b/cui/source/dialogs/fmsearch.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fmsearch.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/fmsearch.src b/cui/source/dialogs/fmsearch.src index 83b04a138b0d..186db5a48735 100644 --- a/cui/source/dialogs/fmsearch.src +++ b/cui/source/dialogs/fmsearch.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fmsearch.src,v $ - * $Revision: 1.59 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/gallery.src b/cui/source/dialogs/gallery.src index e4db69f6f73d..db0d4bbf3973 100644 --- a/cui/source/dialogs/gallery.src +++ b/cui/source/dialogs/gallery.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: gallery.src,v $ - * $Revision: 1.79 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/grfflt.hrc b/cui/source/dialogs/grfflt.hrc index b04d025d4d13..94d7f8fe392f 100644 --- a/cui/source/dialogs/grfflt.hrc +++ b/cui/source/dialogs/grfflt.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grfflt.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/grfflt.src b/cui/source/dialogs/grfflt.src index c01dc4060b6c..a94161c0a1ed 100644 --- a/cui/source/dialogs/grfflt.src +++ b/cui/source/dialogs/grfflt.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grfflt.src,v $ - * $Revision: 1.45 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx index afef3c1edb5f..5ca76b3dafa0 100644 --- a/cui/source/dialogs/hangulhanjadlg.cxx +++ b/cui/source/dialogs/hangulhanjadlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hangulhanjadlg.cxx,v $ - * $Revision: 1.19 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hangulhanjadlg.hrc b/cui/source/dialogs/hangulhanjadlg.hrc index 882d12a4c997..817e3a17264a 100644 --- a/cui/source/dialogs/hangulhanjadlg.hrc +++ b/cui/source/dialogs/hangulhanjadlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hangulhanjadlg.hrc,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hangulhanjadlg.src b/cui/source/dialogs/hangulhanjadlg.src index 93d58755b14b..11e2fe415c38 100644 --- a/cui/source/dialogs/hangulhanjadlg.src +++ b/cui/source/dialogs/hangulhanjadlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hangulhanjadlg.src,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hldocntp.cxx b/cui/source/dialogs/hldocntp.cxx index 0a2dfa9955f5..dc50bd8f205d 100644 --- a/cui/source/dialogs/hldocntp.cxx +++ b/cui/source/dialogs/hldocntp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hldocntp.cxx,v $ - * $Revision: 1.40 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hldoctp.cxx b/cui/source/dialogs/hldoctp.cxx index 1f4689c33fff..d8e5878c3a8e 100644 --- a/cui/source/dialogs/hldoctp.cxx +++ b/cui/source/dialogs/hldoctp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hldoctp.cxx,v $ - * $Revision: 1.28 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hlinettp.cxx b/cui/source/dialogs/hlinettp.cxx index ef0a330f00ef..79fde6c7a64c 100644 --- a/cui/source/dialogs/hlinettp.cxx +++ b/cui/source/dialogs/hlinettp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlinettp.cxx,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hlmailtp.cxx b/cui/source/dialogs/hlmailtp.cxx index 389fb20bf48b..bb59ac425e91 100644 --- a/cui/source/dialogs/hlmailtp.cxx +++ b/cui/source/dialogs/hlmailtp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlmailtp.cxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hlmarkwn.cxx b/cui/source/dialogs/hlmarkwn.cxx index f5005dbedfd7..e7f40766d836 100644 --- a/cui/source/dialogs/hlmarkwn.cxx +++ b/cui/source/dialogs/hlmarkwn.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlmarkwn.cxx,v $ - * $Revision: 1.19.216.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hlmarkwn.hrc b/cui/source/dialogs/hlmarkwn.hrc index d79da8b38dd6..1ac36dafa099 100644 --- a/cui/source/dialogs/hlmarkwn.hrc +++ b/cui/source/dialogs/hlmarkwn.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlmarkwn.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hlmarkwn.src b/cui/source/dialogs/hlmarkwn.src index 48bf6d40fcb6..396e8cd573e0 100644 --- a/cui/source/dialogs/hlmarkwn.src +++ b/cui/source/dialogs/hlmarkwn.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlmarkwn.src,v $ - * $Revision: 1.27 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hltpbase.cxx b/cui/source/dialogs/hltpbase.cxx index 8ee78806ab0e..879eeab2c40f 100644 --- a/cui/source/dialogs/hltpbase.cxx +++ b/cui/source/dialogs/hltpbase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hltpbase.cxx,v $ - * $Revision: 1.37.216.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hyperdlg.hrc b/cui/source/dialogs/hyperdlg.hrc index 69dae5d1ce57..0228d65bf3d2 100644 --- a/cui/source/dialogs/hyperdlg.hrc +++ b/cui/source/dialogs/hyperdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hyperdlg.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/hyperdlg.src b/cui/source/dialogs/hyperdlg.src index 4811fa4662e6..4ed7d1419bba 100644 --- a/cui/source/dialogs/hyperdlg.src +++ b/cui/source/dialogs/hyperdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hyperdlg.src,v $ - * $Revision: 1.78 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/iconcdlg.cxx b/cui/source/dialogs/iconcdlg.cxx index 95f49308acb4..adea20068499 100644 --- a/cui/source/dialogs/iconcdlg.cxx +++ b/cui/source/dialogs/iconcdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iconcdlg.cxx,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/iconcdlg.src b/cui/source/dialogs/iconcdlg.src index 83c8b8825aaf..c7d7d029b0df 100644 --- a/cui/source/dialogs/iconcdlg.src +++ b/cui/source/dialogs/iconcdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iconcdlg.src,v $ - * $Revision: 1.19 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/insdlg.cxx b/cui/source/dialogs/insdlg.cxx index 3bbcf25643e0..c45dfeb9dc06 100644 --- a/cui/source/dialogs/insdlg.cxx +++ b/cui/source/dialogs/insdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: insdlg.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/insrc.cxx b/cui/source/dialogs/insrc.cxx index 270a36202c90..41d603c81802 100644 --- a/cui/source/dialogs/insrc.cxx +++ b/cui/source/dialogs/insrc.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: insrc.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/insrc.hrc b/cui/source/dialogs/insrc.hrc index e07c7cb2f1d5..2583ade5619f 100644 --- a/cui/source/dialogs/insrc.hrc +++ b/cui/source/dialogs/insrc.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: insrc.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/insrc.src b/cui/source/dialogs/insrc.src index 7d6845c32910..69f934a29049 100644 --- a/cui/source/dialogs/insrc.src +++ b/cui/source/dialogs/insrc.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: insrc.src,v $ - * $Revision: 1.32 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/linkdlg.cxx b/cui/source/dialogs/linkdlg.cxx index 106e3b898243..21b169ca6ab9 100644 --- a/cui/source/dialogs/linkdlg.cxx +++ b/cui/source/dialogs/linkdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: linkdlg.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/makefile.mk b/cui/source/dialogs/makefile.mk old mode 100755 new mode 100644 index f7d597a219a1..e613bd17a1e3 --- a/cui/source/dialogs/makefile.mk +++ b/cui/source/dialogs/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.65 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/multifil.cxx b/cui/source/dialogs/multifil.cxx index 8f5eadae306a..40d62c0311bb 100644 --- a/cui/source/dialogs/multifil.cxx +++ b/cui/source/dialogs/multifil.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multifil.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/multipat.cxx b/cui/source/dialogs/multipat.cxx index 6d55f4de9f35..1d3af44facf6 100644 --- a/cui/source/dialogs/multipat.cxx +++ b/cui/source/dialogs/multipat.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multipat.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/multipat.hrc b/cui/source/dialogs/multipat.hrc index 6ef22855ff8b..0bfda7212fb8 100644 --- a/cui/source/dialogs/multipat.hrc +++ b/cui/source/dialogs/multipat.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multipat.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/multipat.src b/cui/source/dialogs/multipat.src index 64dc9b412311..987867492e13 100644 --- a/cui/source/dialogs/multipat.src +++ b/cui/source/dialogs/multipat.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multipat.src,v $ - * $Revision: 1.42 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/newtabledlg.cxx b/cui/source/dialogs/newtabledlg.cxx index 6309de2c3b7d..2c44e5add84d 100644 --- a/cui/source/dialogs/newtabledlg.cxx +++ b/cui/source/dialogs/newtabledlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: newtabledlg.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/newtabledlg.hrc b/cui/source/dialogs/newtabledlg.hrc index b17631658341..2357a4b1a280 100644 --- a/cui/source/dialogs/newtabledlg.hrc +++ b/cui/source/dialogs/newtabledlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: newtabledlg.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/newtabledlg.src b/cui/source/dialogs/newtabledlg.src index e02338d6085e..4bbbd564edd1 100644 --- a/cui/source/dialogs/newtabledlg.src +++ b/cui/source/dialogs/newtabledlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: newtabledlg.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/pastedlg.cxx b/cui/source/dialogs/pastedlg.cxx index e0892bfca427..2fe952b9197a 100644 --- a/cui/source/dialogs/pastedlg.cxx +++ b/cui/source/dialogs/pastedlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pastedlg.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/plfilter.cxx b/cui/source/dialogs/plfilter.cxx index d09cc00d2a34..4a90c54a277f 100644 --- a/cui/source/dialogs/plfilter.cxx +++ b/cui/source/dialogs/plfilter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plfilter.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/postdlg.cxx b/cui/source/dialogs/postdlg.cxx index e695aaafa420..8ff20084f591 100644 --- a/cui/source/dialogs/postdlg.cxx +++ b/cui/source/dialogs/postdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: postdlg.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/postdlg.hrc b/cui/source/dialogs/postdlg.hrc index b2b615647438..c0df97b971e2 100644 --- a/cui/source/dialogs/postdlg.hrc +++ b/cui/source/dialogs/postdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: postdlg.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/postdlg.src b/cui/source/dialogs/postdlg.src index 02face52b1b5..904319d45355 100644 --- a/cui/source/dialogs/postdlg.src +++ b/cui/source/dialogs/postdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: postdlg.src,v $ - * $Revision: 1.27 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/scriptdlg.cxx b/cui/source/dialogs/scriptdlg.cxx index d68792732d7e..e1763249479c 100644 --- a/cui/source/dialogs/scriptdlg.cxx +++ b/cui/source/dialogs/scriptdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scriptdlg.cxx,v $ - * $Revision: 1.26 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/scriptdlg.hrc b/cui/source/dialogs/scriptdlg.hrc index 0079037c7680..95ba3ddf38c2 100644 --- a/cui/source/dialogs/scriptdlg.hrc +++ b/cui/source/dialogs/scriptdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scriptdlg.hrc,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/scriptdlg.src b/cui/source/dialogs/scriptdlg.src index cceca0bc64ff..67a81376d662 100644 --- a/cui/source/dialogs/scriptdlg.src +++ b/cui/source/dialogs/scriptdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scriptdlg.src,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/sdrcelldlg.cxx b/cui/source/dialogs/sdrcelldlg.cxx index a5f8e074758e..0018fe5ce410 100644 --- a/cui/source/dialogs/sdrcelldlg.cxx +++ b/cui/source/dialogs/sdrcelldlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sdrcelldlg.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/sdrcelldlg.src b/cui/source/dialogs/sdrcelldlg.src index 0c721bc11d2b..c3ece3326544 100644 --- a/cui/source/dialogs/sdrcelldlg.src +++ b/cui/source/dialogs/sdrcelldlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sdrcelldlg.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/showcols.cxx b/cui/source/dialogs/showcols.cxx index 4b3930a692c1..62e6e405dbd2 100644 --- a/cui/source/dialogs/showcols.cxx +++ b/cui/source/dialogs/showcols.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: showcols.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/showcols.src b/cui/source/dialogs/showcols.src index f22c0e0e3557..465591e8f0a0 100644 --- a/cui/source/dialogs/showcols.src +++ b/cui/source/dialogs/showcols.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: showcols.src,v $ - * $Revision: 1.28 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/splitcelldlg.cxx b/cui/source/dialogs/splitcelldlg.cxx index c6c1f173322c..1025d53c5b1f 100644 --- a/cui/source/dialogs/splitcelldlg.cxx +++ b/cui/source/dialogs/splitcelldlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: splitcelldlg.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/splitcelldlg.hrc b/cui/source/dialogs/splitcelldlg.hrc index cab8b4ed02ad..143f4685abe4 100644 --- a/cui/source/dialogs/splitcelldlg.hrc +++ b/cui/source/dialogs/splitcelldlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: splitcelldlg.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/splitcelldlg.src b/cui/source/dialogs/splitcelldlg.src index f33243450e07..5326ca2d0e4d 100644 --- a/cui/source/dialogs/splitcelldlg.src +++ b/cui/source/dialogs/splitcelldlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: splitcelldlg.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/srchxtra.cxx b/cui/source/dialogs/srchxtra.cxx index 5b28029920cc..a6f027af3126 100644 --- a/cui/source/dialogs/srchxtra.cxx +++ b/cui/source/dialogs/srchxtra.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: srchxtra.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/srchxtra.hrc b/cui/source/dialogs/srchxtra.hrc index 870303efd72c..5df6d9bd4767 100644 --- a/cui/source/dialogs/srchxtra.hrc +++ b/cui/source/dialogs/srchxtra.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: srchxtra.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/srchxtra.src b/cui/source/dialogs/srchxtra.src index bde692af7447..04265a6d6726 100644 --- a/cui/source/dialogs/srchxtra.src +++ b/cui/source/dialogs/srchxtra.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: srchxtra.src,v $ - * $Revision: 1.52 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/svuidlg.hrc b/cui/source/dialogs/svuidlg.hrc index ba3602fb18bd..8add126a33c7 100644 --- a/cui/source/dialogs/svuidlg.hrc +++ b/cui/source/dialogs/svuidlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svuidlg.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/svuidlg.src b/cui/source/dialogs/svuidlg.src index cc8f2db676ae..74a8eae82274 100644 --- a/cui/source/dialogs/svuidlg.src +++ b/cui/source/dialogs/svuidlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svuidlg.src,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/tbxform.src b/cui/source/dialogs/tbxform.src index e19818d51072..9e9d2fb6eb03 100644 --- a/cui/source/dialogs/tbxform.src +++ b/cui/source/dialogs/tbxform.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tbxform.src,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/winpluginlib.cpp b/cui/source/dialogs/winpluginlib.cpp index 0b1fced85b40..2696a95cacea 100644 --- a/cui/source/dialogs/winpluginlib.cpp +++ b/cui/source/dialogs/winpluginlib.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: winpluginlib.cpp,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/zoom.cxx b/cui/source/dialogs/zoom.cxx index 1330f48818f6..1b6d1c37651e 100644 --- a/cui/source/dialogs/zoom.cxx +++ b/cui/source/dialogs/zoom.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: zoom.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/zoom.hrc b/cui/source/dialogs/zoom.hrc index 70e488c2893e..49412ad085f0 100644 --- a/cui/source/dialogs/zoom.hrc +++ b/cui/source/dialogs/zoom.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: zoom.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/dialogs/zoom.src b/cui/source/dialogs/zoom.src index a27c41d7e1cc..8137b1c7bb89 100644 --- a/cui/source/dialogs/zoom.src +++ b/cui/source/dialogs/zoom.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: zoom.src,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/factory/cuiexp.cxx b/cui/source/factory/cuiexp.cxx index b294c3a6ea7d..d9fb854311e2 100644 --- a/cui/source/factory/cuiexp.cxx +++ b/cui/source/factory/cuiexp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuiexp.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/factory/cuiresmgr.cxx b/cui/source/factory/cuiresmgr.cxx index b46f4bca2f56..dac995a0d193 100644 --- a/cui/source/factory/cuiresmgr.cxx +++ b/cui/source/factory/cuiresmgr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dialmgr.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 10095922f523..db4e1b6537cb 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgfact.cxx,v $ - * $Revision: 1.48 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index eb3c7b932597..f609d3f81c27 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgfact.hxx,v $ - * $Revision: 1.35 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/factory/init.cxx b/cui/source/factory/init.cxx index de01a2deb1b3..bfafd3bfd2bd 100644 --- a/cui/source/factory/init.cxx +++ b/cui/source/factory/init.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: init.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/factory/makefile.mk b/cui/source/factory/makefile.mk old mode 100755 new mode 100644 index cb374cd26aea..1ccbbdb3b677 --- a/cui/source/factory/makefile.mk +++ b/cui/source/factory/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.65 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/ControlFocusHelper.hxx b/cui/source/inc/ControlFocusHelper.hxx index 828341da0e71..4f18f60cd438 100644 --- a/cui/source/inc/ControlFocusHelper.hxx +++ b/cui/source/inc/ControlFocusHelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ControlFocusHelper.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/SpellDialog.hxx b/cui/source/inc/SpellDialog.hxx index 86c41d17452e..b6fda36db083 100644 --- a/cui/source/inc/SpellDialog.hxx +++ b/cui/source/inc/SpellDialog.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SpellDialog.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/acccfg.hxx b/cui/source/inc/acccfg.hxx index 40ce17a36b8c..4b104c6739ff 100644 --- a/cui/source/inc/acccfg.hxx +++ b/cui/source/inc/acccfg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: acccfg.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/align.hxx b/cui/source/inc/align.hxx index 44a11eacccc9..9766a1b5130f 100644 --- a/cui/source/inc/align.hxx +++ b/cui/source/inc/align.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: align.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/autocdlg.hxx b/cui/source/inc/autocdlg.hxx index dba6ce826cc3..74df5d6bd3ba 100644 --- a/cui/source/inc/autocdlg.hxx +++ b/cui/source/inc/autocdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: autocdlg.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/backgrnd.hxx b/cui/source/inc/backgrnd.hxx index e658c2ce0eb0..78e545e5e51a 100644 --- a/cui/source/inc/backgrnd.hxx +++ b/cui/source/inc/backgrnd.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: backgrnd.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/bbdlg.hxx b/cui/source/inc/bbdlg.hxx index f2d7e25e9bf9..249c9c427485 100644 --- a/cui/source/inc/bbdlg.hxx +++ b/cui/source/inc/bbdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bbdlg.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/border.hxx b/cui/source/inc/border.hxx index ac7f9245fd49..33ea94ff4478 100644 --- a/cui/source/inc/border.hxx +++ b/cui/source/inc/border.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: border.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cfg.hxx b/cui/source/inc/cfg.hxx index 57dc9692f87c..ecf0f81dd754 100644 --- a/cui/source/inc/cfg.hxx +++ b/cui/source/inc/cfg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfg.hxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cfgutil.hxx b/cui/source/inc/cfgutil.hxx index 87b6bc8a1820..5a5d9ee0473a 100644 --- a/cui/source/inc/cfgutil.hxx +++ b/cui/source/inc/cfgutil.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfg.hxx,v $ - * $Revision: 1.41 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/chardlg.hxx b/cui/source/inc/chardlg.hxx index d767d8ddd8f3..0f09c8971e5d 100644 --- a/cui/source/inc/chardlg.hxx +++ b/cui/source/inc/chardlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: chardlg.hxx,v $ - * $Revision: 1.8.184.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/connect.hxx b/cui/source/inc/connect.hxx index db344c959e6e..88e30ac7dd7a 100644 --- a/cui/source/inc/connect.hxx +++ b/cui/source/inc/connect.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connect.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuicharmap.hxx b/cui/source/inc/cuicharmap.hxx index b8544bd98dea..805f90313e29 100644 --- a/cui/source/inc/cuicharmap.hxx +++ b/cui/source/inc/cuicharmap.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuicharmap.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuifmsearch.hxx b/cui/source/inc/cuifmsearch.hxx index 2659054c2100..5f37371db4aa 100644 --- a/cui/source/inc/cuifmsearch.hxx +++ b/cui/source/inc/cuifmsearch.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuifmsearch.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuigaldlg.hxx b/cui/source/inc/cuigaldlg.hxx index ef285bb85448..232abed9efc9 100644 --- a/cui/source/inc/cuigaldlg.hxx +++ b/cui/source/inc/cuigaldlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuigaldlg.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuigrfflt.hxx b/cui/source/inc/cuigrfflt.hxx index 061ada2568d1..604ac1d80fde 100644 --- a/cui/source/inc/cuigrfflt.hxx +++ b/cui/source/inc/cuigrfflt.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuigrfflt.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuihyperdlg.hxx b/cui/source/inc/cuihyperdlg.hxx index 59b39f55a7fc..d7747385cce3 100644 --- a/cui/source/inc/cuihyperdlg.hxx +++ b/cui/source/inc/cuihyperdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuihyperdlg.hxx,v $ - * $Revision: 1.4.216.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuioptgenrl.hxx b/cui/source/inc/cuioptgenrl.hxx index 19d21ba5c255..78d3789efcfa 100644 --- a/cui/source/inc/cuioptgenrl.hxx +++ b/cui/source/inc/cuioptgenrl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuioptgenrl.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuires.hrc b/cui/source/inc/cuires.hrc index c054d66c4645..36f497d03514 100644 --- a/cui/source/inc/cuires.hrc +++ b/cui/source/inc/cuires.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dialogs.hrc,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuisrchdlg.hxx b/cui/source/inc/cuisrchdlg.hxx index 93c7779d0ee9..13896f68cd1c 100644 --- a/cui/source/inc/cuisrchdlg.hxx +++ b/cui/source/inc/cuisrchdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuisrchdlg.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuitabarea.hxx b/cui/source/inc/cuitabarea.hxx index cba81c8c096f..c2ad3f7cc4a3 100644 --- a/cui/source/inc/cuitabarea.hxx +++ b/cui/source/inc/cuitabarea.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuitabarea.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/cuitabline.hxx b/cui/source/inc/cuitabline.hxx index d82ad9e3d95e..933a71616039 100644 --- a/cui/source/inc/cuitabline.hxx +++ b/cui/source/inc/cuitabline.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuitabline.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/dbregister.hxx b/cui/source/inc/dbregister.hxx index 84bc2fa4054c..3be184ffd146 100644 --- a/cui/source/inc/dbregister.hxx +++ b/cui/source/inc/dbregister.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbregister.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/defdlgname.hxx b/cui/source/inc/defdlgname.hxx index 1fcc17b1f41a..3342d66968a2 100644 --- a/cui/source/inc/defdlgname.hxx +++ b/cui/source/inc/defdlgname.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: defdlgname.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/dialmgr.hxx b/cui/source/inc/dialmgr.hxx index f4d0ad883470..fb91a14a44ff 100644 --- a/cui/source/inc/dialmgr.hxx +++ b/cui/source/inc/dialmgr.hxx @@ -2,7 +2,7 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * diff --git a/cui/source/inc/dlgname.hxx b/cui/source/inc/dlgname.hxx index ee78927e8931..ae7aa832d264 100644 --- a/cui/source/inc/dlgname.hxx +++ b/cui/source/inc/dlgname.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dlgname.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/dstribut.hxx b/cui/source/inc/dstribut.hxx index 46d6a78115c1..ef28d21c915e 100644 --- a/cui/source/inc/dstribut.hxx +++ b/cui/source/inc/dstribut.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dstribut.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/gallery.hrc b/cui/source/inc/gallery.hrc index abc533e2e921..c9d6729be447 100644 --- a/cui/source/inc/gallery.hrc +++ b/cui/source/inc/gallery.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: gallery.hrc,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/grfpage.hxx b/cui/source/inc/grfpage.hxx index 58ce4e5a5e63..91d6e89e61dd 100644 --- a/cui/source/inc/grfpage.hxx +++ b/cui/source/inc/grfpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grfpage.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/hangulhanjadlg.hxx b/cui/source/inc/hangulhanjadlg.hxx index 6c87b8003479..bc360331522d 100644 --- a/cui/source/inc/hangulhanjadlg.hxx +++ b/cui/source/inc/hangulhanjadlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hangulhanjadlg.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/headertablistbox.hxx b/cui/source/inc/headertablistbox.hxx old mode 100755 new mode 100644 index 8738327b70bc..ecf59a426528 --- a/cui/source/inc/headertablistbox.hxx +++ b/cui/source/inc/headertablistbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: headertablistbox.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/helpid.hrc b/cui/source/inc/helpid.hrc index ad0f7ad12a89..1ef7bd60e9bb 100644 --- a/cui/source/inc/helpid.hrc +++ b/cui/source/inc/helpid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: helpid.hrc,v $ - * $Revision: 1.78 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/hldocntp.hxx b/cui/source/inc/hldocntp.hxx index c9f220c0df6f..edfc790afc0d 100644 --- a/cui/source/inc/hldocntp.hxx +++ b/cui/source/inc/hldocntp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hldocntp.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/hldoctp.hxx b/cui/source/inc/hldoctp.hxx index 1e3dae701e7b..08bfd4d9d308 100644 --- a/cui/source/inc/hldoctp.hxx +++ b/cui/source/inc/hldoctp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hldoctp.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/hlinettp.hxx b/cui/source/inc/hlinettp.hxx index 19ddae5f6e0b..e39bb20900af 100644 --- a/cui/source/inc/hlinettp.hxx +++ b/cui/source/inc/hlinettp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlinettp.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/hlmailtp.hxx b/cui/source/inc/hlmailtp.hxx index 797695b09e00..e2f9e787970d 100644 --- a/cui/source/inc/hlmailtp.hxx +++ b/cui/source/inc/hlmailtp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlmailtp.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/hlmarkwn.hxx b/cui/source/inc/hlmarkwn.hxx index 6853eac1ccb6..615e2e56bdc3 100644 --- a/cui/source/inc/hlmarkwn.hxx +++ b/cui/source/inc/hlmarkwn.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlmarkwn.hxx,v $ - * $Revision: 1.7.216.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/hlmarkwn_def.hxx b/cui/source/inc/hlmarkwn_def.hxx index a668737411a6..cc1c341486ea 100644 --- a/cui/source/inc/hlmarkwn_def.hxx +++ b/cui/source/inc/hlmarkwn_def.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hlmarkwn_def.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/hltpbase.hxx b/cui/source/inc/hltpbase.hxx index 3f0306659b83..2adb0dbdd920 100644 --- a/cui/source/inc/hltpbase.hxx +++ b/cui/source/inc/hltpbase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hltpbase.hxx,v $ - * $Revision: 1.8.216.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/iconcdlg.hxx b/cui/source/inc/iconcdlg.hxx index ea74b4a66075..f4646daf376e 100644 --- a/cui/source/inc/iconcdlg.hxx +++ b/cui/source/inc/iconcdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iconcdlg.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/insdlg.hxx b/cui/source/inc/insdlg.hxx index 1924b5ca8c7a..299e784ae191 100644 --- a/cui/source/inc/insdlg.hxx +++ b/cui/source/inc/insdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: insdlg.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/insrc.hxx b/cui/source/inc/insrc.hxx index e187313bdd03..b0c678009093 100644 --- a/cui/source/inc/insrc.hxx +++ b/cui/source/inc/insrc.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: insrc.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/internationaloptions.hxx b/cui/source/inc/internationaloptions.hxx index d17625ee380e..f95be661f53c 100644 --- a/cui/source/inc/internationaloptions.hxx +++ b/cui/source/inc/internationaloptions.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: internationaloptions.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/labdlg.hxx b/cui/source/inc/labdlg.hxx index 9581fbf9ba78..95e30d241467 100644 --- a/cui/source/inc/labdlg.hxx +++ b/cui/source/inc/labdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: labdlg.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/linkdlg.hxx b/cui/source/inc/linkdlg.hxx index 4703079c9420..255abfc1b2bd 100644 --- a/cui/source/inc/linkdlg.hxx +++ b/cui/source/inc/linkdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: linkdlg.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/macroass.hxx b/cui/source/inc/macroass.hxx old mode 100755 new mode 100644 index a41bd0d8da98..d6a2b607eac3 --- a/cui/source/inc/macroass.hxx +++ b/cui/source/inc/macroass.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/macropg.hxx b/cui/source/inc/macropg.hxx index 0ed414e92751..0359a330c1f0 100644 --- a/cui/source/inc/macropg.hxx +++ b/cui/source/inc/macropg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg.hxx,v $ - * $Revision: 1.11.166.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/measure.hxx b/cui/source/inc/measure.hxx index 71f665bea750..ddc6f62e6e8a 100644 --- a/cui/source/inc/measure.hxx +++ b/cui/source/inc/measure.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: measure.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/multifil.hxx b/cui/source/inc/multifil.hxx index 242e28c17707..8d86e99b731c 100644 --- a/cui/source/inc/multifil.hxx +++ b/cui/source/inc/multifil.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multifil.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/multipat.hxx b/cui/source/inc/multipat.hxx index e7fd86799955..44e8f15435fc 100644 --- a/cui/source/inc/multipat.hxx +++ b/cui/source/inc/multipat.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multipat.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/newtabledlg.hxx b/cui/source/inc/newtabledlg.hxx index 9d29152a656f..b997ddab1efc 100644 --- a/cui/source/inc/newtabledlg.hxx +++ b/cui/source/inc/newtabledlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: newtabledlg.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/numfmt.hxx b/cui/source/inc/numfmt.hxx index 0c2b42d64150..92cc494faac4 100644 --- a/cui/source/inc/numfmt.hxx +++ b/cui/source/inc/numfmt.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: numfmt.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/numpages.hxx b/cui/source/inc/numpages.hxx index a5d8a212d48e..6876c3ef7a3a 100644 --- a/cui/source/inc/numpages.hxx +++ b/cui/source/inc/numpages.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: numpages.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/optasian.hxx b/cui/source/inc/optasian.hxx index 98c142031cd2..3e13018398b5 100644 --- a/cui/source/inc/optasian.hxx +++ b/cui/source/inc/optasian.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optasian.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/optdict.hxx b/cui/source/inc/optdict.hxx index b09c1d1e773e..345623c19cff 100644 --- a/cui/source/inc/optdict.hxx +++ b/cui/source/inc/optdict.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optdict.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/optimprove.hxx b/cui/source/inc/optimprove.hxx index 61f184239e88..0390fa4ec39a 100644 --- a/cui/source/inc/optimprove.hxx +++ b/cui/source/inc/optimprove.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optimprove.hxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/optlingu.hxx b/cui/source/inc/optlingu.hxx index 6c2a0a7ac528..b5c59781a987 100644 --- a/cui/source/inc/optlingu.hxx +++ b/cui/source/inc/optlingu.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optlingu.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/optpath.hxx b/cui/source/inc/optpath.hxx index c05b0b778c58..222cb6ddcc1e 100644 --- a/cui/source/inc/optpath.hxx +++ b/cui/source/inc/optpath.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optpath.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/page.hxx b/cui/source/inc/page.hxx index 1b716aedfd46..02019219ba83 100644 --- a/cui/source/inc/page.hxx +++ b/cui/source/inc/page.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: page.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/paragrph.hxx b/cui/source/inc/paragrph.hxx index baadcaecb0ea..82752a7af01a 100644 --- a/cui/source/inc/paragrph.hxx +++ b/cui/source/inc/paragrph.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: paragrph.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/pastedlg.hxx b/cui/source/inc/pastedlg.hxx index edbbaf53e6ee..a1b71e2f751e 100644 --- a/cui/source/inc/pastedlg.hxx +++ b/cui/source/inc/pastedlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pastedlg.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/postdlg.hxx b/cui/source/inc/postdlg.hxx index 9c4f2551c09b..0a7b92438db4 100644 --- a/cui/source/inc/postdlg.hxx +++ b/cui/source/inc/postdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: postdlg.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/radiobtnbox.hxx b/cui/source/inc/radiobtnbox.hxx index a0477d25b262..2d3d35090195 100644 --- a/cui/source/inc/radiobtnbox.hxx +++ b/cui/source/inc/radiobtnbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: radiobtnbox.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/scriptdlg.hxx b/cui/source/inc/scriptdlg.hxx index 0cb2a6d4fb5d..0b8930c57827 100644 --- a/cui/source/inc/scriptdlg.hxx +++ b/cui/source/inc/scriptdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scriptdlg.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/sdrcelldlg.hxx b/cui/source/inc/sdrcelldlg.hxx index b89c9ef21e8a..fec72bfc07b6 100644 --- a/cui/source/inc/sdrcelldlg.hxx +++ b/cui/source/inc/sdrcelldlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sdrcelldlg.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/selector.hxx b/cui/source/inc/selector.hxx index 3e21a3812835..104cc928071e 100644 --- a/cui/source/inc/selector.hxx +++ b/cui/source/inc/selector.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: selector.hxx,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/showcols.hxx b/cui/source/inc/showcols.hxx index fd64abf36e2c..cdb5a2f89eea 100644 --- a/cui/source/inc/showcols.hxx +++ b/cui/source/inc/showcols.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: showcols.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/splitcelldlg.hxx b/cui/source/inc/splitcelldlg.hxx index e325e25a8284..fc1640fd1dea 100644 --- a/cui/source/inc/splitcelldlg.hxx +++ b/cui/source/inc/splitcelldlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: splitcelldlg.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/srchxtra.hxx b/cui/source/inc/srchxtra.hxx index 6d2e9a1195aa..1cf2e91e6511 100644 --- a/cui/source/inc/srchxtra.hxx +++ b/cui/source/inc/srchxtra.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: srchxtra.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/tabstpge.hxx b/cui/source/inc/tabstpge.hxx index 66d432ea37b4..a45848d48921 100644 --- a/cui/source/inc/tabstpge.hxx +++ b/cui/source/inc/tabstpge.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabstpge.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/textanim.hxx b/cui/source/inc/textanim.hxx index 576bda45450a..5f58258ea255 100644 --- a/cui/source/inc/textanim.hxx +++ b/cui/source/inc/textanim.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textanim.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/textattr.hxx b/cui/source/inc/textattr.hxx index d2e8d795653f..e8ce016d7d6f 100644 --- a/cui/source/inc/textattr.hxx +++ b/cui/source/inc/textattr.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textattr.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/transfrm.hxx b/cui/source/inc/transfrm.hxx index 3a5abeedf4a1..d333237f55c7 100644 --- a/cui/source/inc/transfrm.hxx +++ b/cui/source/inc/transfrm.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: transfrm.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/treeopt.hxx b/cui/source/inc/treeopt.hxx index cce278686b27..72fb9d4d61f6 100644 --- a/cui/source/inc/treeopt.hxx +++ b/cui/source/inc/treeopt.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: treeopt.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/inc/zoom.hxx b/cui/source/inc/zoom.hxx index d031da97bc55..5b494a0448b3 100644 --- a/cui/source/inc/zoom.hxx +++ b/cui/source/inc/zoom.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: zoom.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/cfgchart.cxx b/cui/source/options/cfgchart.cxx index 822a3632a76d..ad4c8bc42b3f 100644 --- a/cui/source/options/cfgchart.cxx +++ b/cui/source/options/cfgchart.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfgchart.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/cfgchart.hxx b/cui/source/options/cfgchart.hxx index 89f18e621cff..2f7ff8b3df77 100644 --- a/cui/source/options/cfgchart.hxx +++ b/cui/source/options/cfgchart.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cfgchart.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/connpoolconfig.cxx b/cui/source/options/connpoolconfig.cxx index 1a681beb263e..c59795f33cc3 100644 --- a/cui/source/options/connpoolconfig.cxx +++ b/cui/source/options/connpoolconfig.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connpoolconfig.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/connpoolconfig.hxx b/cui/source/options/connpoolconfig.hxx index 248dd16146f0..fc7e47693202 100644 --- a/cui/source/options/connpoolconfig.hxx +++ b/cui/source/options/connpoolconfig.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connpoolconfig.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/connpooloptions.cxx b/cui/source/options/connpooloptions.cxx index fd195b18a7e3..31abff2802a4 100644 --- a/cui/source/options/connpooloptions.cxx +++ b/cui/source/options/connpooloptions.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connpooloptions.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/connpooloptions.hrc b/cui/source/options/connpooloptions.hrc index 89f3ae64e1f8..ec12b61b8aea 100644 --- a/cui/source/options/connpooloptions.hrc +++ b/cui/source/options/connpooloptions.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connpooloptions.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/connpooloptions.hxx b/cui/source/options/connpooloptions.hxx index b2b40354f433..2ceb7d66a06b 100644 --- a/cui/source/options/connpooloptions.hxx +++ b/cui/source/options/connpooloptions.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connpooloptions.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/connpooloptions.src b/cui/source/options/connpooloptions.src index c8d1dd03e47d..08e4f2043a40 100644 --- a/cui/source/options/connpooloptions.src +++ b/cui/source/options/connpooloptions.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connpooloptions.src,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/connpoolsettings.cxx b/cui/source/options/connpoolsettings.cxx index 03951a4ee271..b8952ca40d20 100644 --- a/cui/source/options/connpoolsettings.cxx +++ b/cui/source/options/connpoolsettings.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connpoolsettings.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/connpoolsettings.hxx b/cui/source/options/connpoolsettings.hxx index 085732a6db74..666b74742190 100644 --- a/cui/source/options/connpoolsettings.hxx +++ b/cui/source/options/connpoolsettings.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connpoolsettings.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/cuisrchdlg.cxx b/cui/source/options/cuisrchdlg.cxx index c958204fe3c4..a5cc834c235f 100644 --- a/cui/source/options/cuisrchdlg.cxx +++ b/cui/source/options/cuisrchdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cuisrchdlg.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/dbregister.cxx b/cui/source/options/dbregister.cxx index 91635d80f5f1..763600205df3 100644 --- a/cui/source/options/dbregister.cxx +++ b/cui/source/options/dbregister.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbregister.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/dbregister.hrc b/cui/source/options/dbregister.hrc index f2324aac186c..492913c0a251 100644 --- a/cui/source/options/dbregister.hrc +++ b/cui/source/options/dbregister.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbregister.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/dbregister.src b/cui/source/options/dbregister.src index aaa8dc5302bc..444d4faac22d 100644 --- a/cui/source/options/dbregister.src +++ b/cui/source/options/dbregister.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbregister.src,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/dbregisterednamesconfig.cxx b/cui/source/options/dbregisterednamesconfig.cxx index 4ab867eaa44e..1c4f12b6eb75 100644 --- a/cui/source/options/dbregisterednamesconfig.cxx +++ b/cui/source/options/dbregisterednamesconfig.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbregisterednamesconfig.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/dbregisterednamesconfig.hxx b/cui/source/options/dbregisterednamesconfig.hxx index 366910c0f193..ce248d681f4a 100644 --- a/cui/source/options/dbregisterednamesconfig.hxx +++ b/cui/source/options/dbregisterednamesconfig.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbregisterednamesconfig.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/dbregistersettings.cxx b/cui/source/options/dbregistersettings.cxx index cdcb899c2567..b125925afc3a 100644 --- a/cui/source/options/dbregistersettings.cxx +++ b/cui/source/options/dbregistersettings.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbregistersettings.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/dbregistersettings.hxx b/cui/source/options/dbregistersettings.hxx index b78031f06786..35d2acccdd6a 100644 --- a/cui/source/options/dbregistersettings.hxx +++ b/cui/source/options/dbregistersettings.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbregistersettings.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/doclinkdialog.cxx b/cui/source/options/doclinkdialog.cxx index 1af621348023..03341a7bfff0 100644 --- a/cui/source/options/doclinkdialog.cxx +++ b/cui/source/options/doclinkdialog.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: doclinkdialog.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/doclinkdialog.hrc b/cui/source/options/doclinkdialog.hrc index 022c43b6d620..cdcc636a78ad 100644 --- a/cui/source/options/doclinkdialog.hrc +++ b/cui/source/options/doclinkdialog.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: doclinkdialog.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/doclinkdialog.hxx b/cui/source/options/doclinkdialog.hxx index 81ec0c34d0c5..7cdd536a901d 100644 --- a/cui/source/options/doclinkdialog.hxx +++ b/cui/source/options/doclinkdialog.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: doclinkdialog.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/doclinkdialog.src b/cui/source/options/doclinkdialog.src index 9fe56360b82a..f61f23092f37 100644 --- a/cui/source/options/doclinkdialog.src +++ b/cui/source/options/doclinkdialog.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: doclinkdialog.src,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/fontsubs.cxx b/cui/source/options/fontsubs.cxx index 614993aeb91f..36e43a88ecce 100644 --- a/cui/source/options/fontsubs.cxx +++ b/cui/source/options/fontsubs.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontsubs.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/fontsubs.hrc b/cui/source/options/fontsubs.hrc index 6ef1c7a9047a..e23bcf2365a3 100644 --- a/cui/source/options/fontsubs.hrc +++ b/cui/source/options/fontsubs.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontsubs.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/fontsubs.hxx b/cui/source/options/fontsubs.hxx index f14ce19c490b..6180c345cc35 100644 --- a/cui/source/options/fontsubs.hxx +++ b/cui/source/options/fontsubs.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontsubs.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/fontsubs.src b/cui/source/options/fontsubs.src index 3400162c6992..1b5f3298913e 100644 --- a/cui/source/options/fontsubs.src +++ b/cui/source/options/fontsubs.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontsubs.src,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/internationaloptions.cxx b/cui/source/options/internationaloptions.cxx index c5e00404ced1..96c60fc1599e 100644 --- a/cui/source/options/internationaloptions.cxx +++ b/cui/source/options/internationaloptions.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: internationaloptions.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/internationaloptions.hrc b/cui/source/options/internationaloptions.hrc index b367340ba2fe..14e3ebb4c525 100644 --- a/cui/source/options/internationaloptions.hrc +++ b/cui/source/options/internationaloptions.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: internationaloptions.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/internationaloptions.src b/cui/source/options/internationaloptions.src index 846bb444c9b5..3acd1ac2766c 100644 --- a/cui/source/options/internationaloptions.src +++ b/cui/source/options/internationaloptions.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: internationaloptions.src,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/makefile.mk b/cui/source/options/makefile.mk old mode 100755 new mode 100644 index b31d70f3e773..8aa9f7e22055 --- a/cui/source/options/makefile.mk +++ b/cui/source/options/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.65 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optHeaderTabListbox.cxx b/cui/source/options/optHeaderTabListbox.cxx index a3107df7069b..3cafbf2c2f3d 100644 --- a/cui/source/options/optHeaderTabListbox.cxx +++ b/cui/source/options/optHeaderTabListbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optHeaderTabListbox.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optHeaderTabListbox.hxx b/cui/source/options/optHeaderTabListbox.hxx index 26608d9791b8..06176ec1db9f 100644 --- a/cui/source/options/optHeaderTabListbox.hxx +++ b/cui/source/options/optHeaderTabListbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optHeaderTabListbox.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optaccessibility.cxx b/cui/source/options/optaccessibility.cxx index 3ceacf56d082..a4fc84538834 100644 --- a/cui/source/options/optaccessibility.cxx +++ b/cui/source/options/optaccessibility.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optaccessibility.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optaccessibility.hrc b/cui/source/options/optaccessibility.hrc index 248cf16bc96e..35c02cc3e756 100644 --- a/cui/source/options/optaccessibility.hrc +++ b/cui/source/options/optaccessibility.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optaccessibility.hrc,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optaccessibility.hxx b/cui/source/options/optaccessibility.hxx index ff0eee457c1a..88a472c23541 100644 --- a/cui/source/options/optaccessibility.hxx +++ b/cui/source/options/optaccessibility.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optaccessibility.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optaccessibility.src b/cui/source/options/optaccessibility.src index ef375fb80117..4d7e1985d838 100644 --- a/cui/source/options/optaccessibility.src +++ b/cui/source/options/optaccessibility.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optaccessibility.src,v $ - * $Revision: 1.36 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optasian.cxx b/cui/source/options/optasian.cxx index 0bbf0ac287bd..033d1e0cce0e 100644 --- a/cui/source/options/optasian.cxx +++ b/cui/source/options/optasian.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optasian.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optasian.hrc b/cui/source/options/optasian.hrc index 2d9c8a282352..4dfa4d2f82b5 100644 --- a/cui/source/options/optasian.hrc +++ b/cui/source/options/optasian.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optasian.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optasian.src b/cui/source/options/optasian.src index f8286ea1186c..c9a2c9606c98 100644 --- a/cui/source/options/optasian.src +++ b/cui/source/options/optasian.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optasian.src,v $ - * $Revision: 1.48 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optchart.cxx b/cui/source/options/optchart.cxx index c32bffe730c9..0fd27c60c039 100644 --- a/cui/source/options/optchart.cxx +++ b/cui/source/options/optchart.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optchart.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optchart.hrc b/cui/source/options/optchart.hrc index ac42f857f8ea..d2e1a312e15d 100644 --- a/cui/source/options/optchart.hrc +++ b/cui/source/options/optchart.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optchart.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optchart.hxx b/cui/source/options/optchart.hxx index 9316d2a8ea85..abf0cf45a2dd 100644 --- a/cui/source/options/optchart.hxx +++ b/cui/source/options/optchart.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optchart.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optchart.src b/cui/source/options/optchart.src index 1008f5383a11..374828b329c1 100644 --- a/cui/source/options/optchart.src +++ b/cui/source/options/optchart.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optchart.src,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optcolor.cxx b/cui/source/options/optcolor.cxx index 6d451c53cab9..90befc998e01 100644 --- a/cui/source/options/optcolor.cxx +++ b/cui/source/options/optcolor.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optcolor.cxx,v $ - * $Revision: 1.18.256.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optcolor.hrc b/cui/source/options/optcolor.hrc index 06730cf196c0..d8bb17b54e39 100644 --- a/cui/source/options/optcolor.hrc +++ b/cui/source/options/optcolor.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optcolor.hrc,v $ - * $Revision: 1.8.196.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optcolor.hxx b/cui/source/options/optcolor.hxx index c50062f15366..795548e0ad3a 100644 --- a/cui/source/options/optcolor.hxx +++ b/cui/source/options/optcolor.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optcolor.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optcolor.src b/cui/source/options/optcolor.src index 9f3b42e0be30..5b4a58bd59c4 100644 --- a/cui/source/options/optcolor.src +++ b/cui/source/options/optcolor.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optcolor.src,v $ - * $Revision: 1.47.196.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optctl.cxx b/cui/source/options/optctl.cxx index 199fcc38090b..a22ce6bc6c36 100644 --- a/cui/source/options/optctl.cxx +++ b/cui/source/options/optctl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optctl.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optctl.hrc b/cui/source/options/optctl.hrc index 4897926f610c..1bdea7bb44c8 100644 --- a/cui/source/options/optctl.hrc +++ b/cui/source/options/optctl.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optctl.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optctl.hxx b/cui/source/options/optctl.hxx index 0dae0e24f180..b18689d60bc9 100644 --- a/cui/source/options/optctl.hxx +++ b/cui/source/options/optctl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optctl.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optctl.src b/cui/source/options/optctl.src index f750264a1df1..defc62c95011 100644 --- a/cui/source/options/optctl.src +++ b/cui/source/options/optctl.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optctl.src,v $ - * $Revision: 1.20.254.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optdict.cxx b/cui/source/options/optdict.cxx index e56089dd351e..f05c3facd5b9 100644 --- a/cui/source/options/optdict.cxx +++ b/cui/source/options/optdict.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optdict.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optdict.hrc b/cui/source/options/optdict.hrc index af9e9302d7d5..e7233f2b67ef 100644 --- a/cui/source/options/optdict.hrc +++ b/cui/source/options/optdict.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optdict.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optdict.src b/cui/source/options/optdict.src index 589f73b4f46b..b5d31ce90fe9 100644 --- a/cui/source/options/optdict.src +++ b/cui/source/options/optdict.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optdict.src,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optfltr.cxx b/cui/source/options/optfltr.cxx index feb38daff447..637230587e6b 100644 --- a/cui/source/options/optfltr.cxx +++ b/cui/source/options/optfltr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optfltr.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optfltr.hrc b/cui/source/options/optfltr.hrc index dad722916860..948da2c47542 100644 --- a/cui/source/options/optfltr.hrc +++ b/cui/source/options/optfltr.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optfltr.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optfltr.hxx b/cui/source/options/optfltr.hxx index 6f8c975098db..e2572e901124 100644 --- a/cui/source/options/optfltr.hxx +++ b/cui/source/options/optfltr.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optfltr.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optfltr.src b/cui/source/options/optfltr.src index a03a3bc1cc9c..a9091926e3c2 100644 --- a/cui/source/options/optfltr.src +++ b/cui/source/options/optfltr.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optfltr.src,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx index 656eca17fd22..5ebf9b25de3d 100644 --- a/cui/source/options/optgdlg.cxx +++ b/cui/source/options/optgdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optgdlg.cxx,v $ - * $Revision: 1.53.20.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optgdlg.hrc b/cui/source/options/optgdlg.hrc index 3ad985caa706..04aad5909d9d 100644 --- a/cui/source/options/optgdlg.hrc +++ b/cui/source/options/optgdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optgdlg.hrc,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optgdlg.hxx b/cui/source/options/optgdlg.hxx index 4813e23c4305..2b8f3d074216 100644 --- a/cui/source/options/optgdlg.hxx +++ b/cui/source/options/optgdlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optgdlg.hxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optgdlg.src b/cui/source/options/optgdlg.src index 8318d4eccd10..dec9c4769481 100644 --- a/cui/source/options/optgdlg.src +++ b/cui/source/options/optgdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optgdlg.src,v $ - * $Revision: 1.32 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optgenrl.cxx b/cui/source/options/optgenrl.cxx index 85c0d450cc47..861c938bfabe 100644 --- a/cui/source/options/optgenrl.cxx +++ b/cui/source/options/optgenrl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optgenrl.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optgenrl.hrc b/cui/source/options/optgenrl.hrc index 4c519d5ebb70..ed4afd2e803d 100644 --- a/cui/source/options/optgenrl.hrc +++ b/cui/source/options/optgenrl.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optgenrl.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optgenrl.src b/cui/source/options/optgenrl.src index 1d0b049dd204..6f5fff55892d 100644 --- a/cui/source/options/optgenrl.src +++ b/cui/source/options/optgenrl.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optgenrl.src,v $ - * $Revision: 1.57 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/opthtml.cxx b/cui/source/options/opthtml.cxx index bddcd4a9e182..9e958697bb68 100644 --- a/cui/source/options/opthtml.cxx +++ b/cui/source/options/opthtml.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: opthtml.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/opthtml.hrc b/cui/source/options/opthtml.hrc index 6525a31fc877..480bffb10b07 100644 --- a/cui/source/options/opthtml.hrc +++ b/cui/source/options/opthtml.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: opthtml.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/opthtml.hxx b/cui/source/options/opthtml.hxx index 3d630ea692ff..886267319ca9 100644 --- a/cui/source/options/opthtml.hxx +++ b/cui/source/options/opthtml.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: opthtml.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/opthtml.src b/cui/source/options/opthtml.src index 29f5ff1fe78e..60db286b192d 100644 --- a/cui/source/options/opthtml.src +++ b/cui/source/options/opthtml.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: opthtml.src,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optimprove.cxx b/cui/source/options/optimprove.cxx index c8f52a63e708..32aa6a6a3280 100644 --- a/cui/source/options/optimprove.cxx +++ b/cui/source/options/optimprove.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optimprove.cxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optimprove.hrc b/cui/source/options/optimprove.hrc index 919b01c6fb6a..024e5d5aae4a 100644 --- a/cui/source/options/optimprove.hrc +++ b/cui/source/options/optimprove.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optimprove.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optimprove.src b/cui/source/options/optimprove.src index d8782144cdb3..003390d4600a 100644 --- a/cui/source/options/optimprove.src +++ b/cui/source/options/optimprove.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optimprove.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optimprove2.cxx b/cui/source/options/optimprove2.cxx index 1509b88ce186..29ef718a6c74 100644 --- a/cui/source/options/optimprove2.cxx +++ b/cui/source/options/optimprove2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optimprove2.cxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optinet2.cxx b/cui/source/options/optinet2.cxx index b8d7fec16efc..685fa024fa62 100644 --- a/cui/source/options/optinet2.cxx +++ b/cui/source/options/optinet2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optinet2.cxx,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optinet2.hrc b/cui/source/options/optinet2.hrc index 1e9a3f65efeb..09de829ae132 100644 --- a/cui/source/options/optinet2.hrc +++ b/cui/source/options/optinet2.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optinet2.hrc,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optinet2.hxx b/cui/source/options/optinet2.hxx index 00d1aaadc4fc..538611777b58 100644 --- a/cui/source/options/optinet2.hxx +++ b/cui/source/options/optinet2.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optinet2.hxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optinet2.src b/cui/source/options/optinet2.src index e7bdc9eff17c..2b2829d9f2e5 100644 --- a/cui/source/options/optinet2.src +++ b/cui/source/options/optinet2.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optinet2.src,v $ - * $Revision: 1.97 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx index fdc36dadbbb7..31a40f2cd221 100644 --- a/cui/source/options/optjava.cxx +++ b/cui/source/options/optjava.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optjava.cxx,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optjava.hrc b/cui/source/options/optjava.hrc index ac4b0108cc47..425cd2ca6d65 100644 --- a/cui/source/options/optjava.hrc +++ b/cui/source/options/optjava.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optjava.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optjava.hxx b/cui/source/options/optjava.hxx index 2b2ac090ca07..4bbd56906708 100644 --- a/cui/source/options/optjava.hxx +++ b/cui/source/options/optjava.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optjava.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optjava.src b/cui/source/options/optjava.src index b1cce0a3e50b..0d55fd6f64f8 100644 --- a/cui/source/options/optjava.src +++ b/cui/source/options/optjava.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optjava.src,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optjsearch.cxx b/cui/source/options/optjsearch.cxx index ab08478e6caa..e9a0a391211f 100644 --- a/cui/source/options/optjsearch.cxx +++ b/cui/source/options/optjsearch.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optjsearch.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optjsearch.hrc b/cui/source/options/optjsearch.hrc index dfe6b7bdb07a..e1c2b8d24306 100644 --- a/cui/source/options/optjsearch.hrc +++ b/cui/source/options/optjsearch.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optjsearch.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optjsearch.hxx b/cui/source/options/optjsearch.hxx index e1d1de79ae2e..6a1c91d42ae9 100644 --- a/cui/source/options/optjsearch.hxx +++ b/cui/source/options/optjsearch.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optjsearch.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optjsearch.src b/cui/source/options/optjsearch.src index 00496ecf8d6b..98963647e9c4 100644 --- a/cui/source/options/optjsearch.src +++ b/cui/source/options/optjsearch.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optjsearch.src,v $ - * $Revision: 1.40 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx index 7ca67a553278..51dca1aefb35 100644 --- a/cui/source/options/optlingu.cxx +++ b/cui/source/options/optlingu.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optlingu.cxx,v $ - * $Revision: 1.68 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optlingu.hrc b/cui/source/options/optlingu.hrc index 73b481cbb6a3..6a73b7321235 100644 --- a/cui/source/options/optlingu.hrc +++ b/cui/source/options/optlingu.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optlingu.hrc,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optlingu.src b/cui/source/options/optlingu.src index c0cb4489cd59..be0378f171e8 100644 --- a/cui/source/options/optlingu.src +++ b/cui/source/options/optlingu.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optlingu.src,v $ - * $Revision: 1.51 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optmemory.cxx b/cui/source/options/optmemory.cxx index a72660ba2e0f..719bbb6f6fd1 100644 --- a/cui/source/options/optmemory.cxx +++ b/cui/source/options/optmemory.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optmemory.cxx,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optmemory.hrc b/cui/source/options/optmemory.hrc index 0ba3f833d2e7..52fb7ed7c2d1 100644 --- a/cui/source/options/optmemory.hrc +++ b/cui/source/options/optmemory.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optmemory.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optmemory.hxx b/cui/source/options/optmemory.hxx index f385dd60875f..83690c9c8c3f 100644 --- a/cui/source/options/optmemory.hxx +++ b/cui/source/options/optmemory.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optmemory.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optmemory.src b/cui/source/options/optmemory.src index e54dbde11eb7..557fa6a8d960 100644 --- a/cui/source/options/optmemory.src +++ b/cui/source/options/optmemory.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optmemory.src,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optpath.cxx b/cui/source/options/optpath.cxx index 8e004b54b018..8f2ca98f1c6f 100644 --- a/cui/source/options/optpath.cxx +++ b/cui/source/options/optpath.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optpath.cxx,v $ - * $Revision: 1.25 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optpath.hrc b/cui/source/options/optpath.hrc index 0fcef57dcf4c..c32919308842 100644 --- a/cui/source/options/optpath.hrc +++ b/cui/source/options/optpath.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optpath.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optpath.src b/cui/source/options/optpath.src index 7d0c3425636d..6b02abb5764a 100644 --- a/cui/source/options/optpath.src +++ b/cui/source/options/optpath.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optpath.src,v $ - * $Revision: 1.35 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optsave.cxx b/cui/source/options/optsave.cxx index caf332fb4048..d313b86c79ec 100644 --- a/cui/source/options/optsave.cxx +++ b/cui/source/options/optsave.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optsave.cxx,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optsave.hrc b/cui/source/options/optsave.hrc index c5b2ab5e765a..4cbdc0e2db4b 100644 --- a/cui/source/options/optsave.hrc +++ b/cui/source/options/optsave.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optsave.hrc,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optsave.hxx b/cui/source/options/optsave.hxx index 8c9fcbc75ac8..3713117aebad 100644 --- a/cui/source/options/optsave.hxx +++ b/cui/source/options/optsave.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optsave.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optsave.src b/cui/source/options/optsave.src index cffff43cd23a..36fc60e94435 100644 --- a/cui/source/options/optsave.src +++ b/cui/source/options/optsave.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optsave.src,v $ - * $Revision: 1.82 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optspell.hrc b/cui/source/options/optspell.hrc index e13ba3ea09a2..c2f71de15d69 100644 --- a/cui/source/options/optspell.hrc +++ b/cui/source/options/optspell.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optspell.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optspell.src b/cui/source/options/optspell.src index bc6f3ad37fce..e4241d4e4bb4 100644 --- a/cui/source/options/optspell.src +++ b/cui/source/options/optspell.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optspell.src,v $ - * $Revision: 1.34 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optupdt.cxx b/cui/source/options/optupdt.cxx index 0fb6e113c40d..304e0763b83e 100644 --- a/cui/source/options/optupdt.cxx +++ b/cui/source/options/optupdt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optupdt.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optupdt.hrc b/cui/source/options/optupdt.hrc index d9e77f7f1403..d301aa07319f 100644 --- a/cui/source/options/optupdt.hrc +++ b/cui/source/options/optupdt.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optupdt.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optupdt.hxx b/cui/source/options/optupdt.hxx index 4aa380844602..14e42935667b 100644 --- a/cui/source/options/optupdt.hxx +++ b/cui/source/options/optupdt.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optupdt.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/optupdt.src b/cui/source/options/optupdt.src index 55d213978672..094e23c2e60a 100644 --- a/cui/source/options/optupdt.src +++ b/cui/source/options/optupdt.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optupdt.src,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/radiobtnbox.cxx b/cui/source/options/radiobtnbox.cxx index a3cf9719bf59..d6dc500f1965 100644 --- a/cui/source/options/radiobtnbox.cxx +++ b/cui/source/options/radiobtnbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: radiobtnbox.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/readonlyimage.cxx b/cui/source/options/readonlyimage.cxx index 508c4e6cfaec..e7cc2836a8a8 100644 --- a/cui/source/options/readonlyimage.cxx +++ b/cui/source/options/readonlyimage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: readonlyimage.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/readonlyimage.hxx b/cui/source/options/readonlyimage.hxx index 10e44989e9e9..357813534c69 100644 --- a/cui/source/options/readonlyimage.hxx +++ b/cui/source/options/readonlyimage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: readonlyimage.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/readonlyimage.src b/cui/source/options/readonlyimage.src index 92b7d2b73fb3..bd63c32771e7 100644 --- a/cui/source/options/readonlyimage.src +++ b/cui/source/options/readonlyimage.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: readonlyimage.src,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/sdbcdriverenum.cxx b/cui/source/options/sdbcdriverenum.cxx index 5da5d649a969..7613978bee32 100644 --- a/cui/source/options/sdbcdriverenum.cxx +++ b/cui/source/options/sdbcdriverenum.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sdbcdriverenum.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/sdbcdriverenum.hxx b/cui/source/options/sdbcdriverenum.hxx index eaee591b22f3..b1dd5651cf35 100644 --- a/cui/source/options/sdbcdriverenum.hxx +++ b/cui/source/options/sdbcdriverenum.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sdbcdriverenum.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/securityoptions.cxx b/cui/source/options/securityoptions.cxx index 85afe1476d5b..af21c9e8e5ee 100644 --- a/cui/source/options/securityoptions.cxx +++ b/cui/source/options/securityoptions.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityoptions.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/securityoptions.hrc b/cui/source/options/securityoptions.hrc index c0358d5f151b..8b657b3a22fd 100644 --- a/cui/source/options/securityoptions.hrc +++ b/cui/source/options/securityoptions.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityoptions.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/securityoptions.hxx b/cui/source/options/securityoptions.hxx index 0e78e328edd8..aa2c189c6764 100644 --- a/cui/source/options/securityoptions.hxx +++ b/cui/source/options/securityoptions.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityoptions.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/securityoptions.src b/cui/source/options/securityoptions.src index 386f92a91fe3..de7d7b23dc37 100644 --- a/cui/source/options/securityoptions.src +++ b/cui/source/options/securityoptions.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityoptions.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx index b45a19af4a70..8052ffc12049 100644 --- a/cui/source/options/treeopt.cxx +++ b/cui/source/options/treeopt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: treeopt.cxx,v $ - * $Revision: 1.58 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/treeopt.hrc b/cui/source/options/treeopt.hrc index 7f8fab812dc2..88e9697ce38b 100644 --- a/cui/source/options/treeopt.hrc +++ b/cui/source/options/treeopt.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: treeopt.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/treeopt.src b/cui/source/options/treeopt.src index 05a67948da04..cce0b3a3e3b5 100644 --- a/cui/source/options/treeopt.src +++ b/cui/source/options/treeopt.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: treeopt.src,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/webconninfo.cxx b/cui/source/options/webconninfo.cxx index 162758a524fe..5c5dcdae4ade 100644 --- a/cui/source/options/webconninfo.cxx +++ b/cui/source/options/webconninfo.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: webconninfo.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/webconninfo.hrc b/cui/source/options/webconninfo.hrc index de040b302d89..85cbf35afc2d 100644 --- a/cui/source/options/webconninfo.hrc +++ b/cui/source/options/webconninfo.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: webconninfo.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/webconninfo.hxx b/cui/source/options/webconninfo.hxx index f24b9f0dd4c8..569bb653d675 100644 --- a/cui/source/options/webconninfo.hxx +++ b/cui/source/options/webconninfo.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: webconninfo.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/options/webconninfo.src b/cui/source/options/webconninfo.src index 9252a698b29c..68560c1ecaa7 100644 --- a/cui/source/options/webconninfo.src +++ b/cui/source/options/webconninfo.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: webconninfo.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/align.cxx b/cui/source/tabpages/align.cxx index f275cc084877..f401ff5dc2bd 100644 --- a/cui/source/tabpages/align.cxx +++ b/cui/source/tabpages/align.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: align.cxx,v $ - * $Revision: 1.26.272.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/align.hrc b/cui/source/tabpages/align.hrc index d9138200d381..f67d3f666bae 100644 --- a/cui/source/tabpages/align.hrc +++ b/cui/source/tabpages/align.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: align.hrc,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/align.src b/cui/source/tabpages/align.src index 077e38105271..807bfdb56132 100644 --- a/cui/source/tabpages/align.src +++ b/cui/source/tabpages/align.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: align.src,v $ - * $Revision: 1.55 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index 764a5e0b163e..b30e871ae7f6 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: autocdlg.cxx,v $ - * $Revision: 1.25 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/autocdlg.hrc b/cui/source/tabpages/autocdlg.hrc index f1817b3f3f36..6332d854ca99 100644 --- a/cui/source/tabpages/autocdlg.hrc +++ b/cui/source/tabpages/autocdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: autocdlg.hrc,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/autocdlg.src b/cui/source/tabpages/autocdlg.src index 030a47aae26b..67b4e6185392 100644 --- a/cui/source/tabpages/autocdlg.src +++ b/cui/source/tabpages/autocdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: autocdlg.src,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/backgrnd.cxx b/cui/source/tabpages/backgrnd.cxx index 004b79817b32..78bf271b0a78 100644 --- a/cui/source/tabpages/backgrnd.cxx +++ b/cui/source/tabpages/backgrnd.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: backgrnd.cxx,v $ - * $Revision: 1.39 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/backgrnd.hrc b/cui/source/tabpages/backgrnd.hrc index ce154afa54b6..fdfafabe8f11 100644 --- a/cui/source/tabpages/backgrnd.hrc +++ b/cui/source/tabpages/backgrnd.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: backgrnd.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/backgrnd.src b/cui/source/tabpages/backgrnd.src index 1ad9beca658c..7f413f116aff 100644 --- a/cui/source/tabpages/backgrnd.src +++ b/cui/source/tabpages/backgrnd.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: backgrnd.src,v $ - * $Revision: 1.40 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/bbdlg.cxx b/cui/source/tabpages/bbdlg.cxx index bc50eaecca07..8cae4b77cc62 100644 --- a/cui/source/tabpages/bbdlg.cxx +++ b/cui/source/tabpages/bbdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bbdlg.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/bbdlg.src b/cui/source/tabpages/bbdlg.src index b87576b9c975..973272d11d2e 100644 --- a/cui/source/tabpages/bbdlg.src +++ b/cui/source/tabpages/bbdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bbdlg.src,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx index 31191b4dffe1..bb447997ba82 100644 --- a/cui/source/tabpages/border.cxx +++ b/cui/source/tabpages/border.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: border.cxx,v $ - * $Revision: 1.39 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/border.hrc b/cui/source/tabpages/border.hrc index 7ba1b8cfc757..3f7699df951b 100644 --- a/cui/source/tabpages/border.hrc +++ b/cui/source/tabpages/border.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: border.hrc,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/border.src b/cui/source/tabpages/border.src index 4359e78e84d6..811f5429aeb7 100644 --- a/cui/source/tabpages/border.src +++ b/cui/source/tabpages/border.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: border.src,v $ - * $Revision: 1.64 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/borderconn.cxx b/cui/source/tabpages/borderconn.cxx index c117e631abbd..d67ec35cb05f 100644 --- a/cui/source/tabpages/borderconn.cxx +++ b/cui/source/tabpages/borderconn.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: borderconn.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/borderconn.hxx b/cui/source/tabpages/borderconn.hxx index 740c9c79f283..a3d253af8c77 100644 --- a/cui/source/tabpages/borderconn.hxx +++ b/cui/source/tabpages/borderconn.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: borderconn.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/chardlg.cxx b/cui/source/tabpages/chardlg.cxx index 6028fdf97ab9..22f002dfb92e 100644 --- a/cui/source/tabpages/chardlg.cxx +++ b/cui/source/tabpages/chardlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: chardlg.cxx,v $ - * $Revision: 1.102.148.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/chardlg.h b/cui/source/tabpages/chardlg.h index 83af82c3118c..253745d9623a 100644 --- a/cui/source/tabpages/chardlg.h +++ b/cui/source/tabpages/chardlg.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: chardlg.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/chardlg.hrc b/cui/source/tabpages/chardlg.hrc index 63faba788bbe..3d12b5f3bd0b 100644 --- a/cui/source/tabpages/chardlg.hrc +++ b/cui/source/tabpages/chardlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: chardlg.hrc,v $ - * $Revision: 1.15.212.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/chardlg.src b/cui/source/tabpages/chardlg.src index 2fd998b88d18..9673fc950f3f 100644 --- a/cui/source/tabpages/chardlg.src +++ b/cui/source/tabpages/chardlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: chardlg.src,v $ - * $Revision: 1.78.20.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/connect.cxx b/cui/source/tabpages/connect.cxx index cd62234aeb2d..d95a2309cba2 100644 --- a/cui/source/tabpages/connect.cxx +++ b/cui/source/tabpages/connect.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connect.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/connect.hrc b/cui/source/tabpages/connect.hrc index f6c49e5c7d6e..2d0584d94232 100644 --- a/cui/source/tabpages/connect.hrc +++ b/cui/source/tabpages/connect.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connect.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/connect.src b/cui/source/tabpages/connect.src index 9193dd4808cb..64623b0cee25 100644 --- a/cui/source/tabpages/connect.src +++ b/cui/source/tabpages/connect.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: connect.src,v $ - * $Revision: 1.33 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/dstribut.cxx b/cui/source/tabpages/dstribut.cxx index e7ec2a0e8ef6..0474f8c3ef82 100644 --- a/cui/source/tabpages/dstribut.cxx +++ b/cui/source/tabpages/dstribut.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dstribut.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/dstribut.hrc b/cui/source/tabpages/dstribut.hrc index 0834c8640785..201fac2b5227 100644 --- a/cui/source/tabpages/dstribut.hrc +++ b/cui/source/tabpages/dstribut.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dstribut.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/dstribut.src b/cui/source/tabpages/dstribut.src index 88998dc674c5..18e38fd5236a 100644 --- a/cui/source/tabpages/dstribut.src +++ b/cui/source/tabpages/dstribut.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dstribut.src,v $ - * $Revision: 1.33 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/frmdirlbox.src b/cui/source/tabpages/frmdirlbox.src index 063d70d1b81a..a6a43160afa5 100644 --- a/cui/source/tabpages/frmdirlbox.src +++ b/cui/source/tabpages/frmdirlbox.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: frmdirlbox.src,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/grfpage.cxx b/cui/source/tabpages/grfpage.cxx index 5afb0e817aa3..137c8039617f 100644 --- a/cui/source/tabpages/grfpage.cxx +++ b/cui/source/tabpages/grfpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grfpage.cxx,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/grfpage.hrc b/cui/source/tabpages/grfpage.hrc index 5743645f3eb0..438e67a8010f 100644 --- a/cui/source/tabpages/grfpage.hrc +++ b/cui/source/tabpages/grfpage.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grfpage.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/grfpage.src b/cui/source/tabpages/grfpage.src index 23004c704582..74b9e8e5cda0 100644 --- a/cui/source/tabpages/grfpage.src +++ b/cui/source/tabpages/grfpage.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grfpage.src,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/labdlg.cxx b/cui/source/tabpages/labdlg.cxx index a311fadca64b..97d97237dba6 100644 --- a/cui/source/tabpages/labdlg.cxx +++ b/cui/source/tabpages/labdlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: labdlg.cxx,v $ - * $Revision: 1.19 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/labdlg.hrc b/cui/source/tabpages/labdlg.hrc index f75da680a0e0..8f76e8572f86 100644 --- a/cui/source/tabpages/labdlg.hrc +++ b/cui/source/tabpages/labdlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: labdlg.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/labdlg.src b/cui/source/tabpages/labdlg.src index e128fe7c1734..ed13f2de9b49 100644 --- a/cui/source/tabpages/labdlg.src +++ b/cui/source/tabpages/labdlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: labdlg.src,v $ - * $Revision: 1.34 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/macroass.cxx b/cui/source/tabpages/macroass.cxx index 3839bc5034ea..5cfeb0f4c8be 100644 --- a/cui/source/tabpages/macroass.cxx +++ b/cui/source/tabpages/macroass.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg.cxx,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/macroass.hrc b/cui/source/tabpages/macroass.hrc index 626cf010adf9..614711e1981e 100644 --- a/cui/source/tabpages/macroass.hrc +++ b/cui/source/tabpages/macroass.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/macroass.src b/cui/source/tabpages/macroass.src index 3f8fad19cf59..4f5d78ffe795 100644 --- a/cui/source/tabpages/macroass.src +++ b/cui/source/tabpages/macroass.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macropg.src,v $ - * $Revision: 1.39 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/makefile.mk b/cui/source/tabpages/makefile.mk old mode 100755 new mode 100644 index 544803603907..362f46cf30a1 --- a/cui/source/tabpages/makefile.mk +++ b/cui/source/tabpages/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.65 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/measure.cxx b/cui/source/tabpages/measure.cxx index 4b00f3289338..f155b5f9c970 100644 --- a/cui/source/tabpages/measure.cxx +++ b/cui/source/tabpages/measure.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: measure.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/measure.hrc b/cui/source/tabpages/measure.hrc index b06a36775b3b..11dfaba27d22 100644 --- a/cui/source/tabpages/measure.hrc +++ b/cui/source/tabpages/measure.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: measure.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/measure.src b/cui/source/tabpages/measure.src index 75cb09737766..79c46b13079b 100644 --- a/cui/source/tabpages/measure.src +++ b/cui/source/tabpages/measure.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: measure.src,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx index 7a4fe198e6fe..15ac78e9975e 100644 --- a/cui/source/tabpages/numfmt.cxx +++ b/cui/source/tabpages/numfmt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: numfmt.cxx,v $ - * $Revision: 1.32.128.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/numfmt.hrc b/cui/source/tabpages/numfmt.hrc index 102c5a212ac6..f863a303c800 100644 --- a/cui/source/tabpages/numfmt.hrc +++ b/cui/source/tabpages/numfmt.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: numfmt.hrc,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/numfmt.src b/cui/source/tabpages/numfmt.src index 7e2b5706fb70..2538b196932c 100644 --- a/cui/source/tabpages/numfmt.src +++ b/cui/source/tabpages/numfmt.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: numfmt.src,v $ - * $Revision: 1.51 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx index 22c13efa37ab..9b4bb4a1086d 100644 --- a/cui/source/tabpages/numpages.cxx +++ b/cui/source/tabpages/numpages.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: numpages.cxx,v $ - * $Revision: 1.64 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/numpages.hrc b/cui/source/tabpages/numpages.hrc index 59ea5d0e8a94..02fb93676658 100644 --- a/cui/source/tabpages/numpages.hrc +++ b/cui/source/tabpages/numpages.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: numpages.hrc,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/numpages.src b/cui/source/tabpages/numpages.src index 731630b29840..323b5cdd6ba6 100644 --- a/cui/source/tabpages/numpages.src +++ b/cui/source/tabpages/numpages.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: numpages.src,v $ - * $Revision: 1.64.242.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/page.cxx b/cui/source/tabpages/page.cxx index 27db31f684fa..06ff0bd77909 100644 --- a/cui/source/tabpages/page.cxx +++ b/cui/source/tabpages/page.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: page.cxx,v $ - * $Revision: 1.42 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/page.h b/cui/source/tabpages/page.h index 98aefdc79cc4..2bc5583fe859 100644 --- a/cui/source/tabpages/page.h +++ b/cui/source/tabpages/page.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: page.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/page.hrc b/cui/source/tabpages/page.hrc index bd2810a39061..de66988c2b0c 100644 --- a/cui/source/tabpages/page.hrc +++ b/cui/source/tabpages/page.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: page.hrc,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/page.src b/cui/source/tabpages/page.src index e8b83078f26a..c96b43a5a966 100644 --- a/cui/source/tabpages/page.src +++ b/cui/source/tabpages/page.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: page.src,v $ - * $Revision: 1.71 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx index 4c2a1446755c..427cb8bd8e73 100644 --- a/cui/source/tabpages/paragrph.cxx +++ b/cui/source/tabpages/paragrph.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: paragrph.cxx,v $ - * $Revision: 1.54 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/paragrph.hrc b/cui/source/tabpages/paragrph.hrc index 6b0b835b07e3..8a14407a9cd0 100644 --- a/cui/source/tabpages/paragrph.hrc +++ b/cui/source/tabpages/paragrph.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: paragrph.hrc,v $ - * $Revision: 1.19 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/paragrph.src b/cui/source/tabpages/paragrph.src index 2e4ad98da17a..d52283ceea8f 100644 --- a/cui/source/tabpages/paragrph.src +++ b/cui/source/tabpages/paragrph.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: paragrph.src,v $ - * $Revision: 1.85 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/strings.src b/cui/source/tabpages/strings.src index 316e8741dcc9..a1cb7cb80582 100644 --- a/cui/source/tabpages/strings.src +++ b/cui/source/tabpages/strings.src @@ -2,7 +2,7 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * diff --git a/cui/source/tabpages/swpossizetabpage.cxx b/cui/source/tabpages/swpossizetabpage.cxx index 488eb057418f..7f290cab0fa9 100644 --- a/cui/source/tabpages/swpossizetabpage.cxx +++ b/cui/source/tabpages/swpossizetabpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: swpossizetabpage.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/swpossizetabpage.hrc b/cui/source/tabpages/swpossizetabpage.hrc index af4a081cb045..9c5170b21d83 100644 --- a/cui/source/tabpages/swpossizetabpage.hrc +++ b/cui/source/tabpages/swpossizetabpage.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: swpossizetabpage.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/swpossizetabpage.hxx b/cui/source/tabpages/swpossizetabpage.hxx index 911d72de1f48..e27f243dc895 100644 --- a/cui/source/tabpages/swpossizetabpage.hxx +++ b/cui/source/tabpages/swpossizetabpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: swpossizetabpage.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/swpossizetabpage.src b/cui/source/tabpages/swpossizetabpage.src index e84893c37457..c5fd8e8816e9 100644 --- a/cui/source/tabpages/swpossizetabpage.src +++ b/cui/source/tabpages/swpossizetabpage.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: swpossizetabpage.src,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabarea.cxx b/cui/source/tabpages/tabarea.cxx index 86361fe2fea5..115164bba772 100644 --- a/cui/source/tabpages/tabarea.cxx +++ b/cui/source/tabpages/tabarea.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabarea.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabarea.hrc b/cui/source/tabpages/tabarea.hrc index c79e52d82380..10fe10f1495d 100644 --- a/cui/source/tabpages/tabarea.hrc +++ b/cui/source/tabpages/tabarea.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabarea.hrc,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabarea.src b/cui/source/tabpages/tabarea.src index cbb4020b6bd3..f5ff6b24ff66 100644 --- a/cui/source/tabpages/tabarea.src +++ b/cui/source/tabpages/tabarea.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabarea.src,v $ - * $Revision: 1.65 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabline.cxx b/cui/source/tabpages/tabline.cxx index fe344770a7db..02280cb587a8 100644 --- a/cui/source/tabpages/tabline.cxx +++ b/cui/source/tabpages/tabline.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabline.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabline.hrc b/cui/source/tabpages/tabline.hrc index c1e884ad4ab3..0034e2126bf5 100644 --- a/cui/source/tabpages/tabline.hrc +++ b/cui/source/tabpages/tabline.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabline.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabline.src b/cui/source/tabpages/tabline.src index ed2d308970db..e850b87c579b 100644 --- a/cui/source/tabpages/tabline.src +++ b/cui/source/tabpages/tabline.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabline.src,v $ - * $Revision: 1.45 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabstpge.cxx b/cui/source/tabpages/tabstpge.cxx index 12b6fd870419..0862586f107d 100644 --- a/cui/source/tabpages/tabstpge.cxx +++ b/cui/source/tabpages/tabstpge.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabstpge.cxx,v $ - * $Revision: 1.27 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabstpge.hrc b/cui/source/tabpages/tabstpge.hrc index 60752fa70109..be3823fd9cd4 100644 --- a/cui/source/tabpages/tabstpge.hrc +++ b/cui/source/tabpages/tabstpge.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabstpge.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tabstpge.src b/cui/source/tabpages/tabstpge.src index b314e0ef53fb..3bd0467f2f0c 100644 --- a/cui/source/tabpages/tabstpge.src +++ b/cui/source/tabpages/tabstpge.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tabstpge.src,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/textanim.cxx b/cui/source/tabpages/textanim.cxx index 3c7bdbcd4653..9284ef249f87 100644 --- a/cui/source/tabpages/textanim.cxx +++ b/cui/source/tabpages/textanim.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textanim.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/textanim.hrc b/cui/source/tabpages/textanim.hrc index 97d6b7c64525..2f29d81a146a 100644 --- a/cui/source/tabpages/textanim.hrc +++ b/cui/source/tabpages/textanim.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textanim.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/textanim.src b/cui/source/tabpages/textanim.src index 851096104479..3f2bed8b5a52 100644 --- a/cui/source/tabpages/textanim.src +++ b/cui/source/tabpages/textanim.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textanim.src,v $ - * $Revision: 1.38 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/textattr.cxx b/cui/source/tabpages/textattr.cxx index 6c81356cb334..fd08b32e2c0e 100644 --- a/cui/source/tabpages/textattr.cxx +++ b/cui/source/tabpages/textattr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textattr.cxx,v $ - * $Revision: 1.28 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/textattr.hrc b/cui/source/tabpages/textattr.hrc index 5abc50f04250..b5da04f607e5 100644 --- a/cui/source/tabpages/textattr.hrc +++ b/cui/source/tabpages/textattr.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textattr.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/textattr.src b/cui/source/tabpages/textattr.src index c5636d15cbfa..59b0a534472d 100644 --- a/cui/source/tabpages/textattr.src +++ b/cui/source/tabpages/textattr.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textattr.src,v $ - * $Revision: 1.33 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tparea.cxx b/cui/source/tabpages/tparea.cxx index ddeb02a20c1d..72f5e697c958 100644 --- a/cui/source/tabpages/tparea.cxx +++ b/cui/source/tabpages/tparea.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tparea.cxx,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx index f34afb49a823..ff98aaa6b16e 100644 --- a/cui/source/tabpages/tpbitmap.cxx +++ b/cui/source/tabpages/tpbitmap.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tpbitmap.cxx,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tpcolor.cxx b/cui/source/tabpages/tpcolor.cxx index 616dba0169e8..5152bd0e9478 100644 --- a/cui/source/tabpages/tpcolor.cxx +++ b/cui/source/tabpages/tpcolor.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tpcolor.cxx,v $ - * $Revision: 1.33 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tpgradnt.cxx b/cui/source/tabpages/tpgradnt.cxx index 01381602b0a9..1de256416b9d 100644 --- a/cui/source/tabpages/tpgradnt.cxx +++ b/cui/source/tabpages/tpgradnt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tpgradnt.cxx,v $ - * $Revision: 1.26 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tphatch.cxx b/cui/source/tabpages/tphatch.cxx index 006099f1fde6..8be39c35a222 100644 --- a/cui/source/tabpages/tphatch.cxx +++ b/cui/source/tabpages/tphatch.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tphatch.cxx,v $ - * $Revision: 1.29 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tpline.cxx b/cui/source/tabpages/tpline.cxx index 09a5daadfe1d..9d941135533e 100644 --- a/cui/source/tabpages/tpline.cxx +++ b/cui/source/tabpages/tpline.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tpline.cxx,v $ - * $Revision: 1.45 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tplnedef.cxx b/cui/source/tabpages/tplnedef.cxx index f3d92be73278..10d4fcf3ef7c 100644 --- a/cui/source/tabpages/tplnedef.cxx +++ b/cui/source/tabpages/tplnedef.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tplnedef.cxx,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tplneend.cxx b/cui/source/tabpages/tplneend.cxx index 9dd722d0d7ed..4949ce4da6fa 100644 --- a/cui/source/tabpages/tplneend.cxx +++ b/cui/source/tabpages/tplneend.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tplneend.cxx,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/tpshadow.cxx b/cui/source/tabpages/tpshadow.cxx index 48d6d627230d..31fb11141368 100644 --- a/cui/source/tabpages/tpshadow.cxx +++ b/cui/source/tabpages/tpshadow.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tpshadow.cxx,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/transfrm.cxx b/cui/source/tabpages/transfrm.cxx index 57e82898a947..3cc02662895e 100644 --- a/cui/source/tabpages/transfrm.cxx +++ b/cui/source/tabpages/transfrm.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: transfrm.cxx,v $ - * $Revision: 1.33 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/transfrm.hrc b/cui/source/tabpages/transfrm.hrc index a49a8c3f3985..2d57b7208f68 100644 --- a/cui/source/tabpages/transfrm.hrc +++ b/cui/source/tabpages/transfrm.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: transfrm.hrc,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/source/tabpages/transfrm.src b/cui/source/tabpages/transfrm.src index 8b7e754dda81..761fdcfb2349 100644 --- a/cui/source/tabpages/transfrm.src +++ b/cui/source/tabpages/transfrm.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: transfrm.src,v $ - * $Revision: 1.57 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/util/hidother.src b/cui/util/hidother.src index 313161f7c3cd..4bb9dedb38fa 100644 --- a/cui/util/hidother.src +++ b/cui/util/hidother.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hidother.src,v $ - * $Revision: 1.45 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/util/makefile.mk b/cui/util/makefile.mk index bedd1cee6407..fe7efca0747d 100644 --- a/cui/util/makefile.mk +++ b/cui/util/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.61 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/cui/util/makefile.pmk b/cui/util/makefile.pmk index b2aae3329111..e0fffdb1fdeb 100644 --- a/cui/util/makefile.pmk +++ b/cui/util/makefile.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.pmk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/docholder.cxx b/embedserv/source/embed/docholder.cxx index 2e214a9c8a79..96de760c037e 100644 --- a/embedserv/source/embed/docholder.cxx +++ b/embedserv/source/embed/docholder.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: docholder.cxx,v $ - * $Revision: 1.31.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/ed_idataobj.cxx b/embedserv/source/embed/ed_idataobj.cxx index c50e05400208..22dbfca88ee4 100755 --- a/embedserv/source/embed/ed_idataobj.cxx +++ b/embedserv/source/embed/ed_idataobj.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ed_idataobj.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/ed_iinplace.cxx b/embedserv/source/embed/ed_iinplace.cxx index 50af60af2202..0270484223c5 100644 --- a/embedserv/source/embed/ed_iinplace.cxx +++ b/embedserv/source/embed/ed_iinplace.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ed_iinplace.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/ed_ioleobject.cxx b/embedserv/source/embed/ed_ioleobject.cxx index 07d172ef7173..93270ef3b424 100755 --- a/embedserv/source/embed/ed_ioleobject.cxx +++ b/embedserv/source/embed/ed_ioleobject.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ed_ioleobject.cxx,v $ - * $Revision: 1.20.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/ed_ipersiststr.cxx b/embedserv/source/embed/ed_ipersiststr.cxx index d0df506cf902..c36247eef46b 100755 --- a/embedserv/source/embed/ed_ipersiststr.cxx +++ b/embedserv/source/embed/ed_ipersiststr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ed_ipersiststr.cxx,v $ - * $Revision: 1.27.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/esdll.cxx b/embedserv/source/embed/esdll.cxx index 369dda86bd74..a36c88fdfed2 100755 --- a/embedserv/source/embed/esdll.cxx +++ b/embedserv/source/embed/esdll.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: esdll.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/guid.cxx b/embedserv/source/embed/guid.cxx index 340c0681f799..115323913376 100755 --- a/embedserv/source/embed/guid.cxx +++ b/embedserv/source/embed/guid.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: guid.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/iipaobj.cxx b/embedserv/source/embed/iipaobj.cxx index 45fcfda78549..f3546ee6e41a 100644 --- a/embedserv/source/embed/iipaobj.cxx +++ b/embedserv/source/embed/iipaobj.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iipaobj.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/intercept.cxx b/embedserv/source/embed/intercept.cxx index 9ab5edac01bd..fc33bfc9f371 100644 --- a/embedserv/source/embed/intercept.cxx +++ b/embedserv/source/embed/intercept.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: intercept.cxx,v $ - * $Revision: 1.14.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/makefile.mk b/embedserv/source/embed/makefile.mk index 69cae028349f..9156b6a8e88a 100755 --- a/embedserv/source/embed/makefile.mk +++ b/embedserv/source/embed/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/register.cxx b/embedserv/source/embed/register.cxx index eed34e984821..320579f502fc 100755 --- a/embedserv/source/embed/register.cxx +++ b/embedserv/source/embed/register.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: register.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/servprov.cxx b/embedserv/source/embed/servprov.cxx index 87cd69d7d9b9..ded0c4618ce4 100755 --- a/embedserv/source/embed/servprov.cxx +++ b/embedserv/source/embed/servprov.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servprov.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/syswinwrapper.cxx b/embedserv/source/embed/syswinwrapper.cxx index 613f4c73bfae..1a4303042953 100644 --- a/embedserv/source/embed/syswinwrapper.cxx +++ b/embedserv/source/embed/syswinwrapper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: syswinwrapper.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/tracker.cxx b/embedserv/source/embed/tracker.cxx index 0c1c1d67982d..b3047ea13a2d 100644 --- a/embedserv/source/embed/tracker.cxx +++ b/embedserv/source/embed/tracker.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tracker.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/embed/xwin.cxx b/embedserv/source/embed/xwin.cxx index 37306e69fc3e..0eeb0124f0ea 100644 --- a/embedserv/source/embed/xwin.cxx +++ b/embedserv/source/embed/xwin.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xwin.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/common.h b/embedserv/source/inc/common.h index a2d5707b8e3f..ddbf8e832591 100755 --- a/embedserv/source/inc/common.h +++ b/embedserv/source/inc/common.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: common.h,v $ - * $Revision: 1.6.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/docholder.hxx b/embedserv/source/inc/docholder.hxx index 83aad107502a..6f4bb5d619fd 100644 --- a/embedserv/source/inc/docholder.hxx +++ b/embedserv/source/inc/docholder.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: docholder.hxx,v $ - * $Revision: 1.21.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/embeddoc.hxx b/embedserv/source/inc/embeddoc.hxx index b6998aef8e1e..ec3efe19d8c0 100755 --- a/embedserv/source/inc/embeddoc.hxx +++ b/embedserv/source/inc/embeddoc.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: embeddoc.hxx,v $ - * $Revision: 1.18.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/embeddocaccess.hxx b/embedserv/source/inc/embeddocaccess.hxx index 7794af29b585..8cc9388f6d18 100644 --- a/embedserv/source/inc/embeddocaccess.hxx +++ b/embedserv/source/inc/embeddocaccess.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: embeddocaccess.hxx,v $ - * $Revision: 1.5.10.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/embservconst.h b/embedserv/source/inc/embservconst.h index 3328e31e318f..df4764c5010f 100644 --- a/embedserv/source/inc/embservconst.h +++ b/embedserv/source/inc/embservconst.h @@ -1,35 +1,27 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: embservconst.h,v $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * $Revision: 1.1.8.2 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $ + * This file is part of OpenOffice.org. * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/embedserv/source/inc/iipaobj.hxx b/embedserv/source/inc/iipaobj.hxx index 097b5621f2ef..9d423dc880c8 100644 --- a/embedserv/source/inc/iipaobj.hxx +++ b/embedserv/source/inc/iipaobj.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iipaobj.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/intercept.hxx b/embedserv/source/inc/intercept.hxx index 164ce2009139..e02662e1797c 100644 --- a/embedserv/source/inc/intercept.hxx +++ b/embedserv/source/inc/intercept.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: intercept.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/servprov.hxx b/embedserv/source/inc/servprov.hxx index b978bf9f999e..60906fa25c32 100755 --- a/embedserv/source/inc/servprov.hxx +++ b/embedserv/source/inc/servprov.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servprov.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/syswinwrapper.hxx b/embedserv/source/inc/syswinwrapper.hxx index db6e2f6721ae..43fdde6f3cf0 100644 --- a/embedserv/source/inc/syswinwrapper.hxx +++ b/embedserv/source/inc/syswinwrapper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: syswinwrapper.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inc/xwin.hxx b/embedserv/source/inc/xwin.hxx index 6370579eca87..de043dea28d2 100644 --- a/embedserv/source/inc/xwin.hxx +++ b/embedserv/source/inc/xwin.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xwin.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/embedserv/source/inprocserv/advisesink.cxx b/embedserv/source/inprocserv/advisesink.cxx index ea61f866c372..e89822646be8 100644 --- a/embedserv/source/inprocserv/advisesink.cxx +++ b/embedserv/source/inprocserv/advisesink.cxx @@ -1,35 +1,27 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: advisesink.cxx,v $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * $Revision: 1.1.8.2 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $ + * This file is part of OpenOffice.org. * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/embedserv/source/inprocserv/advisesink.hxx b/embedserv/source/inprocserv/advisesink.hxx index c7ef75d0c028..14fdf4617066 100644 --- a/embedserv/source/inprocserv/advisesink.hxx +++ b/embedserv/source/inprocserv/advisesink.hxx @@ -1,35 +1,27 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: advisesink.hxx,v $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * $Revision: 1.1.8.2 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $ + * This file is part of OpenOffice.org. * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/embedserv/source/inprocserv/dllentry.cxx b/embedserv/source/inprocserv/dllentry.cxx index e8d327bc9e84..358d32381444 100644 --- a/embedserv/source/inprocserv/dllentry.cxx +++ b/embedserv/source/inprocserv/dllentry.cxx @@ -1,35 +1,27 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: dllentry.cxx,v $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * $Revision: 1.1.8.2 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $ + * This file is part of OpenOffice.org. * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/embedserv/source/inprocserv/inprocembobj.cxx b/embedserv/source/inprocserv/inprocembobj.cxx index 474f707d86f1..e7f55c63a347 100644 --- a/embedserv/source/inprocserv/inprocembobj.cxx +++ b/embedserv/source/inprocserv/inprocembobj.cxx @@ -1,35 +1,27 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: inprocembobj.cxx,v $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * $Revision: 1.1.8.2 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $ + * This file is part of OpenOffice.org. * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/embedserv/source/inprocserv/inprocembobj.h b/embedserv/source/inprocserv/inprocembobj.h index 97e789dfbcd4..0b2fa030c851 100644 --- a/embedserv/source/inprocserv/inprocembobj.h +++ b/embedserv/source/inprocserv/inprocembobj.h @@ -1,35 +1,27 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: inprocembobj.h,v $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * $Revision: 1.1.8.2 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $ + * This file is part of OpenOffice.org. * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/embedserv/source/inprocserv/makefile.mk b/embedserv/source/inprocserv/makefile.mk index 1928b1ec42ac..024e0f9d4ee3 100644 --- a/embedserv/source/inprocserv/makefile.mk +++ b/embedserv/source/inprocserv/makefile.mk @@ -1,35 +1,27 @@ #************************************************************************* # -# OpenOffice.org - a multi-platform office productivity suite +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# $RCSfile: makefile.mk,v $ +# OpenOffice.org - a multi-platform office productivity suite # -# $Revision: 1.1.8.2 $ +# This file is part of OpenOffice.org. # -# last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # -# The Contents of this file are made available subject to -# the terms of GNU Lesser General Public License Version 2.1. +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2005 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/embedserv/source/inprocserv/smartpointer.hxx b/embedserv/source/inprocserv/smartpointer.hxx index ff40cedc30bf..2b72d11287fa 100644 --- a/embedserv/source/inprocserv/smartpointer.hxx +++ b/embedserv/source/inprocserv/smartpointer.hxx @@ -1,35 +1,27 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: smartpointer.hxx,v $ + * Copyright 2000, 2010 Oracle and/or its affiliates. * - * $Revision: 1.1.8.2 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: mav $ $Date: 2008/10/30 11:59:06 $ + * This file is part of OpenOffice.org. * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. * ************************************************************************/ diff --git a/embedserv/util/makefile.mk b/embedserv/util/makefile.mk index 192ada413a37..45e3e4698804 100755 --- a/embedserv/util/makefile.mk +++ b/embedserv/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.17 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/inc/abpilot.hrc b/extensions/inc/abpilot.hrc index bac5dc33d5d1..80dc3567c472 100644 --- a/extensions/inc/abpilot.hrc +++ b/extensions/inc/abpilot.hrc @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef EXTENSIONS_ABPILOT_HRC diff --git a/extensions/inc/appsettings.hxx b/extensions/inc/appsettings.hxx index 19f2fdf917a3..152843af51ca 100644 --- a/extensions/inc/appsettings.hxx +++ b/extensions/inc/appsettings.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: appsettings.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/inc/bibliography.hrc b/extensions/inc/bibliography.hrc index 7275598bf377..f66f63319c79 100644 --- a/extensions/inc/bibliography.hrc +++ b/extensions/inc/bibliography.hrc @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef EXTENSIONS_BIBLIOGRAPHY_HRC diff --git a/extensions/inc/dbpilots.hrc b/extensions/inc/dbpilots.hrc index c111a99ddb46..051ab4a049c6 100644 --- a/extensions/inc/dbpilots.hrc +++ b/extensions/inc/dbpilots.hrc @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef EXTENSIONS_DBPILOT_HRC diff --git a/extensions/inc/extensio.hrc b/extensions/inc/extensio.hrc index 532e9b664c9b..bd643892d42f 100644 --- a/extensions/inc/extensio.hrc +++ b/extensions/inc/extensio.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: extensio.hrc,v $ - * $Revision: 1.34 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/inc/makefile.mk b/extensions/inc/makefile.mk index 619e350ffbf7..9ea45ec08e14 100644 --- a/extensions/inc/makefile.mk +++ b/extensions/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/inc/pch/precompiled_extensions.cxx b/extensions/inc/pch/precompiled_extensions.cxx index a7d2ab8164f2..07dbfa821f5e 100644 --- a/extensions/inc/pch/precompiled_extensions.cxx +++ b/extensions/inc/pch/precompiled_extensions.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_extensions.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/inc/pch/precompiled_extensions.hxx b/extensions/inc/pch/precompiled_extensions.hxx index dc490b49c28e..676418c6729f 100644 --- a/extensions/inc/pch/precompiled_extensions.hxx +++ b/extensions/inc/pch/precompiled_extensions.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_extensions.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/inc/propctrlr.hrc b/extensions/inc/propctrlr.hrc index cd27f844434f..f42e7c9653ec 100644 --- a/extensions/inc/propctrlr.hrc +++ b/extensions/inc/propctrlr.hrc @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef EXTENSIONS_PROPCTRLR_HRC diff --git a/extensions/inc/ucbhelper/ext_content.hxx b/extensions/inc/ucbhelper/ext_content.hxx index 5602f7eeac6e..06075ea4598f 100644 --- a/extensions/inc/ucbhelper/ext_content.hxx +++ b/extensions/inc/ucbhelper/ext_content.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ext_content.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/inc/update.hrc b/extensions/inc/update.hrc index 806f99686bee..c71ce0baf3c3 100644 --- a/extensions/inc/update.hrc +++ b/extensions/inc/update.hrc @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef EXTENSIONS_UPDATE_HRC diff --git a/extensions/qa/complex/extensions/OfficeResourceLoader.java b/extensions/qa/complex/extensions/OfficeResourceLoader.java index 08b11c40b75d..d0b2f1db2db8 100644 --- a/extensions/qa/complex/extensions/OfficeResourceLoader.java +++ b/extensions/qa/complex/extensions/OfficeResourceLoader.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OfficeResourceLoader.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/complex/extensions/makefile.mk b/extensions/qa/complex/extensions/makefile.mk index ce5bd16412ab..96c2afb40bf3 100644 --- a/extensions/qa/complex/extensions/makefile.mk +++ b/extensions/qa/complex/extensions/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.8.76.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/complex/extensions/orl_de.src b/extensions/qa/complex/extensions/orl_de.src index b012232fe961..c5a91afe6b2e 100644 --- a/extensions/qa/complex/extensions/orl_de.src +++ b/extensions/qa/complex/extensions/orl_de.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: orl_de.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/complex/extensions/orl_en-US.src b/extensions/qa/complex/extensions/orl_en-US.src index 17f94a5bc65a..77518f4d5e26 100644 --- a/extensions/qa/complex/extensions/orl_en-US.src +++ b/extensions/qa/complex/extensions/orl_en-US.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: orl_en-US.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/integration/extensions/ComponentFactory.java b/extensions/qa/integration/extensions/ComponentFactory.java index 0dd3d7339605..b1824c1f5577 100644 --- a/extensions/qa/integration/extensions/ComponentFactory.java +++ b/extensions/qa/integration/extensions/ComponentFactory.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ComponentFactory.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/integration/extensions/ConsoleWait.java b/extensions/qa/integration/extensions/ConsoleWait.java index 8ec9f6d0854c..4c92b9c57554 100644 --- a/extensions/qa/integration/extensions/ConsoleWait.java +++ b/extensions/qa/integration/extensions/ConsoleWait.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ConsoleWait.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/integration/extensions/Frame.java b/extensions/qa/integration/extensions/Frame.java index ba2e1ad466ad..4b61d60d05e5 100644 --- a/extensions/qa/integration/extensions/Frame.java +++ b/extensions/qa/integration/extensions/Frame.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Frame.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/integration/extensions/MethodHandler.java b/extensions/qa/integration/extensions/MethodHandler.java index 8a3bc812748b..ca14eae0723d 100644 --- a/extensions/qa/integration/extensions/MethodHandler.java +++ b/extensions/qa/integration/extensions/MethodHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: MethodHandler.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/integration/extensions/ObjectInspector.java b/extensions/qa/integration/extensions/ObjectInspector.java index 16e9c42aebc5..0a436a1ae650 100644 --- a/extensions/qa/integration/extensions/ObjectInspector.java +++ b/extensions/qa/integration/extensions/ObjectInspector.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ObjectInspector.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/integration/extensions/ServicesHandler.java b/extensions/qa/integration/extensions/ServicesHandler.java index 5878ca47559c..33bb69961028 100644 --- a/extensions/qa/integration/extensions/ServicesHandler.java +++ b/extensions/qa/integration/extensions/ServicesHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ServicesHandler.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/integration/extensions/TestSkeleton.java b/extensions/qa/integration/extensions/TestSkeleton.java index 75075b02d688..dad1cfc375b2 100644 --- a/extensions/qa/integration/extensions/TestSkeleton.java +++ b/extensions/qa/integration/extensions/TestSkeleton.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TestSkeleton.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/integration/extensions/makefile.mk b/extensions/qa/integration/extensions/makefile.mk index 88ae8f775c33..98e46fde1af9 100644 --- a/extensions/qa/integration/extensions/makefile.mk +++ b/extensions/qa/integration/extensions/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7.76.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/qa/unoapi/makefile.mk b/extensions/qa/unoapi/makefile.mk index a0565e84766a..fef18c6d2ded 100644 --- a/extensions/qa/unoapi/makefile.mk +++ b/extensions/qa/unoapi/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abpfinalpage.cxx b/extensions/source/abpilot/abpfinalpage.cxx index a12003e5d1a9..d633b597878d 100644 --- a/extensions/source/abpilot/abpfinalpage.cxx +++ b/extensions/source/abpilot/abpfinalpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abpfinalpage.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abpfinalpage.hxx b/extensions/source/abpilot/abpfinalpage.hxx index 6a9c5387da77..415bc31f2bc1 100644 --- a/extensions/source/abpilot/abpfinalpage.hxx +++ b/extensions/source/abpilot/abpfinalpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abpfinalpage.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abpresid.hrc b/extensions/source/abpilot/abpresid.hrc index 6b7a7d467d2b..1afc6e88a2f0 100644 --- a/extensions/source/abpilot/abpresid.hrc +++ b/extensions/source/abpilot/abpresid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abpresid.hrc,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abpservices.cxx b/extensions/source/abpilot/abpservices.cxx index ac7222fcb1d1..8997ce335676 100644 --- a/extensions/source/abpilot/abpservices.cxx +++ b/extensions/source/abpilot/abpservices.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abpservices.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abptypes.hxx b/extensions/source/abpilot/abptypes.hxx index db591624be77..b586f045b204 100644 --- a/extensions/source/abpilot/abptypes.hxx +++ b/extensions/source/abpilot/abptypes.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abptypes.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abspage.cxx b/extensions/source/abpilot/abspage.cxx index ed41f6c004ae..8d8fe2cd0b20 100644 --- a/extensions/source/abpilot/abspage.cxx +++ b/extensions/source/abpilot/abspage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abspage.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abspage.hxx b/extensions/source/abpilot/abspage.hxx index 83353793c1ec..7dcba3d588c1 100644 --- a/extensions/source/abpilot/abspage.hxx +++ b/extensions/source/abpilot/abspage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abspage.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abspilot.cxx b/extensions/source/abpilot/abspilot.cxx index 50e9fb0326ae..b315893b6447 100644 --- a/extensions/source/abpilot/abspilot.cxx +++ b/extensions/source/abpilot/abspilot.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abspilot.cxx,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abspilot.hxx b/extensions/source/abpilot/abspilot.hxx index 7429f10d91cc..b0f3b900871b 100644 --- a/extensions/source/abpilot/abspilot.hxx +++ b/extensions/source/abpilot/abspilot.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abspilot.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/abspilot.src b/extensions/source/abpilot/abspilot.src index 3bfa6ea844d6..be177b5f6e19 100644 --- a/extensions/source/abpilot/abspilot.src +++ b/extensions/source/abpilot/abspilot.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: abspilot.src,v $ - * $Revision: 1.61 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/addresssettings.hxx b/extensions/source/abpilot/addresssettings.hxx index 7059db95f97a..d35bbc61c984 100644 --- a/extensions/source/abpilot/addresssettings.hxx +++ b/extensions/source/abpilot/addresssettings.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: addresssettings.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/admininvokationimpl.cxx b/extensions/source/abpilot/admininvokationimpl.cxx index 712df3cfbe0b..a5cd96190bca 100644 --- a/extensions/source/abpilot/admininvokationimpl.cxx +++ b/extensions/source/abpilot/admininvokationimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: admininvokationimpl.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/admininvokationimpl.hxx b/extensions/source/abpilot/admininvokationimpl.hxx index 817833a6d428..a77f2a7e144c 100644 --- a/extensions/source/abpilot/admininvokationimpl.hxx +++ b/extensions/source/abpilot/admininvokationimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: admininvokationimpl.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/admininvokationpage.cxx b/extensions/source/abpilot/admininvokationpage.cxx index cf35cef1e932..2e9d11430be2 100644 --- a/extensions/source/abpilot/admininvokationpage.cxx +++ b/extensions/source/abpilot/admininvokationpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: admininvokationpage.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/admininvokationpage.hxx b/extensions/source/abpilot/admininvokationpage.hxx index 46331973796b..37f35396c212 100644 --- a/extensions/source/abpilot/admininvokationpage.hxx +++ b/extensions/source/abpilot/admininvokationpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: admininvokationpage.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/datasourcehandling.cxx b/extensions/source/abpilot/datasourcehandling.cxx index 269c84adf163..b6d5298b7712 100644 --- a/extensions/source/abpilot/datasourcehandling.cxx +++ b/extensions/source/abpilot/datasourcehandling.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datasourcehandling.cxx,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/datasourcehandling.hxx b/extensions/source/abpilot/datasourcehandling.hxx index 074530c86e59..bcd4e64fd885 100644 --- a/extensions/source/abpilot/datasourcehandling.hxx +++ b/extensions/source/abpilot/datasourcehandling.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datasourcehandling.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/fieldmappingimpl.cxx b/extensions/source/abpilot/fieldmappingimpl.cxx index fd01ffed0fef..93b2a55ea8bb 100644 --- a/extensions/source/abpilot/fieldmappingimpl.cxx +++ b/extensions/source/abpilot/fieldmappingimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fieldmappingimpl.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/fieldmappingimpl.hxx b/extensions/source/abpilot/fieldmappingimpl.hxx index 370c23089a8b..49029b534acf 100644 --- a/extensions/source/abpilot/fieldmappingimpl.hxx +++ b/extensions/source/abpilot/fieldmappingimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fieldmappingimpl.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/fieldmappingpage.cxx b/extensions/source/abpilot/fieldmappingpage.cxx index 04ff17995e62..aaf2167d2dc2 100644 --- a/extensions/source/abpilot/fieldmappingpage.cxx +++ b/extensions/source/abpilot/fieldmappingpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fieldmappingpage.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/fieldmappingpage.hxx b/extensions/source/abpilot/fieldmappingpage.hxx index 0abf3039f1f3..0f1fe485ddc8 100644 --- a/extensions/source/abpilot/fieldmappingpage.hxx +++ b/extensions/source/abpilot/fieldmappingpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fieldmappingpage.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/makefile.mk b/extensions/source/abpilot/makefile.mk index 9ecf96b89246..c5b25fc733f7 100644 --- a/extensions/source/abpilot/makefile.mk +++ b/extensions/source/abpilot/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.14 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/moduleabp.cxx b/extensions/source/abpilot/moduleabp.cxx index 9dc289f57288..9f6d3d2b9e30 100644 --- a/extensions/source/abpilot/moduleabp.cxx +++ b/extensions/source/abpilot/moduleabp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moduleabp.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/tableselectionpage.cxx b/extensions/source/abpilot/tableselectionpage.cxx index b7a7f39e2056..0cefba92ab5a 100644 --- a/extensions/source/abpilot/tableselectionpage.cxx +++ b/extensions/source/abpilot/tableselectionpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tableselectionpage.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/tableselectionpage.hxx b/extensions/source/abpilot/tableselectionpage.hxx index 5477ec35a9ff..36bc792fd0e7 100644 --- a/extensions/source/abpilot/tableselectionpage.hxx +++ b/extensions/source/abpilot/tableselectionpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: tableselectionpage.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/typeselectionpage.cxx b/extensions/source/abpilot/typeselectionpage.cxx index c34aceb418a3..6188b7d21628 100644 --- a/extensions/source/abpilot/typeselectionpage.cxx +++ b/extensions/source/abpilot/typeselectionpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: typeselectionpage.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/typeselectionpage.hxx b/extensions/source/abpilot/typeselectionpage.hxx index 0d647f696a39..18c8d6b9697d 100644 --- a/extensions/source/abpilot/typeselectionpage.hxx +++ b/extensions/source/abpilot/typeselectionpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: typeselectionpage.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/unodialogabp.cxx b/extensions/source/abpilot/unodialogabp.cxx index 69c2c5e107d5..46534b56d61e 100644 --- a/extensions/source/abpilot/unodialogabp.cxx +++ b/extensions/source/abpilot/unodialogabp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unodialogabp.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/abpilot/unodialogabp.hxx b/extensions/source/abpilot/unodialogabp.hxx index 40912d502aee..1953f45f7cd9 100644 --- a/extensions/source/abpilot/unodialogabp.hxx +++ b/extensions/source/abpilot/unodialogabp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unodialogabp.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/activex/main/makefile.mk b/extensions/source/activex/main/makefile.mk index 6ecd7f909484..53a54473ff49 100644 --- a/extensions/source/activex/main/makefile.mk +++ b/extensions/source/activex/main/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.23 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/activex/msidl/makefile.mk b/extensions/source/activex/msidl/makefile.mk index 45cd2536efaa..66c4a2a7cb3a 100644 --- a/extensions/source/activex/msidl/makefile.mk +++ b/extensions/source/activex/msidl/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bib.hrc b/extensions/source/bibliography/bib.hrc index c30bd0846875..319c58d509ad 100644 --- a/extensions/source/bibliography/bib.hrc +++ b/extensions/source/bibliography/bib.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bib.hrc,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bib.src b/extensions/source/bibliography/bib.src index f5537eef5baf..1ad6a7c83d17 100644 --- a/extensions/source/bibliography/bib.src +++ b/extensions/source/bibliography/bib.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bib.src,v $ - * $Revision: 1.32 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibbeam.cxx b/extensions/source/bibliography/bibbeam.cxx index 464a45ca3e76..7020f9eec2ba 100644 --- a/extensions/source/bibliography/bibbeam.cxx +++ b/extensions/source/bibliography/bibbeam.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibbeam.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibbeam.hxx b/extensions/source/bibliography/bibbeam.hxx index cf3b2ec7f917..9e5ff677ee6f 100644 --- a/extensions/source/bibliography/bibbeam.hxx +++ b/extensions/source/bibliography/bibbeam.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibbeam.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibconfig.cxx b/extensions/source/bibliography/bibconfig.cxx index 218d15455cbd..0515e4227b86 100644 --- a/extensions/source/bibliography/bibconfig.cxx +++ b/extensions/source/bibliography/bibconfig.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibconfig.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibconfig.hxx b/extensions/source/bibliography/bibconfig.hxx index 7237b0a12695..f5e18734ae0a 100644 --- a/extensions/source/bibliography/bibconfig.hxx +++ b/extensions/source/bibliography/bibconfig.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibconfig.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibcont.cxx b/extensions/source/bibliography/bibcont.cxx index 2aa533c0fbea..2666a1a69199 100644 --- a/extensions/source/bibliography/bibcont.cxx +++ b/extensions/source/bibliography/bibcont.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibcont.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibcont.hxx b/extensions/source/bibliography/bibcont.hxx index d54c2dd23ae5..12b1bf1748e8 100644 --- a/extensions/source/bibliography/bibcont.hxx +++ b/extensions/source/bibliography/bibcont.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibcont.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibload.cxx b/extensions/source/bibliography/bibload.cxx index 03cdb8a80201..91356a0d1074 100644 --- a/extensions/source/bibliography/bibload.cxx +++ b/extensions/source/bibliography/bibload.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibload.cxx,v $ - * $Revision: 1.25 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibmod.cxx b/extensions/source/bibliography/bibmod.cxx index 3b9d7e53b8d7..97ff0ce9cc86 100644 --- a/extensions/source/bibliography/bibmod.cxx +++ b/extensions/source/bibliography/bibmod.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibmod.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibmod.hxx b/extensions/source/bibliography/bibmod.hxx index 034956c7ccb8..3e244f995607 100644 --- a/extensions/source/bibliography/bibmod.hxx +++ b/extensions/source/bibliography/bibmod.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibmod.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibprop.hrc b/extensions/source/bibliography/bibprop.hrc index c2baf6d8d14e..42767a2c01b1 100644 --- a/extensions/source/bibliography/bibprop.hrc +++ b/extensions/source/bibliography/bibprop.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibprop.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibresid.hxx b/extensions/source/bibliography/bibresid.hxx index 6b0378c9df12..5fc3e06abb59 100644 --- a/extensions/source/bibliography/bibresid.hxx +++ b/extensions/source/bibliography/bibresid.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibresid.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibshortcuthandler.hxx b/extensions/source/bibliography/bibshortcuthandler.hxx index 485329acc8e7..3e9d152d5583 100644 --- a/extensions/source/bibliography/bibshortcuthandler.hxx +++ b/extensions/source/bibliography/bibshortcuthandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibshortcuthandler.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibtools.hxx b/extensions/source/bibliography/bibtools.hxx index 6c02a9a95ce5..090fa280ad4d 100644 --- a/extensions/source/bibliography/bibtools.hxx +++ b/extensions/source/bibliography/bibtools.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibtools.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibview.cxx b/extensions/source/bibliography/bibview.cxx index 2dbae5985101..fee2610898f6 100644 --- a/extensions/source/bibliography/bibview.cxx +++ b/extensions/source/bibliography/bibview.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibview.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/bibview.hxx b/extensions/source/bibliography/bibview.hxx index feb8eceb0e35..ec165f9a7930 100644 --- a/extensions/source/bibliography/bibview.hxx +++ b/extensions/source/bibliography/bibview.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: bibview.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/datman.cxx b/extensions/source/bibliography/datman.cxx index 6f8395eae027..92a59665d1b5 100644 --- a/extensions/source/bibliography/datman.cxx +++ b/extensions/source/bibliography/datman.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datman.cxx,v $ - * $Revision: 1.47 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/datman.hrc b/extensions/source/bibliography/datman.hrc index 23b56bfb25fe..97f72cf98431 100644 --- a/extensions/source/bibliography/datman.hrc +++ b/extensions/source/bibliography/datman.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datman.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/datman.hxx b/extensions/source/bibliography/datman.hxx index 17608142b6ab..8360acfb62a7 100644 --- a/extensions/source/bibliography/datman.hxx +++ b/extensions/source/bibliography/datman.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datman.hxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/datman.src b/extensions/source/bibliography/datman.src index c5a8af06d77f..0a0643b1b117 100644 --- a/extensions/source/bibliography/datman.src +++ b/extensions/source/bibliography/datman.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datman.src,v $ - * $Revision: 1.51 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/formcontrolcontainer.cxx b/extensions/source/bibliography/formcontrolcontainer.cxx index 91ba8fc49008..80ee3d2a4b08 100644 --- a/extensions/source/bibliography/formcontrolcontainer.cxx +++ b/extensions/source/bibliography/formcontrolcontainer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formcontrolcontainer.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/formcontrolcontainer.hxx b/extensions/source/bibliography/formcontrolcontainer.hxx index 1469e062e858..f62ac2978574 100644 --- a/extensions/source/bibliography/formcontrolcontainer.hxx +++ b/extensions/source/bibliography/formcontrolcontainer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formcontrolcontainer.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/framectr.cxx b/extensions/source/bibliography/framectr.cxx index 50bc4821f0ac..4489fad70161 100644 --- a/extensions/source/bibliography/framectr.cxx +++ b/extensions/source/bibliography/framectr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: framectr.cxx,v $ - * $Revision: 1.36 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/framectr.hxx b/extensions/source/bibliography/framectr.hxx index b3a7469b8dae..feadb6751cb6 100644 --- a/extensions/source/bibliography/framectr.hxx +++ b/extensions/source/bibliography/framectr.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: framectr.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/general.cxx b/extensions/source/bibliography/general.cxx index eb6e941c313b..33cff121021b 100644 --- a/extensions/source/bibliography/general.cxx +++ b/extensions/source/bibliography/general.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: general.cxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/general.hxx b/extensions/source/bibliography/general.hxx index 78068fd5327e..fdcb97c9e177 100644 --- a/extensions/source/bibliography/general.hxx +++ b/extensions/source/bibliography/general.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: general.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/hidother.src b/extensions/source/bibliography/hidother.src index 82111c538094..7517961645e3 100644 --- a/extensions/source/bibliography/hidother.src +++ b/extensions/source/bibliography/hidother.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hidother.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/loadlisteneradapter.cxx b/extensions/source/bibliography/loadlisteneradapter.cxx index 71ee2d45f264..c11eb3bed9a4 100644 --- a/extensions/source/bibliography/loadlisteneradapter.cxx +++ b/extensions/source/bibliography/loadlisteneradapter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: loadlisteneradapter.cxx,v $ - * $Revision: 1.7.68.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/loadlisteneradapter.hxx b/extensions/source/bibliography/loadlisteneradapter.hxx index ed3faa01b2ce..f0a0cf1e5a3e 100644 --- a/extensions/source/bibliography/loadlisteneradapter.hxx +++ b/extensions/source/bibliography/loadlisteneradapter.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: loadlisteneradapter.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/makefile.mk b/extensions/source/bibliography/makefile.mk index a1ea127b74da..efc1fbe222f3 100644 --- a/extensions/source/bibliography/makefile.mk +++ b/extensions/source/bibliography/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.23 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/menu.src b/extensions/source/bibliography/menu.src index 1db38bcb647b..0ccc8a1c7f41 100644 --- a/extensions/source/bibliography/menu.src +++ b/extensions/source/bibliography/menu.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: menu.src,v $ - * $Revision: 1.46 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/sections.hrc b/extensions/source/bibliography/sections.hrc index 10251d31b1c7..5d146e04ce53 100644 --- a/extensions/source/bibliography/sections.hrc +++ b/extensions/source/bibliography/sections.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sections.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/sections.src b/extensions/source/bibliography/sections.src index ea9d5f3412e3..19501bd0e62a 100644 --- a/extensions/source/bibliography/sections.src +++ b/extensions/source/bibliography/sections.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sections.src,v $ - * $Revision: 1.39 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/toolbar.cxx b/extensions/source/bibliography/toolbar.cxx index d00eecfa1350..2af70ffcbffd 100644 --- a/extensions/source/bibliography/toolbar.cxx +++ b/extensions/source/bibliography/toolbar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: toolbar.cxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/toolbar.hrc b/extensions/source/bibliography/toolbar.hrc index bc622acb0cf2..05c81921e44d 100644 --- a/extensions/source/bibliography/toolbar.hrc +++ b/extensions/source/bibliography/toolbar.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: toolbar.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/toolbar.hxx b/extensions/source/bibliography/toolbar.hxx index f3a322f038e8..3bb71676c007 100644 --- a/extensions/source/bibliography/toolbar.hxx +++ b/extensions/source/bibliography/toolbar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: toolbar.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/bibliography/toolbar.src b/extensions/source/bibliography/toolbar.src index a291a11e25bd..b8a604587bc4 100644 --- a/extensions/source/bibliography/toolbar.src +++ b/extensions/source/bibliography/toolbar.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: toolbar.src,v $ - * $Revision: 1.37 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/componentdef.cxx b/extensions/source/config/ldap/componentdef.cxx index 7759a96d4d9a..986866939466 100644 --- a/extensions/source/config/ldap/componentdef.cxx +++ b/extensions/source/config/ldap/componentdef.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: componentdef.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/ldapaccess.cxx b/extensions/source/config/ldap/ldapaccess.cxx index ee7505c8a518..8e049df2d660 100644 --- a/extensions/source/config/ldap/ldapaccess.cxx +++ b/extensions/source/config/ldap/ldapaccess.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ldapaccess.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/ldapaccess.hxx b/extensions/source/config/ldap/ldapaccess.hxx index 47022bb0d615..d5f4e0606864 100644 --- a/extensions/source/config/ldap/ldapaccess.hxx +++ b/extensions/source/config/ldap/ldapaccess.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ldapaccess.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/ldapuserprof.cxx b/extensions/source/config/ldap/ldapuserprof.cxx index 3a031ddae211..a75a1b0d1447 100644 --- a/extensions/source/config/ldap/ldapuserprof.cxx +++ b/extensions/source/config/ldap/ldapuserprof.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ldapuserprof.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/ldapuserprof.hxx b/extensions/source/config/ldap/ldapuserprof.hxx index 83ba526da27f..36b9d671ea02 100644 --- a/extensions/source/config/ldap/ldapuserprof.hxx +++ b/extensions/source/config/ldap/ldapuserprof.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ldapuserprof.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/ldapuserprofilebe.cxx b/extensions/source/config/ldap/ldapuserprofilebe.cxx index 330834c5b414..9466dfb1371f 100644 --- a/extensions/source/config/ldap/ldapuserprofilebe.cxx +++ b/extensions/source/config/ldap/ldapuserprofilebe.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ldapuserprofilebe.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/ldapuserprofilebe.hxx b/extensions/source/config/ldap/ldapuserprofilebe.hxx index 6b2f78389a8f..240a7b364e24 100644 --- a/extensions/source/config/ldap/ldapuserprofilebe.hxx +++ b/extensions/source/config/ldap/ldapuserprofilebe.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ldapuserprofilebe.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/ldapuserprofilelayer.cxx b/extensions/source/config/ldap/ldapuserprofilelayer.cxx index fb40799ef650..9c9afbe8989c 100644 --- a/extensions/source/config/ldap/ldapuserprofilelayer.cxx +++ b/extensions/source/config/ldap/ldapuserprofilelayer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ldapuserprofilelayer.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/ldapuserprofilelayer.hxx b/extensions/source/config/ldap/ldapuserprofilelayer.hxx index b595deb74006..c87bccc02d38 100644 --- a/extensions/source/config/ldap/ldapuserprofilelayer.hxx +++ b/extensions/source/config/ldap/ldapuserprofilelayer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ldapuserprofilelayer.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/makefile.mk b/extensions/source/config/ldap/makefile.mk index 5ff3da4d21de..58fea69cd309 100644 --- a/extensions/source/config/ldap/makefile.mk +++ b/extensions/source/config/ldap/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.12 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/propertysethelper.cxx b/extensions/source/config/ldap/propertysethelper.cxx index 09f19185ce6f..6bdf17ccf0e8 100644 --- a/extensions/source/config/ldap/propertysethelper.cxx +++ b/extensions/source/config/ldap/propertysethelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertysethelper.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/propertysethelper.hxx b/extensions/source/config/ldap/propertysethelper.hxx index 0cb75262b942..1a6dd9867d06 100644 --- a/extensions/source/config/ldap/propertysethelper.hxx +++ b/extensions/source/config/ldap/propertysethelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertysethelper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/config/ldap/wrapldapinclude.hxx b/extensions/source/config/ldap/wrapldapinclude.hxx index b3b8d45e94d7..80ae2e430dd9 100644 --- a/extensions/source/config/ldap/wrapldapinclude.hxx +++ b/extensions/source/config/ldap/wrapldapinclude.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: wrapldapinclude.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/commonpagesdbp.cxx b/extensions/source/dbpilots/commonpagesdbp.cxx index 176efc59d35f..7b58c8de8560 100644 --- a/extensions/source/dbpilots/commonpagesdbp.cxx +++ b/extensions/source/dbpilots/commonpagesdbp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commonpagesdbp.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/commonpagesdbp.hxx b/extensions/source/dbpilots/commonpagesdbp.hxx index d8a1ebe334e5..3cbe1ac2b514 100644 --- a/extensions/source/dbpilots/commonpagesdbp.hxx +++ b/extensions/source/dbpilots/commonpagesdbp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commonpagesdbp.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/commonpagesdbp.src b/extensions/source/dbpilots/commonpagesdbp.src index fad44a19b99a..41d199a70209 100644 --- a/extensions/source/dbpilots/commonpagesdbp.src +++ b/extensions/source/dbpilots/commonpagesdbp.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commonpagesdbp.src,v $ - * $Revision: 1.42 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/controlwizard.cxx b/extensions/source/dbpilots/controlwizard.cxx index 169286a19a5f..675452801029 100644 --- a/extensions/source/dbpilots/controlwizard.cxx +++ b/extensions/source/dbpilots/controlwizard.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: controlwizard.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/controlwizard.hxx b/extensions/source/dbpilots/controlwizard.hxx index d50cc8e0b8df..4615d2529adb 100644 --- a/extensions/source/dbpilots/controlwizard.hxx +++ b/extensions/source/dbpilots/controlwizard.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: controlwizard.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/dbpilots.src b/extensions/source/dbpilots/dbpilots.src index 60336131f4c3..fa96cbead1eb 100644 --- a/extensions/source/dbpilots/dbpilots.src +++ b/extensions/source/dbpilots/dbpilots.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbpilots.src,v $ - * $Revision: 1.37 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/dbpresid.hrc b/extensions/source/dbpilots/dbpresid.hrc index c54463704f44..ecb424c5e3b7 100644 --- a/extensions/source/dbpilots/dbpresid.hrc +++ b/extensions/source/dbpilots/dbpresid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbpresid.hrc,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/dbpservices.cxx b/extensions/source/dbpilots/dbpservices.cxx index 29bcc33a080b..28e55e1e8900 100644 --- a/extensions/source/dbpilots/dbpservices.cxx +++ b/extensions/source/dbpilots/dbpservices.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbpservices.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/dbptools.cxx b/extensions/source/dbpilots/dbptools.cxx index 4ee8e7aad9a5..ae9bd066b79c 100644 --- a/extensions/source/dbpilots/dbptools.cxx +++ b/extensions/source/dbpilots/dbptools.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbptools.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/dbptools.hxx b/extensions/source/dbpilots/dbptools.hxx index e5061f86ddeb..efe897d999f5 100644 --- a/extensions/source/dbpilots/dbptools.hxx +++ b/extensions/source/dbpilots/dbptools.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbptools.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/dbptypes.hxx b/extensions/source/dbpilots/dbptypes.hxx index c606f5f28127..57a871315981 100644 --- a/extensions/source/dbpilots/dbptypes.hxx +++ b/extensions/source/dbpilots/dbptypes.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbptypes.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/gridpages.src b/extensions/source/dbpilots/gridpages.src index 4d0ff053a5fe..5aca75b77d55 100644 --- a/extensions/source/dbpilots/gridpages.src +++ b/extensions/source/dbpilots/gridpages.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: gridpages.src,v $ - * $Revision: 1.33 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/gridwizard.cxx b/extensions/source/dbpilots/gridwizard.cxx index c3d50e6c112d..6e28567aef62 100644 --- a/extensions/source/dbpilots/gridwizard.cxx +++ b/extensions/source/dbpilots/gridwizard.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: gridwizard.cxx,v $ - * $Revision: 1.19 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/gridwizard.hxx b/extensions/source/dbpilots/gridwizard.hxx index 5ff91046fdca..d0f255ede729 100644 --- a/extensions/source/dbpilots/gridwizard.hxx +++ b/extensions/source/dbpilots/gridwizard.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: gridwizard.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/groupboxpages.src b/extensions/source/dbpilots/groupboxpages.src index 04159a63826e..6b651e848010 100644 --- a/extensions/source/dbpilots/groupboxpages.src +++ b/extensions/source/dbpilots/groupboxpages.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: groupboxpages.src,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/groupboxwiz.cxx b/extensions/source/dbpilots/groupboxwiz.cxx index 2f6c87783811..7bf3138bf5fe 100644 --- a/extensions/source/dbpilots/groupboxwiz.cxx +++ b/extensions/source/dbpilots/groupboxwiz.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: groupboxwiz.cxx,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/groupboxwiz.hxx b/extensions/source/dbpilots/groupboxwiz.hxx index 04f4eef357d3..97a2cd1a3109 100644 --- a/extensions/source/dbpilots/groupboxwiz.hxx +++ b/extensions/source/dbpilots/groupboxwiz.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: groupboxwiz.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/listcombopages.src b/extensions/source/dbpilots/listcombopages.src index 8a6bdd505af0..eb83140de316 100644 --- a/extensions/source/dbpilots/listcombopages.src +++ b/extensions/source/dbpilots/listcombopages.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listcombopages.src,v $ - * $Revision: 1.41 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/listcombowizard.cxx b/extensions/source/dbpilots/listcombowizard.cxx index 8afc76a0beea..2e810654baa4 100644 --- a/extensions/source/dbpilots/listcombowizard.cxx +++ b/extensions/source/dbpilots/listcombowizard.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listcombowizard.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/listcombowizard.hxx b/extensions/source/dbpilots/listcombowizard.hxx index 46c1ed47b7a7..7dcf32316236 100644 --- a/extensions/source/dbpilots/listcombowizard.hxx +++ b/extensions/source/dbpilots/listcombowizard.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listcombowizard.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/makefile.mk b/extensions/source/dbpilots/makefile.mk index aba20a2f105a..8ef5ebae82e8 100644 --- a/extensions/source/dbpilots/makefile.mk +++ b/extensions/source/dbpilots/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.10 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/moduledbp.cxx b/extensions/source/dbpilots/moduledbp.cxx index a87379d42634..9f6d3d2b9e30 100644 --- a/extensions/source/dbpilots/moduledbp.cxx +++ b/extensions/source/dbpilots/moduledbp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: moduledbp.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/optiongrouplayouter.cxx b/extensions/source/dbpilots/optiongrouplayouter.cxx index 9bcdc0b6a525..c4288a645217 100644 --- a/extensions/source/dbpilots/optiongrouplayouter.cxx +++ b/extensions/source/dbpilots/optiongrouplayouter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optiongrouplayouter.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/optiongrouplayouter.hxx b/extensions/source/dbpilots/optiongrouplayouter.hxx index 701940f20bd2..ddc23a5e199c 100644 --- a/extensions/source/dbpilots/optiongrouplayouter.hxx +++ b/extensions/source/dbpilots/optiongrouplayouter.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: optiongrouplayouter.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/unoautopilot.hxx b/extensions/source/dbpilots/unoautopilot.hxx index a2fad189d014..1ed89d280a6c 100644 --- a/extensions/source/dbpilots/unoautopilot.hxx +++ b/extensions/source/dbpilots/unoautopilot.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unoautopilot.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/unoautopilot.inl b/extensions/source/dbpilots/unoautopilot.inl index ced5412320ab..0e3a953bcad1 100644 --- a/extensions/source/dbpilots/unoautopilot.inl +++ b/extensions/source/dbpilots/unoautopilot.inl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unoautopilot.inl,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/wizardcontext.hxx b/extensions/source/dbpilots/wizardcontext.hxx index c01fe369f1ff..d79f4bec0890 100644 --- a/extensions/source/dbpilots/wizardcontext.hxx +++ b/extensions/source/dbpilots/wizardcontext.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: wizardcontext.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/wizardservices.cxx b/extensions/source/dbpilots/wizardservices.cxx index 1ab371673bfe..36af518fc44f 100644 --- a/extensions/source/dbpilots/wizardservices.cxx +++ b/extensions/source/dbpilots/wizardservices.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: wizardservices.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/dbpilots/wizardservices.hxx b/extensions/source/dbpilots/wizardservices.hxx index d5c24364e421..a9bf9a72b478 100644 --- a/extensions/source/dbpilots/wizardservices.hxx +++ b/extensions/source/dbpilots/wizardservices.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: wizardservices.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/inc/componentmodule.cxx b/extensions/source/inc/componentmodule.cxx index 653006035eae..6b08c46ff13b 100644 --- a/extensions/source/inc/componentmodule.cxx +++ b/extensions/source/inc/componentmodule.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: componentmodule.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/inc/componentmodule.hxx b/extensions/source/inc/componentmodule.hxx index 86df021c06fc..09fd0807639f 100644 --- a/extensions/source/inc/componentmodule.hxx +++ b/extensions/source/inc/componentmodule.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: componentmodule.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/consolehandler.cxx b/extensions/source/logging/consolehandler.cxx index cbb6d8e91dce..36e3fbb0c21d 100644 --- a/extensions/source/logging/consolehandler.cxx +++ b/extensions/source/logging/consolehandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: consolehandler.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/csvformatter.cxx b/extensions/source/logging/csvformatter.cxx index a83847b2095d..5e02e5f7cb69 100644 --- a/extensions/source/logging/csvformatter.cxx +++ b/extensions/source/logging/csvformatter.cxx @@ -1,30 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2008 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* $RCSfile: csvformatter.cxx,v $ -* -* $Revision: 1.2 $ -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/logging/filehandler.cxx b/extensions/source/logging/filehandler.cxx index e04ea8faf0be..be233898c2ab 100644 --- a/extensions/source/logging/filehandler.cxx +++ b/extensions/source/logging/filehandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: filehandler.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/log_module.cxx b/extensions/source/logging/log_module.cxx index 2e473f2c4ffc..dc5f52d8df3f 100644 --- a/extensions/source/logging/log_module.cxx +++ b/extensions/source/logging/log_module.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: log_module.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/log_module.hxx b/extensions/source/logging/log_module.hxx index 022b748e5d96..fcb5732937df 100644 --- a/extensions/source/logging/log_module.hxx +++ b/extensions/source/logging/log_module.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: log_module.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/log_services.cxx b/extensions/source/logging/log_services.cxx index 6bd5add69a70..421302a5a54b 100644 --- a/extensions/source/logging/log_services.cxx +++ b/extensions/source/logging/log_services.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: log_services.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/logger.cxx b/extensions/source/logging/logger.cxx index 66e0eb540ef0..747225937356 100644 --- a/extensions/source/logging/logger.cxx +++ b/extensions/source/logging/logger.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: logger.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/loggerconfig.cxx b/extensions/source/logging/loggerconfig.cxx index 9b75a50e2454..949d236d6b67 100644 --- a/extensions/source/logging/loggerconfig.cxx +++ b/extensions/source/logging/loggerconfig.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: loggerconfig.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/loggerconfig.hxx b/extensions/source/logging/loggerconfig.hxx index 0f157da7b93c..1d35cd13d84c 100644 --- a/extensions/source/logging/loggerconfig.hxx +++ b/extensions/source/logging/loggerconfig.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: loggerconfig.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/loghandler.cxx b/extensions/source/logging/loghandler.cxx index a98fe514e5c3..082057741420 100644 --- a/extensions/source/logging/loghandler.cxx +++ b/extensions/source/logging/loghandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: loghandler.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/loghandler.hxx b/extensions/source/logging/loghandler.hxx index 42954eb2557d..3927a0008f08 100644 --- a/extensions/source/logging/loghandler.hxx +++ b/extensions/source/logging/loghandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: loghandler.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/logrecord.cxx b/extensions/source/logging/logrecord.cxx index 960215c8869c..cac9fe79e459 100644 --- a/extensions/source/logging/logrecord.cxx +++ b/extensions/source/logging/logrecord.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: logrecord.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/logrecord.hxx b/extensions/source/logging/logrecord.hxx index 77ec3fb54cf0..6503e5c48de7 100644 --- a/extensions/source/logging/logrecord.hxx +++ b/extensions/source/logging/logrecord.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: logrecord.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/makefile.mk b/extensions/source/logging/makefile.mk index 37b3ddf2e253..f3bfb2a4ea06 100644 --- a/extensions/source/logging/makefile.mk +++ b/extensions/source/logging/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/methodguard.hxx b/extensions/source/logging/methodguard.hxx index 8f781e552bf0..2b7a209a9bdf 100644 --- a/extensions/source/logging/methodguard.hxx +++ b/extensions/source/logging/methodguard.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: methodguard.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/logging/plaintextformatter.cxx b/extensions/source/logging/plaintextformatter.cxx index fb12de2f1b8d..fd0c96e2da8e 100644 --- a/extensions/source/logging/plaintextformatter.cxx +++ b/extensions/source/logging/plaintextformatter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plaintextformatter.cxx,v $ - * $Revision: 1.4.82.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/GetMetadataForFile.m b/extensions/source/macosx/spotlight/GetMetadataForFile.m index 32e8ef3a6e91..40d7850970cc 100644 --- a/extensions/source/macosx/spotlight/GetMetadataForFile.m +++ b/extensions/source/macosx/spotlight/GetMetadataForFile.m @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: GetMetadataForFile.m,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/OOoContentDataParser.h b/extensions/source/macosx/spotlight/OOoContentDataParser.h index fcf2ade05cf9..d326aa442550 100644 --- a/extensions/source/macosx/spotlight/OOoContentDataParser.h +++ b/extensions/source/macosx/spotlight/OOoContentDataParser.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoContentDataParser.h,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/OOoContentDataParser.m b/extensions/source/macosx/spotlight/OOoContentDataParser.m index a49532998bf4..11c3ec06cfc5 100644 --- a/extensions/source/macosx/spotlight/OOoContentDataParser.m +++ b/extensions/source/macosx/spotlight/OOoContentDataParser.m @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoContentDataParser.m,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/OOoMetaDataParser.h b/extensions/source/macosx/spotlight/OOoMetaDataParser.h index dbd24c4b0647..7b7b97ccfd49 100644 --- a/extensions/source/macosx/spotlight/OOoMetaDataParser.h +++ b/extensions/source/macosx/spotlight/OOoMetaDataParser.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoMetaDataParser.h,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/OOoMetaDataParser.m b/extensions/source/macosx/spotlight/OOoMetaDataParser.m index dd21a00f1f80..cddbbd1309e1 100644 --- a/extensions/source/macosx/spotlight/OOoMetaDataParser.m +++ b/extensions/source/macosx/spotlight/OOoMetaDataParser.m @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoMetaDataParser.m,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/OOoSpotlightImporter.h b/extensions/source/macosx/spotlight/OOoSpotlightImporter.h index 8e011c949c65..e63360c57b01 100644 --- a/extensions/source/macosx/spotlight/OOoSpotlightImporter.h +++ b/extensions/source/macosx/spotlight/OOoSpotlightImporter.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoSpotlightImporter.h,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/OOoSpotlightImporter.m b/extensions/source/macosx/spotlight/OOoSpotlightImporter.m index 0c548e438c73..c5918e242bc7 100644 --- a/extensions/source/macosx/spotlight/OOoSpotlightImporter.m +++ b/extensions/source/macosx/spotlight/OOoSpotlightImporter.m @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OOoSpotlightImporter.m,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/ioapi.h b/extensions/source/macosx/spotlight/ioapi.h index 13e95d8f8d4e..d4cfe641de24 100644 --- a/extensions/source/macosx/spotlight/ioapi.h +++ b/extensions/source/macosx/spotlight/ioapi.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ioapi.h,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/ioapi.m b/extensions/source/macosx/spotlight/ioapi.m index 5857164b226c..c1508d7fa0d5 100644 --- a/extensions/source/macosx/spotlight/ioapi.m +++ b/extensions/source/macosx/spotlight/ioapi.m @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ioapi.m,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/makefile.mk b/extensions/source/macosx/spotlight/makefile.mk index 2d8d1ed4be91..3d1cb12d1dab 100644 --- a/extensions/source/macosx/spotlight/makefile.mk +++ b/extensions/source/macosx/spotlight/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/unzip.h b/extensions/source/macosx/spotlight/unzip.h index bdb0a74b6234..51119502b0fa 100644 --- a/extensions/source/macosx/spotlight/unzip.h +++ b/extensions/source/macosx/spotlight/unzip.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unzip.h,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/macosx/spotlight/unzip.m b/extensions/source/macosx/spotlight/unzip.m index 34241ba500c2..fe8fad538a86 100644 --- a/extensions/source/macosx/spotlight/unzip.m +++ b/extensions/source/macosx/spotlight/unzip.m @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unzip.m,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/makefile.mk b/extensions/source/nsplugin/source/makefile.mk index 8288ed4ac67d..4f9be74348ab 100644 --- a/extensions/source/nsplugin/source/makefile.mk +++ b/extensions/source/nsplugin/source/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.20 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/npshell.cxx b/extensions/source/nsplugin/source/npshell.cxx index a626c85530aa..94edb1b0e48c 100644 --- a/extensions/source/nsplugin/source/npshell.cxx +++ b/extensions/source/nsplugin/source/npshell.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: npshell.cxx,v $ - * $Revision: 1.19 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/npshell.hxx b/extensions/source/nsplugin/source/npshell.hxx index 0b9091107987..2f9cfb5bf4d1 100644 --- a/extensions/source/nsplugin/source/npshell.hxx +++ b/extensions/source/nsplugin/source/npshell.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: npshell.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/ns_debug.hxx b/extensions/source/nsplugin/source/ns_debug.hxx index 6639f512df69..e1782c5da5e7 100644 --- a/extensions/source/nsplugin/source/ns_debug.hxx +++ b/extensions/source/nsplugin/source/ns_debug.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ns_debug.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/nsp_func.hxx b/extensions/source/nsplugin/source/nsp_func.hxx index 65b6eef72b32..e132235ec4b6 100644 --- a/extensions/source/nsplugin/source/nsp_func.hxx +++ b/extensions/source/nsplugin/source/nsp_func.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nsp_func.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/nsp_windows.cxx b/extensions/source/nsplugin/source/nsp_windows.cxx index bc1206b2cd44..58a56b7c82e5 100644 --- a/extensions/source/nsplugin/source/nsp_windows.cxx +++ b/extensions/source/nsplugin/source/nsp_windows.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nsp_windows.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/nsp_windows.hxx b/extensions/source/nsplugin/source/nsp_windows.hxx index 3060636886a3..707bb8bf515d 100644 --- a/extensions/source/nsplugin/source/nsp_windows.hxx +++ b/extensions/source/nsplugin/source/nsp_windows.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nsp_windows.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/nsplugin.rc b/extensions/source/nsplugin/source/nsplugin.rc index c8fa320a5475..a97db09665e0 100644 --- a/extensions/source/nsplugin/source/nsplugin.rc +++ b/extensions/source/nsplugin/source/nsplugin.rc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nsplugin.rc,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/nsplugin_oo.rc b/extensions/source/nsplugin/source/nsplugin_oo.rc index e38c82e00463..42a2a642e023 100644 --- a/extensions/source/nsplugin/source/nsplugin_oo.rc +++ b/extensions/source/nsplugin/source/nsplugin_oo.rc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nsplugin_oo.rc,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/so_closelistener.cxx b/extensions/source/nsplugin/source/so_closelistener.cxx index 202cf8234412..8836b9f3dc17 100644 --- a/extensions/source/nsplugin/source/so_closelistener.cxx +++ b/extensions/source/nsplugin/source/so_closelistener.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: so_closelistener.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/so_closelistener.hxx b/extensions/source/nsplugin/source/so_closelistener.hxx index 33b662a1284d..7ce20c9eaaf6 100644 --- a/extensions/source/nsplugin/source/so_closelistener.hxx +++ b/extensions/source/nsplugin/source/so_closelistener.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: so_closelistener.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/so_env.cxx b/extensions/source/nsplugin/source/so_env.cxx index 92bcab19bd59..36a2b3f3abec 100644 --- a/extensions/source/nsplugin/source/so_env.cxx +++ b/extensions/source/nsplugin/source/so_env.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: so_env.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/so_env.hxx b/extensions/source/nsplugin/source/so_env.hxx index d7dca0a7f17b..a4e98a878f2a 100644 --- a/extensions/source/nsplugin/source/so_env.hxx +++ b/extensions/source/nsplugin/source/so_env.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: so_env.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/so_instance.cxx b/extensions/source/nsplugin/source/so_instance.cxx index 913c00ba94b6..65e511dfcc35 100644 --- a/extensions/source/nsplugin/source/so_instance.cxx +++ b/extensions/source/nsplugin/source/so_instance.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: so_instance.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/so_instance.hxx b/extensions/source/nsplugin/source/so_instance.hxx index a9ad2a68ff4e..17266fcefc71 100644 --- a/extensions/source/nsplugin/source/so_instance.hxx +++ b/extensions/source/nsplugin/source/so_instance.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: so_instance.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/so_main.cxx b/extensions/source/nsplugin/source/so_main.cxx index 80cb24c1f8df..7932f63d6d4d 100644 --- a/extensions/source/nsplugin/source/so_main.cxx +++ b/extensions/source/nsplugin/source/so_main.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: so_main.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/nsplugin/source/so_msg.hxx b/extensions/source/nsplugin/source/so_msg.hxx index 72c2b5b1419f..ee3d5fff75f8 100644 --- a/extensions/source/nsplugin/source/so_msg.hxx +++ b/extensions/source/nsplugin/source/so_msg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: so_msg.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/comifaces.hxx b/extensions/source/ole/comifaces.hxx index 464f3ea54416..ce184f9db6a6 100644 --- a/extensions/source/ole/comifaces.hxx +++ b/extensions/source/ole/comifaces.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: comifaces.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/jscriptclasses.cxx b/extensions/source/ole/jscriptclasses.cxx index 8a03721d7f21..a38044f92a4c 100644 --- a/extensions/source/ole/jscriptclasses.cxx +++ b/extensions/source/ole/jscriptclasses.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: jscriptclasses.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/jscriptclasses.hxx b/extensions/source/ole/jscriptclasses.hxx index f6ca83439cb3..f583a7962e03 100644 --- a/extensions/source/ole/jscriptclasses.hxx +++ b/extensions/source/ole/jscriptclasses.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: jscriptclasses.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/makefile.mk b/extensions/source/ole/makefile.mk index a152b8b9b036..ad4ecee72c82 100644 --- a/extensions/source/ole/makefile.mk +++ b/extensions/source/ole/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.27 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/ole2uno.cxx b/extensions/source/ole/ole2uno.cxx index 4f5a7d92e4f0..1a9e34a8bdec 100644 --- a/extensions/source/ole/ole2uno.cxx +++ b/extensions/source/ole/ole2uno.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ole2uno.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/ole2uno.hxx b/extensions/source/ole/ole2uno.hxx index c5508f486dfb..ff97f5910ab9 100644 --- a/extensions/source/ole/ole2uno.hxx +++ b/extensions/source/ole/ole2uno.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ole2uno.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/oledll.cxx b/extensions/source/ole/oledll.cxx index cdd7887c799a..9f7999ed184b 100644 --- a/extensions/source/ole/oledll.cxx +++ b/extensions/source/ole/oledll.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oledll.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx index 3d1df739c464..79baf3c7d8df 100644 --- a/extensions/source/ole/oleobjw.cxx +++ b/extensions/source/ole/oleobjw.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oleobjw.cxx,v $ - * $Revision: 1.19 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/oleobjw.hxx b/extensions/source/ole/oleobjw.hxx index 255d66f46ea8..6d46452eb088 100644 --- a/extensions/source/ole/oleobjw.hxx +++ b/extensions/source/ole/oleobjw.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oleobjw.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/olethread.cxx b/extensions/source/ole/olethread.cxx index 76c64104ec99..bd6d8652d902 100644 --- a/extensions/source/ole/olethread.cxx +++ b/extensions/source/ole/olethread.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: olethread.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/servprov.cxx b/extensions/source/ole/servprov.cxx index eb9b60636ec3..18f3bc26f9b7 100644 --- a/extensions/source/ole/servprov.cxx +++ b/extensions/source/ole/servprov.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servprov.cxx,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/servprov.hxx b/extensions/source/ole/servprov.hxx index 1c04c7cb5a5c..bbce935aa98e 100644 --- a/extensions/source/ole/servprov.hxx +++ b/extensions/source/ole/servprov.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servprov.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/servreg.cxx b/extensions/source/ole/servreg.cxx index 37bb0ac774a3..17fc24e9a08c 100644 --- a/extensions/source/ole/servreg.cxx +++ b/extensions/source/ole/servreg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: servreg.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index 8a44ec603b7f..9eb47166ca82 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unoconversionutilities.hxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index ce3706ee6dda..5452a95129ff 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unoobjw.cxx,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/unoobjw.hxx b/extensions/source/ole/unoobjw.hxx index fbaaa1935a20..172b72aa4525 100644 --- a/extensions/source/ole/unoobjw.hxx +++ b/extensions/source/ole/unoobjw.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unoobjw.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/unotypewrapper.cxx b/extensions/source/ole/unotypewrapper.cxx index e3ff8a98a0e7..da2cc93349eb 100644 --- a/extensions/source/ole/unotypewrapper.cxx +++ b/extensions/source/ole/unotypewrapper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unotypewrapper.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/unotypewrapper.hxx b/extensions/source/ole/unotypewrapper.hxx index 006ae06dcd6f..32346bc27900 100644 --- a/extensions/source/ole/unotypewrapper.hxx +++ b/extensions/source/ole/unotypewrapper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unotypewrapper.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/windata.cxx b/extensions/source/ole/windata.cxx index 5dd850237d23..fd9363bccd71 100644 --- a/extensions/source/ole/windata.cxx +++ b/extensions/source/ole/windata.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: windata.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/ole/windata.hxx b/extensions/source/ole/windata.hxx index 0c504080aaa8..b6e86228bc23 100644 --- a/extensions/source/ole/windata.hxx +++ b/extensions/source/ole/windata.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: windata.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/oooimprovecore/core.cxx b/extensions/source/oooimprovecore/core.cxx index 1893b1579dc2..1dad223a3c76 100644 --- a/extensions/source/oooimprovecore/core.cxx +++ b/extensions/source/oooimprovecore/core.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: core.cxx,v $ - * - * $Revision: 1.3.34.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovecore/makefile.mk b/extensions/source/oooimprovecore/makefile.mk index b527f16bf44e..977098af8049 100644 --- a/extensions/source/oooimprovecore/makefile.mk +++ b/extensions/source/oooimprovecore/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/oooimprovecore/oooimprovecore_module.cxx b/extensions/source/oooimprovecore/oooimprovecore_module.cxx index c11106de3a63..5a7dd0449770 100644 --- a/extensions/source/oooimprovecore/oooimprovecore_module.cxx +++ b/extensions/source/oooimprovecore/oooimprovecore_module.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oooimprovecore_module.cxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/oooimprovecore/oooimprovecore_module.hxx b/extensions/source/oooimprovecore/oooimprovecore_module.hxx index 0b6e18b2306b..8c0943dda560 100644 --- a/extensions/source/oooimprovecore/oooimprovecore_module.hxx +++ b/extensions/source/oooimprovecore/oooimprovecore_module.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oooimprovecore_module.hxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/oooimprovecore/oooimprovecore_services.cxx b/extensions/source/oooimprovecore/oooimprovecore_services.cxx index eecbd8bde7c6..da0c15c4694e 100644 --- a/extensions/source/oooimprovecore/oooimprovecore_services.cxx +++ b/extensions/source/oooimprovecore/oooimprovecore_services.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oooimprovecore_services.cxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/oooimprovement/config.cxx b/extensions/source/oooimprovement/config.cxx index bece7e089f1a..67658f405414 100644 --- a/extensions/source/oooimprovement/config.cxx +++ b/extensions/source/oooimprovement/config.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: config.cxx,v $ - * - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/config.hxx b/extensions/source/oooimprovement/config.hxx index c5ea887fa76f..d1e63fd76f7c 100644 --- a/extensions/source/oooimprovement/config.hxx +++ b/extensions/source/oooimprovement/config.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: config.hxx,v $ - * - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/corecontroller.cxx b/extensions/source/oooimprovement/corecontroller.cxx index 3c9245d3faa9..66e634768fef 100644 --- a/extensions/source/oooimprovement/corecontroller.cxx +++ b/extensions/source/oooimprovement/corecontroller.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: corecontroller.cxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/corecontroller.hxx b/extensions/source/oooimprovement/corecontroller.hxx index 4f62e9d026b6..b54495397dcb 100644 --- a/extensions/source/oooimprovement/corecontroller.hxx +++ b/extensions/source/oooimprovement/corecontroller.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: corecontroller.hxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/errormail.cxx b/extensions/source/oooimprovement/errormail.cxx index 38e863750220..73a8869a45a2 100644 --- a/extensions/source/oooimprovement/errormail.cxx +++ b/extensions/source/oooimprovement/errormail.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: errormail.cxx,v $ - * - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/errormail.hxx b/extensions/source/oooimprovement/errormail.hxx index 24b64b9d7aea..e7bd6df2b918 100644 --- a/extensions/source/oooimprovement/errormail.hxx +++ b/extensions/source/oooimprovement/errormail.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: errormail.hxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ diff --git a/extensions/source/oooimprovement/invite_job.cxx b/extensions/source/oooimprovement/invite_job.cxx index bb1ce11d23fe..8bf4a3c5d241 100644 --- a/extensions/source/oooimprovement/invite_job.cxx +++ b/extensions/source/oooimprovement/invite_job.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: invite_job.cxx,v $ - * - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/invite_job.hxx b/extensions/source/oooimprovement/invite_job.hxx index 8c1cd57f07a8..8679f092065d 100644 --- a/extensions/source/oooimprovement/invite_job.hxx +++ b/extensions/source/oooimprovement/invite_job.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: invite_job.hxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/logpacker.cxx b/extensions/source/oooimprovement/logpacker.cxx index 5e3eedf3641e..71508ab05bcb 100644 --- a/extensions/source/oooimprovement/logpacker.cxx +++ b/extensions/source/oooimprovement/logpacker.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: logpacker.cxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/logpacker.hxx b/extensions/source/oooimprovement/logpacker.hxx index 8e725744ee6a..486443095d95 100644 --- a/extensions/source/oooimprovement/logpacker.hxx +++ b/extensions/source/oooimprovement/logpacker.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: logpacker.hxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ diff --git a/extensions/source/oooimprovement/logstorage.cxx b/extensions/source/oooimprovement/logstorage.cxx index d4d0dea8d01c..7c337288460e 100644 --- a/extensions/source/oooimprovement/logstorage.cxx +++ b/extensions/source/oooimprovement/logstorage.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: logstorage.cxx,v $ - * - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/logstorage.hxx b/extensions/source/oooimprovement/logstorage.hxx index 18778de93565..2def4f5eb72a 100644 --- a/extensions/source/oooimprovement/logstorage.hxx +++ b/extensions/source/oooimprovement/logstorage.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: logstorage.hxx,v $ - * - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ diff --git a/extensions/source/oooimprovement/makefile.mk b/extensions/source/oooimprovement/makefile.mk index f9b508b13f2f..ba8ff01a8c0e 100644 --- a/extensions/source/oooimprovement/makefile.mk +++ b/extensions/source/oooimprovement/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/oooimprovement/myconfigurationhelper.cxx b/extensions/source/oooimprovement/myconfigurationhelper.cxx index e0f14c6ec445..d563b547f2bc 100644 --- a/extensions/source/oooimprovement/myconfigurationhelper.cxx +++ b/extensions/source/oooimprovement/myconfigurationhelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: myconfigurationhelper.cxx,v $ - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/oooimprovement/myconfigurationhelper.hxx b/extensions/source/oooimprovement/myconfigurationhelper.hxx index 5c5cb38b6a68..d196f415dc33 100644 --- a/extensions/source/oooimprovement/myconfigurationhelper.hxx +++ b/extensions/source/oooimprovement/myconfigurationhelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: myconfigurationhelper.hxx,v $ - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/oooimprovement/onlogrotate_job.cxx b/extensions/source/oooimprovement/onlogrotate_job.cxx index 316fb565e2b2..a92044b87d7e 100644 --- a/extensions/source/oooimprovement/onlogrotate_job.cxx +++ b/extensions/source/oooimprovement/onlogrotate_job.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: onlogrotate_job.cxx,v $ - * - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/onlogrotate_job.hxx b/extensions/source/oooimprovement/onlogrotate_job.hxx index 6dcc38e6c29f..8fa902ad4c78 100644 --- a/extensions/source/oooimprovement/onlogrotate_job.hxx +++ b/extensions/source/oooimprovement/onlogrotate_job.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: onlogrotate_job.hxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/oooimprovement_exports.cxx b/extensions/source/oooimprovement/oooimprovement_exports.cxx index 93b391d87e25..147089dd203c 100644 --- a/extensions/source/oooimprovement/oooimprovement_exports.cxx +++ b/extensions/source/oooimprovement/oooimprovement_exports.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: onlogrotate_job.cxx,v $ - * - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/soaprequest.cxx b/extensions/source/oooimprovement/soaprequest.cxx index 045a02701fc6..ea1274bd18f6 100644 --- a/extensions/source/oooimprovement/soaprequest.cxx +++ b/extensions/source/oooimprovement/soaprequest.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: soaprequest.cxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ diff --git a/extensions/source/oooimprovement/soaprequest.hxx b/extensions/source/oooimprovement/soaprequest.hxx index 270057418e01..9770093ac03c 100644 --- a/extensions/source/oooimprovement/soaprequest.hxx +++ b/extensions/source/oooimprovement/soaprequest.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: soaprequest.hxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ diff --git a/extensions/source/oooimprovement/soapsender.cxx b/extensions/source/oooimprovement/soapsender.cxx index bba362573397..01d2af96c85d 100644 --- a/extensions/source/oooimprovement/soapsender.cxx +++ b/extensions/source/oooimprovement/soapsender.cxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: soapsender.cxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/oooimprovement/soapsender.hxx b/extensions/source/oooimprovement/soapsender.hxx index 102e5c3f587e..d826582bd0d7 100644 --- a/extensions/source/oooimprovement/soapsender.hxx +++ b/extensions/source/oooimprovement/soapsender.hxx @@ -1,14 +1,10 @@ /************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: soapsender.hxx,v $ - * - * $Revision: 1.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -25,6 +21,7 @@ * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. + * ************************************************************************/ diff --git a/extensions/source/plugin/aqua/macmgr.cxx b/extensions/source/plugin/aqua/macmgr.cxx index 65a56f03f7ad..b66963e420fb 100644 --- a/extensions/source/plugin/aqua/macmgr.cxx +++ b/extensions/source/plugin/aqua/macmgr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macmgr.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/aqua/makefile.mk b/extensions/source/plugin/aqua/makefile.mk index 9cbe83809d11..e29418a526f2 100644 --- a/extensions/source/plugin/aqua/makefile.mk +++ b/extensions/source/plugin/aqua/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/aqua/sysplug.cxx b/extensions/source/plugin/aqua/sysplug.cxx index 5c1ac8ad093b..81637eb2d564 100644 --- a/extensions/source/plugin/aqua/sysplug.cxx +++ b/extensions/source/plugin/aqua/sysplug.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sysplug.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/context.cxx b/extensions/source/plugin/base/context.cxx index a1e5bfce0e27..27266579148e 100644 --- a/extensions/source/plugin/base/context.cxx +++ b/extensions/source/plugin/base/context.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: context.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/evtlstnr.cxx b/extensions/source/plugin/base/evtlstnr.cxx index e181c9bfa923..fda829f99b72 100644 --- a/extensions/source/plugin/base/evtlstnr.cxx +++ b/extensions/source/plugin/base/evtlstnr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: evtlstnr.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/makefile.mk b/extensions/source/plugin/base/makefile.mk index 1e0a39b663e6..35390c6e6322 100644 --- a/extensions/source/plugin/base/makefile.mk +++ b/extensions/source/plugin/base/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.14.90.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/manager.cxx b/extensions/source/plugin/base/manager.cxx index 1cc09221e67e..0526f3ed881b 100644 --- a/extensions/source/plugin/base/manager.cxx +++ b/extensions/source/plugin/base/manager.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: manager.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/multiplx.cxx b/extensions/source/plugin/base/multiplx.cxx index 0199d4fd61a0..1957a9c19115 100644 --- a/extensions/source/plugin/base/multiplx.cxx +++ b/extensions/source/plugin/base/multiplx.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multiplx.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/nfuncs.cxx b/extensions/source/plugin/base/nfuncs.cxx index c3ba2a4fd605..f4164fd71a46 100644 --- a/extensions/source/plugin/base/nfuncs.cxx +++ b/extensions/source/plugin/base/nfuncs.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nfuncs.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/plcom.cxx b/extensions/source/plugin/base/plcom.cxx index b19a7e58d249..09b4f1913d13 100644 --- a/extensions/source/plugin/base/plcom.cxx +++ b/extensions/source/plugin/base/plcom.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plcom.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/plctrl.cxx b/extensions/source/plugin/base/plctrl.cxx index 0c03ddc3bd9d..cad58711b394 100644 --- a/extensions/source/plugin/base/plctrl.cxx +++ b/extensions/source/plugin/base/plctrl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plctrl.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/plmodel.cxx b/extensions/source/plugin/base/plmodel.cxx index eb111b58f605..7e14ecd45d70 100644 --- a/extensions/source/plugin/base/plmodel.cxx +++ b/extensions/source/plugin/base/plmodel.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plmodel.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/service.cxx b/extensions/source/plugin/base/service.cxx index bcecb4a3d4e9..de74d05060db 100644 --- a/extensions/source/plugin/base/service.cxx +++ b/extensions/source/plugin/base/service.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: service.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/base/xplugin.cxx b/extensions/source/plugin/base/xplugin.cxx index 61d860f6977c..a501d23f269b 100644 --- a/extensions/source/plugin/base/xplugin.cxx +++ b/extensions/source/plugin/base/xplugin.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xplugin.cxx,v $ - * $Revision: 1.25 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/aqua/sysplug.hxx b/extensions/source/plugin/inc/plugin/aqua/sysplug.hxx index 3987b0f6f4e0..941725b1f53d 100644 --- a/extensions/source/plugin/inc/plugin/aqua/sysplug.hxx +++ b/extensions/source/plugin/inc/plugin/aqua/sysplug.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sysplug.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/impl.hxx b/extensions/source/plugin/inc/plugin/impl.hxx index e9adee5088dd..6aa7ec7cca14 100644 --- a/extensions/source/plugin/inc/plugin/impl.hxx +++ b/extensions/source/plugin/inc/plugin/impl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: impl.hxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/model.hxx b/extensions/source/plugin/inc/plugin/model.hxx index 96b23013dc47..9f9ac01f0ac3 100644 --- a/extensions/source/plugin/inc/plugin/model.hxx +++ b/extensions/source/plugin/inc/plugin/model.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: model.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/multiplx.hxx b/extensions/source/plugin/inc/plugin/multiplx.hxx index c4b30d3acb8e..45b60c12313d 100644 --- a/extensions/source/plugin/inc/plugin/multiplx.hxx +++ b/extensions/source/plugin/inc/plugin/multiplx.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multiplx.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/plcom.hxx b/extensions/source/plugin/inc/plugin/plcom.hxx index 0c5845667887..f0c4d54c02c3 100644 --- a/extensions/source/plugin/inc/plugin/plcom.hxx +++ b/extensions/source/plugin/inc/plugin/plcom.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plcom.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/plctrl.hxx b/extensions/source/plugin/inc/plugin/plctrl.hxx index f360c52c0e84..1980fa7b6725 100644 --- a/extensions/source/plugin/inc/plugin/plctrl.hxx +++ b/extensions/source/plugin/inc/plugin/plctrl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plctrl.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/unx/mediator.hxx b/extensions/source/plugin/inc/plugin/unx/mediator.hxx index 8c796b9a1918..68619db54cad 100644 --- a/extensions/source/plugin/inc/plugin/unx/mediator.hxx +++ b/extensions/source/plugin/inc/plugin/unx/mediator.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: mediator.hxx,v $ - * $Revision: 1.8.90.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/unx/plugcon.hxx b/extensions/source/plugin/inc/plugin/unx/plugcon.hxx index 862075d92c28..9044a14a9cbc 100644 --- a/extensions/source/plugin/inc/plugin/unx/plugcon.hxx +++ b/extensions/source/plugin/inc/plugin/unx/plugcon.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plugcon.hxx,v $ - * $Revision: 1.13.90.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/unx/sysplug.hxx b/extensions/source/plugin/inc/plugin/unx/sysplug.hxx index 910c9e9ac6ca..70b01d3fc69c 100644 --- a/extensions/source/plugin/inc/plugin/unx/sysplug.hxx +++ b/extensions/source/plugin/inc/plugin/unx/sysplug.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sysplug.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/inc/plugin/win/sysplug.hxx b/extensions/source/plugin/inc/plugin/win/sysplug.hxx index a0f8249b4c00..9dd25d34dd06 100644 --- a/extensions/source/plugin/inc/plugin/win/sysplug.hxx +++ b/extensions/source/plugin/inc/plugin/win/sysplug.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sysplug.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/unx/makefile.mk b/extensions/source/plugin/unx/makefile.mk index 5280272af543..669aaa556e62 100644 --- a/extensions/source/plugin/unx/makefile.mk +++ b/extensions/source/plugin/unx/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.15.90.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/unx/mediator.cxx b/extensions/source/plugin/unx/mediator.cxx index 63048ad13589..6191fa5e897a 100644 --- a/extensions/source/plugin/unx/mediator.cxx +++ b/extensions/source/plugin/unx/mediator.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: mediator.cxx,v $ - * $Revision: 1.11.90.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/unx/npwrap.cxx b/extensions/source/plugin/unx/npwrap.cxx index f121342874d8..1be5f9f42a03 100644 --- a/extensions/source/plugin/unx/npwrap.cxx +++ b/extensions/source/plugin/unx/npwrap.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: npwrap.cxx,v $ - * $Revision: 1.16.90.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/unx/plugcon.cxx b/extensions/source/plugin/unx/plugcon.cxx index 9621fcc7d6e7..74d8fa8bd2da 100644 --- a/extensions/source/plugin/unx/plugcon.cxx +++ b/extensions/source/plugin/unx/plugcon.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: plugcon.cxx,v $ - * $Revision: 1.8.90.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/unx/sysplug.cxx b/extensions/source/plugin/unx/sysplug.cxx index 573e79d22cb2..fbcf9b7497eb 100644 --- a/extensions/source/plugin/unx/sysplug.cxx +++ b/extensions/source/plugin/unx/sysplug.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sysplug.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/unx/unxmgr.cxx b/extensions/source/plugin/unx/unxmgr.cxx index bce8cd76a7ac..1a3736e87e0b 100644 --- a/extensions/source/plugin/unx/unxmgr.cxx +++ b/extensions/source/plugin/unx/unxmgr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unxmgr.cxx,v $ - * $Revision: 1.14.90.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/util/makefile.mk b/extensions/source/plugin/util/makefile.mk index b4ac6686a71e..659e8f3acaed 100644 --- a/extensions/source/plugin/util/makefile.mk +++ b/extensions/source/plugin/util/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.17 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/util/makefile.pmk b/extensions/source/plugin/util/makefile.pmk index f081a85c2565..0f06ea2a50ce 100644 --- a/extensions/source/plugin/util/makefile.pmk +++ b/extensions/source/plugin/util/makefile.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.pmk,v $ -# -# $Revision: 1.8 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/win/makefile.mk b/extensions/source/plugin/win/makefile.mk index feaf91b1a762..3167c22d135d 100644 --- a/extensions/source/plugin/win/makefile.mk +++ b/extensions/source/plugin/win/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/win/sysplug.cxx b/extensions/source/plugin/win/sysplug.cxx index a25cdcc10aed..1d117f6927d5 100644 --- a/extensions/source/plugin/win/sysplug.cxx +++ b/extensions/source/plugin/win/sysplug.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sysplug.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/plugin/win/winmgr.cxx b/extensions/source/plugin/win/winmgr.cxx index caf7a38a5458..e4a9d9732c24 100644 --- a/extensions/source/plugin/win/winmgr.cxx +++ b/extensions/source/plugin/win/winmgr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: winmgr.cxx,v $ - * $Revision: 1.16.90.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/makefile.mk b/extensions/source/preload/makefile.mk index 143d866773b7..4e4bab1bc71a 100644 --- a/extensions/source/preload/makefile.mk +++ b/extensions/source/preload/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.8 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/modulepreload.cxx b/extensions/source/preload/modulepreload.cxx index e05e86c0adaa..9f6d3d2b9e30 100644 --- a/extensions/source/preload/modulepreload.cxx +++ b/extensions/source/preload/modulepreload.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: modulepreload.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/oemwiz.cxx b/extensions/source/preload/oemwiz.cxx index 0279dbc3f4ab..a073e71c7c7c 100644 --- a/extensions/source/preload/oemwiz.cxx +++ b/extensions/source/preload/oemwiz.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oemwiz.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/oemwiz.hxx b/extensions/source/preload/oemwiz.hxx index cde464dd88cb..d6e8b9f276c6 100644 --- a/extensions/source/preload/oemwiz.hxx +++ b/extensions/source/preload/oemwiz.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oemwiz.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/preload.hrc b/extensions/source/preload/preload.hrc index 18266125e390..19cb8a15ac10 100644 --- a/extensions/source/preload/preload.hrc +++ b/extensions/source/preload/preload.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: preload.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/preload.src b/extensions/source/preload/preload.src index 5686a7ce9bc2..feea7249ce70 100644 --- a/extensions/source/preload/preload.src +++ b/extensions/source/preload/preload.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: preload.src,v $ - * $Revision: 1.43 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/preloadservices.cxx b/extensions/source/preload/preloadservices.cxx index 6abffa806b1b..c309fb60cfe2 100644 --- a/extensions/source/preload/preloadservices.cxx +++ b/extensions/source/preload/preloadservices.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: preloadservices.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/preloadservices.hxx b/extensions/source/preload/preloadservices.hxx index 89a9b82590b7..5676b7db543b 100644 --- a/extensions/source/preload/preloadservices.hxx +++ b/extensions/source/preload/preloadservices.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: preloadservices.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/services.cxx b/extensions/source/preload/services.cxx index 8b51393d0ba7..39904ef7cc51 100644 --- a/extensions/source/preload/services.cxx +++ b/extensions/source/preload/services.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: services.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/unoautopilot.hxx b/extensions/source/preload/unoautopilot.hxx index dfc956dd2c09..e6175a3f522e 100644 --- a/extensions/source/preload/unoautopilot.hxx +++ b/extensions/source/preload/unoautopilot.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unoautopilot.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/preload/unoautopilot.inl b/extensions/source/preload/unoautopilot.inl index 79f0e7067032..27acdd6864f3 100644 --- a/extensions/source/preload/unoautopilot.inl +++ b/extensions/source/preload/unoautopilot.inl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unoautopilot.inl,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/MasterDetailLinkDialog.cxx b/extensions/source/propctrlr/MasterDetailLinkDialog.cxx index 50ee8d9dd0f1..dfd695999048 100644 --- a/extensions/source/propctrlr/MasterDetailLinkDialog.cxx +++ b/extensions/source/propctrlr/MasterDetailLinkDialog.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: MasterDetailLinkDialog.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/MasterDetailLinkDialog.hxx b/extensions/source/propctrlr/MasterDetailLinkDialog.hxx index 55d2d71cc5d5..4fa32628ef66 100644 --- a/extensions/source/propctrlr/MasterDetailLinkDialog.hxx +++ b/extensions/source/propctrlr/MasterDetailLinkDialog.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: MasterDetailLinkDialog.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/browserline.cxx b/extensions/source/propctrlr/browserline.cxx index 8bdb3333aa02..71a0bb2db3ce 100644 --- a/extensions/source/propctrlr/browserline.cxx +++ b/extensions/source/propctrlr/browserline.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: browserline.cxx,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/browserline.hxx b/extensions/source/propctrlr/browserline.hxx index f3ce901caeeb..db747b4a6b99 100644 --- a/extensions/source/propctrlr/browserline.hxx +++ b/extensions/source/propctrlr/browserline.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: browserline.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/browserlistbox.cxx b/extensions/source/propctrlr/browserlistbox.cxx index bd60181f1d0e..67257f960f5b 100644 --- a/extensions/source/propctrlr/browserlistbox.cxx +++ b/extensions/source/propctrlr/browserlistbox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: browserlistbox.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/browserlistbox.hxx b/extensions/source/propctrlr/browserlistbox.hxx index 46ae1f94aaa8..de0ebc9dd6b6 100644 --- a/extensions/source/propctrlr/browserlistbox.hxx +++ b/extensions/source/propctrlr/browserlistbox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: browserlistbox.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/browserpage.cxx b/extensions/source/propctrlr/browserpage.cxx index 2e0c1232cc76..1065da18f6cc 100644 --- a/extensions/source/propctrlr/browserpage.cxx +++ b/extensions/source/propctrlr/browserpage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: browserpage.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/browserpage.hxx b/extensions/source/propctrlr/browserpage.hxx index ba3b55cce82a..e8c2ee81692e 100644 --- a/extensions/source/propctrlr/browserpage.hxx +++ b/extensions/source/propctrlr/browserpage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: browserpage.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/browserview.cxx b/extensions/source/propctrlr/browserview.cxx index f73d4f10d77a..a023c5ef6b01 100644 --- a/extensions/source/propctrlr/browserview.cxx +++ b/extensions/source/propctrlr/browserview.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: browserview.cxx,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/browserview.hxx b/extensions/source/propctrlr/browserview.hxx index 86d3894a2dba..8b0ecda6a28f 100644 --- a/extensions/source/propctrlr/browserview.hxx +++ b/extensions/source/propctrlr/browserview.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: browserview.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/buttonnavigationhandler.cxx b/extensions/source/propctrlr/buttonnavigationhandler.cxx index 4e1949a11d35..7dfcecc76f44 100644 --- a/extensions/source/propctrlr/buttonnavigationhandler.cxx +++ b/extensions/source/propctrlr/buttonnavigationhandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: buttonnavigationhandler.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/buttonnavigationhandler.hxx b/extensions/source/propctrlr/buttonnavigationhandler.hxx index 4bc479cbafbe..63ad3e4cafef 100644 --- a/extensions/source/propctrlr/buttonnavigationhandler.hxx +++ b/extensions/source/propctrlr/buttonnavigationhandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: buttonnavigationhandler.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/cellbindinghandler.cxx b/extensions/source/propctrlr/cellbindinghandler.cxx index 5b5fce27dd39..c9630871ce3e 100644 --- a/extensions/source/propctrlr/cellbindinghandler.cxx +++ b/extensions/source/propctrlr/cellbindinghandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cellbindinghandler.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/cellbindinghandler.hxx b/extensions/source/propctrlr/cellbindinghandler.hxx index b0e690f2a1ec..608ed5f426b6 100644 --- a/extensions/source/propctrlr/cellbindinghandler.hxx +++ b/extensions/source/propctrlr/cellbindinghandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cellbindinghandler.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/cellbindinghelper.cxx b/extensions/source/propctrlr/cellbindinghelper.cxx index d609dea69436..cf71793f2745 100644 --- a/extensions/source/propctrlr/cellbindinghelper.cxx +++ b/extensions/source/propctrlr/cellbindinghelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cellbindinghelper.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/cellbindinghelper.hxx b/extensions/source/propctrlr/cellbindinghelper.hxx index e612bda0983a..30bc94c106f0 100644 --- a/extensions/source/propctrlr/cellbindinghelper.hxx +++ b/extensions/source/propctrlr/cellbindinghelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cellbindinghelper.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/commoncontrol.cxx b/extensions/source/propctrlr/commoncontrol.cxx index c9066462243e..647b8b92c480 100644 --- a/extensions/source/propctrlr/commoncontrol.cxx +++ b/extensions/source/propctrlr/commoncontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commoncontrol.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/commoncontrol.hxx b/extensions/source/propctrlr/commoncontrol.hxx index 115aa8c377ef..dd586661990b 100644 --- a/extensions/source/propctrlr/commoncontrol.hxx +++ b/extensions/source/propctrlr/commoncontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: commoncontrol.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/composeduiupdate.cxx b/extensions/source/propctrlr/composeduiupdate.cxx index cb4e02e6fb90..c9659d076de5 100644 --- a/extensions/source/propctrlr/composeduiupdate.cxx +++ b/extensions/source/propctrlr/composeduiupdate.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: composeduiupdate.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/composeduiupdate.hxx b/extensions/source/propctrlr/composeduiupdate.hxx index ddccb8475040..d9ae3e0aa76e 100644 --- a/extensions/source/propctrlr/composeduiupdate.hxx +++ b/extensions/source/propctrlr/composeduiupdate.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: composeduiupdate.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/controlfontdialog.cxx b/extensions/source/propctrlr/controlfontdialog.cxx index d6c6a879090a..856e27dc4bc9 100644 --- a/extensions/source/propctrlr/controlfontdialog.cxx +++ b/extensions/source/propctrlr/controlfontdialog.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: controlfontdialog.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/controlfontdialog.hxx b/extensions/source/propctrlr/controlfontdialog.hxx index bb6a26d7521d..a681870e134b 100644 --- a/extensions/source/propctrlr/controlfontdialog.hxx +++ b/extensions/source/propctrlr/controlfontdialog.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: controlfontdialog.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/controltype.hxx b/extensions/source/propctrlr/controltype.hxx index 4cde8d2c3e9d..03dc5455c2ce 100644 --- a/extensions/source/propctrlr/controltype.hxx +++ b/extensions/source/propctrlr/controltype.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: controltype.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/defaultforminspection.cxx b/extensions/source/propctrlr/defaultforminspection.cxx index dcc8c3e78508..f477c4deaa1e 100644 --- a/extensions/source/propctrlr/defaultforminspection.cxx +++ b/extensions/source/propctrlr/defaultforminspection.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: defaultforminspection.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/defaultforminspection.hxx b/extensions/source/propctrlr/defaultforminspection.hxx index db926f9fc1c4..53d06e6b5579 100644 --- a/extensions/source/propctrlr/defaultforminspection.hxx +++ b/extensions/source/propctrlr/defaultforminspection.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: defaultforminspection.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/defaulthelpprovider.cxx b/extensions/source/propctrlr/defaulthelpprovider.cxx index 8ec6b5100ada..30df724728bc 100644 --- a/extensions/source/propctrlr/defaulthelpprovider.cxx +++ b/extensions/source/propctrlr/defaulthelpprovider.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: defaulthelpprovider.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/defaulthelpprovider.hxx b/extensions/source/propctrlr/defaulthelpprovider.hxx index a6307ebb324a..151fcc872099 100644 --- a/extensions/source/propctrlr/defaulthelpprovider.hxx +++ b/extensions/source/propctrlr/defaulthelpprovider.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: defaulthelpprovider.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/editpropertyhandler.cxx b/extensions/source/propctrlr/editpropertyhandler.cxx index bdefa5cff692..8ea6342943d2 100644 --- a/extensions/source/propctrlr/editpropertyhandler.cxx +++ b/extensions/source/propctrlr/editpropertyhandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: editpropertyhandler.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/editpropertyhandler.hxx b/extensions/source/propctrlr/editpropertyhandler.hxx index 4ce0186edb98..d3429f635d26 100644 --- a/extensions/source/propctrlr/editpropertyhandler.hxx +++ b/extensions/source/propctrlr/editpropertyhandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: editpropertyhandler.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/eformshelper.cxx b/extensions/source/propctrlr/eformshelper.cxx index 4b4b06054c64..d4adaf3281f1 100644 --- a/extensions/source/propctrlr/eformshelper.cxx +++ b/extensions/source/propctrlr/eformshelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eformshelper.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/eformshelper.hxx b/extensions/source/propctrlr/eformshelper.hxx index f5fb4706a359..408ae2a2cabd 100644 --- a/extensions/source/propctrlr/eformshelper.hxx +++ b/extensions/source/propctrlr/eformshelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eformshelper.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/eformspropertyhandler.cxx b/extensions/source/propctrlr/eformspropertyhandler.cxx index 7511c1dfa1e4..cfa93bb35d7d 100644 --- a/extensions/source/propctrlr/eformspropertyhandler.cxx +++ b/extensions/source/propctrlr/eformspropertyhandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eformspropertyhandler.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/eformspropertyhandler.hxx b/extensions/source/propctrlr/eformspropertyhandler.hxx index 55c464d77076..222ff1ce94f8 100644 --- a/extensions/source/propctrlr/eformspropertyhandler.hxx +++ b/extensions/source/propctrlr/eformspropertyhandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eformspropertyhandler.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/enumrepresentation.hxx b/extensions/source/propctrlr/enumrepresentation.hxx index 92c4611de5c4..05872d2d80d1 100644 --- a/extensions/source/propctrlr/enumrepresentation.hxx +++ b/extensions/source/propctrlr/enumrepresentation.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: enumrepresentation.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/eventhandler.cxx b/extensions/source/propctrlr/eventhandler.cxx index 1f3c17377687..c009a95b5c2f 100644 --- a/extensions/source/propctrlr/eventhandler.cxx +++ b/extensions/source/propctrlr/eventhandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eventhandler.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/eventhandler.hxx b/extensions/source/propctrlr/eventhandler.hxx index dcb70f8fd2b3..b8b50e4b4a5f 100644 --- a/extensions/source/propctrlr/eventhandler.hxx +++ b/extensions/source/propctrlr/eventhandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: eventhandler.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/fontdialog.cxx b/extensions/source/propctrlr/fontdialog.cxx index c5675c3daa40..82ef033dea21 100644 --- a/extensions/source/propctrlr/fontdialog.cxx +++ b/extensions/source/propctrlr/fontdialog.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontdialog.cxx,v $ - * $Revision: 1.19.80.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/fontdialog.hxx b/extensions/source/propctrlr/fontdialog.hxx index 1f4239997b5b..5604270ac037 100644 --- a/extensions/source/propctrlr/fontdialog.hxx +++ b/extensions/source/propctrlr/fontdialog.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontdialog.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/fontdialog.src b/extensions/source/propctrlr/fontdialog.src index 7a7b990e4336..51dbb6913178 100644 --- a/extensions/source/propctrlr/fontdialog.src +++ b/extensions/source/propctrlr/fontdialog.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontdialog.src,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/fontitemids.hxx b/extensions/source/propctrlr/fontitemids.hxx index 550f36e4c1e8..0296f31f5d9d 100644 --- a/extensions/source/propctrlr/fontitemids.hxx +++ b/extensions/source/propctrlr/fontitemids.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontitemids.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formbrowsertools.cxx b/extensions/source/propctrlr/formbrowsertools.cxx index ccce47a7346d..ed75149ac460 100644 --- a/extensions/source/propctrlr/formbrowsertools.cxx +++ b/extensions/source/propctrlr/formbrowsertools.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formbrowsertools.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formbrowsertools.hxx b/extensions/source/propctrlr/formbrowsertools.hxx index 760aa9cb6d42..619c48cb4d6b 100644 --- a/extensions/source/propctrlr/formbrowsertools.hxx +++ b/extensions/source/propctrlr/formbrowsertools.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formbrowsertools.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formcomponenthandler.cxx b/extensions/source/propctrlr/formcomponenthandler.cxx index 440d5237f3b1..8302f9fff503 100644 --- a/extensions/source/propctrlr/formcomponenthandler.cxx +++ b/extensions/source/propctrlr/formcomponenthandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formcomponenthandler.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formcomponenthandler.hxx b/extensions/source/propctrlr/formcomponenthandler.hxx index 9b972896e856..dfe976e6de75 100644 --- a/extensions/source/propctrlr/formcomponenthandler.hxx +++ b/extensions/source/propctrlr/formcomponenthandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formcomponenthandler.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formcontroller.cxx b/extensions/source/propctrlr/formcontroller.cxx index 96234358a886..1e894452edbe 100644 --- a/extensions/source/propctrlr/formcontroller.cxx +++ b/extensions/source/propctrlr/formcontroller.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formcontroller.cxx,v $ - * $Revision: 1.91 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formcontroller.hxx b/extensions/source/propctrlr/formcontroller.hxx index 69b412a97d80..e62a47586087 100644 --- a/extensions/source/propctrlr/formcontroller.hxx +++ b/extensions/source/propctrlr/formcontroller.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formcontroller.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formgeometryhandler.cxx b/extensions/source/propctrlr/formgeometryhandler.cxx index 00cfb70ee31e..ca01ce451f36 100644 --- a/extensions/source/propctrlr/formgeometryhandler.cxx +++ b/extensions/source/propctrlr/formgeometryhandler.cxx @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/propctrlr/formlinkdialog.cxx b/extensions/source/propctrlr/formlinkdialog.cxx index 116285246dc2..85d3cb8e10b9 100644 --- a/extensions/source/propctrlr/formlinkdialog.cxx +++ b/extensions/source/propctrlr/formlinkdialog.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formlinkdialog.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formlinkdialog.hrc b/extensions/source/propctrlr/formlinkdialog.hrc index cf9ac53aa58b..768034901182 100644 --- a/extensions/source/propctrlr/formlinkdialog.hrc +++ b/extensions/source/propctrlr/formlinkdialog.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formlinkdialog.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formlinkdialog.hxx b/extensions/source/propctrlr/formlinkdialog.hxx index 747a16044b74..9605ee622234 100644 --- a/extensions/source/propctrlr/formlinkdialog.hxx +++ b/extensions/source/propctrlr/formlinkdialog.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formlinkdialog.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formlinkdialog.src b/extensions/source/propctrlr/formlinkdialog.src index c86ee2a6f1bd..f319675d7c42 100644 --- a/extensions/source/propctrlr/formlinkdialog.src +++ b/extensions/source/propctrlr/formlinkdialog.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formlinkdialog.src,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formlocalid.hrc b/extensions/source/propctrlr/formlocalid.hrc index 06cf2203aff3..dca59a024321 100644 --- a/extensions/source/propctrlr/formlocalid.hrc +++ b/extensions/source/propctrlr/formlocalid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formlocalid.hrc,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formmetadata.cxx b/extensions/source/propctrlr/formmetadata.cxx index 0fba16859fdc..9d8becfbd923 100644 --- a/extensions/source/propctrlr/formmetadata.cxx +++ b/extensions/source/propctrlr/formmetadata.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formmetadata.cxx,v $ - * $Revision: 1.50 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formmetadata.hxx b/extensions/source/propctrlr/formmetadata.hxx index accfa5cc051f..294a43e4a9e7 100644 --- a/extensions/source/propctrlr/formmetadata.hxx +++ b/extensions/source/propctrlr/formmetadata.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formmetadata.hxx,v $ - * $Revision: 1.35 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formres.src b/extensions/source/propctrlr/formres.src index 930b30697da9..1daadd6e0f01 100644 --- a/extensions/source/propctrlr/formres.src +++ b/extensions/source/propctrlr/formres.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formres.src,v $ - * $Revision: 1.82 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formresid.hrc b/extensions/source/propctrlr/formresid.hrc index d8aab240bced..f2de0c252d8b 100644 --- a/extensions/source/propctrlr/formresid.hrc +++ b/extensions/source/propctrlr/formresid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formresid.hrc,v $ - * $Revision: 1.37 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formstrings.cxx b/extensions/source/propctrlr/formstrings.cxx index 8f187d99da3f..57aff105567b 100644 --- a/extensions/source/propctrlr/formstrings.cxx +++ b/extensions/source/propctrlr/formstrings.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formstrings.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/formstrings.hxx b/extensions/source/propctrlr/formstrings.hxx index c07b386584b5..20b0dd34b2cd 100644 --- a/extensions/source/propctrlr/formstrings.hxx +++ b/extensions/source/propctrlr/formstrings.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formstrings.hxx,v $ - * $Revision: 1.39 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/genericpropertyhandler.cxx b/extensions/source/propctrlr/genericpropertyhandler.cxx index c8c5ba3c0836..3c6bf717ffab 100644 --- a/extensions/source/propctrlr/genericpropertyhandler.cxx +++ b/extensions/source/propctrlr/genericpropertyhandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: genericpropertyhandler.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/genericpropertyhandler.hxx b/extensions/source/propctrlr/genericpropertyhandler.hxx index d4228d326387..6e5e5acc575c 100644 --- a/extensions/source/propctrlr/genericpropertyhandler.hxx +++ b/extensions/source/propctrlr/genericpropertyhandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: genericpropertyhandler.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/handlerhelper.cxx b/extensions/source/propctrlr/handlerhelper.cxx index 84952cd6546e..0e82397dae2c 100644 --- a/extensions/source/propctrlr/handlerhelper.cxx +++ b/extensions/source/propctrlr/handlerhelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: handlerhelper.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/handlerhelper.hxx b/extensions/source/propctrlr/handlerhelper.hxx index 4044043137e4..bf42c5555f1b 100644 --- a/extensions/source/propctrlr/handlerhelper.hxx +++ b/extensions/source/propctrlr/handlerhelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: handlerhelper.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/inspectorhelpwindow.cxx b/extensions/source/propctrlr/inspectorhelpwindow.cxx index 1d6e93177eb7..1498bb072649 100644 --- a/extensions/source/propctrlr/inspectorhelpwindow.cxx +++ b/extensions/source/propctrlr/inspectorhelpwindow.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: inspectorhelpwindow.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/inspectorhelpwindow.hxx b/extensions/source/propctrlr/inspectorhelpwindow.hxx index 7a810a2de209..910948b9b563 100644 --- a/extensions/source/propctrlr/inspectorhelpwindow.hxx +++ b/extensions/source/propctrlr/inspectorhelpwindow.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: inspectorhelpwindow.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/inspectormodelbase.cxx b/extensions/source/propctrlr/inspectormodelbase.cxx index 2d69867104fa..8695695d4530 100644 --- a/extensions/source/propctrlr/inspectormodelbase.cxx +++ b/extensions/source/propctrlr/inspectormodelbase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: inspectormodelbase.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/inspectormodelbase.hxx b/extensions/source/propctrlr/inspectormodelbase.hxx index f18fc7d55f58..9f06515b5d2d 100644 --- a/extensions/source/propctrlr/inspectormodelbase.hxx +++ b/extensions/source/propctrlr/inspectormodelbase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: inspectormodelbase.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/linedescriptor.hxx b/extensions/source/propctrlr/linedescriptor.hxx index 05140326707f..d85655c1d5f2 100644 --- a/extensions/source/propctrlr/linedescriptor.hxx +++ b/extensions/source/propctrlr/linedescriptor.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: linedescriptor.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/listselectiondlg.cxx b/extensions/source/propctrlr/listselectiondlg.cxx index 30a980669fd6..14e4ce7de68e 100644 --- a/extensions/source/propctrlr/listselectiondlg.cxx +++ b/extensions/source/propctrlr/listselectiondlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listselectiondlg.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/listselectiondlg.hrc b/extensions/source/propctrlr/listselectiondlg.hrc index cd43c0d93eee..cfd85be0a1aa 100644 --- a/extensions/source/propctrlr/listselectiondlg.hrc +++ b/extensions/source/propctrlr/listselectiondlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listselectiondlg.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/listselectiondlg.hxx b/extensions/source/propctrlr/listselectiondlg.hxx index c01059d8d536..c741f1e08945 100644 --- a/extensions/source/propctrlr/listselectiondlg.hxx +++ b/extensions/source/propctrlr/listselectiondlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listselectiondlg.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/listselectiondlg.src b/extensions/source/propctrlr/listselectiondlg.src index 6a994ce83be8..24a1d7f0a815 100644 --- a/extensions/source/propctrlr/listselectiondlg.src +++ b/extensions/source/propctrlr/listselectiondlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listselectiondlg.src,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/makefile.mk b/extensions/source/propctrlr/makefile.mk index 9b9ffe47aa15..9a212bc61925 100644 --- a/extensions/source/propctrlr/makefile.mk +++ b/extensions/source/propctrlr/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.23.84.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/modulepcr.cxx b/extensions/source/propctrlr/modulepcr.cxx index f6d3d0d27908..4b81c740ad79 100644 --- a/extensions/source/propctrlr/modulepcr.cxx +++ b/extensions/source/propctrlr/modulepcr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: modulepcr.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/modulepcr.hxx b/extensions/source/propctrlr/modulepcr.hxx index 7c3001e55f2a..90ece54e29cf 100644 --- a/extensions/source/propctrlr/modulepcr.hxx +++ b/extensions/source/propctrlr/modulepcr.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: modulepcr.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/newdatatype.cxx b/extensions/source/propctrlr/newdatatype.cxx index 970c314265df..412048a9e7b2 100644 --- a/extensions/source/propctrlr/newdatatype.cxx +++ b/extensions/source/propctrlr/newdatatype.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: newdatatype.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/newdatatype.hrc b/extensions/source/propctrlr/newdatatype.hrc index 7213dded26db..3dc8635b05f7 100644 --- a/extensions/source/propctrlr/newdatatype.hrc +++ b/extensions/source/propctrlr/newdatatype.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: newdatatype.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/newdatatype.hxx b/extensions/source/propctrlr/newdatatype.hxx index c5bd6a45e1fa..501354c3fcf2 100644 --- a/extensions/source/propctrlr/newdatatype.hxx +++ b/extensions/source/propctrlr/newdatatype.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: newdatatype.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/newdatatype.src b/extensions/source/propctrlr/newdatatype.src index c62dba48556c..50fbad0be2f1 100644 --- a/extensions/source/propctrlr/newdatatype.src +++ b/extensions/source/propctrlr/newdatatype.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: newdatatype.src,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/objectinspectormodel.cxx b/extensions/source/propctrlr/objectinspectormodel.cxx index 634741684ba7..fdffb69632b5 100644 --- a/extensions/source/propctrlr/objectinspectormodel.cxx +++ b/extensions/source/propctrlr/objectinspectormodel.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: objectinspectormodel.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrcommon.cxx b/extensions/source/propctrlr/pcrcommon.cxx index b136fd2188b3..9e09d4977697 100644 --- a/extensions/source/propctrlr/pcrcommon.cxx +++ b/extensions/source/propctrlr/pcrcommon.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrcommon.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrcommon.hxx b/extensions/source/propctrlr/pcrcommon.hxx index bb3e56e9f7a2..80f83d03a2e6 100644 --- a/extensions/source/propctrlr/pcrcommon.hxx +++ b/extensions/source/propctrlr/pcrcommon.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrcommon.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrcommontypes.hxx b/extensions/source/propctrlr/pcrcommontypes.hxx index 3b1c3bc2ce0b..230580259617 100644 --- a/extensions/source/propctrlr/pcrcommontypes.hxx +++ b/extensions/source/propctrlr/pcrcommontypes.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrcommontypes.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrcomponentcontext.cxx b/extensions/source/propctrlr/pcrcomponentcontext.cxx index 5dbdcaf5f855..c998872864b2 100644 --- a/extensions/source/propctrlr/pcrcomponentcontext.cxx +++ b/extensions/source/propctrlr/pcrcomponentcontext.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrcomponentcontext.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrcomponentcontext.hxx b/extensions/source/propctrlr/pcrcomponentcontext.hxx index b306aa24855f..ddec56886137 100644 --- a/extensions/source/propctrlr/pcrcomponentcontext.hxx +++ b/extensions/source/propctrlr/pcrcomponentcontext.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrcomponentcontext.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrmiscres.src b/extensions/source/propctrlr/pcrmiscres.src index 8aead08aa28c..d547b52ed5ea 100644 --- a/extensions/source/propctrlr/pcrmiscres.src +++ b/extensions/source/propctrlr/pcrmiscres.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrmiscres.src,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrservices.cxx b/extensions/source/propctrlr/pcrservices.cxx index b4c87ab58ef2..e04169e7d90e 100644 --- a/extensions/source/propctrlr/pcrservices.cxx +++ b/extensions/source/propctrlr/pcrservices.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrservices.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrstrings.cxx b/extensions/source/propctrlr/pcrstrings.cxx index be1e42599c30..ff7a1138e4fc 100644 --- a/extensions/source/propctrlr/pcrstrings.cxx +++ b/extensions/source/propctrlr/pcrstrings.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrstrings.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrstrings.hxx b/extensions/source/propctrlr/pcrstrings.hxx index 3b29bf87f405..9a611f5fce7f 100644 --- a/extensions/source/propctrlr/pcrstrings.hxx +++ b/extensions/source/propctrlr/pcrstrings.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrstrings.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrunodialogs.cxx b/extensions/source/propctrlr/pcrunodialogs.cxx index 69b317498a50..e870510c7cc2 100644 --- a/extensions/source/propctrlr/pcrunodialogs.cxx +++ b/extensions/source/propctrlr/pcrunodialogs.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrunodialogs.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pcrunodialogs.hxx b/extensions/source/propctrlr/pcrunodialogs.hxx index 37931cec7bd9..929b52a5dd67 100644 --- a/extensions/source/propctrlr/pcrunodialogs.hxx +++ b/extensions/source/propctrlr/pcrunodialogs.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pcrunodialogs.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propcontroller.cxx b/extensions/source/propctrlr/propcontroller.cxx index ac9ae434cad6..cf14f3778682 100644 --- a/extensions/source/propctrlr/propcontroller.cxx +++ b/extensions/source/propctrlr/propcontroller.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propcontroller.cxx,v $ - * $Revision: 1.41.66.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propcontroller.hxx b/extensions/source/propctrlr/propcontroller.hxx index bfa55053338b..4cc77e88c78e 100644 --- a/extensions/source/propctrlr/propcontroller.hxx +++ b/extensions/source/propctrlr/propcontroller.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propcontroller.hxx,v $ - * $Revision: 1.34 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propcontrolobserver.hxx b/extensions/source/propctrlr/propcontrolobserver.hxx index 4ded1936d8e3..65bfe7ee0233 100644 --- a/extensions/source/propctrlr/propcontrolobserver.hxx +++ b/extensions/source/propctrlr/propcontrolobserver.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propcontrolobserver.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propertycomposer.cxx b/extensions/source/propctrlr/propertycomposer.cxx index cd89ae37a8e2..3cca2b1553d3 100644 --- a/extensions/source/propctrlr/propertycomposer.cxx +++ b/extensions/source/propctrlr/propertycomposer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertycomposer.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propertycomposer.hxx b/extensions/source/propctrlr/propertycomposer.hxx index 91d5e6e6a820..4a67c1da9e6d 100644 --- a/extensions/source/propctrlr/propertycomposer.hxx +++ b/extensions/source/propctrlr/propertycomposer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertycomposer.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propertycontrolextender.cxx b/extensions/source/propctrlr/propertycontrolextender.cxx index 205f7c423025..616a6203bc1c 100644 --- a/extensions/source/propctrlr/propertycontrolextender.cxx +++ b/extensions/source/propctrlr/propertycontrolextender.cxx @@ -1,30 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2008 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* $RCSfile: code,v $ -* -* $Revision: 1.3 $ -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/extensions/source/propctrlr/propertycontrolextender.hxx b/extensions/source/propctrlr/propertycontrolextender.hxx index 591df0be6de7..29e4138a6c39 100644 --- a/extensions/source/propctrlr/propertycontrolextender.hxx +++ b/extensions/source/propctrlr/propertycontrolextender.hxx @@ -1,30 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2008 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* $RCSfile: code,v $ -* -* $Revision: 1.3 $ -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef EXTENSIONS_PROPERTYCONTROLEXTENDER_HXX diff --git a/extensions/source/propctrlr/propertyeditor.cxx b/extensions/source/propctrlr/propertyeditor.cxx index f076da707800..36d2e78956a7 100644 --- a/extensions/source/propctrlr/propertyeditor.cxx +++ b/extensions/source/propctrlr/propertyeditor.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertyeditor.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propertyeditor.hxx b/extensions/source/propctrlr/propertyeditor.hxx index 5881b579c3e0..304b7628b1d5 100644 --- a/extensions/source/propctrlr/propertyeditor.hxx +++ b/extensions/source/propctrlr/propertyeditor.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertyeditor.hxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propertyhandler.cxx b/extensions/source/propctrlr/propertyhandler.cxx index d81966e39257..ba40fabdcd17 100644 --- a/extensions/source/propctrlr/propertyhandler.cxx +++ b/extensions/source/propctrlr/propertyhandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertyhandler.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propertyhandler.hxx b/extensions/source/propctrlr/propertyhandler.hxx index 4f1aa8f3e82f..073debdccda5 100644 --- a/extensions/source/propctrlr/propertyhandler.hxx +++ b/extensions/source/propctrlr/propertyhandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertyhandler.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propertyinfo.hxx b/extensions/source/propctrlr/propertyinfo.hxx index 04321fe77ba9..e389c3282460 100644 --- a/extensions/source/propctrlr/propertyinfo.hxx +++ b/extensions/source/propctrlr/propertyinfo.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertyinfo.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propeventtranslation.cxx b/extensions/source/propctrlr/propeventtranslation.cxx index 0da84e3803c0..f82d81e75172 100644 --- a/extensions/source/propctrlr/propeventtranslation.cxx +++ b/extensions/source/propctrlr/propeventtranslation.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propeventtranslation.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propeventtranslation.hxx b/extensions/source/propctrlr/propeventtranslation.hxx index 0c0e084737be..e10ab99d2e2b 100644 --- a/extensions/source/propctrlr/propeventtranslation.hxx +++ b/extensions/source/propctrlr/propeventtranslation.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propeventtranslation.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/proplinelistener.hxx b/extensions/source/propctrlr/proplinelistener.hxx index 4bf3e92a473f..143483a6b9fd 100644 --- a/extensions/source/propctrlr/proplinelistener.hxx +++ b/extensions/source/propctrlr/proplinelistener.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: proplinelistener.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propres.src b/extensions/source/propctrlr/propres.src index 7ce673f8136f..2701c0e3a1df 100644 --- a/extensions/source/propctrlr/propres.src +++ b/extensions/source/propctrlr/propres.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propres.src,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/propresid.hrc b/extensions/source/propctrlr/propresid.hrc index 338b0eebab88..bdf79c7d5c81 100644 --- a/extensions/source/propctrlr/propresid.hrc +++ b/extensions/source/propctrlr/propresid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propresid.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pushbuttonnavigation.cxx b/extensions/source/propctrlr/pushbuttonnavigation.cxx index 66806a2b3681..0390e1c927fd 100644 --- a/extensions/source/propctrlr/pushbuttonnavigation.cxx +++ b/extensions/source/propctrlr/pushbuttonnavigation.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pushbuttonnavigation.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/pushbuttonnavigation.hxx b/extensions/source/propctrlr/pushbuttonnavigation.hxx index 24667e8af664..e53de6fb2139 100644 --- a/extensions/source/propctrlr/pushbuttonnavigation.hxx +++ b/extensions/source/propctrlr/pushbuttonnavigation.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pushbuttonnavigation.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/selectlabeldialog.cxx b/extensions/source/propctrlr/selectlabeldialog.cxx index 1767371a98f8..8beb5c557785 100644 --- a/extensions/source/propctrlr/selectlabeldialog.cxx +++ b/extensions/source/propctrlr/selectlabeldialog.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: selectlabeldialog.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/selectlabeldialog.hxx b/extensions/source/propctrlr/selectlabeldialog.hxx index 2f05566f2538..27294a0f9977 100644 --- a/extensions/source/propctrlr/selectlabeldialog.hxx +++ b/extensions/source/propctrlr/selectlabeldialog.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: selectlabeldialog.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/selectlabeldialog.src b/extensions/source/propctrlr/selectlabeldialog.src index 9bab618a1dd6..af536befb3bf 100644 --- a/extensions/source/propctrlr/selectlabeldialog.src +++ b/extensions/source/propctrlr/selectlabeldialog.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: selectlabeldialog.src,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/sqlcommanddesign.cxx b/extensions/source/propctrlr/sqlcommanddesign.cxx index 8b9c6ebc26fd..294945f77f2d 100644 --- a/extensions/source/propctrlr/sqlcommanddesign.cxx +++ b/extensions/source/propctrlr/sqlcommanddesign.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sqlcommanddesign.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/sqlcommanddesign.hxx b/extensions/source/propctrlr/sqlcommanddesign.hxx index 9861449003b0..72dea2b20f74 100644 --- a/extensions/source/propctrlr/sqlcommanddesign.hxx +++ b/extensions/source/propctrlr/sqlcommanddesign.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sqlcommanddesign.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx index dac5ccca77d5..ca6e1090386f 100644 --- a/extensions/source/propctrlr/standardcontrol.cxx +++ b/extensions/source/propctrlr/standardcontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: standardcontrol.cxx,v $ - * $Revision: 1.32 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/standardcontrol.hxx b/extensions/source/propctrlr/standardcontrol.hxx index d87865c0405c..9ee46e110bc6 100644 --- a/extensions/source/propctrlr/standardcontrol.hxx +++ b/extensions/source/propctrlr/standardcontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: standardcontrol.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/stlops.hxx b/extensions/source/propctrlr/stlops.hxx index 2350e8db4370..36511582618b 100644 --- a/extensions/source/propctrlr/stlops.hxx +++ b/extensions/source/propctrlr/stlops.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: stlops.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/stringdefine.hxx b/extensions/source/propctrlr/stringdefine.hxx index 9c7fa01fbe33..3d31011d13b0 100644 --- a/extensions/source/propctrlr/stringdefine.hxx +++ b/extensions/source/propctrlr/stringdefine.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: stringdefine.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/stringrepresentation.cxx b/extensions/source/propctrlr/stringrepresentation.cxx index 530f5de8797b..2897ba57d9e6 100644 --- a/extensions/source/propctrlr/stringrepresentation.cxx +++ b/extensions/source/propctrlr/stringrepresentation.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: stringrepresentation.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/submissionhandler.cxx b/extensions/source/propctrlr/submissionhandler.cxx index 06ae334dd218..c2c56a6d2ad6 100644 --- a/extensions/source/propctrlr/submissionhandler.cxx +++ b/extensions/source/propctrlr/submissionhandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submissionhandler.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/submissionhandler.hxx b/extensions/source/propctrlr/submissionhandler.hxx index 434551bb91b2..c2c19ecfb4d9 100644 --- a/extensions/source/propctrlr/submissionhandler.hxx +++ b/extensions/source/propctrlr/submissionhandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submissionhandler.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/taborder.cxx b/extensions/source/propctrlr/taborder.cxx index 865a0074d457..3ed3dff35081 100644 --- a/extensions/source/propctrlr/taborder.cxx +++ b/extensions/source/propctrlr/taborder.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: taborder.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/taborder.hrc b/extensions/source/propctrlr/taborder.hrc index 78c398944bcc..00a6341d13a8 100644 --- a/extensions/source/propctrlr/taborder.hrc +++ b/extensions/source/propctrlr/taborder.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: taborder.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/taborder.hxx b/extensions/source/propctrlr/taborder.hxx index b8dae415a1dc..392df3f682eb 100644 --- a/extensions/source/propctrlr/taborder.hxx +++ b/extensions/source/propctrlr/taborder.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: taborder.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/taborder.src b/extensions/source/propctrlr/taborder.src index 681176cb314e..73f12ff3ff89 100644 --- a/extensions/source/propctrlr/taborder.src +++ b/extensions/source/propctrlr/taborder.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: taborder.src,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/unourl.cxx b/extensions/source/propctrlr/unourl.cxx index cd440680a7ba..09e124d6593b 100644 --- a/extensions/source/propctrlr/unourl.cxx +++ b/extensions/source/propctrlr/unourl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unourl.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/unourl.hxx b/extensions/source/propctrlr/unourl.hxx index 34adc6ec50a5..86298ca3a42f 100644 --- a/extensions/source/propctrlr/unourl.hxx +++ b/extensions/source/propctrlr/unourl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unourl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/usercontrol.cxx b/extensions/source/propctrlr/usercontrol.cxx index b27afa750fa6..3bbc8dd7d7b7 100644 --- a/extensions/source/propctrlr/usercontrol.cxx +++ b/extensions/source/propctrlr/usercontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: usercontrol.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/usercontrol.hxx b/extensions/source/propctrlr/usercontrol.hxx index 0d9a0e5a85d7..88bb20223516 100644 --- a/extensions/source/propctrlr/usercontrol.hxx +++ b/extensions/source/propctrlr/usercontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: usercontrol.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/xsddatatypes.cxx b/extensions/source/propctrlr/xsddatatypes.cxx index e3e6a6528b95..25a77840c6a7 100644 --- a/extensions/source/propctrlr/xsddatatypes.cxx +++ b/extensions/source/propctrlr/xsddatatypes.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsddatatypes.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/xsddatatypes.hxx b/extensions/source/propctrlr/xsddatatypes.hxx index 0d7f5dc297e4..8bb722d3990a 100644 --- a/extensions/source/propctrlr/xsddatatypes.hxx +++ b/extensions/source/propctrlr/xsddatatypes.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsddatatypes.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/xsdvalidationhelper.cxx b/extensions/source/propctrlr/xsdvalidationhelper.cxx index ea34b2678d14..f203b36bcffa 100644 --- a/extensions/source/propctrlr/xsdvalidationhelper.cxx +++ b/extensions/source/propctrlr/xsdvalidationhelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsdvalidationhelper.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/xsdvalidationhelper.hxx b/extensions/source/propctrlr/xsdvalidationhelper.hxx index 34be08b1e18d..6eb7d8caae61 100644 --- a/extensions/source/propctrlr/xsdvalidationhelper.hxx +++ b/extensions/source/propctrlr/xsdvalidationhelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsdvalidationhelper.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/xsdvalidationpropertyhandler.cxx b/extensions/source/propctrlr/xsdvalidationpropertyhandler.cxx index 9555caaac6d3..7af9166510da 100644 --- a/extensions/source/propctrlr/xsdvalidationpropertyhandler.cxx +++ b/extensions/source/propctrlr/xsdvalidationpropertyhandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsdvalidationpropertyhandler.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx b/extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx index bb7356849e46..e78a33096b32 100644 --- a/extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx +++ b/extensions/source/propctrlr/xsdvalidationpropertyhandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsdvalidationpropertyhandler.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/resource/makefile.mk b/extensions/source/resource/makefile.mk index 5fdd7ee03603..2502d8467f22 100644 --- a/extensions/source/resource/makefile.mk +++ b/extensions/source/resource/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.12 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/resource/oooresourceloader.cxx b/extensions/source/resource/oooresourceloader.cxx index e6effb730de7..6a9d6f338c06 100644 --- a/extensions/source/resource/oooresourceloader.cxx +++ b/extensions/source/resource/oooresourceloader.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oooresourceloader.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/resource/res_services.cxx b/extensions/source/resource/res_services.cxx index 066911649843..6babbe48e8cd 100644 --- a/extensions/source/resource/res_services.cxx +++ b/extensions/source/resource/res_services.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: res_services.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/resource/res_services.hxx b/extensions/source/resource/res_services.hxx index 396539b84b75..c62d9e6e495c 100644 --- a/extensions/source/resource/res_services.hxx +++ b/extensions/source/resource/res_services.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: res_services.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/resource/resource.cxx b/extensions/source/resource/resource.cxx index f5c9fe14c68d..73cb48d479a9 100644 --- a/extensions/source/resource/resource.cxx +++ b/extensions/source/resource/resource.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: resource.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/grid.cxx b/extensions/source/scanner/grid.cxx index bf78f336c76d..ac3e322bc258 100644 --- a/extensions/source/scanner/grid.cxx +++ b/extensions/source/scanner/grid.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grid.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/grid.hrc b/extensions/source/scanner/grid.hrc index 626694ec969d..480598bf6c4f 100644 --- a/extensions/source/scanner/grid.hrc +++ b/extensions/source/scanner/grid.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grid.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/grid.hxx b/extensions/source/scanner/grid.hxx index b9ef8031801a..42791f355493 100644 --- a/extensions/source/scanner/grid.hxx +++ b/extensions/source/scanner/grid.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grid.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/grid.src b/extensions/source/scanner/grid.src index 5a774384c887..e7e8128cbc84 100644 --- a/extensions/source/scanner/grid.src +++ b/extensions/source/scanner/grid.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: grid.src,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/makefile.mk b/extensions/source/scanner/makefile.mk index e4e36e44a790..347b1e1cfc26 100644 --- a/extensions/source/scanner/makefile.mk +++ b/extensions/source/scanner/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.18 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/sane.cxx b/extensions/source/scanner/sane.cxx index 97a30043c1c7..af1a8d91c8fd 100644 --- a/extensions/source/scanner/sane.cxx +++ b/extensions/source/scanner/sane.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sane.cxx,v $ - * $Revision: 1.16.60.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/sane.hxx b/extensions/source/scanner/sane.hxx index 7b6ed63caee5..44ce0d295f42 100644 --- a/extensions/source/scanner/sane.hxx +++ b/extensions/source/scanner/sane.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sane.hxx,v $ - * $Revision: 1.8.64.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/sanedlg.cxx b/extensions/source/scanner/sanedlg.cxx index de2e7f272350..2889257a1f1c 100644 --- a/extensions/source/scanner/sanedlg.cxx +++ b/extensions/source/scanner/sanedlg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sanedlg.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/sanedlg.hrc b/extensions/source/scanner/sanedlg.hrc index b243fc8d2628..ca893122c9a9 100644 --- a/extensions/source/scanner/sanedlg.hrc +++ b/extensions/source/scanner/sanedlg.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sanedlg.hrc,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/sanedlg.hxx b/extensions/source/scanner/sanedlg.hxx index 9701e80abe44..2ea35ca33c83 100644 --- a/extensions/source/scanner/sanedlg.hxx +++ b/extensions/source/scanner/sanedlg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sanedlg.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/sanedlg.src b/extensions/source/scanner/sanedlg.src index c107f52e41a4..2c4cc338ab8a 100644 --- a/extensions/source/scanner/sanedlg.src +++ b/extensions/source/scanner/sanedlg.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sanedlg.src,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/scanner.cxx b/extensions/source/scanner/scanner.cxx index 59ffe8271cd7..884ee866a902 100644 --- a/extensions/source/scanner/scanner.cxx +++ b/extensions/source/scanner/scanner.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scanner.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/scanner.hxx b/extensions/source/scanner/scanner.hxx index 6b0431c35163..6ca0804d1c33 100644 --- a/extensions/source/scanner/scanner.hxx +++ b/extensions/source/scanner/scanner.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scanner.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/scanunx.cxx b/extensions/source/scanner/scanunx.cxx index 0b1d1e68f9f3..b47ddb9adbea 100644 --- a/extensions/source/scanner/scanunx.cxx +++ b/extensions/source/scanner/scanunx.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scanunx.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/scanwin.cxx b/extensions/source/scanner/scanwin.cxx index 87c14f91d8ee..e14fffa87d0c 100644 --- a/extensions/source/scanner/scanwin.cxx +++ b/extensions/source/scanner/scanwin.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scanwin.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/scnserv.cxx b/extensions/source/scanner/scnserv.cxx index 4493d42f95b3..e7c125fe1cae 100644 --- a/extensions/source/scanner/scnserv.cxx +++ b/extensions/source/scanner/scnserv.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scnserv.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/twain.cxx b/extensions/source/scanner/twain.cxx index a42e178e2cc3..b11f2725501e 100644 --- a/extensions/source/scanner/twain.cxx +++ b/extensions/source/scanner/twain.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: twain.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/scanner/twain.hxx b/extensions/source/scanner/twain.hxx index 3110fc932069..7599f86d7813 100644 --- a/extensions/source/scanner/twain.hxx +++ b/extensions/source/scanner/twain.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: twain.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/makefile.mk b/extensions/source/svg/makefile.mk index 9764b0e063be..543fbca73982 100644 --- a/extensions/source/svg/makefile.mk +++ b/extensions/source/svg/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.8 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/svgaction.cxx b/extensions/source/svg/svgaction.cxx index 4e3fd8b3e481..dc2c47ecb937 100644 --- a/extensions/source/svg/svgaction.cxx +++ b/extensions/source/svg/svgaction.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svgaction.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/svgaction.hxx b/extensions/source/svg/svgaction.hxx index 555e5282040b..8e7bececb87d 100644 --- a/extensions/source/svg/svgaction.hxx +++ b/extensions/source/svg/svgaction.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svgaction.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/svgcom.hxx b/extensions/source/svg/svgcom.hxx index 841366ca0e28..3e593ff3ccf6 100644 --- a/extensions/source/svg/svgcom.hxx +++ b/extensions/source/svg/svgcom.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svgcom.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/svgprinter.cxx b/extensions/source/svg/svgprinter.cxx index c6c05e532a73..c7605a8af16d 100644 --- a/extensions/source/svg/svgprinter.cxx +++ b/extensions/source/svg/svgprinter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svgprinter.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/svgprinter.hxx b/extensions/source/svg/svgprinter.hxx index 539c80ec4340..743a86bc7a50 100644 --- a/extensions/source/svg/svgprinter.hxx +++ b/extensions/source/svg/svgprinter.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svgprinter.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/svguno.cxx b/extensions/source/svg/svguno.cxx index 78a37464eb0b..cb76e80d9319 100644 --- a/extensions/source/svg/svguno.cxx +++ b/extensions/source/svg/svguno.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svguno.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/svgwriter.cxx b/extensions/source/svg/svgwriter.cxx index bdaabe9bf5b8..0a2ae22242ff 100644 --- a/extensions/source/svg/svgwriter.cxx +++ b/extensions/source/svg/svgwriter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svgwriter.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/svg/svgwriter.hxx b/extensions/source/svg/svgwriter.hxx index b5a3d473b726..dc1ea932ebe3 100644 --- a/extensions/source/svg/svgwriter.hxx +++ b/extensions/source/svg/svgwriter.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: svgwriter.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/unoactivex/main/initwindowpeer.cxx b/extensions/source/unoactivex/main/initwindowpeer.cxx index 9119b45bcc6e..cbdc9146fd0d 100644 --- a/extensions/source/unoactivex/main/initwindowpeer.cxx +++ b/extensions/source/unoactivex/main/initwindowpeer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: initwindowpeer.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/actionlistener.hxx b/extensions/source/update/check/actionlistener.hxx index 76f942d402d7..6d90357aef85 100644 --- a/extensions/source/update/check/actionlistener.hxx +++ b/extensions/source/update/check/actionlistener.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: actionlistener.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/download.cxx b/extensions/source/update/check/download.cxx index eaa16a9f9368..dd7da492ff57 100644 --- a/extensions/source/update/check/download.cxx +++ b/extensions/source/update/check/download.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: download.cxx,v $ - * $Revision: 1.7.88.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/download.hxx b/extensions/source/update/check/download.hxx index 24c2842a709d..1b2fb678417b 100644 --- a/extensions/source/update/check/download.hxx +++ b/extensions/source/update/check/download.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: download.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/makefile.mk b/extensions/source/update/check/makefile.mk index 1824a1f63c7d..b87eb0377803 100644 --- a/extensions/source/update/check/makefile.mk +++ b/extensions/source/update/check/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.12 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/transform.pl b/extensions/source/update/check/transform.pl index 79859cb455a4..fb452ae0482c 100644 --- a/extensions/source/update/check/transform.pl +++ b/extensions/source/update/check/transform.pl @@ -6,14 +6,10 @@ eval 'exec perl -wS $0 ${1+"$@"}' # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: transform.pl,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatecheck.cxx b/extensions/source/update/check/updatecheck.cxx index 7ca5e97239d1..10632cd23fbd 100644 --- a/extensions/source/update/check/updatecheck.cxx +++ b/extensions/source/update/check/updatecheck.cxx @@ -2,12 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatecheck.cxx,v $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatecheck.hxx b/extensions/source/update/check/updatecheck.hxx index c3a088897860..59a1727f4bd9 100644 --- a/extensions/source/update/check/updatecheck.hxx +++ b/extensions/source/update/check/updatecheck.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatecheck.hxx,v $ - * $Revision: 1.6.70.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatecheckconfig.cxx b/extensions/source/update/check/updatecheckconfig.cxx index 45a7c15ecb2e..b3e559c5f136 100644 --- a/extensions/source/update/check/updatecheckconfig.cxx +++ b/extensions/source/update/check/updatecheckconfig.cxx @@ -2,7 +2,7 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * diff --git a/extensions/source/update/check/updatecheckconfig.hxx b/extensions/source/update/check/updatecheckconfig.hxx index dc66656314dd..bc1fd0987b18 100644 --- a/extensions/source/update/check/updatecheckconfig.hxx +++ b/extensions/source/update/check/updatecheckconfig.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatecheckconfig.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatecheckconfiglistener.hxx b/extensions/source/update/check/updatecheckconfiglistener.hxx index 6ff0af2fb457..9d2c406b455a 100644 --- a/extensions/source/update/check/updatecheckconfiglistener.hxx +++ b/extensions/source/update/check/updatecheckconfiglistener.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatecheckconfiglistener.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatecheckjob.cxx b/extensions/source/update/check/updatecheckjob.cxx index f64ba851e679..3be38dd9888a 100644 --- a/extensions/source/update/check/updatecheckjob.cxx +++ b/extensions/source/update/check/updatecheckjob.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatecheckjob.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatehdl.cxx b/extensions/source/update/check/updatehdl.cxx index ad1debd91beb..cd1c5f1f721a 100644 --- a/extensions/source/update/check/updatehdl.cxx +++ b/extensions/source/update/check/updatehdl.cxx @@ -2,12 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatehdl.cxx,v $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatehdl.hrc b/extensions/source/update/check/updatehdl.hrc index 906a2e2a5db7..6389a661bf6c 100644 --- a/extensions/source/update/check/updatehdl.hrc +++ b/extensions/source/update/check/updatehdl.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatehdl.hrc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatehdl.hxx b/extensions/source/update/check/updatehdl.hxx index 9b33098f30f1..696e2cdda0cf 100644 --- a/extensions/source/update/check/updatehdl.hxx +++ b/extensions/source/update/check/updatehdl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatehdl.hxx,v $ - * $Revision: 1.5.94.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updatehdl.src b/extensions/source/update/check/updatehdl.src index 7e846d3d9185..d371a80b33cb 100644 --- a/extensions/source/update/check/updatehdl.src +++ b/extensions/source/update/check/updatehdl.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatehdl.src,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updateinfo.hxx b/extensions/source/update/check/updateinfo.hxx index 3de0fcbea24e..3249a59ad7d0 100644 --- a/extensions/source/update/check/updateinfo.hxx +++ b/extensions/source/update/check/updateinfo.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updateinfo.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updateprotocol.cxx b/extensions/source/update/check/updateprotocol.cxx index 2794f299928c..5d51ea14cc6f 100644 --- a/extensions/source/update/check/updateprotocol.cxx +++ b/extensions/source/update/check/updateprotocol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updateprotocol.cxx,v $ - * $Revision: 1.11.70.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updateprotocol.hxx b/extensions/source/update/check/updateprotocol.hxx index 92fd663612ac..d99ae9e7af2d 100644 --- a/extensions/source/update/check/updateprotocol.hxx +++ b/extensions/source/update/check/updateprotocol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updateprotocol.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/check/updateprotocoltest.cxx b/extensions/source/update/check/updateprotocoltest.cxx index df1a07430e35..70623cea6224 100644 --- a/extensions/source/update/check/updateprotocoltest.cxx +++ b/extensions/source/update/check/updateprotocoltest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updateprotocoltest.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/feed/makefile.mk b/extensions/source/update/feed/makefile.mk index 30f0fdeb00a8..c7d15a2beb74 100644 --- a/extensions/source/update/feed/makefile.mk +++ b/extensions/source/update/feed/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/feed/test/makefile.mk b/extensions/source/update/feed/test/makefile.mk index 6d95cbbf1e7a..3d972a761233 100644 --- a/extensions/source/update/feed/test/makefile.mk +++ b/extensions/source/update/feed/test/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/feed/test/updatefeedtest.cxx b/extensions/source/update/feed/test/updatefeedtest.cxx index df56649fd6c0..025a16dbcd76 100644 --- a/extensions/source/update/feed/test/updatefeedtest.cxx +++ b/extensions/source/update/feed/test/updatefeedtest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatefeedtest.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/feed/updatefeed.cxx b/extensions/source/update/feed/updatefeed.cxx index 8d33e63b5770..e5eb490e29a2 100644 --- a/extensions/source/update/feed/updatefeed.cxx +++ b/extensions/source/update/feed/updatefeed.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatefeed.cxx,v $ - * $Revision: 1.11.52.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/tools/makefile.mk b/extensions/source/update/tools/makefile.mk index 1abf7817aa27..c8c41532662e 100644 --- a/extensions/source/update/tools/makefile.mk +++ b/extensions/source/update/tools/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/tools/ztool.cxx b/extensions/source/update/tools/ztool.cxx index 2408b6bf65ce..6bb38c65d59a 100644 --- a/extensions/source/update/tools/ztool.cxx +++ b/extensions/source/update/tools/ztool.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ztool.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/ui/makefile.mk b/extensions/source/update/ui/makefile.mk index 135e7e1e730f..1cf95a52108d 100644 --- a/extensions/source/update/ui/makefile.mk +++ b/extensions/source/update/ui/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index c5ac7f485ca4..a2a8c31908fc 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatecheckui.cxx,v $ - * $Revision: 1.19.18.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/ui/updatecheckui.hrc b/extensions/source/update/ui/updatecheckui.hrc index c1d27546f28f..3d92e4579f58 100644 --- a/extensions/source/update/ui/updatecheckui.hrc +++ b/extensions/source/update/ui/updatecheckui.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatecheckui.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/update/ui/updatecheckui.src b/extensions/source/update/ui/updatecheckui.src index 8c7b70ab07be..39b6f44dce4d 100644 --- a/extensions/source/update/ui/updatecheckui.src +++ b/extensions/source/update/ui/updatecheckui.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: updatecheckui.src,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/xmlextract/makefile.mk b/extensions/source/xmlextract/makefile.mk index 20a37ec86045..8a24ac5313c1 100644 --- a/extensions/source/xmlextract/makefile.mk +++ b/extensions/source/xmlextract/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/xmlextract/xmxcom.hxx b/extensions/source/xmlextract/xmxcom.hxx index 4f736860fec0..d5131b4556bf 100644 --- a/extensions/source/xmlextract/xmxcom.hxx +++ b/extensions/source/xmlextract/xmxcom.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmxcom.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/xmlextract/xmxtrct.cxx b/extensions/source/xmlextract/xmxtrct.cxx index 7347a3318b1a..a50c1816bd02 100644 --- a/extensions/source/xmlextract/xmxtrct.cxx +++ b/extensions/source/xmlextract/xmxtrct.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmxtrct.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/xmlextract/xmxtrct.hxx b/extensions/source/xmlextract/xmxtrct.hxx index 6183f6a290ed..2734c45ecae5 100644 --- a/extensions/source/xmlextract/xmxtrct.hxx +++ b/extensions/source/xmlextract/xmxtrct.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmxtrct.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/source/xmlextract/xmxuno.cxx b/extensions/source/xmlextract/xmxuno.cxx index 4bc3e91f4c98..ba4044a54e6b 100644 --- a/extensions/source/xmlextract/xmxuno.cxx +++ b/extensions/source/xmlextract/xmxuno.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmxuno.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/stardiv/fontest/fontest.idl b/extensions/stardiv/fontest/fontest.idl index 61ba3e24b152..c000a5f0470b 100644 --- a/extensions/stardiv/fontest/fontest.idl +++ b/extensions/stardiv/fontest/fontest.idl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: fontest.idl,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/stardiv/fontest/makefile.mk b/extensions/stardiv/fontest/makefile.mk index 27299f7eb888..3ea8d98cfc87 100644 --- a/extensions/stardiv/fontest/makefile.mk +++ b/extensions/stardiv/fontest/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/stardiv/oinstchk/makefile.mk b/extensions/stardiv/oinstchk/makefile.mk index b1cbae716483..ea496166956c 100644 --- a/extensions/stardiv/oinstchk/makefile.mk +++ b/extensions/stardiv/oinstchk/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/stardiv/oinstchk/oinstchk.idl b/extensions/stardiv/oinstchk/oinstchk.idl index 18cd90200fc3..04b3fbcd8a67 100644 --- a/extensions/stardiv/oinstchk/oinstchk.idl +++ b/extensions/stardiv/oinstchk/oinstchk.idl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oinstchk.idl,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/stardiv/pgp/makefile.mk b/extensions/stardiv/pgp/makefile.mk index 1b8d5879ae33..dbce7d52b388 100644 --- a/extensions/stardiv/pgp/makefile.mk +++ b/extensions/stardiv/pgp/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/AxTestComponents.cpp b/extensions/test/ole/AxTestComponents/AxTestComponents.cpp index b06aaff2c838..343b206d0085 100644 --- a/extensions/test/ole/AxTestComponents/AxTestComponents.cpp +++ b/extensions/test/ole/AxTestComponents/AxTestComponents.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AxTestComponents.cpp,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/AxTestComponents.idl b/extensions/test/ole/AxTestComponents/AxTestComponents.idl index 9b8d5b5aa49a..707d85f58941 100644 --- a/extensions/test/ole/AxTestComponents/AxTestComponents.idl +++ b/extensions/test/ole/AxTestComponents/AxTestComponents.idl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AxTestComponents.idl,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/AxTestComponents.rc b/extensions/test/ole/AxTestComponents/AxTestComponents.rc index c4652e87a957..b2b3c96ba6c2 100644 --- a/extensions/test/ole/AxTestComponents/AxTestComponents.rc +++ b/extensions/test/ole/AxTestComponents/AxTestComponents.rc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AxTestComponents.rc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/Basic.cpp b/extensions/test/ole/AxTestComponents/Basic.cpp index 1a063e5c8fcf..d48bc5fe59ca 100644 --- a/extensions/test/ole/AxTestComponents/Basic.cpp +++ b/extensions/test/ole/AxTestComponents/Basic.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Basic.cpp,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/Basic.h b/extensions/test/ole/AxTestComponents/Basic.h index 92d59ba4f1f3..0a12b709e33e 100644 --- a/extensions/test/ole/AxTestComponents/Basic.h +++ b/extensions/test/ole/AxTestComponents/Basic.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Basic.h,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/Foo.cpp b/extensions/test/ole/AxTestComponents/Foo.cpp index a37983cb2909..256b900945a2 100644 --- a/extensions/test/ole/AxTestComponents/Foo.cpp +++ b/extensions/test/ole/AxTestComponents/Foo.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Foo.cpp,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/Foo.h b/extensions/test/ole/AxTestComponents/Foo.h index 494e94d4221c..6c6625c43a30 100644 --- a/extensions/test/ole/AxTestComponents/Foo.h +++ b/extensions/test/ole/AxTestComponents/Foo.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Foo.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/StdAfx.cpp b/extensions/test/ole/AxTestComponents/StdAfx.cpp index 74ebe5475b0b..97fda64fc540 100644 --- a/extensions/test/ole/AxTestComponents/StdAfx.cpp +++ b/extensions/test/ole/AxTestComponents/StdAfx.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StdAfx.cpp,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/StdAfx.h b/extensions/test/ole/AxTestComponents/StdAfx.h index 409cf9574170..bcd957568818 100644 --- a/extensions/test/ole/AxTestComponents/StdAfx.h +++ b/extensions/test/ole/AxTestComponents/StdAfx.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StdAfx.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/AxTestComponents/resource.h b/extensions/test/ole/AxTestComponents/resource.h index b1d36f4f13a6..a8bc1785e9ba 100644 --- a/extensions/test/ole/AxTestComponents/resource.h +++ b/extensions/test/ole/AxTestComponents/resource.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: resource.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/EventListenerSample/VBEventListener/VBEventListener.cls b/extensions/test/ole/EventListenerSample/VBEventListener/VBEventListener.cls index d341b7944a20..4c36785b56dc 100644 --- a/extensions/test/ole/EventListenerSample/VBEventListener/VBEventListener.cls +++ b/extensions/test/ole/EventListenerSample/VBEventListener/VBEventListener.cls @@ -2,14 +2,10 @@ ' ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ' -' Copyright 2008 by Sun Microsystems, Inc. +' Copyright 2000, 2010 Oracle and/or its affiliates. ' ' OpenOffice.org - a multi-platform office productivity suite ' -' $RCSfile: VBEventListener.cls,v $ -' -' $Revision: 1.7 $ -' ' This file is part of OpenOffice.org. ' ' OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/OleClient/axhost.cxx b/extensions/test/ole/OleClient/axhost.cxx index b57860327560..52c46d5af04e 100644 --- a/extensions/test/ole/OleClient/axhost.cxx +++ b/extensions/test/ole/OleClient/axhost.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: axhost.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/OleClient/axhost.hxx b/extensions/test/ole/OleClient/axhost.hxx index fe3e1e427996..78a04a9c7a89 100644 --- a/extensions/test/ole/OleClient/axhost.hxx +++ b/extensions/test/ole/OleClient/axhost.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: axhost.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/OleClient/clientTest.cxx b/extensions/test/ole/OleClient/clientTest.cxx index 112f5a1512d9..894e0ca87aa2 100644 --- a/extensions/test/ole/OleClient/clientTest.cxx +++ b/extensions/test/ole/OleClient/clientTest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: clientTest.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/OleClient/funcs.cxx b/extensions/test/ole/OleClient/funcs.cxx index 1c58da6743cd..db79febb6354 100644 --- a/extensions/test/ole/OleClient/funcs.cxx +++ b/extensions/test/ole/OleClient/funcs.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: funcs.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/OleClient/makefile.mk b/extensions/test/ole/OleClient/makefile.mk index 07178ec78477..0587038d05f7 100644 --- a/extensions/test/ole/OleClient/makefile.mk +++ b/extensions/test/ole/OleClient/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.13 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/OleConverterVar1/convTest.cxx b/extensions/test/ole/OleConverterVar1/convTest.cxx index 3671ec00b429..71eaf12fbe70 100644 --- a/extensions/test/ole/OleConverterVar1/convTest.cxx +++ b/extensions/test/ole/OleConverterVar1/convTest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: convTest.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/OleConverterVar1/makefile.mk b/extensions/test/ole/OleConverterVar1/makefile.mk index e36ab9e6aafc..a36c342dbd72 100644 --- a/extensions/test/ole/OleConverterVar1/makefile.mk +++ b/extensions/test/ole/OleConverterVar1/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.11 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/OleConverterVar1/smartarray.h b/extensions/test/ole/OleConverterVar1/smartarray.h index 9dd67a8a313a..273b43a9e6c8 100644 --- a/extensions/test/ole/OleConverterVar1/smartarray.h +++ b/extensions/test/ole/OleConverterVar1/smartarray.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: smartarray.h,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/cpnt/cpnt.cxx b/extensions/test/ole/cpnt/cpnt.cxx index 606a2193b794..2a72552d2024 100644 --- a/extensions/test/ole/cpnt/cpnt.cxx +++ b/extensions/test/ole/cpnt/cpnt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cpnt.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/cpnt/makefile.mk b/extensions/test/ole/cpnt/makefile.mk index a508384db349..5668d8453d24 100644 --- a/extensions/test/ole/cpnt/makefile.mk +++ b/extensions/test/ole/cpnt/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.14 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/cppToUno/makefile.mk b/extensions/test/ole/cppToUno/makefile.mk index fa6e2fc74183..19942030b27c 100644 --- a/extensions/test/ole/cppToUno/makefile.mk +++ b/extensions/test/ole/cppToUno/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.10 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/cppToUno/testcppuno.cxx b/extensions/test/ole/cppToUno/testcppuno.cxx index 3b22df40d3f2..49a2534dda38 100644 --- a/extensions/test/ole/cppToUno/testcppuno.cxx +++ b/extensions/test/ole/cppToUno/testcppuno.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testcppuno.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/cpptest/cpptest.cxx b/extensions/test/ole/cpptest/cpptest.cxx index 08c556cffad8..e393142fd311 100644 --- a/extensions/test/ole/cpptest/cpptest.cxx +++ b/extensions/test/ole/cpptest/cpptest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cpptest.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/cpptest/makefile.mk b/extensions/test/ole/cpptest/makefile.mk index 6580dcce9767..af97b63c7c9d 100644 --- a/extensions/test/ole/cpptest/makefile.mk +++ b/extensions/test/ole/cpptest/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.10 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/idl/oletest.idl b/extensions/test/ole/idl/oletest.idl index f10e3fd2b970..61d668dc0580 100644 --- a/extensions/test/ole/idl/oletest.idl +++ b/extensions/test/ole/idl/oletest.idl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oletest.idl,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unloading/makefile.mk b/extensions/test/ole/unloading/makefile.mk index 99205bb39c8d..c45163813c27 100644 --- a/extensions/test/ole/unloading/makefile.mk +++ b/extensions/test/ole/unloading/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unloading/unloadTest.cxx b/extensions/test/ole/unloading/unloadTest.cxx index 18025ca466eb..2d604e4bcc5c 100644 --- a/extensions/test/ole/unloading/unloadTest.cxx +++ b/extensions/test/ole/unloading/unloadTest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unloadTest.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp b/extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp index ce6d746773d8..3ee34e553b38 100644 --- a/extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp +++ b/extensions/test/ole/unoTocomCalls/Test/StdAfx.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StdAfx.cpp,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/Test/StdAfx.h b/extensions/test/ole/unoTocomCalls/Test/StdAfx.h index 5856799a4068..1ecfdd1e04ca 100644 --- a/extensions/test/ole/unoTocomCalls/Test/StdAfx.h +++ b/extensions/test/ole/unoTocomCalls/Test/StdAfx.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StdAfx.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/Test/Test.cpp b/extensions/test/ole/unoTocomCalls/Test/Test.cpp index 0cec48d51e29..5f02b3a4840c 100644 --- a/extensions/test/ole/unoTocomCalls/Test/Test.cpp +++ b/extensions/test/ole/unoTocomCalls/Test/Test.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Test.cpp,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp index 4f78b6d6a33a..90ae64e3f330 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Callback.cpp,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h index 952b406a0ef7..845eb7e9b1e4 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Callback.h,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp index f0ec785fe6af..f19cdfb65bb7 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Simple.cpp,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h index 68a4a9af7ed6..5d2acc364ca2 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Simple.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp index 02c53a0c180d..f90d8dbf1166 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StdAfx.cpp,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h index b149dba28b7e..1b183480ba29 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/StdAfx.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StdAfx.h,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp index f6f875c93165..e9241d4866bc 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.cpp @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCallback_Impl.cpp,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl index c745dfb6a46a..2bb44a4b70be 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.idl @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCallback_Impl.idl,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.rc b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.rc index 45d2ebd72cce..32b4852338b5 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.rc +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/XCallback_Impl.rc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCallback_Impl.rc,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h index 427fbe151fd9..ba5c1f9eb97d 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/resource.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: resource.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/pgp/TestPGP.java b/extensions/test/pgp/TestPGP.java index ab370a430c79..15bf2b1fcef1 100644 --- a/extensions/test/pgp/TestPGP.java +++ b/extensions/test/pgp/TestPGP.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TestPGP.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/pgp/makefile.mk b/extensions/test/pgp/makefile.mk index 479a060cc7a0..9fe20937d2b7 100644 --- a/extensions/test/pgp/makefile.mk +++ b/extensions/test/pgp/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/sax/factory.hxx b/extensions/test/sax/factory.hxx index c25eeea97483..dc51457404c8 100644 --- a/extensions/test/sax/factory.hxx +++ b/extensions/test/sax/factory.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: factory.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/sax/makefile.mk b/extensions/test/sax/makefile.mk index 1525f19f6087..4e72ec987893 100644 --- a/extensions/test/sax/makefile.mk +++ b/extensions/test/sax/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/sax/testsax.cxx b/extensions/test/sax/testsax.cxx index 80ebe1dd9f13..e7f52fbb0902 100644 --- a/extensions/test/sax/testsax.cxx +++ b/extensions/test/sax/testsax.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testsax.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/sax/testwriter.cxx b/extensions/test/sax/testwriter.cxx index b4ab9d3f73ea..de606006ef90 100644 --- a/extensions/test/sax/testwriter.cxx +++ b/extensions/test/sax/testwriter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testwriter.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/stm/datatest.cxx b/extensions/test/stm/datatest.cxx index be302d877432..c562d8c68210 100644 --- a/extensions/test/stm/datatest.cxx +++ b/extensions/test/stm/datatest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datatest.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/stm/makefile.mk b/extensions/test/stm/makefile.mk index f6903d1a8539..aa506fcb34af 100644 --- a/extensions/test/stm/makefile.mk +++ b/extensions/test/stm/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/stm/marktest.cxx b/extensions/test/stm/marktest.cxx index 2cc19c2ae265..019de72cf46c 100644 --- a/extensions/test/stm/marktest.cxx +++ b/extensions/test/stm/marktest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: marktest.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/stm/pipetest.cxx b/extensions/test/stm/pipetest.cxx index 233979230708..39eb73b3c591 100644 --- a/extensions/test/stm/pipetest.cxx +++ b/extensions/test/stm/pipetest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pipetest.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/stm/testfactreg.cxx b/extensions/test/stm/testfactreg.cxx index db824ab4d1ac..815331dd6038 100644 --- a/extensions/test/stm/testfactreg.cxx +++ b/extensions/test/stm/testfactreg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testfactreg.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/test/stm/testfactreg.hxx b/extensions/test/stm/testfactreg.hxx index d5f0fbbd84a6..1d5a261549cf 100644 --- a/extensions/test/stm/testfactreg.hxx +++ b/extensions/test/stm/testfactreg.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testfactreg.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/util/hidother.src b/extensions/util/hidother.src index 7fe4a237e896..4700d3380e3f 100644 --- a/extensions/util/hidother.src +++ b/extensions/util/hidother.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hidother.src,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/util/makefile.mk b/extensions/util/makefile.mk index 8e75fe4c694d..af6b1ec8c600 100644 --- a/extensions/util/makefile.mk +++ b/extensions/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/util/makefile.pmk b/extensions/util/makefile.pmk index febe368b1b2b..b80a9c7bd3c2 100644 --- a/extensions/util/makefile.pmk +++ b/extensions/util/makefile.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.pmk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/util/target.pmk b/extensions/util/target.pmk index d05e76184ac7..c7c1de9c2563 100644 --- a/extensions/util/target.pmk +++ b/extensions/util/target.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: target.pmk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/workben/makefile.mk b/extensions/workben/makefile.mk index de27df4ef35c..759ee81186b2 100644 --- a/extensions/workben/makefile.mk +++ b/extensions/workben/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/workben/pythonautotest.cxx b/extensions/workben/pythonautotest.cxx index 9cb61f00b3e8..eb5a52470bcc 100644 --- a/extensions/workben/pythonautotest.cxx +++ b/extensions/workben/pythonautotest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pythonautotest.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/workben/pythontest.cxx b/extensions/workben/pythontest.cxx index 796884dff8aa..34a86ef00194 100644 --- a/extensions/workben/pythontest.cxx +++ b/extensions/workben/pythontest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pythontest.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/workben/testcomponent.cxx b/extensions/workben/testcomponent.cxx index 08d8af4831b8..3ac3c634f2c3 100644 --- a/extensions/workben/testcomponent.cxx +++ b/extensions/workben/testcomponent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testcomponent.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/workben/testframecontrol.cxx b/extensions/workben/testframecontrol.cxx index 83c2dcdfaf53..16144f170f97 100644 --- a/extensions/workben/testframecontrol.cxx +++ b/extensions/workben/testframecontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testframecontrol.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/workben/testpgp.cxx b/extensions/workben/testpgp.cxx index 745cb4902ed1..f84156f96b3d 100644 --- a/extensions/workben/testpgp.cxx +++ b/extensions/workben/testpgp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testpgp.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/workben/testresource.cxx b/extensions/workben/testresource.cxx index 89fb5ca5bd66..d073d30ad590 100644 --- a/extensions/workben/testresource.cxx +++ b/extensions/workben/testresource.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testresource.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/extensions/workben/testresource.src b/extensions/workben/testresource.src index 6f35a3fe53d7..d74ed571e5ca 100644 --- a/extensions/workben/testresource.src +++ b/extensions/workben/testresource.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: testresource.src,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/inc/makefile.mk b/forms/inc/makefile.mk index a9f6f6419be4..cc581afa8899 100644 --- a/forms/inc/makefile.mk +++ b/forms/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/inc/pch/precompiled_forms.cxx b/forms/inc/pch/precompiled_forms.cxx index e548ef566a42..098a10ebaaa3 100644 --- a/forms/inc/pch/precompiled_forms.cxx +++ b/forms/inc/pch/precompiled_forms.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_forms.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/inc/pch/precompiled_forms.hxx b/forms/inc/pch/precompiled_forms.hxx index 402323630361..368ff26007a4 100644 --- a/forms/inc/pch/precompiled_forms.hxx +++ b/forms/inc/pch/precompiled_forms.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_forms.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/makefile.pmk b/forms/makefile.pmk index 0ef67b43696b..ccb15e70959e 100644 --- a/forms/makefile.pmk +++ b/forms/makefile.pmk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: $ -# -# $Revision: $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/complex/forms/CheckOGroupBoxModel.java b/forms/qa/complex/forms/CheckOGroupBoxModel.java index 26005585827e..8a2ae5c7f0e4 100755 --- a/forms/qa/complex/forms/CheckOGroupBoxModel.java +++ b/forms/qa/complex/forms/CheckOGroupBoxModel.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CheckOGroupBoxModel.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/complex/forms/makefile.mk b/forms/qa/complex/forms/makefile.mk index 2ed9c6a512d8..6caf244cddc1 100755 --- a/forms/qa/complex/forms/makefile.mk +++ b/forms/qa/complex/forms/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4.56.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/ControlValidation.java b/forms/qa/integration/forms/ControlValidation.java index a055e1fb80d4..c480ded16a4b 100644 --- a/forms/qa/integration/forms/ControlValidation.java +++ b/forms/qa/integration/forms/ControlValidation.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ControlValidation.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/ControlValidator.java b/forms/qa/integration/forms/ControlValidator.java index cf192162f801..969a9d2f46aa 100644 --- a/forms/qa/integration/forms/ControlValidator.java +++ b/forms/qa/integration/forms/ControlValidator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ControlValidator.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/DateValidator.java b/forms/qa/integration/forms/DateValidator.java index 799c503218d0..1ae2bbe48058 100644 --- a/forms/qa/integration/forms/DateValidator.java +++ b/forms/qa/integration/forms/DateValidator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DateValidator.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/DocumentHelper.java b/forms/qa/integration/forms/DocumentHelper.java index 81b0c3a86f5a..f24e090537af 100644 --- a/forms/qa/integration/forms/DocumentHelper.java +++ b/forms/qa/integration/forms/DocumentHelper.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DocumentHelper.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/DocumentType.java b/forms/qa/integration/forms/DocumentType.java index 855ea286e9e0..cc52e6a1aabc 100644 --- a/forms/qa/integration/forms/DocumentType.java +++ b/forms/qa/integration/forms/DocumentType.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DocumentType.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/DocumentViewHelper.java b/forms/qa/integration/forms/DocumentViewHelper.java index 9f46e006609a..afd89841a8d2 100644 --- a/forms/qa/integration/forms/DocumentViewHelper.java +++ b/forms/qa/integration/forms/DocumentViewHelper.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DocumentViewHelper.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/FormComponent.java b/forms/qa/integration/forms/FormComponent.java index 2fa05113ad3d..6e6676fff94f 100644 --- a/forms/qa/integration/forms/FormComponent.java +++ b/forms/qa/integration/forms/FormComponent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormComponent.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/FormControlTest.java b/forms/qa/integration/forms/FormControlTest.java index d561ac28ef2c..7fdf68dea796 100644 --- a/forms/qa/integration/forms/FormControlTest.java +++ b/forms/qa/integration/forms/FormControlTest.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormControlTest.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/FormLayer.java b/forms/qa/integration/forms/FormLayer.java index 8d31542fe191..d1b50f0d246c 100644 --- a/forms/qa/integration/forms/FormLayer.java +++ b/forms/qa/integration/forms/FormLayer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormLayer.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/FormPropertyBags.java b/forms/qa/integration/forms/FormPropertyBags.java index 9558464f5b20..c2cd36289a42 100644 --- a/forms/qa/integration/forms/FormPropertyBags.java +++ b/forms/qa/integration/forms/FormPropertyBags.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormPropertyBags.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/ListBox.java b/forms/qa/integration/forms/ListBox.java index 8fcec383c656..6e50291d6525 100644 --- a/forms/qa/integration/forms/ListBox.java +++ b/forms/qa/integration/forms/ListBox.java @@ -2,7 +2,7 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * diff --git a/forms/qa/integration/forms/ListSelection.java b/forms/qa/integration/forms/ListSelection.java index 818fc262e51c..24a5290dc1d4 100644 --- a/forms/qa/integration/forms/ListSelection.java +++ b/forms/qa/integration/forms/ListSelection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ListSelection.java,v $ - * $Revision: 1.7.44.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/ListSelectionValidator.java b/forms/qa/integration/forms/ListSelectionValidator.java index 92535240b0f4..4f25b162712d 100644 --- a/forms/qa/integration/forms/ListSelectionValidator.java +++ b/forms/qa/integration/forms/ListSelectionValidator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ListSelectionValidator.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/MasterDetailForms.java b/forms/qa/integration/forms/MasterDetailForms.java index 3bf14aae70cd..cd51abc3e446 100644 --- a/forms/qa/integration/forms/MasterDetailForms.java +++ b/forms/qa/integration/forms/MasterDetailForms.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: MasterDetailForms.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/NumericValidator.java b/forms/qa/integration/forms/NumericValidator.java index 1afc2c378509..4fed12c4fd2b 100644 --- a/forms/qa/integration/forms/NumericValidator.java +++ b/forms/qa/integration/forms/NumericValidator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NumericValidator.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/RadioButtons.java b/forms/qa/integration/forms/RadioButtons.java index 64711cad8346..3ce02787b330 100644 --- a/forms/qa/integration/forms/RadioButtons.java +++ b/forms/qa/integration/forms/RadioButtons.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: RadioButtons.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/SingleControlValidation.java b/forms/qa/integration/forms/SingleControlValidation.java index 353f64c1f76a..637e9c9e4e26 100644 --- a/forms/qa/integration/forms/SingleControlValidation.java +++ b/forms/qa/integration/forms/SingleControlValidation.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SingleControlValidation.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/SpreadsheetDocument.java b/forms/qa/integration/forms/SpreadsheetDocument.java index 344b1f667bab..8f156fe8e3b6 100644 --- a/forms/qa/integration/forms/SpreadsheetDocument.java +++ b/forms/qa/integration/forms/SpreadsheetDocument.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SpreadsheetDocument.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/SpreadsheetView.java b/forms/qa/integration/forms/SpreadsheetView.java index 45e014874a61..19f7bd429290 100644 --- a/forms/qa/integration/forms/SpreadsheetView.java +++ b/forms/qa/integration/forms/SpreadsheetView.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SpreadsheetView.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/TableCellTextBinding.java b/forms/qa/integration/forms/TableCellTextBinding.java index 83a79dddbb33..6517ed5c90f0 100644 --- a/forms/qa/integration/forms/TableCellTextBinding.java +++ b/forms/qa/integration/forms/TableCellTextBinding.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TableCellTextBinding.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/TestCase.java b/forms/qa/integration/forms/TestCase.java index 7ebcb56a54bd..aeaa8048f92c 100644 --- a/forms/qa/integration/forms/TestCase.java +++ b/forms/qa/integration/forms/TestCase.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TestCase.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/TestSkeleton.java b/forms/qa/integration/forms/TestSkeleton.java index 8f2765b3a6d5..2736395ff400 100644 --- a/forms/qa/integration/forms/TestSkeleton.java +++ b/forms/qa/integration/forms/TestSkeleton.java @@ -2,7 +2,7 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * diff --git a/forms/qa/integration/forms/TextValidator.java b/forms/qa/integration/forms/TextValidator.java index cdad49640f65..db340f93abcc 100644 --- a/forms/qa/integration/forms/TextValidator.java +++ b/forms/qa/integration/forms/TextValidator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TextValidator.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/TimeValidator.java b/forms/qa/integration/forms/TimeValidator.java index 190db9f99f1d..116f98455d94 100644 --- a/forms/qa/integration/forms/TimeValidator.java +++ b/forms/qa/integration/forms/TimeValidator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TimeValidator.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/ValueBinding.java b/forms/qa/integration/forms/ValueBinding.java index c95c100b33a9..cec1b6d200c2 100644 --- a/forms/qa/integration/forms/ValueBinding.java +++ b/forms/qa/integration/forms/ValueBinding.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ValueBinding.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/WaitForInput.java b/forms/qa/integration/forms/WaitForInput.java index 54a5dab2263a..f0109aa485d4 100644 --- a/forms/qa/integration/forms/WaitForInput.java +++ b/forms/qa/integration/forms/WaitForInput.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WaitForInput.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/integration/forms/XMLFormSettings.java b/forms/qa/integration/forms/XMLFormSettings.java index f36bcb38cca4..e3881bfa861d 100644 --- a/forms/qa/integration/forms/XMLFormSettings.java +++ b/forms/qa/integration/forms/XMLFormSettings.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMLFormSettings.java,v $ - * $Revision: 1.2.24.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/makefile.mk b/forms/qa/makefile.mk index b34529e2fbcf..1f12a8cf4a74 100644 --- a/forms/qa/makefile.mk +++ b/forms/qa/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.2.20.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/qa/unoapi/makefile.mk b/forms/qa/unoapi/makefile.mk index bebfe057c4d2..9f033d058ce7 100644 --- a/forms/qa/unoapi/makefile.mk +++ b/forms/qa/unoapi/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.8 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/BaseListBox.hxx b/forms/source/component/BaseListBox.hxx index 2c1422d5c829..4e7d112bac80 100644 --- a/forms/source/component/BaseListBox.hxx +++ b/forms/source/component/BaseListBox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: BaseListBox.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Button.cxx b/forms/source/component/Button.cxx index 575f842da4d0..6a326f749bdc 100644 --- a/forms/source/component/Button.cxx +++ b/forms/source/component/Button.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Button.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Button.hxx b/forms/source/component/Button.hxx index 3ca5154a9279..c3528f9f86d2 100644 --- a/forms/source/component/Button.hxx +++ b/forms/source/component/Button.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Button.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/CheckBox.cxx b/forms/source/component/CheckBox.cxx index 8e66ebc60ab6..3e2531f92f5c 100644 --- a/forms/source/component/CheckBox.cxx +++ b/forms/source/component/CheckBox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CheckBox.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/CheckBox.hxx b/forms/source/component/CheckBox.hxx index af58674ef576..21073c27306d 100644 --- a/forms/source/component/CheckBox.hxx +++ b/forms/source/component/CheckBox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CheckBox.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Columns.cxx b/forms/source/component/Columns.cxx index 29d6f1130509..ae1cbc2b7a5b 100644 --- a/forms/source/component/Columns.cxx +++ b/forms/source/component/Columns.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Columns.cxx,v $ - * $Revision: 1.27 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Columns.hxx b/forms/source/component/Columns.hxx index f1aafd47cb5d..34f4fad58e5d 100644 --- a/forms/source/component/Columns.hxx +++ b/forms/source/component/Columns.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Columns.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/ComboBox.cxx b/forms/source/component/ComboBox.cxx index 432bc5124775..4dfdb61cbb2b 100644 --- a/forms/source/component/ComboBox.cxx +++ b/forms/source/component/ComboBox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ComboBox.cxx,v $ - * $Revision: 1.43 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/ComboBox.hxx b/forms/source/component/ComboBox.hxx index 068f4fd97163..55ebcbe168e2 100644 --- a/forms/source/component/ComboBox.hxx +++ b/forms/source/component/ComboBox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ComboBox.hxx,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Currency.cxx b/forms/source/component/Currency.cxx index 5af83ca2fba1..89a3b93b4a43 100644 --- a/forms/source/component/Currency.cxx +++ b/forms/source/component/Currency.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Currency.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Currency.hxx b/forms/source/component/Currency.hxx index 3e968dcf3bc7..f35840933240 100644 --- a/forms/source/component/Currency.hxx +++ b/forms/source/component/Currency.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Currency.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx index 54225d6095a6..5f3f04d45618 100644 --- a/forms/source/component/DatabaseForm.cxx +++ b/forms/source/component/DatabaseForm.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DatabaseForm.cxx,v $ - * $Revision: 1.87 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/DatabaseForm.hxx b/forms/source/component/DatabaseForm.hxx index a19d20930538..af506aa305d2 100644 --- a/forms/source/component/DatabaseForm.hxx +++ b/forms/source/component/DatabaseForm.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DatabaseForm.hxx,v $ - * $Revision: 1.36 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Date.cxx b/forms/source/component/Date.cxx index 5d0d3f21ce7a..1e04a63bfb0b 100644 --- a/forms/source/component/Date.cxx +++ b/forms/source/component/Date.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Date.cxx,v $ - * $Revision: 1.27 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Date.hxx b/forms/source/component/Date.hxx index 7eb1acfabf75..8ff6d1433508 100644 --- a/forms/source/component/Date.hxx +++ b/forms/source/component/Date.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Date.hxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Edit.cxx b/forms/source/component/Edit.cxx index 4eca9402fef8..3a36078a7fed 100644 --- a/forms/source/component/Edit.cxx +++ b/forms/source/component/Edit.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Edit.cxx,v $ - * $Revision: 1.41 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Edit.hxx b/forms/source/component/Edit.hxx index 774944eda939..5b4146b82d06 100644 --- a/forms/source/component/Edit.hxx +++ b/forms/source/component/Edit.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Edit.hxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/EditBase.cxx b/forms/source/component/EditBase.cxx index bbfc89f4787d..b8dcbb336ebb 100644 --- a/forms/source/component/EditBase.cxx +++ b/forms/source/component/EditBase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EditBase.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/EditBase.hxx b/forms/source/component/EditBase.hxx index 6a987f5d7f37..bfa51cb2d1ee 100644 --- a/forms/source/component/EditBase.hxx +++ b/forms/source/component/EditBase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EditBase.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/EventThread.cxx b/forms/source/component/EventThread.cxx index ef60cb5462b3..504a180f6ee5 100644 --- a/forms/source/component/EventThread.cxx +++ b/forms/source/component/EventThread.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EventThread.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/EventThread.hxx b/forms/source/component/EventThread.hxx index b6719b020df2..b36743f85b47 100644 --- a/forms/source/component/EventThread.hxx +++ b/forms/source/component/EventThread.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EventThread.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/File.cxx b/forms/source/component/File.cxx index e99b81d00417..d92386b26405 100644 --- a/forms/source/component/File.cxx +++ b/forms/source/component/File.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: File.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/File.hxx b/forms/source/component/File.hxx index 304af9044101..200cac5545ea 100644 --- a/forms/source/component/File.hxx +++ b/forms/source/component/File.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: File.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx index 0ddab1faecdb..32d9ad54b4a4 100644 --- a/forms/source/component/Filter.cxx +++ b/forms/source/component/Filter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Filter.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Filter.hxx b/forms/source/component/Filter.hxx index f07c8ff883c8..84a778e07fd6 100644 --- a/forms/source/component/Filter.hxx +++ b/forms/source/component/Filter.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Filter.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FixedText.cxx b/forms/source/component/FixedText.cxx index b9b37f127215..9396e7aabb59 100644 --- a/forms/source/component/FixedText.cxx +++ b/forms/source/component/FixedText.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FixedText.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FixedText.hxx b/forms/source/component/FixedText.hxx index c167a83ca976..5adb15225702 100644 --- a/forms/source/component/FixedText.hxx +++ b/forms/source/component/FixedText.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FixedText.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx index 4a612642bbff..148e4c9aa298 100644 --- a/forms/source/component/FormComponent.cxx +++ b/forms/source/component/FormComponent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormComponent.cxx,v $ - * $Revision: 1.62.8.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx index 77a108f300f9..6e11fa7c9dbb 100644 --- a/forms/source/component/FormattedField.cxx +++ b/forms/source/component/FormattedField.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormattedField.cxx,v $ - * $Revision: 1.46 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FormattedField.hxx b/forms/source/component/FormattedField.hxx index 4a25d10c5c81..42c7a5b1bf2a 100644 --- a/forms/source/component/FormattedField.hxx +++ b/forms/source/component/FormattedField.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormattedField.hxx,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FormattedFieldWrapper.cxx b/forms/source/component/FormattedFieldWrapper.cxx index 1f9714c080ca..cf9a04074cfc 100644 --- a/forms/source/component/FormattedFieldWrapper.cxx +++ b/forms/source/component/FormattedFieldWrapper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormattedFieldWrapper.cxx,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FormattedFieldWrapper.hxx b/forms/source/component/FormattedFieldWrapper.hxx index 633c1466b610..a3cfcaab50d0 100644 --- a/forms/source/component/FormattedFieldWrapper.hxx +++ b/forms/source/component/FormattedFieldWrapper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormattedFieldWrapper.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FormsCollection.cxx b/forms/source/component/FormsCollection.cxx index ff4e0185826c..2664a74546e8 100644 --- a/forms/source/component/FormsCollection.cxx +++ b/forms/source/component/FormsCollection.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormsCollection.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/FormsCollection.hxx b/forms/source/component/FormsCollection.hxx index 0ef86327dc52..705ac89b211a 100644 --- a/forms/source/component/FormsCollection.hxx +++ b/forms/source/component/FormsCollection.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormsCollection.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Grid.cxx b/forms/source/component/Grid.cxx index ef0abf146632..c7b65906dc30 100644 --- a/forms/source/component/Grid.cxx +++ b/forms/source/component/Grid.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Grid.cxx,v $ - * $Revision: 1.43 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Grid.hxx b/forms/source/component/Grid.hxx index f5bb60489e45..6cd0e9787ef1 100644 --- a/forms/source/component/Grid.hxx +++ b/forms/source/component/Grid.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Grid.hxx,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/GroupBox.cxx b/forms/source/component/GroupBox.cxx index d2ad50c6efa2..adf055955f3a 100644 --- a/forms/source/component/GroupBox.cxx +++ b/forms/source/component/GroupBox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: GroupBox.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/GroupBox.hxx b/forms/source/component/GroupBox.hxx index 57e196ca8dc9..902c60ced488 100644 --- a/forms/source/component/GroupBox.hxx +++ b/forms/source/component/GroupBox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: GroupBox.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/GroupManager.cxx b/forms/source/component/GroupManager.cxx index 438a56161a72..fde6aa1a23ca 100644 --- a/forms/source/component/GroupManager.cxx +++ b/forms/source/component/GroupManager.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: GroupManager.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/GroupManager.hxx b/forms/source/component/GroupManager.hxx index 98d19d2bd526..fc9d8ce82c61 100644 --- a/forms/source/component/GroupManager.hxx +++ b/forms/source/component/GroupManager.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: GroupManager.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Hidden.cxx b/forms/source/component/Hidden.cxx index 71ef5ebb0678..9c20de263d80 100644 --- a/forms/source/component/Hidden.cxx +++ b/forms/source/component/Hidden.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Hidden.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Hidden.hxx b/forms/source/component/Hidden.hxx index 20a2324e3582..9052417c3f2c 100644 --- a/forms/source/component/Hidden.hxx +++ b/forms/source/component/Hidden.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Hidden.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/ImageButton.cxx b/forms/source/component/ImageButton.cxx index e713628f96a3..e026f5380bc1 100644 --- a/forms/source/component/ImageButton.cxx +++ b/forms/source/component/ImageButton.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ImageButton.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/ImageButton.hxx b/forms/source/component/ImageButton.hxx index 015d985698b4..188ee8558e70 100644 --- a/forms/source/component/ImageButton.hxx +++ b/forms/source/component/ImageButton.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ImageButton.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx index fbcc59271e00..72d22d3f30a5 100644 --- a/forms/source/component/ImageControl.cxx +++ b/forms/source/component/ImageControl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ImageControl.cxx,v $ - * $Revision: 1.49 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/ImageControl.hxx b/forms/source/component/ImageControl.hxx index 49ae9ff81964..eb0e15660ca6 100644 --- a/forms/source/component/ImageControl.hxx +++ b/forms/source/component/ImageControl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ImageControl.hxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index 4bbf42381900..0aa90d9919cf 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ListBox.cxx,v $ - * $Revision: 1.62 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/ListBox.hxx b/forms/source/component/ListBox.hxx index 308fb618e18a..d2af81c1c52c 100644 --- a/forms/source/component/ListBox.hxx +++ b/forms/source/component/ListBox.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ListBox.hxx,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Numeric.cxx b/forms/source/component/Numeric.cxx index 2eba2daae067..0d60fd2f62fb 100644 --- a/forms/source/component/Numeric.cxx +++ b/forms/source/component/Numeric.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Numeric.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Numeric.hxx b/forms/source/component/Numeric.hxx index 5599707e86d5..1159ad98c3f0 100644 --- a/forms/source/component/Numeric.hxx +++ b/forms/source/component/Numeric.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Numeric.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Pattern.cxx b/forms/source/component/Pattern.cxx index 166522c18359..e7b6c695d0cf 100644 --- a/forms/source/component/Pattern.cxx +++ b/forms/source/component/Pattern.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Pattern.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Pattern.hxx b/forms/source/component/Pattern.hxx index 9e0bc3b68d77..9a96a39820ff 100644 --- a/forms/source/component/Pattern.hxx +++ b/forms/source/component/Pattern.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Pattern.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/RadioButton.cxx b/forms/source/component/RadioButton.cxx index cd70d200f376..c4a1216ad76c 100644 --- a/forms/source/component/RadioButton.cxx +++ b/forms/source/component/RadioButton.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: RadioButton.cxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/RadioButton.hxx b/forms/source/component/RadioButton.hxx index a779fb5fe03f..3f122fe7b27c 100644 --- a/forms/source/component/RadioButton.hxx +++ b/forms/source/component/RadioButton.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: RadioButton.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Time.cxx b/forms/source/component/Time.cxx index 6a63724829d1..49b07adf84e4 100644 --- a/forms/source/component/Time.cxx +++ b/forms/source/component/Time.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Time.cxx,v $ - * $Revision: 1.27 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/Time.hxx b/forms/source/component/Time.hxx index 7a7ce373b363..a9ac1b4adfd0 100644 --- a/forms/source/component/Time.hxx +++ b/forms/source/component/Time.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Time.hxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/cachedrowset.cxx b/forms/source/component/cachedrowset.cxx index cf2c44c046ba..2c9cd82e9fee 100644 --- a/forms/source/component/cachedrowset.cxx +++ b/forms/source/component/cachedrowset.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cachedrowset.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/cachedrowset.hxx b/forms/source/component/cachedrowset.hxx index 94144aefbf63..d2310bf8fc8c 100644 --- a/forms/source/component/cachedrowset.hxx +++ b/forms/source/component/cachedrowset.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cachedrowset.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/clickableimage.cxx b/forms/source/component/clickableimage.cxx index 79d28727b5d5..7818cb5d66d3 100644 --- a/forms/source/component/clickableimage.cxx +++ b/forms/source/component/clickableimage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: clickableimage.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/clickableimage.hxx b/forms/source/component/clickableimage.hxx index d59451fe0fb7..f888aa4e3309 100644 --- a/forms/source/component/clickableimage.hxx +++ b/forms/source/component/clickableimage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: clickableimage.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/cloneable.cxx b/forms/source/component/cloneable.cxx index e9aac3f5a31f..5392dbee3e7f 100644 --- a/forms/source/component/cloneable.cxx +++ b/forms/source/component/cloneable.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cloneable.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/entrylisthelper.cxx b/forms/source/component/entrylisthelper.cxx index 3d7217cc162c..065bd4ca6896 100644 --- a/forms/source/component/entrylisthelper.cxx +++ b/forms/source/component/entrylisthelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: entrylisthelper.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/entrylisthelper.hxx b/forms/source/component/entrylisthelper.hxx index 3d0f1de784b6..64778e9abdc3 100644 --- a/forms/source/component/entrylisthelper.hxx +++ b/forms/source/component/entrylisthelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: entrylisthelper.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/errorbroadcaster.cxx b/forms/source/component/errorbroadcaster.cxx index 2b24fdb2ce72..e388a35480a1 100644 --- a/forms/source/component/errorbroadcaster.cxx +++ b/forms/source/component/errorbroadcaster.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: errorbroadcaster.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/errorbroadcaster.hxx b/forms/source/component/errorbroadcaster.hxx index 701ab15ee507..c91cc220c58d 100644 --- a/forms/source/component/errorbroadcaster.hxx +++ b/forms/source/component/errorbroadcaster.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: errorbroadcaster.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/findpos.cxx b/forms/source/component/findpos.cxx index 36b34bc58788..87ea53b27e29 100644 --- a/forms/source/component/findpos.cxx +++ b/forms/source/component/findpos.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: findpos.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/findpos.hxx b/forms/source/component/findpos.hxx index 37111a8e0f02..67fb2a8996a3 100644 --- a/forms/source/component/findpos.hxx +++ b/forms/source/component/findpos.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: findpos.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/formcontrolfont.cxx b/forms/source/component/formcontrolfont.cxx index 3a6f63dc099f..1029a7678536 100644 --- a/forms/source/component/formcontrolfont.cxx +++ b/forms/source/component/formcontrolfont.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formcontrolfont.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/imgprod.cxx b/forms/source/component/imgprod.cxx index 3c6bb979d54a..8bd02173fc3f 100644 --- a/forms/source/component/imgprod.cxx +++ b/forms/source/component/imgprod.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: imgprod.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/imgprod.hxx b/forms/source/component/imgprod.hxx index a09fc09d127e..0da5d04755df 100644 --- a/forms/source/component/imgprod.hxx +++ b/forms/source/component/imgprod.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: imgprod.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/makefile.mk b/forms/source/component/makefile.mk index 71979c2ede48..c3bfce4d3247 100644 --- a/forms/source/component/makefile.mk +++ b/forms/source/component/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.16 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/navigationbar.cxx b/forms/source/component/navigationbar.cxx index abe5b5c45488..617c830f104d 100644 --- a/forms/source/component/navigationbar.cxx +++ b/forms/source/component/navigationbar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: navigationbar.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/navigationbar.hxx b/forms/source/component/navigationbar.hxx index 1dd94eff2bbc..d57c6d1542ac 100644 --- a/forms/source/component/navigationbar.hxx +++ b/forms/source/component/navigationbar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: navigationbar.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/propertybaghelper.cxx b/forms/source/component/propertybaghelper.cxx index a14aaf6d3ed3..0b049043cb28 100644 --- a/forms/source/component/propertybaghelper.cxx +++ b/forms/source/component/propertybaghelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertybaghelper.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/refvaluecomponent.cxx b/forms/source/component/refvaluecomponent.cxx index cd6fd6eba04e..3061a275378b 100644 --- a/forms/source/component/refvaluecomponent.cxx +++ b/forms/source/component/refvaluecomponent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: refvaluecomponent.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/refvaluecomponent.hxx b/forms/source/component/refvaluecomponent.hxx index 40745b22764d..dedc86c315be 100644 --- a/forms/source/component/refvaluecomponent.hxx +++ b/forms/source/component/refvaluecomponent.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: refvaluecomponent.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/scrollbar.cxx b/forms/source/component/scrollbar.cxx index 3495d2a35792..5bd5744164a6 100644 --- a/forms/source/component/scrollbar.cxx +++ b/forms/source/component/scrollbar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scrollbar.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/scrollbar.hxx b/forms/source/component/scrollbar.hxx index d6afd4811de6..1d528dabe8bc 100644 --- a/forms/source/component/scrollbar.hxx +++ b/forms/source/component/scrollbar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: scrollbar.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/spinbutton.cxx b/forms/source/component/spinbutton.cxx index 829b7ce4a0e2..332fccd2e744 100644 --- a/forms/source/component/spinbutton.cxx +++ b/forms/source/component/spinbutton.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: spinbutton.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/component/spinbutton.hxx b/forms/source/component/spinbutton.hxx index fa26107dd4d7..4e9437bb8d0e 100644 --- a/forms/source/component/spinbutton.hxx +++ b/forms/source/component/spinbutton.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: spinbutton.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/helper/commanddescriptionprovider.cxx b/forms/source/helper/commanddescriptionprovider.cxx index 87692c5b5b82..4248142d405d 100644 --- a/forms/source/helper/commanddescriptionprovider.cxx +++ b/forms/source/helper/commanddescriptionprovider.cxx @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/forms/source/helper/commandimageprovider.cxx b/forms/source/helper/commandimageprovider.cxx index 7240a7073943..0b631d8c9d50 100644 --- a/forms/source/helper/commandimageprovider.cxx +++ b/forms/source/helper/commandimageprovider.cxx @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/forms/source/helper/controlfeatureinterception.cxx b/forms/source/helper/controlfeatureinterception.cxx index a77475c3c6a4..ea34c4fb219b 100644 --- a/forms/source/helper/controlfeatureinterception.cxx +++ b/forms/source/helper/controlfeatureinterception.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: controlfeatureinterception.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/helper/formnavigation.cxx b/forms/source/helper/formnavigation.cxx index 8f3d14df4657..8a2815938654 100644 --- a/forms/source/helper/formnavigation.cxx +++ b/forms/source/helper/formnavigation.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formnavigation.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/helper/makefile.mk b/forms/source/helper/makefile.mk index e451048dd0de..e60526cb8b6b 100644 --- a/forms/source/helper/makefile.mk +++ b/forms/source/helper/makefile.mk @@ -3,14 +3,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/helper/resettable.cxx b/forms/source/helper/resettable.cxx index 3c67dfa5e46e..c76a63c3d0f0 100644 --- a/forms/source/helper/resettable.cxx +++ b/forms/source/helper/resettable.cxx @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/forms/source/helper/urltransformer.cxx b/forms/source/helper/urltransformer.cxx index c56f1945bb0a..a74dbd40d5aa 100644 --- a/forms/source/helper/urltransformer.cxx +++ b/forms/source/helper/urltransformer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: urltransformer.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/helper/windowstateguard.cxx b/forms/source/helper/windowstateguard.cxx index c9482b21cdd8..c4bb6154a4d5 100644 --- a/forms/source/helper/windowstateguard.cxx +++ b/forms/source/helper/windowstateguard.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: windowstateguard.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/FormComponent.hxx b/forms/source/inc/FormComponent.hxx index 2cc91945ae3d..de72e2b392e8 100644 --- a/forms/source/inc/FormComponent.hxx +++ b/forms/source/inc/FormComponent.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormComponent.hxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/InterfaceContainer.hxx b/forms/source/inc/InterfaceContainer.hxx index f9939d17623b..825dc05c3675 100644 --- a/forms/source/inc/InterfaceContainer.hxx +++ b/forms/source/inc/InterfaceContainer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InterfaceContainer.hxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/cloneable.hxx b/forms/source/inc/cloneable.hxx index 5a55b1aa5c7b..da3641d305bc 100644 --- a/forms/source/inc/cloneable.hxx +++ b/forms/source/inc/cloneable.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: cloneable.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/commanddescriptionprovider.hxx b/forms/source/inc/commanddescriptionprovider.hxx index 64d28e2aabdc..f5d4823af477 100644 --- a/forms/source/inc/commanddescriptionprovider.hxx +++ b/forms/source/inc/commanddescriptionprovider.hxx @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef COMMANDDESCRIPTIONPROVIDER_HXX diff --git a/forms/source/inc/commandimageprovider.hxx b/forms/source/inc/commandimageprovider.hxx index 7bbb719e410d..d5d5b86a9b41 100644 --- a/forms/source/inc/commandimageprovider.hxx +++ b/forms/source/inc/commandimageprovider.hxx @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef COMMANDIMAGEPROVIDER_HXX diff --git a/forms/source/inc/componenttools.hxx b/forms/source/inc/componenttools.hxx index f15a4fc528dc..73771f19783a 100644 --- a/forms/source/inc/componenttools.hxx +++ b/forms/source/inc/componenttools.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: componenttools.hxx,v $ - * $Revision: 1.5.42.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/controlfeatureinterception.hxx b/forms/source/inc/controlfeatureinterception.hxx index 7b72d12f1414..73f3b9d876c8 100644 --- a/forms/source/inc/controlfeatureinterception.hxx +++ b/forms/source/inc/controlfeatureinterception.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: controlfeatureinterception.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/featuredispatcher.hxx b/forms/source/inc/featuredispatcher.hxx index daf6a33eb5ba..eec111c00406 100644 --- a/forms/source/inc/featuredispatcher.hxx +++ b/forms/source/inc/featuredispatcher.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: featuredispatcher.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/formcontrolfont.hxx b/forms/source/inc/formcontrolfont.hxx index a7bc1430835a..d14203046b7d 100644 --- a/forms/source/inc/formcontrolfont.hxx +++ b/forms/source/inc/formcontrolfont.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formcontrolfont.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/formnavigation.hxx b/forms/source/inc/formnavigation.hxx index 05c976dac11a..6dc848bd8abe 100644 --- a/forms/source/inc/formnavigation.hxx +++ b/forms/source/inc/formnavigation.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formnavigation.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/forms_module.hxx b/forms/source/inc/forms_module.hxx index 5b889fd2f9f5..6655fb750e8d 100644 --- a/forms/source/inc/forms_module.hxx +++ b/forms/source/inc/forms_module.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: forms_module.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/frm_module.hxx b/forms/source/inc/frm_module.hxx index d9cd0580d859..33d17d863d63 100644 --- a/forms/source/inc/frm_module.hxx +++ b/forms/source/inc/frm_module.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: frm_module.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/frm_resource.hrc b/forms/source/inc/frm_resource.hrc index c25ca4f2b6e4..a35707cb1708 100644 --- a/forms/source/inc/frm_resource.hrc +++ b/forms/source/inc/frm_resource.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: frm_resource.hrc,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/frm_resource.hxx b/forms/source/inc/frm_resource.hxx index bbbbe72ab53a..33349e6ad620 100644 --- a/forms/source/inc/frm_resource.hxx +++ b/forms/source/inc/frm_resource.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: frm_resource.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/frm_strings.hxx b/forms/source/inc/frm_strings.hxx index 8dd23dacb77f..8a8105d2e1a7 100644 --- a/forms/source/inc/frm_strings.hxx +++ b/forms/source/inc/frm_strings.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: frm_strings.hxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/ids.hxx b/forms/source/inc/ids.hxx index 3c6da57b1fc2..ef391341c1d4 100644 --- a/forms/source/inc/ids.hxx +++ b/forms/source/inc/ids.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ids.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/limitedformats.hxx b/forms/source/inc/limitedformats.hxx index 82a9985f6a96..fee3221ce17f 100644 --- a/forms/source/inc/limitedformats.hxx +++ b/forms/source/inc/limitedformats.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: limitedformats.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/listenercontainers.hxx b/forms/source/inc/listenercontainers.hxx index 33b6381fa2c3..d4f088d4e180 100644 --- a/forms/source/inc/listenercontainers.hxx +++ b/forms/source/inc/listenercontainers.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listenercontainers.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/property.hrc b/forms/source/inc/property.hrc index 624e4c2f1ce0..c1064e6d56b9 100644 --- a/forms/source/inc/property.hrc +++ b/forms/source/inc/property.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: property.hrc,v $ - * $Revision: 1.21 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/property.hxx b/forms/source/inc/property.hxx index 062c1f951476..e2b6f08377cd 100644 --- a/forms/source/inc/property.hxx +++ b/forms/source/inc/property.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: property.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/propertybaghelper.hxx b/forms/source/inc/propertybaghelper.hxx index 7f8ac3dfe0ee..9d135516f964 100644 --- a/forms/source/inc/propertybaghelper.hxx +++ b/forms/source/inc/propertybaghelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertybaghelper.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/resettable.hxx b/forms/source/inc/resettable.hxx index f8815d5e3eb3..9d3f085ea1f9 100644 --- a/forms/source/inc/resettable.hxx +++ b/forms/source/inc/resettable.hxx @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef FORMS_RESETTABLE_HXX diff --git a/forms/source/inc/services.hxx b/forms/source/inc/services.hxx index 634d3a89d71b..9fcb5db408a1 100644 --- a/forms/source/inc/services.hxx +++ b/forms/source/inc/services.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: services.hxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/togglestate.hxx b/forms/source/inc/togglestate.hxx index 04755000db19..291cc3ab71db 100644 --- a/forms/source/inc/togglestate.hxx +++ b/forms/source/inc/togglestate.hxx @@ -1,26 +1,27 @@ /************************************************************************* -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2009 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #ifndef FORMS_TOGGLESTATE_HXX diff --git a/forms/source/inc/urltransformer.hxx b/forms/source/inc/urltransformer.hxx index 0a2dc0a076cb..2e8bdf1f684a 100644 --- a/forms/source/inc/urltransformer.hxx +++ b/forms/source/inc/urltransformer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: urltransformer.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/inc/windowstateguard.hxx b/forms/source/inc/windowstateguard.hxx index a1feba9933ed..b4c93636f825 100644 --- a/forms/source/inc/windowstateguard.hxx +++ b/forms/source/inc/windowstateguard.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: windowstateguard.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx index f1b59d77af7e..2db62692a3ab 100644 --- a/forms/source/misc/InterfaceContainer.cxx +++ b/forms/source/misc/InterfaceContainer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InterfaceContainer.cxx,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/componenttools.cxx b/forms/source/misc/componenttools.cxx index 21740749d4d4..80e772dbd0da 100644 --- a/forms/source/misc/componenttools.cxx +++ b/forms/source/misc/componenttools.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: componenttools.cxx,v $ - * $Revision: 1.6.42.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/frm_module.cxx b/forms/source/misc/frm_module.cxx index 1240d411b909..c83a6f8a91e6 100644 --- a/forms/source/misc/frm_module.cxx +++ b/forms/source/misc/frm_module.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: frm_module.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/frm_strings.cxx b/forms/source/misc/frm_strings.cxx index 68a4fd5f418b..0236422fbb7c 100644 --- a/forms/source/misc/frm_strings.cxx +++ b/forms/source/misc/frm_strings.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: frm_strings.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/ids.cxx b/forms/source/misc/ids.cxx index c9213f636be4..deae7e8debc4 100644 --- a/forms/source/misc/ids.cxx +++ b/forms/source/misc/ids.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ids.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/limitedformats.cxx b/forms/source/misc/limitedformats.cxx index 4aaf40033062..1b7473114d1c 100644 --- a/forms/source/misc/limitedformats.cxx +++ b/forms/source/misc/limitedformats.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: limitedformats.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/listenercontainers.cxx b/forms/source/misc/listenercontainers.cxx index db19ecacf866..4c7e438d37d8 100644 --- a/forms/source/misc/listenercontainers.cxx +++ b/forms/source/misc/listenercontainers.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: listenercontainers.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/makefile.mk b/forms/source/misc/makefile.mk index b03109ba64d5..5687e3856668 100644 --- a/forms/source/misc/makefile.mk +++ b/forms/source/misc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.10 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/property.cxx b/forms/source/misc/property.cxx index 12cc73e10264..04bc9c8c8911 100644 --- a/forms/source/misc/property.cxx +++ b/forms/source/misc/property.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: property.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/misc/services.cxx b/forms/source/misc/services.cxx index 92c0ef90946b..dbda0ae3896d 100644 --- a/forms/source/misc/services.cxx +++ b/forms/source/misc/services.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: services.cxx,v $ - * $Revision: 1.29 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/resource/frm_resource.cxx b/forms/source/resource/frm_resource.cxx index b3369b865475..67e9c5889326 100644 --- a/forms/source/resource/frm_resource.cxx +++ b/forms/source/resource/frm_resource.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: frm_resource.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/resource/makefile.mk b/forms/source/resource/makefile.mk index 866291d309dd..cde68a98a339 100644 --- a/forms/source/resource/makefile.mk +++ b/forms/source/resource/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/resource/strings.src b/forms/source/resource/strings.src index 25d700989514..96f2c1d95dfb 100644 --- a/forms/source/resource/strings.src +++ b/forms/source/resource/strings.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: strings.src,v $ - * $Revision: 1.49 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/resource/xforms.src b/forms/source/resource/xforms.src index 4bce8a1795f1..4efa63320a6f 100644 --- a/forms/source/resource/xforms.src +++ b/forms/source/resource/xforms.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xforms.src,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/attributedispatcher.cxx b/forms/source/richtext/attributedispatcher.cxx index e7fd029a86bd..ac6ec5532aff 100644 --- a/forms/source/richtext/attributedispatcher.cxx +++ b/forms/source/richtext/attributedispatcher.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: attributedispatcher.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/attributedispatcher.hxx b/forms/source/richtext/attributedispatcher.hxx index 870848cd1660..6c9b7b461267 100644 --- a/forms/source/richtext/attributedispatcher.hxx +++ b/forms/source/richtext/attributedispatcher.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: attributedispatcher.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/clipboarddispatcher.cxx b/forms/source/richtext/clipboarddispatcher.cxx index eca90f30ddc2..dd32167bfdff 100644 --- a/forms/source/richtext/clipboarddispatcher.cxx +++ b/forms/source/richtext/clipboarddispatcher.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: clipboarddispatcher.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/clipboarddispatcher.hxx b/forms/source/richtext/clipboarddispatcher.hxx index c61ab727f422..a9e6bd7417c1 100644 --- a/forms/source/richtext/clipboarddispatcher.hxx +++ b/forms/source/richtext/clipboarddispatcher.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: clipboarddispatcher.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/featuredispatcher.cxx b/forms/source/richtext/featuredispatcher.cxx index 4f8b1cf9dd31..d24e625e0f33 100644 --- a/forms/source/richtext/featuredispatcher.cxx +++ b/forms/source/richtext/featuredispatcher.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: featuredispatcher.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/featuredispatcher.hxx b/forms/source/richtext/featuredispatcher.hxx index b1c2651813e1..9a8252a21783 100644 --- a/forms/source/richtext/featuredispatcher.hxx +++ b/forms/source/richtext/featuredispatcher.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: featuredispatcher.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/makefile.mk b/forms/source/richtext/makefile.mk index 3bb163f2ee24..5c62a1a9e675 100644 --- a/forms/source/richtext/makefile.mk +++ b/forms/source/richtext/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/parametrizedattributedispatcher.cxx b/forms/source/richtext/parametrizedattributedispatcher.cxx index 9f6c4c15ed68..16659dbf999e 100644 --- a/forms/source/richtext/parametrizedattributedispatcher.cxx +++ b/forms/source/richtext/parametrizedattributedispatcher.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: parametrizedattributedispatcher.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/parametrizedattributedispatcher.hxx b/forms/source/richtext/parametrizedattributedispatcher.hxx index 34e296432713..bbc73a6bd513 100644 --- a/forms/source/richtext/parametrizedattributedispatcher.hxx +++ b/forms/source/richtext/parametrizedattributedispatcher.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: parametrizedattributedispatcher.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextcontrol.cxx b/forms/source/richtext/richtextcontrol.cxx index 9150eac63e17..3027c1a7e9f6 100644 --- a/forms/source/richtext/richtextcontrol.cxx +++ b/forms/source/richtext/richtextcontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextcontrol.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextcontrol.hxx b/forms/source/richtext/richtextcontrol.hxx index eecff6527eea..a3f0da71aca7 100644 --- a/forms/source/richtext/richtextcontrol.hxx +++ b/forms/source/richtext/richtextcontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextcontrol.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextengine.cxx b/forms/source/richtext/richtextengine.cxx index b87d6260b723..191b6a37ac05 100644 --- a/forms/source/richtext/richtextengine.cxx +++ b/forms/source/richtext/richtextengine.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextengine.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextengine.hxx b/forms/source/richtext/richtextengine.hxx index 6e0052a26da7..c40b5bcc081a 100644 --- a/forms/source/richtext/richtextengine.hxx +++ b/forms/source/richtext/richtextengine.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextengine.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextimplcontrol.cxx b/forms/source/richtext/richtextimplcontrol.cxx index 259197ac71d1..68a6a5cc7e49 100644 --- a/forms/source/richtext/richtextimplcontrol.cxx +++ b/forms/source/richtext/richtextimplcontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextimplcontrol.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextimplcontrol.hxx b/forms/source/richtext/richtextimplcontrol.hxx index 65e138b4f093..03ed602a0d9f 100644 --- a/forms/source/richtext/richtextimplcontrol.hxx +++ b/forms/source/richtext/richtextimplcontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextimplcontrol.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextmodel.cxx b/forms/source/richtext/richtextmodel.cxx index 067512d3c659..0e4410960a3a 100644 --- a/forms/source/richtext/richtextmodel.cxx +++ b/forms/source/richtext/richtextmodel.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextmodel.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextmodel.hxx b/forms/source/richtext/richtextmodel.hxx index 5cdfe56f0dea..94e5523fb001 100644 --- a/forms/source/richtext/richtextmodel.hxx +++ b/forms/source/richtext/richtextmodel.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextmodel.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextunowrapper.cxx b/forms/source/richtext/richtextunowrapper.cxx index f5a9d178d32c..14bf431a1efb 100644 --- a/forms/source/richtext/richtextunowrapper.cxx +++ b/forms/source/richtext/richtextunowrapper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextunowrapper.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextunowrapper.hxx b/forms/source/richtext/richtextunowrapper.hxx index 3a0e1a4aec47..98506108da16 100644 --- a/forms/source/richtext/richtextunowrapper.hxx +++ b/forms/source/richtext/richtextunowrapper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextunowrapper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextvclcontrol.cxx b/forms/source/richtext/richtextvclcontrol.cxx index 495a85c02162..5964427b4a95 100644 --- a/forms/source/richtext/richtextvclcontrol.cxx +++ b/forms/source/richtext/richtextvclcontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextvclcontrol.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextvclcontrol.hxx b/forms/source/richtext/richtextvclcontrol.hxx index a4f49aa2d41c..54f59569984f 100644 --- a/forms/source/richtext/richtextvclcontrol.hxx +++ b/forms/source/richtext/richtextvclcontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextvclcontrol.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextviewport.cxx b/forms/source/richtext/richtextviewport.cxx index e85a8cf26035..6c9e77676b12 100644 --- a/forms/source/richtext/richtextviewport.cxx +++ b/forms/source/richtext/richtextviewport.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextviewport.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/richtextviewport.hxx b/forms/source/richtext/richtextviewport.hxx index bf1d1bc614fc..70ae75a346f6 100644 --- a/forms/source/richtext/richtextviewport.hxx +++ b/forms/source/richtext/richtextviewport.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: richtextviewport.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/rtattributehandler.cxx b/forms/source/richtext/rtattributehandler.cxx index d1090b82d914..5ed3cf9dc360 100644 --- a/forms/source/richtext/rtattributehandler.cxx +++ b/forms/source/richtext/rtattributehandler.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: rtattributehandler.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/rtattributehandler.hxx b/forms/source/richtext/rtattributehandler.hxx index cca6723d5f7a..6559e2b44638 100644 --- a/forms/source/richtext/rtattributehandler.hxx +++ b/forms/source/richtext/rtattributehandler.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: rtattributehandler.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/rtattributes.hxx b/forms/source/richtext/rtattributes.hxx index d5874ea566c2..2506dbcb5186 100644 --- a/forms/source/richtext/rtattributes.hxx +++ b/forms/source/richtext/rtattributes.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: rtattributes.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/specialdispatchers.cxx b/forms/source/richtext/specialdispatchers.cxx index a9176b8d3350..f6fa4f248cdb 100644 --- a/forms/source/richtext/specialdispatchers.cxx +++ b/forms/source/richtext/specialdispatchers.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: specialdispatchers.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/specialdispatchers.hxx b/forms/source/richtext/specialdispatchers.hxx index c874140e8257..7b6c7b98ea24 100644 --- a/forms/source/richtext/specialdispatchers.hxx +++ b/forms/source/richtext/specialdispatchers.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: specialdispatchers.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/richtext/textattributelistener.hxx b/forms/source/richtext/textattributelistener.hxx index 44011f47d64e..3b7b29ee19f9 100644 --- a/forms/source/richtext/textattributelistener.hxx +++ b/forms/source/richtext/textattributelistener.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: textattributelistener.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx index 6b63d4b8a756..48e6159585ab 100644 --- a/forms/source/runtime/formoperations.cxx +++ b/forms/source/runtime/formoperations.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formoperations.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/runtime/formoperations.hxx b/forms/source/runtime/formoperations.hxx index 3d5eb8fa17ce..374df8c2165c 100644 --- a/forms/source/runtime/formoperations.hxx +++ b/forms/source/runtime/formoperations.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: formoperations.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/runtime/makefile.mk b/forms/source/runtime/makefile.mk index 162a22b9b171..90e3750378af 100644 --- a/forms/source/runtime/makefile.mk +++ b/forms/source/runtime/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/solar/component/makefile.mk b/forms/source/solar/component/makefile.mk index 57c6625285f9..06471405a3e2 100644 --- a/forms/source/solar/component/makefile.mk +++ b/forms/source/solar/component/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/solar/component/navbarcontrol.cxx b/forms/source/solar/component/navbarcontrol.cxx index eb975910a5da..d31727cff125 100644 --- a/forms/source/solar/component/navbarcontrol.cxx +++ b/forms/source/solar/component/navbarcontrol.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: navbarcontrol.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/solar/component/navbarcontrol.hxx b/forms/source/solar/component/navbarcontrol.hxx index 62d44774d0b3..1e7c6cd8b854 100644 --- a/forms/source/solar/component/navbarcontrol.hxx +++ b/forms/source/solar/component/navbarcontrol.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: navbarcontrol.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/solar/control/makefile.mk b/forms/source/solar/control/makefile.mk index 66b314131f14..906f5938d596 100644 --- a/forms/source/solar/control/makefile.mk +++ b/forms/source/solar/control/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/solar/control/navtoolbar.cxx b/forms/source/solar/control/navtoolbar.cxx index 58f22f0c95e4..128bc112adee 100644 --- a/forms/source/solar/control/navtoolbar.cxx +++ b/forms/source/solar/control/navtoolbar.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: navtoolbar.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/solar/inc/navtoolbar.hxx b/forms/source/solar/inc/navtoolbar.hxx index eaa3717bc4d2..5ace33765262 100644 --- a/forms/source/solar/inc/navtoolbar.hxx +++ b/forms/source/solar/inc/navtoolbar.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: navtoolbar.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/NameContainer.hxx b/forms/source/xforms/NameContainer.hxx index cb0d76cb6c17..3cab033f605e 100644 --- a/forms/source/xforms/NameContainer.hxx +++ b/forms/source/xforms/NameContainer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NameContainer.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/binding.cxx b/forms/source/xforms/binding.cxx index 94494a1a3690..3df2385796f0 100644 --- a/forms/source/xforms/binding.cxx +++ b/forms/source/xforms/binding.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: binding.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/binding.hxx b/forms/source/xforms/binding.hxx index a830ee2bd982..7a69b1547418 100644 --- a/forms/source/xforms/binding.hxx +++ b/forms/source/xforms/binding.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: binding.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/boolexpression.cxx b/forms/source/xforms/boolexpression.cxx index 0b841869153d..c8d7572b5f56 100644 --- a/forms/source/xforms/boolexpression.cxx +++ b/forms/source/xforms/boolexpression.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: boolexpression.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/boolexpression.hxx b/forms/source/xforms/boolexpression.hxx index 54a8ac558e75..2c34a98b4fed 100644 --- a/forms/source/xforms/boolexpression.hxx +++ b/forms/source/xforms/boolexpression.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: boolexpression.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/collection.hxx b/forms/source/xforms/collection.hxx index 06e7a87ebf94..2c083a969306 100644 --- a/forms/source/xforms/collection.hxx +++ b/forms/source/xforms/collection.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: collection.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/computedexpression.cxx b/forms/source/xforms/computedexpression.cxx index 011121bdf56e..540cfd2f6d5b 100644 --- a/forms/source/xforms/computedexpression.cxx +++ b/forms/source/xforms/computedexpression.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: computedexpression.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/computedexpression.hxx b/forms/source/xforms/computedexpression.hxx index 71b60091d3db..6a1581cc8d0b 100644 --- a/forms/source/xforms/computedexpression.hxx +++ b/forms/source/xforms/computedexpression.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: computedexpression.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/convert.cxx b/forms/source/xforms/convert.cxx index ea0bb3fe97db..7ea6e35a5284 100644 --- a/forms/source/xforms/convert.cxx +++ b/forms/source/xforms/convert.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: convert.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/convert.hxx b/forms/source/xforms/convert.hxx index f7ebb52191f8..750399879ee0 100644 --- a/forms/source/xforms/convert.hxx +++ b/forms/source/xforms/convert.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: convert.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/datatyperepository.cxx b/forms/source/xforms/datatyperepository.cxx index 5388fe10e5e8..8a9a4847af62 100644 --- a/forms/source/xforms/datatyperepository.cxx +++ b/forms/source/xforms/datatyperepository.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datatyperepository.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/datatyperepository.hxx b/forms/source/xforms/datatyperepository.hxx index 3b5479d0354d..f680079ebf4b 100644 --- a/forms/source/xforms/datatyperepository.hxx +++ b/forms/source/xforms/datatyperepository.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datatyperepository.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/datatypes.cxx b/forms/source/xforms/datatypes.cxx index 9d63b4a37aff..212b5f721e67 100644 --- a/forms/source/xforms/datatypes.cxx +++ b/forms/source/xforms/datatypes.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datatypes.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/datatypes.hxx b/forms/source/xforms/datatypes.hxx index 15e472cf121a..50021f6db5b4 100644 --- a/forms/source/xforms/datatypes.hxx +++ b/forms/source/xforms/datatypes.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datatypes.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/datatypes_impl.hxx b/forms/source/xforms/datatypes_impl.hxx index 3ba80656c6b7..d0d0f9606b91 100644 --- a/forms/source/xforms/datatypes_impl.hxx +++ b/forms/source/xforms/datatypes_impl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: datatypes_impl.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/enumeration.cxx b/forms/source/xforms/enumeration.cxx index 491db0f8f6a6..270ade4bc4bb 100644 --- a/forms/source/xforms/enumeration.cxx +++ b/forms/source/xforms/enumeration.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: enumeration.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/enumeration.hxx b/forms/source/xforms/enumeration.hxx index 708085b7b7cf..8a9b89a09a15 100644 --- a/forms/source/xforms/enumeration.hxx +++ b/forms/source/xforms/enumeration.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: enumeration.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/evaluationcontext.hxx b/forms/source/xforms/evaluationcontext.hxx index ed39c99a81b0..4affefd34f29 100644 --- a/forms/source/xforms/evaluationcontext.hxx +++ b/forms/source/xforms/evaluationcontext.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: evaluationcontext.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/makefile.mk b/forms/source/xforms/makefile.mk index db4d73333212..10bbf6b49fcd 100644 --- a/forms/source/xforms/makefile.mk +++ b/forms/source/xforms/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/mip.cxx b/forms/source/xforms/mip.cxx index 14bff21059dd..7f45ff5e9415 100644 --- a/forms/source/xforms/mip.cxx +++ b/forms/source/xforms/mip.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: mip.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/mip.hxx b/forms/source/xforms/mip.hxx index 7a54774eee56..fb8b219cf7e1 100644 --- a/forms/source/xforms/mip.hxx +++ b/forms/source/xforms/mip.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: mip.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/model.cxx b/forms/source/xforms/model.cxx index ea92f43a58a8..0d81c7056bec 100644 --- a/forms/source/xforms/model.cxx +++ b/forms/source/xforms/model.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: model.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/model.hxx b/forms/source/xforms/model.hxx index 5dc19c7aadf3..be9a5134d1da 100644 --- a/forms/source/xforms/model.hxx +++ b/forms/source/xforms/model.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: model.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/model_helper.hxx b/forms/source/xforms/model_helper.hxx index 491ee2337d7d..d67a83c8cdb1 100644 --- a/forms/source/xforms/model_helper.hxx +++ b/forms/source/xforms/model_helper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: model_helper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/model_ui.cxx b/forms/source/xforms/model_ui.cxx index 92883f70a950..a62ac1fa9ac9 100644 --- a/forms/source/xforms/model_ui.cxx +++ b/forms/source/xforms/model_ui.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: model_ui.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/namedcollection.hxx b/forms/source/xforms/namedcollection.hxx index 03c1816fdabe..ffae93ed2c90 100644 --- a/forms/source/xforms/namedcollection.hxx +++ b/forms/source/xforms/namedcollection.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: namedcollection.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/pathexpression.cxx b/forms/source/xforms/pathexpression.cxx index 2b2ff2a707eb..ef82e87c4d18 100644 --- a/forms/source/xforms/pathexpression.cxx +++ b/forms/source/xforms/pathexpression.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pathexpression.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/pathexpression.hxx b/forms/source/xforms/pathexpression.hxx index f04eb4c939b8..00f11b56d435 100644 --- a/forms/source/xforms/pathexpression.hxx +++ b/forms/source/xforms/pathexpression.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: pathexpression.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/propertysetbase.cxx b/forms/source/xforms/propertysetbase.cxx index c89b5bf21469..131b2aa447b0 100644 --- a/forms/source/xforms/propertysetbase.cxx +++ b/forms/source/xforms/propertysetbase.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertysetbase.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/propertysetbase.hxx b/forms/source/xforms/propertysetbase.hxx index 218182ea9be7..9e11efe1ebb7 100644 --- a/forms/source/xforms/propertysetbase.hxx +++ b/forms/source/xforms/propertysetbase.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: propertysetbase.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/resourcehelper.cxx b/forms/source/xforms/resourcehelper.cxx index ffa43ef192f4..138c64851dce 100644 --- a/forms/source/xforms/resourcehelper.cxx +++ b/forms/source/xforms/resourcehelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: resourcehelper.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/resourcehelper.hxx b/forms/source/xforms/resourcehelper.hxx index 7dd198eb7373..a312c5749c50 100644 --- a/forms/source/xforms/resourcehelper.hxx +++ b/forms/source/xforms/resourcehelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: resourcehelper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission.cxx b/forms/source/xforms/submission.cxx index 20bfa65c9331..b61ad498933e 100644 --- a/forms/source/xforms/submission.cxx +++ b/forms/source/xforms/submission.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission.hxx b/forms/source/xforms/submission.hxx index 2562d3328d00..36a687a3d5e5 100644 --- a/forms/source/xforms/submission.hxx +++ b/forms/source/xforms/submission.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/makefile.mk b/forms/source/xforms/submission/makefile.mk index 74a33f17d8dd..20590cab880b 100644 --- a/forms/source/xforms/submission/makefile.mk +++ b/forms/source/xforms/submission/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/replace.cxx b/forms/source/xforms/submission/replace.cxx index 9c54d6e7164a..fa8ca6f383b5 100644 --- a/forms/source/xforms/submission/replace.cxx +++ b/forms/source/xforms/submission/replace.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: replace.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/serialization.hxx b/forms/source/xforms/submission/serialization.hxx index 46e6d18b89a0..a3e369bc19b2 100644 --- a/forms/source/xforms/submission/serialization.hxx +++ b/forms/source/xforms/submission/serialization.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: serialization.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/serialization_app_xml.cxx b/forms/source/xforms/submission/serialization_app_xml.cxx index 8567bcfcf399..85cf066d6343 100644 --- a/forms/source/xforms/submission/serialization_app_xml.cxx +++ b/forms/source/xforms/submission/serialization_app_xml.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: serialization_app_xml.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/serialization_app_xml.hxx b/forms/source/xforms/submission/serialization_app_xml.hxx index 65eb025b2d5f..338df6aea083 100644 --- a/forms/source/xforms/submission/serialization_app_xml.hxx +++ b/forms/source/xforms/submission/serialization_app_xml.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: serialization_app_xml.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/serialization_multi_form.hxx b/forms/source/xforms/submission/serialization_multi_form.hxx index 12dde0f72583..20e542d90bc7 100644 --- a/forms/source/xforms/submission/serialization_multi_form.hxx +++ b/forms/source/xforms/submission/serialization_multi_form.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: serialization_multi_form.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/serialization_multi_related.hxx b/forms/source/xforms/submission/serialization_multi_related.hxx index 00519a9ef1fb..20e542d90bc7 100644 --- a/forms/source/xforms/submission/serialization_multi_related.hxx +++ b/forms/source/xforms/submission/serialization_multi_related.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: serialization_multi_related.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/serialization_urlencoded.cxx b/forms/source/xforms/submission/serialization_urlencoded.cxx index 888a24792512..307d9d90aed7 100644 --- a/forms/source/xforms/submission/serialization_urlencoded.cxx +++ b/forms/source/xforms/submission/serialization_urlencoded.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: serialization_urlencoded.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/serialization_urlencoded.hxx b/forms/source/xforms/submission/serialization_urlencoded.hxx index e16ed369db20..a3c41e7e4d5c 100644 --- a/forms/source/xforms/submission/serialization_urlencoded.hxx +++ b/forms/source/xforms/submission/serialization_urlencoded.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: serialization_urlencoded.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/submission.hxx b/forms/source/xforms/submission/submission.hxx index c146282903c4..53e37b4cd131 100644 --- a/forms/source/xforms/submission/submission.hxx +++ b/forms/source/xforms/submission/submission.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/submission_get.cxx b/forms/source/xforms/submission/submission_get.cxx index c310be9fc82f..57adeda664c7 100644 --- a/forms/source/xforms/submission/submission_get.cxx +++ b/forms/source/xforms/submission/submission_get.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission_get.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/submission_get.hxx b/forms/source/xforms/submission/submission_get.hxx index f3d32c034a9e..931ecb514fc4 100644 --- a/forms/source/xforms/submission/submission_get.hxx +++ b/forms/source/xforms/submission/submission_get.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission_get.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/submission_post.cxx b/forms/source/xforms/submission/submission_post.cxx index 8142fec3df05..fa3f2180b0b0 100644 --- a/forms/source/xforms/submission/submission_post.cxx +++ b/forms/source/xforms/submission/submission_post.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission_post.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/submission_post.hxx b/forms/source/xforms/submission/submission_post.hxx index a3c109033664..1c0c86d6490f 100644 --- a/forms/source/xforms/submission/submission_post.hxx +++ b/forms/source/xforms/submission/submission_post.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission_post.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/submission_put.cxx b/forms/source/xforms/submission/submission_put.cxx index 10bc0e2b0896..9ed37470ba93 100644 --- a/forms/source/xforms/submission/submission_put.cxx +++ b/forms/source/xforms/submission/submission_put.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission_put.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/submission/submission_put.hxx b/forms/source/xforms/submission/submission_put.hxx index 3bf3d2fd92a1..10e4fa44007d 100644 --- a/forms/source/xforms/submission/submission_put.hxx +++ b/forms/source/xforms/submission/submission_put.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: submission_put.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/unohelper.cxx b/forms/source/xforms/unohelper.cxx index 110ecabde13a..738ad4f40a1a 100644 --- a/forms/source/xforms/unohelper.cxx +++ b/forms/source/xforms/unohelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unohelper.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/unohelper.hxx b/forms/source/xforms/unohelper.hxx index 7716f1f98d68..d6cb46fcbc40 100644 --- a/forms/source/xforms/unohelper.hxx +++ b/forms/source/xforms/unohelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: unohelper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/warnings_guard_unicode_regex.h b/forms/source/xforms/warnings_guard_unicode_regex.h index ea3dc11027a1..2d7605cb9524 100644 --- a/forms/source/xforms/warnings_guard_unicode_regex.h +++ b/forms/source/xforms/warnings_guard_unicode_regex.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: warnings_guard_unicode_regex.h,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/xforms_services.cxx b/forms/source/xforms/xforms_services.cxx index ede1ad90b64c..867a80bd7bbd 100644 --- a/forms/source/xforms/xforms_services.cxx +++ b/forms/source/xforms/xforms_services.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xforms_services.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/xformsevent.cxx b/forms/source/xforms/xformsevent.cxx index 03830a700116..56f8f2e9ca4a 100644 --- a/forms/source/xforms/xformsevent.cxx +++ b/forms/source/xforms/xformsevent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xformsevent.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/xmlhelper.cxx b/forms/source/xforms/xmlhelper.cxx index 6dacebcdc8a2..a8aaa19aea34 100644 --- a/forms/source/xforms/xmlhelper.cxx +++ b/forms/source/xforms/xmlhelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlhelper.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/xmlhelper.hxx b/forms/source/xforms/xmlhelper.hxx index 51f12fe7c1c5..d5822138a306 100644 --- a/forms/source/xforms/xmlhelper.hxx +++ b/forms/source/xforms/xmlhelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlhelper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/xpathlib/extension.cxx b/forms/source/xforms/xpathlib/extension.cxx index 0ffd92d6b2a9..4c23eac63be0 100644 --- a/forms/source/xforms/xpathlib/extension.cxx +++ b/forms/source/xforms/xpathlib/extension.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: extension.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/xpathlib/makefile.mk b/forms/source/xforms/xpathlib/makefile.mk index 6231e1f4f072..08e58eb2834c 100644 --- a/forms/source/xforms/xpathlib/makefile.mk +++ b/forms/source/xforms/xpathlib/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/source/xforms/xpathlib/xpathlib.cxx b/forms/source/xforms/xpathlib/xpathlib.cxx index a4dfbe3b08e6..2fd6a93b614a 100644 --- a/forms/source/xforms/xpathlib/xpathlib.cxx +++ b/forms/source/xforms/xpathlib/xpathlib.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xpathlib.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/forms/util/makefile.mk b/forms/util/makefile.mk index 1c454b1383db..8444bcf43b2c 100644 --- a/forms/util/makefile.mk +++ b/forms/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.20 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/makefile.mk b/javainstaller2/makefile.mk index ebd4e78e68ab..99d5bf0b361d 100755 --- a/javainstaller2/makefile.mk +++ b/javainstaller2/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/Helpfiles/create_helpfiles.pl b/javainstaller2/src/Helpfiles/create_helpfiles.pl index c163b3eb79ca..7fb1ac836faf 100755 --- a/javainstaller2/src/Helpfiles/create_helpfiles.pl +++ b/javainstaller2/src/Helpfiles/create_helpfiles.pl @@ -5,14 +5,10 @@ eval 'exec perl -wS $0 ${1+"$@"}' # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: create_helpfiles.pl,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/Helpfiles/helpfilenames.txt b/javainstaller2/src/Helpfiles/helpfilenames.txt index 9b92ea2bf94a..85fade352c19 100755 --- a/javainstaller2/src/Helpfiles/helpfilenames.txt +++ b/javainstaller2/src/Helpfiles/helpfilenames.txt @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: helpfilenames.txt,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/Helpfiles/makefile.mk b/javainstaller2/src/Helpfiles/makefile.mk index 06e3dfaaf5f1..a45253613e5d 100755 --- a/javainstaller2/src/Helpfiles/makefile.mk +++ b/javainstaller2/src/Helpfiles/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/AcceptLicenseCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/AcceptLicenseCtrl.java index eb91691acac1..025b96a7990d 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/AcceptLicenseCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/AcceptLicenseCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AcceptLicenseCtrl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseComponentsCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseComponentsCtrl.java index 1f2057446441..e6eeda82d7b6 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseComponentsCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseComponentsCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseComponentsCtrl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseDirectoryCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseDirectoryCtrl.java index 0fb8b906a9c6..4a3bfab8452e 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseDirectoryCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseDirectoryCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseDirectoryCtrl.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseInstallationTypeCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseInstallationTypeCtrl.java index 84f7e8a45086..25432ae7def3 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseInstallationTypeCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseInstallationTypeCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseInstallationTypeCtrl.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationComponentsCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationComponentsCtrl.java index acac155f8f5b..15ae15654d28 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationComponentsCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationComponentsCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseUninstallationComponentsCtrl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationTypeCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationTypeCtrl.java index a6aa95ec2b7a..d1c5e69430db 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationTypeCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ChooseUninstallationTypeCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseUninstallationTypeCtrl.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java index a438c6477f80..fc14c238da0b 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InstallationCompletedCtrl.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationImminentCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationImminentCtrl.java index 348cac6d9d66..0130607acc36 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationImminentCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationImminentCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InstallationImminentCtrl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationOngoingCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationOngoingCtrl.java index 412eae3fdabf..b435b480eaea 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationOngoingCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationOngoingCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InstallationOngoingCtrl.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/PrologueCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/PrologueCtrl.java index 39798e6ae394..85c682f9dee6 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/PrologueCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/PrologueCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PrologueCtrl.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationCompletedCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationCompletedCtrl.java index 19381dc6c99b..837f28546728 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationCompletedCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationCompletedCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UninstallationCompletedCtrl.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationImminentCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationImminentCtrl.java index 7a070f2cda11..00b7ff25de31 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationImminentCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationImminentCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UninstallationImminentCtrl.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationOngoingCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationOngoingCtrl.java index 802421486169..a5065cc0e905 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationOngoingCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationOngoingCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UninstallationOngoingCtrl.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationPrologueCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationPrologueCtrl.java index b006e4671abc..1e35db23454d 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationPrologueCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/UninstallationPrologueCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UninstallationPrologueCtrl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/DeckOfPanels.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/DeckOfPanels.java index 08f866f00c64..c433307ed2f1 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/DeckOfPanels.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/DeckOfPanels.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DeckOfPanels.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java index a91848e3710b..9df39ec2d517 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DatabaseDialog.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java index a4bf1cc7be9a..c21d1e663cae 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DetailsDialog.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java index f369627ba01a..3fd9b1976e0c 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: HelpDialog.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java index 476669c0617f..aefd78e480b7 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InstallData.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/Installer.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/Installer.java index 147d37cd1bad..43ae1a369bd3 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/Installer.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/Installer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Installer.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/InstallerFactory.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/InstallerFactory.java index f0cb847b4d5f..04e2cf2b4808 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/InstallerFactory.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/InstallerFactory.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InstallerFactory.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/LinuxInstaller.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/LinuxInstaller.java index b4a9ffbe7506..b9fa8f3af237 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/LinuxInstaller.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/LinuxInstaller.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LinuxInstaller.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/SolarisInstaller.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/SolarisInstaller.java index 2da5006e9022..7aacc5557fa6 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/SolarisInstaller.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Installer/SolarisInstaller.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SolarisInstaller.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/LinuxHelper.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/LinuxHelper.java index 5ef4252808c1..1640ae706a46 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/LinuxHelper.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/LinuxHelper.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LinuxHelper.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java index 7d582f0a03d2..ccc1e7bf11df 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SolarisHelper.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Main.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Main.java index 206d2d16d128..75a2af9b3117 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Main.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Main.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Main.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/AcceptLicense.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/AcceptLicense.java index e4a91e5bfefb..42c1f91cdb13 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/AcceptLicense.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/AcceptLicense.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AcceptLicense.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseComponents.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseComponents.java index d7e50f09680f..89f76db06227 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseComponents.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseComponents.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseComponents.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseDirectory.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseDirectory.java index d8f14a080bf8..15d44fa2d179 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseDirectory.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseDirectory.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseDirectory.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseInstallationType.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseInstallationType.java index 351b0b3bddba..74a72c936800 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseInstallationType.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseInstallationType.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseInstallationType.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationComponents.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationComponents.java index 4bff1b209355..81de5505bc3c 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationComponents.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationComponents.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseUninstallationComponents.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationType.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationType.java index 62be2ade768b..45e29ba575de 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationType.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/ChooseUninstallationType.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ChooseUninstallationType.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationImminent.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationImminent.java index bb293e6b0028..7fda225f55d9 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationImminent.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationImminent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InstallationImminent.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationOngoing.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationOngoing.java index 42fda2d0bbfb..7daf033ab3bd 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationOngoing.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/InstallationOngoing.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InstallationOngoing.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/Prologue.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/Prologue.java index 005c5c6a1530..5209c98241ee 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/Prologue.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/Prologue.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Prologue.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationCompleted.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationCompleted.java index 61b0dc9fa7ab..1c724fc47c86 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationCompleted.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationCompleted.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UninstallationCompleted.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationImminent.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationImminent.java index 255aa8f0acb9..fdef8958a676 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationImminent.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationImminent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UninstallationImminent.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationOngoing.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationOngoing.java index 225a0e202a36..6934308d6b47 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationOngoing.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationOngoing.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UninstallationOngoing.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationPrologue.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationPrologue.java index 594643914e25..d8ec108298b4 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationPrologue.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/UninstallationPrologue.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UninstallationPrologue.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/installationCompleted.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/installationCompleted.java index b19d4797b67d..e34636da8d6f 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/installationCompleted.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/installationCompleted.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: installationCompleted.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelController.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelController.java index 0095d222fd87..51a063e9ebd4 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelController.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelController.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PanelController.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelLabel.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelLabel.java index d2dcfb078b87..4fec3cfdb1c5 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelLabel.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelLabel.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PanelLabel.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelTitle.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelTitle.java index 79f3d71bfc83..6b383473e541 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelTitle.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/PanelTitle.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PanelTitle.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/TreeNodeRenderer.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/TreeNodeRenderer.java index c2b361d60973..7b9253d60ba8 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/TreeNodeRenderer.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/TreeNodeRenderer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TreeNodeRenderer.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/ResourceManager.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/ResourceManager.java index c625a8742486..e0c28b96b512 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/ResourceManager.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/ResourceManager.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ResourceManager.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupActionListener.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupActionListener.java index 9b5dc4b7e6a7..1fd8aa72ac2e 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupActionListener.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupActionListener.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SetupActionListener.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/DisplayPackageDescription.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/DisplayPackageDescription.java index 701d7f699b37..f7926c4fd314 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/DisplayPackageDescription.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/DisplayPackageDescription.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DisplayPackageDescription.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/PackageDescription.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/PackageDescription.java index 69aba3c19a93..4ed331bff2d7 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/PackageDescription.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/PackageDescription.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PackageDescription.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java index f4bc983162a2..e5933a996834 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ProductDescription.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/SetupDataProvider.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/SetupDataProvider.java index a6889292e7fb..55b6b06a86e0 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/SetupDataProvider.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/SetupDataProvider.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SetupDataProvider.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/XMLPackageDescription.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/XMLPackageDescription.java index 4b3a97e1b6dd..ab7aef57b526 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/XMLPackageDescription.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/XMLPackageDescription.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMLPackageDescription.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupFrame.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupFrame.java index eed383d559c7..98b7e0a1b7fc 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupFrame.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupFrame.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SetupFrame.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/AbortInstaller.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/AbortInstaller.java index 0ab947178073..7df874a31fbc 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/AbortInstaller.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/AbortInstaller.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AbortInstaller.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Calculator.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Calculator.java index ec8e10d9b6c1..2042cc738c52 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Calculator.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Calculator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Calculator.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Controller.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Controller.java index 49ca700a4b09..bbca464fd72a 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Controller.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Controller.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Controller.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Converter.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Converter.java index bc58a356a7b9..411351b1139d 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Converter.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Converter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Converter.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/DialogFocusTraversalPolicy.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/DialogFocusTraversalPolicy.java index 4941b428c503..ae9950841968 100644 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/DialogFocusTraversalPolicy.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/DialogFocusTraversalPolicy.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DialogFocusTraversalPolicy.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Dumper.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Dumper.java index da252f6d0a39..3024b0f1a676 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Dumper.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Dumper.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Dumper.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ExecuteProcess.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ExecuteProcess.java index 63be86e17d35..c86d4204fcc1 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ExecuteProcess.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ExecuteProcess.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ExecuteProcess.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/FileExtensionFilter.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/FileExtensionFilter.java index 513e9b6b8ca3..35a7c0b6dcbc 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/FileExtensionFilter.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/FileExtensionFilter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FileExtensionFilter.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java index 172844112c87..d5e9023a821e 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InfoCtrl.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoDir.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoDir.java index 55e80d52cd52..97b3073c3c32 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoDir.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoDir.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InfoDir.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Informer.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Informer.java index 50659ddcd6d3..7a3046a1dda0 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Informer.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Informer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Informer.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InstallChangeCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InstallChangeCtrl.java index 2bd57123a6aa..55d2c0a8d0cb 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InstallChangeCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InstallChangeCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InstallChangeCtrl.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/LogManager.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/LogManager.java index b49c5c38ea8f..3be95469b532 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/LogManager.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/LogManager.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LogManager.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java index 354b64d78420..8d43fb4d01f1 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ModuleCtrl.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/PackageCollector.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/PackageCollector.java index efa15c0212ae..4e1c4d5866e2 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/PackageCollector.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/PackageCollector.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PackageCollector.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Parser.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Parser.java index 7bd6259fe9e9..6c22222fa27d 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Parser.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/Parser.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Parser.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/SystemManager.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/SystemManager.java index 08bb4842252b..f0a3619054bb 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/SystemManager.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/SystemManager.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SystemManager.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/Localization/makefile.mk b/javainstaller2/src/Localization/makefile.mk index 9f9652a6017e..27f679318d85 100755 --- a/javainstaller2/src/Localization/makefile.mk +++ b/javainstaller2/src/Localization/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/Localization/setupstrings.ulf b/javainstaller2/src/Localization/setupstrings.ulf index 8b28bac892f6..6038f978c8ad 100755 --- a/javainstaller2/src/Localization/setupstrings.ulf +++ b/javainstaller2/src/Localization/setupstrings.ulf @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: setupstrings.ulf,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/Properties/create_property.pl b/javainstaller2/src/Properties/create_property.pl index 14f801285118..02712bb234c5 100755 --- a/javainstaller2/src/Properties/create_property.pl +++ b/javainstaller2/src/Properties/create_property.pl @@ -5,14 +5,10 @@ eval 'exec perl -wS $0 ${1+"$@"}' # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: create_property.pl,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/javainstaller2/src/Properties/makefile.mk b/javainstaller2/src/Properties/makefile.mk index b4cc9a293072..c700bd3a7607 100755 --- a/javainstaller2/src/Properties/makefile.mk +++ b/javainstaller2/src/Properties/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/inc/makefile.mk b/lingucomponent/inc/makefile.mk index e165cde5892b..bf9eb26a3585 100644 --- a/lingucomponent/inc/makefile.mk +++ b/lingucomponent/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/inc/pch/precompiled_lingucomponent.cxx b/lingucomponent/inc/pch/precompiled_lingucomponent.cxx index 0868ad9b25c5..d0a160135852 100644 --- a/lingucomponent/inc/pch/precompiled_lingucomponent.cxx +++ b/lingucomponent/inc/pch/precompiled_lingucomponent.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_lingucomponent.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/inc/pch/precompiled_lingucomponent.hxx b/lingucomponent/inc/pch/precompiled_lingucomponent.hxx index 6cb333f5141f..5f910d74d589 100644 --- a/lingucomponent/inc/pch/precompiled_lingucomponent.hxx +++ b/lingucomponent/inc/pch/precompiled_lingucomponent.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_lingucomponent.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hreg.cxx b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hreg.cxx index 32421fbeaec5..448ecc529bf0 100644 --- a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hreg.cxx +++ b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hreg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hreg.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx index 7ebd9a7b66f3..3b0871cc36b6 100644 --- a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx +++ b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hyphenimp.cxx,v $ - * $Revision: 1.29 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx index 68a991a6260e..031217914754 100644 --- a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx +++ b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hyphenimp.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/makefile.mk b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/makefile.mk index 208bb56c668c..415e76792b47 100644 --- a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/makefile.mk +++ b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.24 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/languageguessing/altstrfunc.cxx b/lingucomponent/source/languageguessing/altstrfunc.cxx index 7b9739b206e6..562a3797051b 100644 --- a/lingucomponent/source/languageguessing/altstrfunc.cxx +++ b/lingucomponent/source/languageguessing/altstrfunc.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: altstrfunc.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/languageguessing/altstrfunc.hxx b/lingucomponent/source/languageguessing/altstrfunc.hxx index 1bd883b32fcc..b64b5b778da2 100644 --- a/lingucomponent/source/languageguessing/altstrfunc.hxx +++ b/lingucomponent/source/languageguessing/altstrfunc.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: altstrfunc.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/languageguessing/guess.cxx b/lingucomponent/source/languageguessing/guess.cxx index 68db6c521aab..85ddc881b7e1 100644 --- a/lingucomponent/source/languageguessing/guess.cxx +++ b/lingucomponent/source/languageguessing/guess.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: guess.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/languageguessing/guess.hxx b/lingucomponent/source/languageguessing/guess.hxx index aff391ed9e29..1dd3d765eaed 100644 --- a/lingucomponent/source/languageguessing/guess.hxx +++ b/lingucomponent/source/languageguessing/guess.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: guess.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/languageguessing/guesslang.cxx b/lingucomponent/source/languageguessing/guesslang.cxx index fd3e123e1d26..c8486c1bc471 100644 --- a/lingucomponent/source/languageguessing/guesslang.cxx +++ b/lingucomponent/source/languageguessing/guesslang.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: guesslang.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/languageguessing/makefile.mk b/lingucomponent/source/languageguessing/makefile.mk index 7650df0c0bce..f49e79060c4a 100644 --- a/lingucomponent/source/languageguessing/makefile.mk +++ b/lingucomponent/source/languageguessing/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/languageguessing/simpleguesser.cxx b/lingucomponent/source/languageguessing/simpleguesser.cxx index 33c89716e9f3..aa4f670746fd 100644 --- a/lingucomponent/source/languageguessing/simpleguesser.cxx +++ b/lingucomponent/source/languageguessing/simpleguesser.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: simpleguesser.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/languageguessing/simpleguesser.hxx b/lingucomponent/source/languageguessing/simpleguesser.hxx index d0422504c995..0d7274063cd2 100644 --- a/lingucomponent/source/languageguessing/simpleguesser.hxx +++ b/lingucomponent/source/languageguessing/simpleguesser.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: simpleguesser.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/lingutil/lingutil.cxx b/lingucomponent/source/lingutil/lingutil.cxx index 5e9b0c8fa592..ee7d71de4435 100644 --- a/lingucomponent/source/lingutil/lingutil.cxx +++ b/lingucomponent/source/lingutil/lingutil.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: lingutil.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/lingutil/lingutil.hxx b/lingucomponent/source/lingutil/lingutil.hxx index 9581a2ffcecf..8b45b1f509ad 100644 --- a/lingucomponent/source/lingutil/lingutil.hxx +++ b/lingucomponent/source/lingutil/lingutil.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: lingutil.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/lingutil/makefile.mk b/lingucomponent/source/lingutil/makefile.mk index 92021d949144..7d19eac9ef22 100644 --- a/lingucomponent/source/lingutil/makefile.mk +++ b/lingucomponent/source/lingutil/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.11 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/spellcheck/macosxspell/macreg.cxx b/lingucomponent/source/spellcheck/macosxspell/macreg.cxx index 920aea5ccca8..b60ffffe42e9 100644 --- a/lingucomponent/source/spellcheck/macosxspell/macreg.cxx +++ b/lingucomponent/source/spellcheck/macosxspell/macreg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macreg.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx b/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx index 7244a4988236..70996793c186 100644 --- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx +++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macspellimp.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx b/lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx index 5da36c38f3f6..b3cfce92fd8b 100644 --- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx +++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macspellimp.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/spellcheck/macosxspell/makefile.mk b/lingucomponent/source/spellcheck/macosxspell/makefile.mk index e4bf1d88d220..f91ab46e1553 100644 --- a/lingucomponent/source/spellcheck/macosxspell/makefile.mk +++ b/lingucomponent/source/spellcheck/macosxspell/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/spellcheck/spell/makefile.mk b/lingucomponent/source/spellcheck/spell/makefile.mk index cbc41c00633b..efedb6ad1008 100644 --- a/lingucomponent/source/spellcheck/spell/makefile.mk +++ b/lingucomponent/source/spellcheck/spell/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.22 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/spellcheck/spell/sreg.cxx b/lingucomponent/source/spellcheck/spell/sreg.cxx index 1fece121d59b..bd97403c89d6 100644 --- a/lingucomponent/source/spellcheck/spell/sreg.cxx +++ b/lingucomponent/source/spellcheck/spell/sreg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sreg.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.cxx b/lingucomponent/source/spellcheck/spell/sspellimp.cxx index bcb09c5ac16d..8486f4fb38fd 100644 --- a/lingucomponent/source/spellcheck/spell/sspellimp.cxx +++ b/lingucomponent/source/spellcheck/spell/sspellimp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sspellimp.cxx,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.hxx b/lingucomponent/source/spellcheck/spell/sspellimp.hxx index b8807b99b443..94c57fa8b742 100644 --- a/lingucomponent/source/spellcheck/spell/sspellimp.hxx +++ b/lingucomponent/source/spellcheck/spell/sspellimp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sspellimp.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/libnth/makefile.mk b/lingucomponent/source/thesaurus/libnth/makefile.mk index acc45476c093..dea6942bbef2 100644 --- a/lingucomponent/source/thesaurus/libnth/makefile.mk +++ b/lingucomponent/source/thesaurus/libnth/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.16 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/libnth/nthesdta.cxx b/lingucomponent/source/thesaurus/libnth/nthesdta.cxx index 51a261e15697..0c071a4eeb1f 100644 --- a/lingucomponent/source/thesaurus/libnth/nthesdta.cxx +++ b/lingucomponent/source/thesaurus/libnth/nthesdta.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nthesdta.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/libnth/nthesdta.hxx b/lingucomponent/source/thesaurus/libnth/nthesdta.hxx index c5ad87c4604f..259bf5454359 100644 --- a/lingucomponent/source/thesaurus/libnth/nthesdta.hxx +++ b/lingucomponent/source/thesaurus/libnth/nthesdta.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nthesdta.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/libnth/nthesimp.cxx b/lingucomponent/source/thesaurus/libnth/nthesimp.cxx index a92c5926c8b4..bd6afffdbd6a 100644 --- a/lingucomponent/source/thesaurus/libnth/nthesimp.cxx +++ b/lingucomponent/source/thesaurus/libnth/nthesimp.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nthesimp.cxx,v $ - * $Revision: 1.15.6.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/libnth/nthesimp.hxx b/lingucomponent/source/thesaurus/libnth/nthesimp.hxx index 2235ebe87a2e..94bbb6fb3ea6 100644 --- a/lingucomponent/source/thesaurus/libnth/nthesimp.hxx +++ b/lingucomponent/source/thesaurus/libnth/nthesimp.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: nthesimp.hxx,v $ - * $Revision: 1.6.16.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/libnth/ntreg.cxx b/lingucomponent/source/thesaurus/libnth/ntreg.cxx index 6a8d620063d3..14b3b3c896d4 100644 --- a/lingucomponent/source/thesaurus/libnth/ntreg.cxx +++ b/lingucomponent/source/thesaurus/libnth/ntreg.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ntreg.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/mythes/example.cxx b/lingucomponent/source/thesaurus/mythes/example.cxx index ca3100ff57b2..31c85989cf26 100644 --- a/lingucomponent/source/thesaurus/mythes/example.cxx +++ b/lingucomponent/source/thesaurus/mythes/example.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: example.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/mythes/makefile.mk b/lingucomponent/source/thesaurus/mythes/makefile.mk index 6f8c5677fe8e..ac45219b97a0 100644 --- a/lingucomponent/source/thesaurus/mythes/makefile.mk +++ b/lingucomponent/source/thesaurus/mythes/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/lingucomponent/source/thesaurus/mythes/mythes.cxx b/lingucomponent/source/thesaurus/mythes/mythes.cxx index 1dcd2f0be792..ebb224d92140 100644 --- a/lingucomponent/source/thesaurus/mythes/mythes.cxx +++ b/lingucomponent/source/thesaurus/mythes/mythes.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: mythes.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/dtd/Manifest.dtd b/package/dtd/Manifest.dtd index 0030645143b6..d5f9184bf07e 100644 --- a/package/dtd/Manifest.dtd +++ b/package/dtd/Manifest.dtd @@ -2,14 +2,10 @@ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - Copyright 2008 by Sun Microsystems, Inc. + Copyright 2000, 2010 Oracle and/or its affiliates. OpenOffice.org - a multi-platform office productivity suite - $RCSfile: Manifest.dtd,v $ - - $Revision: 1.10 $ - This file is part of OpenOffice.org. OpenOffice.org is free software: you can redistribute it and/or modify @@ -26,7 +22,7 @@ version 3 along with OpenOffice.org. If not, see for a copy of the LGPLv3 License. - + --> diff --git a/package/inc/ByteChucker.hxx b/package/inc/ByteChucker.hxx index de18fb578fae..d0a07cdfadaf 100644 --- a/package/inc/ByteChucker.hxx +++ b/package/inc/ByteChucker.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ByteChucker.hxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/ByteGrabber.hxx b/package/inc/ByteGrabber.hxx index d4869845f066..8ef127900655 100644 --- a/package/inc/ByteGrabber.hxx +++ b/package/inc/ByteGrabber.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ByteGrabber.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/CRC32.hxx b/package/inc/CRC32.hxx index ae55a1e8fcf1..b8de389c8721 100644 --- a/package/inc/CRC32.hxx +++ b/package/inc/CRC32.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CRC32.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/Deflater.hxx b/package/inc/Deflater.hxx index 187f0a4d826c..f39b8e2b9547 100644 --- a/package/inc/Deflater.hxx +++ b/package/inc/Deflater.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Deflater.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/EncryptedDataHeader.hxx b/package/inc/EncryptedDataHeader.hxx index a3bdea0f4c86..a166397cce34 100644 --- a/package/inc/EncryptedDataHeader.hxx +++ b/package/inc/EncryptedDataHeader.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EncryptedDataHeader.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/EncryptionData.hxx b/package/inc/EncryptionData.hxx index 6dd50624c928..66d74f739b9c 100644 --- a/package/inc/EncryptionData.hxx +++ b/package/inc/EncryptionData.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EncryptionData.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/HashMaps.hxx b/package/inc/HashMaps.hxx index b1b1950ad8d6..b10f42aa7020 100644 --- a/package/inc/HashMaps.hxx +++ b/package/inc/HashMaps.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: HashMaps.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/Inflater.hxx b/package/inc/Inflater.hxx index 7805a9cc84bb..26c903ae5c47 100644 --- a/package/inc/Inflater.hxx +++ b/package/inc/Inflater.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Inflater.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/PackageConstants.hxx b/package/inc/PackageConstants.hxx index 3f8e4b583395..e088dceef126 100644 --- a/package/inc/PackageConstants.hxx +++ b/package/inc/PackageConstants.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PackageConstants.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/ZipEntry.hxx b/package/inc/ZipEntry.hxx index eed7a7a7cff5..4f47f25a1329 100644 --- a/package/inc/ZipEntry.hxx +++ b/package/inc/ZipEntry.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipEntry.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/ZipEnumeration.hxx b/package/inc/ZipEnumeration.hxx index f7cae67c4532..967007ade78d 100644 --- a/package/inc/ZipEnumeration.hxx +++ b/package/inc/ZipEnumeration.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipEnumeration.hxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/ZipFile.hxx b/package/inc/ZipFile.hxx index a4129f4fbbfe..be8158c0ba4e 100644 --- a/package/inc/ZipFile.hxx +++ b/package/inc/ZipFile.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipFile.hxx,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/ZipOutputStream.hxx b/package/inc/ZipOutputStream.hxx index 37af31e88445..345fe332b8cc 100644 --- a/package/inc/ZipOutputStream.hxx +++ b/package/inc/ZipOutputStream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipOutputStream.hxx,v $ - * $Revision: 1.25 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/ZipPackage.hxx b/package/inc/ZipPackage.hxx index 72cba808de15..367bd1d80de5 100644 --- a/package/inc/ZipPackage.hxx +++ b/package/inc/ZipPackage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackage.hxx,v $ - * $Revision: 1.41.20.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/ZipPackageBuffer.hxx b/package/inc/ZipPackageBuffer.hxx index 81f461bb2e77..54876d97bde1 100644 --- a/package/inc/ZipPackageBuffer.hxx +++ b/package/inc/ZipPackageBuffer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageBuffer.hxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/ZipPackageFolder.hxx b/package/inc/ZipPackageFolder.hxx index 1edbae7f5d3d..85823ba97c2c 100644 --- a/package/inc/ZipPackageFolder.hxx +++ b/package/inc/ZipPackageFolder.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageFolder.hxx,v $ - * $Revision: 1.39 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/makefile.mk b/package/inc/makefile.mk index 22c1356c8d42..19d89678b0ae 100644 --- a/package/inc/makefile.mk +++ b/package/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/mutexholder.hxx b/package/inc/mutexholder.hxx index 69edfdb03917..97b410ad549b 100644 --- a/package/inc/mutexholder.hxx +++ b/package/inc/mutexholder.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: mutexholder.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/pch/precompiled_package.cxx b/package/inc/pch/precompiled_package.cxx index 9d3671822727..da7eca4d4557 100644 --- a/package/inc/pch/precompiled_package.cxx +++ b/package/inc/pch/precompiled_package.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_package.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/pch/precompiled_package.hxx b/package/inc/pch/precompiled_package.hxx index 5a72c051e9e6..3fc91f789528 100644 --- a/package/inc/pch/precompiled_package.hxx +++ b/package/inc/pch/precompiled_package.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_package.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/inc/zipfileaccess.hxx b/package/inc/zipfileaccess.hxx index fbee9799930e..61297aed6da6 100644 --- a/package/inc/zipfileaccess.hxx +++ b/package/inc/zipfileaccess.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: zipfileaccess.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/qa/ofopxmlstorages/StorageUnitTest.java b/package/qa/ofopxmlstorages/StorageUnitTest.java index 71b9fa395a2d..65294d46bbb9 100644 --- a/package/qa/ofopxmlstorages/StorageUnitTest.java +++ b/package/qa/ofopxmlstorages/StorageUnitTest.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StorageUnitTest.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/qa/ofopxmlstorages/makefile.mk b/package/qa/ofopxmlstorages/makefile.mk index f4a99196181d..c829458d3c24 100644 --- a/package/qa/ofopxmlstorages/makefile.mk +++ b/package/qa/ofopxmlstorages/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5.18.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/qa/storages/StorageUnitTest.java b/package/qa/storages/StorageUnitTest.java index 2ebfb2967e1d..e5010d86c735 100644 --- a/package/qa/storages/StorageUnitTest.java +++ b/package/qa/storages/StorageUnitTest.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StorageUnitTest.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/qa/storages/makefile.mk b/package/qa/storages/makefile.mk index 81cacb939510..95fe75a03e74 100644 --- a/package/qa/storages/makefile.mk +++ b/package/qa/storages/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.15.18.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/Base64Codec.cxx b/package/source/manifest/Base64Codec.cxx index 3b27a0bd05a6..b9ffed0b0514 100644 --- a/package/source/manifest/Base64Codec.cxx +++ b/package/source/manifest/Base64Codec.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Base64Codec.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/Base64Codec.hxx b/package/source/manifest/Base64Codec.hxx index f09b95ffc82f..04398c7bba29 100644 --- a/package/source/manifest/Base64Codec.hxx +++ b/package/source/manifest/Base64Codec.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Base64Codec.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/ManifestDefines.hxx b/package/source/manifest/ManifestDefines.hxx index e64c650a386c..d53337236bb2 100644 --- a/package/source/manifest/ManifestDefines.hxx +++ b/package/source/manifest/ManifestDefines.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestDefines.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/ManifestExport.cxx b/package/source/manifest/ManifestExport.cxx index 4ae1785a0d8b..e4b9ec533c60 100644 --- a/package/source/manifest/ManifestExport.cxx +++ b/package/source/manifest/ManifestExport.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestExport.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/ManifestExport.hxx b/package/source/manifest/ManifestExport.hxx index 7958e3ea4cb9..13407a9dbbe2 100644 --- a/package/source/manifest/ManifestExport.hxx +++ b/package/source/manifest/ManifestExport.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestExport.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/ManifestImport.cxx b/package/source/manifest/ManifestImport.cxx index 5a7f1788d632..85de919a9acf 100644 --- a/package/source/manifest/ManifestImport.cxx +++ b/package/source/manifest/ManifestImport.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestImport.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify @@ -19,7 +16,7 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details - * ( a copy is included in the LICENSE file that accompanied this code ). + * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see diff --git a/package/source/manifest/ManifestImport.hxx b/package/source/manifest/ManifestImport.hxx index b07e4070a425..f83c8b6c49df 100644 --- a/package/source/manifest/ManifestImport.hxx +++ b/package/source/manifest/ManifestImport.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestImport.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/ManifestReader.cxx b/package/source/manifest/ManifestReader.cxx index b7733433b005..5beefc177b39 100644 --- a/package/source/manifest/ManifestReader.cxx +++ b/package/source/manifest/ManifestReader.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestReader.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/ManifestReader.hxx b/package/source/manifest/ManifestReader.hxx index cb594d0e9718..92c99587f212 100644 --- a/package/source/manifest/ManifestReader.hxx +++ b/package/source/manifest/ManifestReader.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestReader.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/ManifestWriter.cxx b/package/source/manifest/ManifestWriter.cxx index c4564fa7ff8b..dc4dbea2486e 100644 --- a/package/source/manifest/ManifestWriter.cxx +++ b/package/source/manifest/ManifestWriter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestWriter.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/ManifestWriter.hxx b/package/source/manifest/ManifestWriter.hxx index 97a1b339351f..3c5097e55cb2 100644 --- a/package/source/manifest/ManifestWriter.hxx +++ b/package/source/manifest/ManifestWriter.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ManifestWriter.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/UnoRegister.cxx b/package/source/manifest/UnoRegister.cxx index b05b7525ba9a..2405495f321f 100644 --- a/package/source/manifest/UnoRegister.cxx +++ b/package/source/manifest/UnoRegister.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UnoRegister.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/manifest/makefile.mk b/package/source/manifest/makefile.mk index 197ace20479e..abc61848fc45 100644 --- a/package/source/manifest/makefile.mk +++ b/package/source/manifest/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/disposelistener.cxx b/package/source/xstor/disposelistener.cxx index 0fcd360b38a7..73c0689a6a40 100644 --- a/package/source/xstor/disposelistener.cxx +++ b/package/source/xstor/disposelistener.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: disposelistener.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/disposelistener.hxx b/package/source/xstor/disposelistener.hxx index dcac256fca07..73feb249e3de 100644 --- a/package/source/xstor/disposelistener.hxx +++ b/package/source/xstor/disposelistener.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: disposelistener.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/makefile.mk b/package/source/xstor/makefile.mk index 703873f9ca71..76494cb7dbe7 100644 --- a/package/source/xstor/makefile.mk +++ b/package/source/xstor/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/ocompinstream.cxx b/package/source/xstor/ocompinstream.cxx index a75915dacfbe..45bf7c01eb2f 100644 --- a/package/source/xstor/ocompinstream.cxx +++ b/package/source/xstor/ocompinstream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ocompinstream.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/ocompinstream.hxx b/package/source/xstor/ocompinstream.hxx index cf19fbdd4d8c..047c8dc90758 100644 --- a/package/source/xstor/ocompinstream.hxx +++ b/package/source/xstor/ocompinstream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ocompinstream.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/ohierarchyholder.cxx b/package/source/xstor/ohierarchyholder.cxx index e91379951475..8e22b2b3a093 100644 --- a/package/source/xstor/ohierarchyholder.cxx +++ b/package/source/xstor/ohierarchyholder.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ohierarchyholder.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/ohierarchyholder.hxx b/package/source/xstor/ohierarchyholder.hxx index 3abab1f85d90..17c14d3a6001 100644 --- a/package/source/xstor/ohierarchyholder.hxx +++ b/package/source/xstor/ohierarchyholder.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ohierarchyholder.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/oseekinstream.cxx b/package/source/xstor/oseekinstream.cxx index 6dd6ee4bea0a..6419889d9d11 100644 --- a/package/source/xstor/oseekinstream.cxx +++ b/package/source/xstor/oseekinstream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oseekinstream.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/oseekinstream.hxx b/package/source/xstor/oseekinstream.hxx index 326c50b9579b..f8572d717956 100644 --- a/package/source/xstor/oseekinstream.hxx +++ b/package/source/xstor/oseekinstream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oseekinstream.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx index 4f3a912b8c0b..c5381a11cfea 100644 --- a/package/source/xstor/owriteablestream.cxx +++ b/package/source/xstor/owriteablestream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: owriteablestream.cxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/owriteablestream.hxx b/package/source/xstor/owriteablestream.hxx index 9e4c00d5a45d..94b97fb09eb2 100644 --- a/package/source/xstor/owriteablestream.hxx +++ b/package/source/xstor/owriteablestream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: owriteablestream.hxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/register.cxx b/package/source/xstor/register.cxx index 8fc10a4a64b4..1e3ae15fe383 100644 --- a/package/source/xstor/register.cxx +++ b/package/source/xstor/register.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: register.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/selfterminatefilestream.cxx b/package/source/xstor/selfterminatefilestream.cxx index ebb707e59de6..61df5e486250 100644 --- a/package/source/xstor/selfterminatefilestream.cxx +++ b/package/source/xstor/selfterminatefilestream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ocompinstream.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/selfterminatefilestream.hxx b/package/source/xstor/selfterminatefilestream.hxx index 6f95ba17ec42..e0dde5d837e8 100644 --- a/package/source/xstor/selfterminatefilestream.hxx +++ b/package/source/xstor/selfterminatefilestream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ocompinstream.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/switchpersistencestream.cxx b/package/source/xstor/switchpersistencestream.cxx index 1409a1a5efac..8756b1d61815 100644 --- a/package/source/xstor/switchpersistencestream.cxx +++ b/package/source/xstor/switchpersistencestream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: switchpersistencestream.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/switchpersistencestream.hxx b/package/source/xstor/switchpersistencestream.hxx index abc42175d9dd..f37d0ed892fa 100644 --- a/package/source/xstor/switchpersistencestream.hxx +++ b/package/source/xstor/switchpersistencestream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: switchpersistencestream.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/xfactory.cxx b/package/source/xstor/xfactory.cxx index 1c94efafdf05..e78742641a0b 100644 --- a/package/source/xstor/xfactory.cxx +++ b/package/source/xstor/xfactory.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xfactory.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/xfactory.hxx b/package/source/xstor/xfactory.hxx index aec3b5ad0bd4..cdc6c3abe584 100644 --- a/package/source/xstor/xfactory.hxx +++ b/package/source/xstor/xfactory.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xfactory.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx index 74c30049e9bd..55ff5a87e78d 100644 --- a/package/source/xstor/xstorage.cxx +++ b/package/source/xstor/xstorage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xstorage.cxx,v $ - * $Revision: 1.33 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/xstor/xstorage.hxx b/package/source/xstor/xstorage.hxx index 91be457b02cb..bc90b71e4d93 100644 --- a/package/source/xstor/xstorage.hxx +++ b/package/source/xstor/xstorage.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xstorage.hxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/ByteChucker.cxx b/package/source/zipapi/ByteChucker.cxx index f7a5f8c123f9..3b93c4696148 100644 --- a/package/source/zipapi/ByteChucker.cxx +++ b/package/source/zipapi/ByteChucker.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ByteChucker.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/ByteGrabber.cxx b/package/source/zipapi/ByteGrabber.cxx index 84cd6465f7bf..40998c3de70d 100644 --- a/package/source/zipapi/ByteGrabber.cxx +++ b/package/source/zipapi/ByteGrabber.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ByteGrabber.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/CRC32.cxx b/package/source/zipapi/CRC32.cxx index 080f90b9db50..2ee6b1feea1a 100644 --- a/package/source/zipapi/CRC32.cxx +++ b/package/source/zipapi/CRC32.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CRC32.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/Deflater.cxx b/package/source/zipapi/Deflater.cxx index 338f4e4364a0..ac12a8cb5831 100644 --- a/package/source/zipapi/Deflater.cxx +++ b/package/source/zipapi/Deflater.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Deflater.cxx,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/EntryInputStream.cxx b/package/source/zipapi/EntryInputStream.cxx index 46e218ec3229..671ef7381f9d 100644 --- a/package/source/zipapi/EntryInputStream.cxx +++ b/package/source/zipapi/EntryInputStream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EntryInputStream.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/EntryInputStream.hxx b/package/source/zipapi/EntryInputStream.hxx index 4e614dd321be..c04a5dc2d33b 100644 --- a/package/source/zipapi/EntryInputStream.hxx +++ b/package/source/zipapi/EntryInputStream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EntryInputStream.hxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/Inflater.cxx b/package/source/zipapi/Inflater.cxx index 62228bf22c8e..e95809a35dad 100644 --- a/package/source/zipapi/Inflater.cxx +++ b/package/source/zipapi/Inflater.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Inflater.cxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/MemoryByteGrabber.hxx b/package/source/zipapi/MemoryByteGrabber.hxx index f15cc8d2d59b..8a8d96556bae 100644 --- a/package/source/zipapi/MemoryByteGrabber.hxx +++ b/package/source/zipapi/MemoryByteGrabber.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: MemoryByteGrabber.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/XFileStream.cxx b/package/source/zipapi/XFileStream.cxx index 7549c3873169..9e7156ee82b3 100644 --- a/package/source/zipapi/XFileStream.cxx +++ b/package/source/zipapi/XFileStream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XFileStream.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/XFileStream.hxx b/package/source/zipapi/XFileStream.hxx index d2c8bb045613..0cf82c5f35cd 100644 --- a/package/source/zipapi/XFileStream.hxx +++ b/package/source/zipapi/XFileStream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XFileStream.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/XMemoryStream.cxx b/package/source/zipapi/XMemoryStream.cxx index 30976424c46f..c5ffe9ac874c 100644 --- a/package/source/zipapi/XMemoryStream.cxx +++ b/package/source/zipapi/XMemoryStream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMemoryStream.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/XMemoryStream.hxx b/package/source/zipapi/XMemoryStream.hxx index 819feb03a426..89db08a6c4ed 100644 --- a/package/source/zipapi/XMemoryStream.hxx +++ b/package/source/zipapi/XMemoryStream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMemoryStream.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/XUnbufferedStream.cxx b/package/source/zipapi/XUnbufferedStream.cxx index 53e4301844c9..a75af35914a1 100644 --- a/package/source/zipapi/XUnbufferedStream.cxx +++ b/package/source/zipapi/XUnbufferedStream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XUnbufferedStream.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/XUnbufferedStream.hxx b/package/source/zipapi/XUnbufferedStream.hxx index db688761726e..321ec10b8032 100644 --- a/package/source/zipapi/XUnbufferedStream.hxx +++ b/package/source/zipapi/XUnbufferedStream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XUnbufferedStream.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/ZipEnumeration.cxx b/package/source/zipapi/ZipEnumeration.cxx index 7df79df00dc1..367c29f6d4a7 100644 --- a/package/source/zipapi/ZipEnumeration.cxx +++ b/package/source/zipapi/ZipEnumeration.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipEnumeration.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/ZipFile.cxx b/package/source/zipapi/ZipFile.cxx index 9934caa0c066..14ef46190f3d 100644 --- a/package/source/zipapi/ZipFile.cxx +++ b/package/source/zipapi/ZipFile.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipFile.cxx,v $ - * $Revision: 1.50 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/ZipOutputStream.cxx b/package/source/zipapi/ZipOutputStream.cxx index 1faa37176271..16457ec12493 100644 --- a/package/source/zipapi/ZipOutputStream.cxx +++ b/package/source/zipapi/ZipOutputStream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipOutputStream.cxx,v $ - * $Revision: 1.41 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zipapi/makefile.mk b/package/source/zipapi/makefile.mk index e0fb43f93180..a9548ace659b 100644 --- a/package/source/zipapi/makefile.mk +++ b/package/source/zipapi/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.19 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ContentInfo.hxx b/package/source/zippackage/ContentInfo.hxx index 7a0efe5ba1fe..6d88d17e3780 100644 --- a/package/source/zippackage/ContentInfo.hxx +++ b/package/source/zippackage/ContentInfo.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ContentInfo.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx index a692586681b5..5c22bad46a6a 100644 --- a/package/source/zippackage/ZipPackage.cxx +++ b/package/source/zippackage/ZipPackage.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackage.cxx,v $ - * $Revision: 1.114 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageBuffer.cxx b/package/source/zippackage/ZipPackageBuffer.cxx index 114c04adbcbe..e6468c8539f0 100644 --- a/package/source/zippackage/ZipPackageBuffer.cxx +++ b/package/source/zippackage/ZipPackageBuffer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageBuffer.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageEntry.cxx b/package/source/zippackage/ZipPackageEntry.cxx index b233e34c2a28..7514e7b6f55a 100644 --- a/package/source/zippackage/ZipPackageEntry.cxx +++ b/package/source/zippackage/ZipPackageEntry.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageEntry.cxx,v $ - * $Revision: 1.30 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageEntry.hxx b/package/source/zippackage/ZipPackageEntry.hxx index 01b47d71f728..767d84511a12 100644 --- a/package/source/zippackage/ZipPackageEntry.hxx +++ b/package/source/zippackage/ZipPackageEntry.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageEntry.hxx,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageFolder.cxx b/package/source/zippackage/ZipPackageFolder.cxx index 5215c07579d2..0bed74128467 100644 --- a/package/source/zippackage/ZipPackageFolder.cxx +++ b/package/source/zippackage/ZipPackageFolder.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageFolder.cxx,v $ - * $Revision: 1.85 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageFolderEnumeration.cxx b/package/source/zippackage/ZipPackageFolderEnumeration.cxx index 8f4a2204fbdc..562e42d9e266 100644 --- a/package/source/zippackage/ZipPackageFolderEnumeration.cxx +++ b/package/source/zippackage/ZipPackageFolderEnumeration.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageFolderEnumeration.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageFolderEnumeration.hxx b/package/source/zippackage/ZipPackageFolderEnumeration.hxx index df311a2e5d6d..bea038d684f3 100644 --- a/package/source/zippackage/ZipPackageFolderEnumeration.hxx +++ b/package/source/zippackage/ZipPackageFolderEnumeration.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageFolderEnumeration.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageSink.cxx b/package/source/zippackage/ZipPackageSink.cxx index d1784ccebeff..9a42138a5cb1 100644 --- a/package/source/zippackage/ZipPackageSink.cxx +++ b/package/source/zippackage/ZipPackageSink.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageSink.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageSink.hxx b/package/source/zippackage/ZipPackageSink.hxx index 8895dc6b3ba7..95dac72a836b 100644 --- a/package/source/zippackage/ZipPackageSink.hxx +++ b/package/source/zippackage/ZipPackageSink.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageSink.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageStream.cxx b/package/source/zippackage/ZipPackageStream.cxx index 242e37bfb764..b6893b5cb2ad 100644 --- a/package/source/zippackage/ZipPackageStream.cxx +++ b/package/source/zippackage/ZipPackageStream.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageStream.cxx,v $ - * $Revision: 1.51 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/ZipPackageStream.hxx b/package/source/zippackage/ZipPackageStream.hxx index e5aa1d24fcca..a0d5fad6e4da 100644 --- a/package/source/zippackage/ZipPackageStream.hxx +++ b/package/source/zippackage/ZipPackageStream.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ZipPackageStream.hxx,v $ - * $Revision: 1.23.20.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/makefile.mk b/package/source/zippackage/makefile.mk index 64ddf157571f..4bab1649b491 100644 --- a/package/source/zippackage/makefile.mk +++ b/package/source/zippackage/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.25 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/wrapstreamforshare.cxx b/package/source/zippackage/wrapstreamforshare.cxx index 71a778e19f57..d3d2eb84d1b7 100644 --- a/package/source/zippackage/wrapstreamforshare.cxx +++ b/package/source/zippackage/wrapstreamforshare.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: wrapstreamforshare.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/wrapstreamforshare.hxx b/package/source/zippackage/wrapstreamforshare.hxx index 19cb78baba02..c799e3ac9b92 100644 --- a/package/source/zippackage/wrapstreamforshare.hxx +++ b/package/source/zippackage/wrapstreamforshare.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: wrapstreamforshare.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/source/zippackage/zipfileaccess.cxx b/package/source/zippackage/zipfileaccess.cxx index 42f95d3a268f..9acae56ad68a 100644 --- a/package/source/zippackage/zipfileaccess.cxx +++ b/package/source/zippackage/zipfileaccess.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: zipfileaccess.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/package/util/makefile.mk b/package/util/makefile.mk index 99573c19ffb0..20732c102007 100644 --- a/package/util/makefile.mk +++ b/package/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.13 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/inc/setup_native/qswin32.h b/setup_native/inc/setup_native/qswin32.h index aacae21e0dc5..a7d82975b0b2 100644 --- a/setup_native/inc/setup_native/qswin32.h +++ b/setup_native/inc/setup_native/qswin32.h @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: qswin32.h,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/scripts/admin.pl b/setup_native/scripts/admin.pl index f737a6392f13..d2a3aa432426 100644 --- a/setup_native/scripts/admin.pl +++ b/setup_native/scripts/admin.pl @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: admin.pl,v $ -# -# $Revision: 1.1.2.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/scripts/makefile.mk b/setup_native/scripts/makefile.mk index 59b310fe0e70..b8fc6649eddf 100644 --- a/setup_native/scripts/makefile.mk +++ b/setup_native/scripts/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.18.112.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/scripts/source/makefile.mk b/setup_native/scripts/source/makefile.mk index 6ff2dfe0afe6..6933f53d6149 100644 --- a/setup_native/scripts/source/makefile.mk +++ b/setup_native/scripts/source/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.12 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/scripts/stclient_wrapper.sh b/setup_native/scripts/stclient_wrapper.sh index 223b8a35f6d8..52ff8abcb0ee 100644 --- a/setup_native/scripts/stclient_wrapper.sh +++ b/setup_native/scripts/stclient_wrapper.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (c) 2007 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # All rights reserved. # diff --git a/setup_native/scripts/userland.txt b/setup_native/scripts/userland.txt index 7c7ef86f45a3..9983ab46fe16 100644 --- a/setup_native/scripts/userland.txt +++ b/setup_native/scripts/userland.txt @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: userland.txt,v $ -# -# $Revision: 1.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/java/javaversion.dat b/setup_native/source/java/javaversion.dat index 6a18f1641eab..17084cc92234 100755 --- a/setup_native/source/java/javaversion.dat +++ b/setup_native/source/java/javaversion.dat @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: header.hxx,v $ -# -# $Revision: 1.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/java/javaversion2.dat b/setup_native/source/java/javaversion2.dat index 6a18f1641eab..17084cc92234 100644 --- a/setup_native/source/java/javaversion2.dat +++ b/setup_native/source/java/javaversion2.dat @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: header.hxx,v $ -# -# $Revision: 1.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/mac/makefile.mk b/setup_native/source/mac/makefile.mk index 026073b65c44..ac341370fe01 100644 --- a/setup_native/source/mac/makefile.mk +++ b/setup_native/source/mac/makefile.mk @@ -1,35 +1,27 @@ #************************************************************************* # -# OpenOffice.org - a multi-platform office productivity suite +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # -# $RCSfile: makefile.mk,v $ +# OpenOffice.org - a multi-platform office productivity suite # -# $Revision: 1.5 $ +# This file is part of OpenOffice.org. # -# last change: $Author: rt $ $Date: 2005-09-07 18:20:20 $ +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. # -# The Contents of this file are made available subject to -# the terms of GNU Lesser General Public License Version 2.1. +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). # -# -# GNU Lesser General Public License Version 2.1 -# ============================================= -# Copyright 2005 by Sun Microsystems, Inc. -# 901 San Antonio Road, Palo Alto, CA 94303, USA -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License version 2.1, as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. # #************************************************************************* diff --git a/setup_native/source/packinfo/packinfo_brand.txt b/setup_native/source/packinfo/packinfo_brand.txt index 018522717ad1..c4fcd6ea6ed7 100644 --- a/setup_native/source/packinfo/packinfo_brand.txt +++ b/setup_native/source/packinfo/packinfo_brand.txt @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: packinfo_brand.txt,v $ -# -# $Revision: 1.10 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/packinfo/packinfo_sdkoo.txt b/setup_native/source/packinfo/packinfo_sdkoo.txt index 18c11b99f223..8fb9c53de80b 100755 --- a/setup_native/source/packinfo/packinfo_sdkoo.txt +++ b/setup_native/source/packinfo/packinfo_sdkoo.txt @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: packinfo_sdkoo.txt,v $ -# -# $Revision: 1.8 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/packinfo/packinfo_ure.txt b/setup_native/source/packinfo/packinfo_ure.txt index 425243e9bfd7..fd15f91a4380 100755 --- a/setup_native/source/packinfo/packinfo_ure.txt +++ b/setup_native/source/packinfo/packinfo_ure.txt @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: packinfo_ure.txt,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/packinfo/private1copyrightfile b/setup_native/source/packinfo/private1copyrightfile index 6c5a89a82b27..bc2059a3ef79 100644 --- a/setup_native/source/packinfo/private1copyrightfile +++ b/setup_native/source/packinfo/private1copyrightfile @@ -1,2 +1,2 @@ -Copyright 2007 Sun Microsystems, Inc. All rights reserved. +Copyright 2000, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. diff --git a/setup_native/source/packinfo/solariscopyrightfile b/setup_native/source/packinfo/solariscopyrightfile index 2ebebd6ed806..6e2c0ef08e79 100755 --- a/setup_native/source/packinfo/solariscopyrightfile +++ b/setup_native/source/packinfo/solariscopyrightfile @@ -1,2 +1,2 @@ -Copyright 2009 Sun Microsystems, Inc. All rights reserved. +Copyright 2000, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. diff --git a/setup_native/source/ulfconv/makefile.mk b/setup_native/source/ulfconv/makefile.mk index f6b44a3a7f8a..7f23df4cd897 100644 --- a/setup_native/source/ulfconv/makefile.mk +++ b/setup_native/source/ulfconv/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/ulfconv/ulfconv.cxx b/setup_native/source/ulfconv/ulfconv.cxx index 7a345f8b365a..49f6861c3683 100644 --- a/setup_native/source/ulfconv/ulfconv.cxx +++ b/setup_native/source/ulfconv/ulfconv.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ulfconv.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/indexingfilter/makefile.mk b/setup_native/source/win32/customactions/indexingfilter/makefile.mk index 7f8df5bad93a..0298d05960db 100644 --- a/setup_native/source/win32/customactions/indexingfilter/makefile.mk +++ b/setup_native/source/win32/customactions/indexingfilter/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/indexingfilter/restartindexingservice.cxx b/setup_native/source/win32/customactions/indexingfilter/restartindexingservice.cxx index 8df7d78e72ba..a01e3e1f9a4d 100644 --- a/setup_native/source/win32/customactions/indexingfilter/restartindexingservice.cxx +++ b/setup_native/source/win32/customactions/indexingfilter/restartindexingservice.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: restartindexingservice.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/javafilter/jfregca.cxx b/setup_native/source/win32/customactions/javafilter/jfregca.cxx index 67f44bd50151..80a8937cbe3a 100644 --- a/setup_native/source/win32/customactions/javafilter/jfregca.cxx +++ b/setup_native/source/win32/customactions/javafilter/jfregca.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: jfregca.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/javafilter/makefile.mk b/setup_native/source/win32/customactions/javafilter/makefile.mk index fc9cd828dfcc..3ee19cff53b4 100644 --- a/setup_native/source/win32/customactions/javafilter/makefile.mk +++ b/setup_native/source/win32/customactions/javafilter/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/languagepacks/checkrunningofficelanguagepack.cxx b/setup_native/source/win32/customactions/languagepacks/checkrunningofficelanguagepack.cxx index 1608a7895689..86cba0908bbb 100755 --- a/setup_native/source/win32/customactions/languagepacks/checkrunningofficelanguagepack.cxx +++ b/setup_native/source/win32/customactions/languagepacks/checkrunningofficelanguagepack.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: checkrunningofficelanguagepack.cxx,v $ - * $Revision: 1.1.4.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/languagepacks/lngpckinsthelper.cxx b/setup_native/source/win32/customactions/languagepacks/lngpckinsthelper.cxx index 0efbd53c697a..d3a6c81b59ed 100644 --- a/setup_native/source/win32/customactions/languagepacks/lngpckinsthelper.cxx +++ b/setup_native/source/win32/customactions/languagepacks/lngpckinsthelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: lngpckinsthelper.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/languagepacks/makefile.mk b/setup_native/source/win32/customactions/languagepacks/makefile.mk index 76906308a676..8da47ab1cc4f 100644 --- a/setup_native/source/win32/customactions/languagepacks/makefile.mk +++ b/setup_native/source/win32/customactions/languagepacks/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.11 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/languagepacks/respintest.cxx b/setup_native/source/win32/customactions/languagepacks/respintest.cxx index 5d748d3f8a85..bdfb97dfb3e1 100644 --- a/setup_native/source/win32/customactions/languagepacks/respintest.cxx +++ b/setup_native/source/win32/customactions/languagepacks/respintest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: respintest.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/patch/makefile.mk b/setup_native/source/win32/customactions/patch/makefile.mk index 2f3b952aeb2c..6af0ddf9ab2a 100755 --- a/setup_native/source/win32/customactions/patch/makefile.mk +++ b/setup_native/source/win32/customactions/patch/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.16 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/patch/swappatchfiles.cxx b/setup_native/source/win32/customactions/patch/swappatchfiles.cxx index 2bb372be3d89..d6f0933077fc 100755 --- a/setup_native/source/win32/customactions/patch/swappatchfiles.cxx +++ b/setup_native/source/win32/customactions/patch/swappatchfiles.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: swappatchfiles.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/quickstarter/makefile.mk b/setup_native/source/win32/customactions/quickstarter/makefile.mk index 4d56f45adeca..0861c20efed8 100644 --- a/setup_native/source/win32/customactions/quickstarter/makefile.mk +++ b/setup_native/source/win32/customactions/quickstarter/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/quickstarter/remove_quickstart_link.cxx b/setup_native/source/win32/customactions/quickstarter/remove_quickstart_link.cxx index 2c0727e3111c..ef52ecfe2941 100644 --- a/setup_native/source/win32/customactions/quickstarter/remove_quickstart_link.cxx +++ b/setup_native/source/win32/customactions/quickstarter/remove_quickstart_link.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: remove_quickstart_link.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/quickstarter/shutdown_quickstart.cxx b/setup_native/source/win32/customactions/quickstarter/shutdown_quickstart.cxx index c7f7e9549c10..6f931d2b0175 100644 --- a/setup_native/source/win32/customactions/quickstarter/shutdown_quickstart.cxx +++ b/setup_native/source/win32/customactions/quickstarter/shutdown_quickstart.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: shutdown_quickstart.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/rebase/makefile.mk b/setup_native/source/win32/customactions/rebase/makefile.mk index 6694c8cde6cc..47cd8fd59c87 100644 --- a/setup_native/source/win32/customactions/rebase/makefile.mk +++ b/setup_native/source/win32/customactions/rebase/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4allmsdoc/makefile.mk b/setup_native/source/win32/customactions/reg4allmsdoc/makefile.mk index 3bcd93234abe..d58291966ef2 100644 --- a/setup_native/source/win32/customactions/reg4allmsdoc/makefile.mk +++ b/setup_native/source/win32/customactions/reg4allmsdoc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4allmsdoc/reg4allmsi.cxx b/setup_native/source/win32/customactions/reg4allmsdoc/reg4allmsi.cxx index 71158901f9f7..1be921ca5846 100644 --- a/setup_native/source/win32/customactions/reg4allmsdoc/reg4allmsi.cxx +++ b/setup_native/source/win32/customactions/reg4allmsdoc/reg4allmsi.cxx @@ -2,14 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: reg4allmsi.cxx,v $ - * - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/constants.hxx b/setup_native/source/win32/customactions/reg4msdoc/constants.hxx index 970632338230..f37c2060a601 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/constants.hxx +++ b/setup_native/source/win32/customactions/reg4msdoc/constants.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: constants.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/makefile.mk b/setup_native/source/win32/customactions/reg4msdoc/makefile.mk index 31dca4a271b7..fe2bf60949be 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/makefile.mk +++ b/setup_native/source/win32/customactions/reg4msdoc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/reg4msdocmsi.cxx b/setup_native/source/win32/customactions/reg4msdoc/reg4msdocmsi.cxx index 3b99d4e26f56..19623e77ebc3 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/reg4msdocmsi.cxx +++ b/setup_native/source/win32/customactions/reg4msdoc/reg4msdocmsi.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: reg4msdocmsi.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/register.cxx b/setup_native/source/win32/customactions/reg4msdoc/register.cxx index 9d2fbd9f45d9..77d091806acd 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/register.cxx +++ b/setup_native/source/win32/customactions/reg4msdoc/register.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: register.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/register.hxx b/setup_native/source/win32/customactions/reg4msdoc/register.hxx index d6cd6553e5df..29b9e8bdae00 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/register.hxx +++ b/setup_native/source/win32/customactions/reg4msdoc/register.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: register.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/registry.cxx b/setup_native/source/win32/customactions/reg4msdoc/registry.cxx index c9d95a1542b0..2572a3a2d287 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/registry.cxx +++ b/setup_native/source/win32/customactions/reg4msdoc/registry.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registry.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/registry.hxx b/setup_native/source/win32/customactions/reg4msdoc/registry.hxx index 179c1ae8b516..791790c1f86c 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/registry.hxx +++ b/setup_native/source/win32/customactions/reg4msdoc/registry.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registry.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/registryw9x.cxx b/setup_native/source/win32/customactions/reg4msdoc/registryw9x.cxx index 9c8302f5d8cd..620a32f028bb 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/registryw9x.cxx +++ b/setup_native/source/win32/customactions/reg4msdoc/registryw9x.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registryw9x.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/registryw9x.hxx b/setup_native/source/win32/customactions/reg4msdoc/registryw9x.hxx index cb11cce85f52..fce0f14441a3 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/registryw9x.hxx +++ b/setup_native/source/win32/customactions/reg4msdoc/registryw9x.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registryw9x.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/registrywnt.cxx b/setup_native/source/win32/customactions/reg4msdoc/registrywnt.cxx index 70c6883f7f1a..361672790630 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/registrywnt.cxx +++ b/setup_native/source/win32/customactions/reg4msdoc/registrywnt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registrywnt.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/registrywnt.hxx b/setup_native/source/win32/customactions/reg4msdoc/registrywnt.hxx index 921e34cc5f87..60d625d65a20 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/registrywnt.hxx +++ b/setup_native/source/win32/customactions/reg4msdoc/registrywnt.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registrywnt.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/stringconverter.cxx b/setup_native/source/win32/customactions/reg4msdoc/stringconverter.cxx index dc3105bf9d09..68d0872ad81a 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/stringconverter.cxx +++ b/setup_native/source/win32/customactions/reg4msdoc/stringconverter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: stringconverter.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg4msdoc/stringconverter.hxx b/setup_native/source/win32/customactions/reg4msdoc/stringconverter.hxx index 534a6e04242e..0764da3f64c3 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/stringconverter.hxx +++ b/setup_native/source/win32/customactions/reg4msdoc/stringconverter.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: stringconverter.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg64/makefile.mk b/setup_native/source/win32/customactions/reg64/makefile.mk index 17c56716af14..04117c10365d 100755 --- a/setup_native/source/win32/customactions/reg64/makefile.mk +++ b/setup_native/source/win32/customactions/reg64/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.20 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/reg64/reg64.cxx b/setup_native/source/win32/customactions/reg64/reg64.cxx index ffa225791ead..0d8ce76cb0df 100755 --- a/setup_native/source/win32/customactions/reg64/reg64.cxx +++ b/setup_native/source/win32/customactions/reg64/reg64.cxx @@ -1,31 +1,28 @@ /************************************************************************* * -* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -* -* Copyright 2008 by Sun Microsystems, Inc. -* -* OpenOffice.org - a multi-platform office productivity suite -* -* $RCSfile: shellextensions.cxx,v $ -* $Revision: 1.7 $ -* -* This file is part of OpenOffice.org. -* -* OpenOffice.org is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License version 3 -* only, as published by the Free Software Foundation. -* -* OpenOffice.org is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU Lesser General Public License version 3 for more details -* (a copy is included in the LICENSE file that accompanied this code). -* -* You should have received a copy of the GNU Lesser General Public License -* version 3 along with OpenOffice.org. If not, see -* -* for a copy of the LGPLv3 License. -* + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ /* diff --git a/setup_native/source/win32/customactions/regactivex/makefile.mk b/setup_native/source/win32/customactions/regactivex/makefile.mk index 96300d45ba0d..cc71dc39ada1 100644 --- a/setup_native/source/win32/customactions/regactivex/makefile.mk +++ b/setup_native/source/win32/customactions/regactivex/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/regactivex/regactivex.cxx b/setup_native/source/win32/customactions/regactivex/regactivex.cxx index 8c64fe784e6e..1e91ccbd8599 100644 --- a/setup_native/source/win32/customactions/regactivex/regactivex.cxx +++ b/setup_native/source/win32/customactions/regactivex/regactivex.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: regactivex.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/regpatchactivex/makefile.mk b/setup_native/source/win32/customactions/regpatchactivex/makefile.mk index 69511c936f0e..d79593abcc69 100644 --- a/setup_native/source/win32/customactions/regpatchactivex/makefile.mk +++ b/setup_native/source/win32/customactions/regpatchactivex/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.8 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/regpatchactivex/regpatchactivex.cxx b/setup_native/source/win32/customactions/regpatchactivex/regpatchactivex.cxx index a4e217f88bd8..99efedbb696b 100644 --- a/setup_native/source/win32/customactions/regpatchactivex/regpatchactivex.cxx +++ b/setup_native/source/win32/customactions/regpatchactivex/regpatchactivex.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: regpatchactivex.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/relnotes/makefile.mk b/setup_native/source/win32/customactions/relnotes/makefile.mk index b83d58468ec6..4c29ead8bd6c 100644 --- a/setup_native/source/win32/customactions/relnotes/makefile.mk +++ b/setup_native/source/win32/customactions/relnotes/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/relnotes/relnotes.cxx b/setup_native/source/win32/customactions/relnotes/relnotes.cxx index 174a0d6eb120..77f109b01f47 100644 --- a/setup_native/source/win32/customactions/relnotes/relnotes.cxx +++ b/setup_native/source/win32/customactions/relnotes/relnotes.cxx @@ -2,7 +2,7 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * diff --git a/setup_native/source/win32/customactions/shellextensions/checkdirectory.cxx b/setup_native/source/win32/customactions/shellextensions/checkdirectory.cxx index 0eacd6d5a6d6..ebd9de5e7fbe 100755 --- a/setup_native/source/win32/customactions/shellextensions/checkdirectory.cxx +++ b/setup_native/source/win32/customactions/shellextensions/checkdirectory.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: checkdirectory.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/checkpatches.cxx b/setup_native/source/win32/customactions/shellextensions/checkpatches.cxx index 8490b1d5682e..07c84d890316 100644 --- a/setup_native/source/win32/customactions/shellextensions/checkpatches.cxx +++ b/setup_native/source/win32/customactions/shellextensions/checkpatches.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: checkpatches.cxx,v $ - * $Revision: 1.1.2.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx b/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx index 70c0d9fef1e6..09f60b7a66d5 100755 --- a/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx +++ b/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: checkrunningoffice.cxx,v $ - * $Revision: 1.1.4.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/copyeditiondata.cxx b/setup_native/source/win32/customactions/shellextensions/copyeditiondata.cxx index 67b3bff07f27..28dfcc0e18b6 100644 --- a/setup_native/source/win32/customactions/shellextensions/copyeditiondata.cxx +++ b/setup_native/source/win32/customactions/shellextensions/copyeditiondata.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: copyeditiondata.cxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/copyextensiondata.cxx b/setup_native/source/win32/customactions/shellextensions/copyextensiondata.cxx index 83164fd71ecc..522c52a9aac9 100644 --- a/setup_native/source/win32/customactions/shellextensions/copyextensiondata.cxx +++ b/setup_native/source/win32/customactions/shellextensions/copyextensiondata.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: copyeditiondata.cxx,v $ - * $Revision: 1.2 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/dotnetcheck.cxx b/setup_native/source/win32/customactions/shellextensions/dotnetcheck.cxx index 37e6516308ff..2b022cfb3b8e 100644 --- a/setup_native/source/win32/customactions/shellextensions/dotnetcheck.cxx +++ b/setup_native/source/win32/customactions/shellextensions/dotnetcheck.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dotnetcheck.cxx,v $ - * $Revision: 1.2.42.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/iconcache.cxx b/setup_native/source/win32/customactions/shellextensions/iconcache.cxx index 1949dcf45651..75b5914bafbc 100755 --- a/setup_native/source/win32/customactions/shellextensions/iconcache.cxx +++ b/setup_native/source/win32/customactions/shellextensions/iconcache.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: iconcache.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/layerlinks.cxx b/setup_native/source/win32/customactions/shellextensions/layerlinks.cxx index 2315fdc7c3e3..114e24955820 100644 --- a/setup_native/source/win32/customactions/shellextensions/layerlinks.cxx +++ b/setup_native/source/win32/customactions/shellextensions/layerlinks.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: layerlinks.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/makefile.mk b/setup_native/source/win32/customactions/shellextensions/makefile.mk index e7dc9a561883..220ac727b774 100644 --- a/setup_native/source/win32/customactions/shellextensions/makefile.mk +++ b/setup_native/source/win32/customactions/shellextensions/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.20 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/migrateinstallpath.cxx b/setup_native/source/win32/customactions/shellextensions/migrateinstallpath.cxx index 59cb50edbf6f..1d3692e456b0 100755 --- a/setup_native/source/win32/customactions/shellextensions/migrateinstallpath.cxx +++ b/setup_native/source/win32/customactions/shellextensions/migrateinstallpath.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: migrateinstallpath.cxx,v $ - * $Revision: 1.8.108.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/postuninstall.cxx b/setup_native/source/win32/customactions/shellextensions/postuninstall.cxx index a2acb4486a87..bb339953ff34 100755 --- a/setup_native/source/win32/customactions/shellextensions/postuninstall.cxx +++ b/setup_native/source/win32/customactions/shellextensions/postuninstall.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: postuninstall.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx b/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx index 9f1c81937847..8a202fdd901b 100644 --- a/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx +++ b/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registerextensions.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/setadmininstall.cxx b/setup_native/source/win32/customactions/shellextensions/setadmininstall.cxx index 4f24a5f256df..6bd57447f092 100755 --- a/setup_native/source/win32/customactions/shellextensions/setadmininstall.cxx +++ b/setup_native/source/win32/customactions/shellextensions/setadmininstall.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: setadmininstall.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/shellextensions.cxx b/setup_native/source/win32/customactions/shellextensions/shellextensions.cxx index c6c807241c74..c779e1e5994e 100644 --- a/setup_native/source/win32/customactions/shellextensions/shellextensions.cxx +++ b/setup_native/source/win32/customactions/shellextensions/shellextensions.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: shellextensions.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx b/setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx index 1bbb143b62e6..49d5e50be426 100644 --- a/setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx +++ b/setup_native/source/win32/customactions/shellextensions/startmenuicon.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: startmenuicon.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/upgrade.cxx b/setup_native/source/win32/customactions/shellextensions/upgrade.cxx index 26f3a38b80ae..1fb2972d433a 100644 --- a/setup_native/source/win32/customactions/shellextensions/upgrade.cxx +++ b/setup_native/source/win32/customactions/shellextensions/upgrade.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: upgrade.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/shellextensions/vistaspecial.cxx b/setup_native/source/win32/customactions/shellextensions/vistaspecial.cxx index b014188f91d2..d9c271133ac0 100644 --- a/setup_native/source/win32/customactions/shellextensions/vistaspecial.cxx +++ b/setup_native/source/win32/customactions/shellextensions/vistaspecial.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: checkdirectory.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/tools/checkversion.cxx b/setup_native/source/win32/customactions/tools/checkversion.cxx index eb3551f5091b..ef30b2f9365f 100644 --- a/setup_native/source/win32/customactions/tools/checkversion.cxx +++ b/setup_native/source/win32/customactions/tools/checkversion.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: checkversion.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/tools/makefile.mk b/setup_native/source/win32/customactions/tools/makefile.mk index e7a6c44d6ee3..4e8d791eff15 100644 --- a/setup_native/source/win32/customactions/tools/makefile.mk +++ b/setup_native/source/win32/customactions/tools/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/tools/seterror.cxx b/setup_native/source/win32/customactions/tools/seterror.cxx index 0c3fed0cd29c..6d50120ccc18 100644 --- a/setup_native/source/win32/customactions/tools/seterror.cxx +++ b/setup_native/source/win32/customactions/tools/seterror.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: seterror.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/setup_native/source/win32/customactions/tools/seterror.hxx b/setup_native/source/win32/customactions/tools/seterror.hxx index 98e4731422e9..fad705433aa5 100644 --- a/setup_native/source/win32/customactions/tools/seterror.hxx +++ b/setup_native/source/win32/customactions/tools/seterror.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: seterror.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/AgendaTemplate.java b/wizards/com/sun/star/wizards/agenda/AgendaTemplate.java index c37f99fe0cac..422f4c8134f9 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaTemplate.java +++ b/wizards/com/sun/star/wizards/agenda/AgendaTemplate.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AgendaTemplate.java,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.java b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.java index e84239dfc1e5..55119ea28325 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.java +++ b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AgendaWizardDialog.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogConst.java b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogConst.java index e62cf56692c1..08f2fabfb8d9 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogConst.java +++ b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogConst.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AgendaWizardDialogConst.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.java b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.java index 23dec6a80191..14fc30ed441b 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.java +++ b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AgendaWizardDialogImpl.java,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.java b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.java index 3bcdabed67b0..21730c9aa040 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.java +++ b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogResources.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AgendaWizardDialogResources.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/CGAgenda.java b/wizards/com/sun/star/wizards/agenda/CGAgenda.java index 5a8350d7c80c..b7dc1cc37c00 100644 --- a/wizards/com/sun/star/wizards/agenda/CGAgenda.java +++ b/wizards/com/sun/star/wizards/agenda/CGAgenda.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGAgenda.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/CGTopic.java b/wizards/com/sun/star/wizards/agenda/CGTopic.java index 10fbbf173f46..74b818205b9f 100644 --- a/wizards/com/sun/star/wizards/agenda/CGTopic.java +++ b/wizards/com/sun/star/wizards/agenda/CGTopic.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGTopic.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/CallWizard.java b/wizards/com/sun/star/wizards/agenda/CallWizard.java index 75fcc7a5fbb3..69b62c56e4f7 100644 --- a/wizards/com/sun/star/wizards/agenda/CallWizard.java +++ b/wizards/com/sun/star/wizards/agenda/CallWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallWizard.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/TemplateConsts.java b/wizards/com/sun/star/wizards/agenda/TemplateConsts.java index 2e418ab0f916..44ce6a1e0f0e 100644 --- a/wizards/com/sun/star/wizards/agenda/TemplateConsts.java +++ b/wizards/com/sun/star/wizards/agenda/TemplateConsts.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TemplateConsts.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/TopicsControl.java b/wizards/com/sun/star/wizards/agenda/TopicsControl.java index 14f57990f216..eb13e2f8b65c 100644 --- a/wizards/com/sun/star/wizards/agenda/TopicsControl.java +++ b/wizards/com/sun/star/wizards/agenda/TopicsControl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TopicsControl.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/agenda/makefile.mk b/wizards/com/sun/star/wizards/agenda/makefile.mk index 2cd9dcabf182..314dcf3b7da9 100644 --- a/wizards/com/sun/star/wizards/agenda/makefile.mk +++ b/wizards/com/sun/star/wizards/agenda/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5.42.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/ConfigGroup.java b/wizards/com/sun/star/wizards/common/ConfigGroup.java index b2870535123a..1b260132a5f4 100644 --- a/wizards/com/sun/star/wizards/common/ConfigGroup.java +++ b/wizards/com/sun/star/wizards/common/ConfigGroup.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ConfigGroup.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/ConfigNode.java b/wizards/com/sun/star/wizards/common/ConfigNode.java index 9ba689ffba0c..23c0f9c5ba81 100644 --- a/wizards/com/sun/star/wizards/common/ConfigNode.java +++ b/wizards/com/sun/star/wizards/common/ConfigNode.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ConfigNode.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/ConfigSet.java b/wizards/com/sun/star/wizards/common/ConfigSet.java index 1cc7a26b75c2..216f91b5e430 100644 --- a/wizards/com/sun/star/wizards/common/ConfigSet.java +++ b/wizards/com/sun/star/wizards/common/ConfigSet.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ConfigSet.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/Configuration.java b/wizards/com/sun/star/wizards/common/Configuration.java index ead63de88183..076c8633c1c4 100644 --- a/wizards/com/sun/star/wizards/common/Configuration.java +++ b/wizards/com/sun/star/wizards/common/Configuration.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Configuration.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/DebugHelper.java b/wizards/com/sun/star/wizards/common/DebugHelper.java index e4a515b3c920..b560fb643a40 100644 --- a/wizards/com/sun/star/wizards/common/DebugHelper.java +++ b/wizards/com/sun/star/wizards/common/DebugHelper.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DebugHelper.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/Desktop.java b/wizards/com/sun/star/wizards/common/Desktop.java index 2c4c81368fc4..c9292b58c1b4 100644 --- a/wizards/com/sun/star/wizards/common/Desktop.java +++ b/wizards/com/sun/star/wizards/common/Desktop.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Desktop.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/FileAccess.java b/wizards/com/sun/star/wizards/common/FileAccess.java index 2043d5b932c3..6278d7e71a97 100644 --- a/wizards/com/sun/star/wizards/common/FileAccess.java +++ b/wizards/com/sun/star/wizards/common/FileAccess.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FileAccess.java,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/Helper.java b/wizards/com/sun/star/wizards/common/Helper.java index 946548ec1032..0df16b360de0 100644 --- a/wizards/com/sun/star/wizards/common/Helper.java +++ b/wizards/com/sun/star/wizards/common/Helper.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Helper.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/IRenderer.java b/wizards/com/sun/star/wizards/common/IRenderer.java index a7f15d3f6dff..1aa73eaa599b 100644 --- a/wizards/com/sun/star/wizards/common/IRenderer.java +++ b/wizards/com/sun/star/wizards/common/IRenderer.java @@ -3,13 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Renderer.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/Indexable.java b/wizards/com/sun/star/wizards/common/Indexable.java index a0648de408c9..d95640f1ec70 100644 --- a/wizards/com/sun/star/wizards/common/Indexable.java +++ b/wizards/com/sun/star/wizards/common/Indexable.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Indexable.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/InvalidQueryException.java b/wizards/com/sun/star/wizards/common/InvalidQueryException.java index 83df804ed21b..325f6fdc3760 100644 --- a/wizards/com/sun/star/wizards/common/InvalidQueryException.java +++ b/wizards/com/sun/star/wizards/common/InvalidQueryException.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InvalidQueryException.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/JavaTools.java b/wizards/com/sun/star/wizards/common/JavaTools.java index f5d87a570bf2..836b2a7ea242 100644 --- a/wizards/com/sun/star/wizards/common/JavaTools.java +++ b/wizards/com/sun/star/wizards/common/JavaTools.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: JavaTools.java,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/NoValidPathException.java b/wizards/com/sun/star/wizards/common/NoValidPathException.java index 92a426689c07..f4975d2fff0c 100644 --- a/wizards/com/sun/star/wizards/common/NoValidPathException.java +++ b/wizards/com/sun/star/wizards/common/NoValidPathException.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NoValidPathException.java,v $ - * - * $Revision: 1.5.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/NumberFormatter.java b/wizards/com/sun/star/wizards/common/NumberFormatter.java index a837b78ebbad..c8471214ec46 100644 --- a/wizards/com/sun/star/wizards/common/NumberFormatter.java +++ b/wizards/com/sun/star/wizards/common/NumberFormatter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NumberFormatter.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/NumericalHelper.java b/wizards/com/sun/star/wizards/common/NumericalHelper.java index bd92b6eb6fc3..109affffd5ef 100644 --- a/wizards/com/sun/star/wizards/common/NumericalHelper.java +++ b/wizards/com/sun/star/wizards/common/NumericalHelper.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: NumericalHelper.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/Properties.java b/wizards/com/sun/star/wizards/common/Properties.java index a14c05c89de9..6b4155d15adf 100644 --- a/wizards/com/sun/star/wizards/common/Properties.java +++ b/wizards/com/sun/star/wizards/common/Properties.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Properties.java,v $ - * - * $Revision: 1.4.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/PropertySetHelper.java b/wizards/com/sun/star/wizards/common/PropertySetHelper.java index 0881d97d623e..aec166a5c1c5 100644 --- a/wizards/com/sun/star/wizards/common/PropertySetHelper.java +++ b/wizards/com/sun/star/wizards/common/PropertySetHelper.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PropertySetHelper.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/Resource.java b/wizards/com/sun/star/wizards/common/Resource.java index d8c4e2c6115c..8dc660b21d07 100644 --- a/wizards/com/sun/star/wizards/common/Resource.java +++ b/wizards/com/sun/star/wizards/common/Resource.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Resource.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/SystemDialog.java b/wizards/com/sun/star/wizards/common/SystemDialog.java index 79ecb3ac4e0f..ac3a38c9cf7d 100644 --- a/wizards/com/sun/star/wizards/common/SystemDialog.java +++ b/wizards/com/sun/star/wizards/common/SystemDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SystemDialog.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/TerminateWizardException.java b/wizards/com/sun/star/wizards/common/TerminateWizardException.java index 8437633dd61a..124d98f9ff31 100644 --- a/wizards/com/sun/star/wizards/common/TerminateWizardException.java +++ b/wizards/com/sun/star/wizards/common/TerminateWizardException.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TerminateWizardException.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/UCB.java b/wizards/com/sun/star/wizards/common/UCB.java index 562a52a8bf8d..5e3ad00698df 100644 --- a/wizards/com/sun/star/wizards/common/UCB.java +++ b/wizards/com/sun/star/wizards/common/UCB.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UCB.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/XMLHelper.java b/wizards/com/sun/star/wizards/common/XMLHelper.java index fdb1e18b537c..326ba03fbeea 100644 --- a/wizards/com/sun/star/wizards/common/XMLHelper.java +++ b/wizards/com/sun/star/wizards/common/XMLHelper.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMLHelper.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/common/XMLProvider.java b/wizards/com/sun/star/wizards/common/XMLProvider.java index c91a05aff304..f5c2fd662d31 100644 --- a/wizards/com/sun/star/wizards/common/XMLProvider.java +++ b/wizards/com/sun/star/wizards/common/XMLProvider.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMLProvider.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/BlindtextCreator.java b/wizards/com/sun/star/wizards/db/BlindtextCreator.java index 5d89e61d1428..b52381def054 100644 --- a/wizards/com/sun/star/wizards/db/BlindtextCreator.java +++ b/wizards/com/sun/star/wizards/db/BlindtextCreator.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: BlindtextCreator.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/ColumnPropertySet.java b/wizards/com/sun/star/wizards/db/ColumnPropertySet.java index 5e7a26cb2381..204ba2328321 100644 --- a/wizards/com/sun/star/wizards/db/ColumnPropertySet.java +++ b/wizards/com/sun/star/wizards/db/ColumnPropertySet.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ColumnPropertySet.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/CommandMetaData.java b/wizards/com/sun/star/wizards/db/CommandMetaData.java index c23ec5cd2e5a..3bbac71d2e1a 100644 --- a/wizards/com/sun/star/wizards/db/CommandMetaData.java +++ b/wizards/com/sun/star/wizards/db/CommandMetaData.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CommandMetaData.java,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/CommandName.java b/wizards/com/sun/star/wizards/db/CommandName.java index 2ea6d75bef6c..aa8a4f9c7ea9 100644 --- a/wizards/com/sun/star/wizards/db/CommandName.java +++ b/wizards/com/sun/star/wizards/db/CommandName.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CommandName.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/DBMetaData.java b/wizards/com/sun/star/wizards/db/DBMetaData.java index 59f63afed114..1f6833017697 100644 --- a/wizards/com/sun/star/wizards/db/DBMetaData.java +++ b/wizards/com/sun/star/wizards/db/DBMetaData.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DBMetaData.java,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/FieldColumn.java b/wizards/com/sun/star/wizards/db/FieldColumn.java index c1909cdd2c25..041aab5f5300 100644 --- a/wizards/com/sun/star/wizards/db/FieldColumn.java +++ b/wizards/com/sun/star/wizards/db/FieldColumn.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FieldColumn.java,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/QueryMetaData.java b/wizards/com/sun/star/wizards/db/QueryMetaData.java index 229dd8624691..2c49de15696b 100644 --- a/wizards/com/sun/star/wizards/db/QueryMetaData.java +++ b/wizards/com/sun/star/wizards/db/QueryMetaData.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: QueryMetaData.java,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/RecordParser.java b/wizards/com/sun/star/wizards/db/RecordParser.java index cf2853861ccd..7d2c1bbb824e 100644 --- a/wizards/com/sun/star/wizards/db/RecordParser.java +++ b/wizards/com/sun/star/wizards/db/RecordParser.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: RecordParser.java,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/RelationController.java b/wizards/com/sun/star/wizards/db/RelationController.java index 27c1601d919d..acf47581d3e2 100644 --- a/wizards/com/sun/star/wizards/db/RelationController.java +++ b/wizards/com/sun/star/wizards/db/RelationController.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: RelationController.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/SQLQueryComposer.java b/wizards/com/sun/star/wizards/db/SQLQueryComposer.java index db5ccd32b8f7..250512c75817 100644 --- a/wizards/com/sun/star/wizards/db/SQLQueryComposer.java +++ b/wizards/com/sun/star/wizards/db/SQLQueryComposer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SQLQueryComposer.java,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/TableDescriptor.java b/wizards/com/sun/star/wizards/db/TableDescriptor.java index aa9986b8d9db..54daa4a09618 100644 --- a/wizards/com/sun/star/wizards/db/TableDescriptor.java +++ b/wizards/com/sun/star/wizards/db/TableDescriptor.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TableDescriptor.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/db/TypeInspector.java b/wizards/com/sun/star/wizards/db/TypeInspector.java index 479c3b6d5980..1f22801fd8c5 100644 --- a/wizards/com/sun/star/wizards/db/TypeInspector.java +++ b/wizards/com/sun/star/wizards/db/TypeInspector.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TypeInspector.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/document/Control.java b/wizards/com/sun/star/wizards/document/Control.java index 602aab2fd423..3ed03e47b1ee 100644 --- a/wizards/com/sun/star/wizards/document/Control.java +++ b/wizards/com/sun/star/wizards/document/Control.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Control.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/document/DatabaseControl.java b/wizards/com/sun/star/wizards/document/DatabaseControl.java index ed48ddbc04ea..66d9195c0c2f 100644 --- a/wizards/com/sun/star/wizards/document/DatabaseControl.java +++ b/wizards/com/sun/star/wizards/document/DatabaseControl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DatabaseControl.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/document/FormHandler.java b/wizards/com/sun/star/wizards/document/FormHandler.java index 20555455e2fe..7b558d67cd9f 100644 --- a/wizards/com/sun/star/wizards/document/FormHandler.java +++ b/wizards/com/sun/star/wizards/document/FormHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormHandler.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/document/GridControl.java b/wizards/com/sun/star/wizards/document/GridControl.java index 426aa026213b..d946d592ffc0 100644 --- a/wizards/com/sun/star/wizards/document/GridControl.java +++ b/wizards/com/sun/star/wizards/document/GridControl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: GridControl.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/document/OfficeDocument.java b/wizards/com/sun/star/wizards/document/OfficeDocument.java index 8dc513de0e9d..4cb78cd967c3 100644 --- a/wizards/com/sun/star/wizards/document/OfficeDocument.java +++ b/wizards/com/sun/star/wizards/document/OfficeDocument.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: OfficeDocument.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/document/Shape.java b/wizards/com/sun/star/wizards/document/Shape.java index a038ad629d6a..b2ef1a27e662 100644 --- a/wizards/com/sun/star/wizards/document/Shape.java +++ b/wizards/com/sun/star/wizards/document/Shape.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Shape.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/document/TimeStampControl.java b/wizards/com/sun/star/wizards/document/TimeStampControl.java index 52209308edc1..88733ee883c1 100644 --- a/wizards/com/sun/star/wizards/document/TimeStampControl.java +++ b/wizards/com/sun/star/wizards/document/TimeStampControl.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TimeStampControl.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/CGFax.java b/wizards/com/sun/star/wizards/fax/CGFax.java index 32543331ae1b..067c4dce09f1 100644 --- a/wizards/com/sun/star/wizards/fax/CGFax.java +++ b/wizards/com/sun/star/wizards/fax/CGFax.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGFax.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/CGFaxWizard.java b/wizards/com/sun/star/wizards/fax/CGFaxWizard.java index 5b677f328bf3..232d4ee8c163 100644 --- a/wizards/com/sun/star/wizards/fax/CGFaxWizard.java +++ b/wizards/com/sun/star/wizards/fax/CGFaxWizard.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGFaxWizard.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/CallWizard.java b/wizards/com/sun/star/wizards/fax/CallWizard.java index 024ce71b5b6a..b20dc0890e56 100644 --- a/wizards/com/sun/star/wizards/fax/CallWizard.java +++ b/wizards/com/sun/star/wizards/fax/CallWizard.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallWizard.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/FaxDocument.java b/wizards/com/sun/star/wizards/fax/FaxDocument.java index 0d797e634314..8eafbed257d1 100644 --- a/wizards/com/sun/star/wizards/fax/FaxDocument.java +++ b/wizards/com/sun/star/wizards/fax/FaxDocument.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FaxDocument.java,v $ - * - * $Revision: 1.7.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/FaxWizardDialog.java b/wizards/com/sun/star/wizards/fax/FaxWizardDialog.java index 747e6a50ce81..8c81ba5e5fec 100644 --- a/wizards/com/sun/star/wizards/fax/FaxWizardDialog.java +++ b/wizards/com/sun/star/wizards/fax/FaxWizardDialog.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FaxWizardDialog.java,v $ - * - * $Revision: 1.5.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/FaxWizardDialogConst.java b/wizards/com/sun/star/wizards/fax/FaxWizardDialogConst.java index a0cad19d1f8f..743173373b54 100644 --- a/wizards/com/sun/star/wizards/fax/FaxWizardDialogConst.java +++ b/wizards/com/sun/star/wizards/fax/FaxWizardDialogConst.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FaxWizardDialogConst.java,v $ - * - * $Revision: 1.4.212.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java b/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java index a8dbe94e5db0..b3cbd4eeab24 100644 --- a/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java +++ b/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FaxWizardDialogImpl.java,v $ - * - * $Revision: 1.10.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.java b/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.java index ccaacae7ec91..0043d25590d8 100644 --- a/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.java +++ b/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FaxWizardDialogResources.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/fax/makefile.mk b/wizards/com/sun/star/wizards/fax/makefile.mk index 0e1b9e17be63..247aaf063529 100644 --- a/wizards/com/sun/star/wizards/fax/makefile.mk +++ b/wizards/com/sun/star/wizards/fax/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5.42.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/CallFormWizard.java b/wizards/com/sun/star/wizards/form/CallFormWizard.java index 60b0b1705487..614bd3aaac94 100644 --- a/wizards/com/sun/star/wizards/form/CallFormWizard.java +++ b/wizards/com/sun/star/wizards/form/CallFormWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallFormWizard.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/DataEntrySetter.java b/wizards/com/sun/star/wizards/form/DataEntrySetter.java index e147910fa90a..2844e0b53104 100644 --- a/wizards/com/sun/star/wizards/form/DataEntrySetter.java +++ b/wizards/com/sun/star/wizards/form/DataEntrySetter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DataEntrySetter.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/FieldLinker.java b/wizards/com/sun/star/wizards/form/FieldLinker.java index 3e2721161c60..f5555421a4b3 100644 --- a/wizards/com/sun/star/wizards/form/FieldLinker.java +++ b/wizards/com/sun/star/wizards/form/FieldLinker.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FieldLinker.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/Finalizer.java b/wizards/com/sun/star/wizards/form/Finalizer.java index 2b1ffc5786e2..d1b44211e80a 100644 --- a/wizards/com/sun/star/wizards/form/Finalizer.java +++ b/wizards/com/sun/star/wizards/form/Finalizer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Finalizer.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/FormConfiguration.java b/wizards/com/sun/star/wizards/form/FormConfiguration.java index 989bb333b437..8e2c36ae0966 100644 --- a/wizards/com/sun/star/wizards/form/FormConfiguration.java +++ b/wizards/com/sun/star/wizards/form/FormConfiguration.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormConfiguration.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/FormControlArranger.java b/wizards/com/sun/star/wizards/form/FormControlArranger.java index 1f67ee576196..9a0c58fd41b8 100644 --- a/wizards/com/sun/star/wizards/form/FormControlArranger.java +++ b/wizards/com/sun/star/wizards/form/FormControlArranger.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormControlArranger.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/FormDocument.java b/wizards/com/sun/star/wizards/form/FormDocument.java index b3e163859f7b..ae1a795368e4 100644 --- a/wizards/com/sun/star/wizards/form/FormDocument.java +++ b/wizards/com/sun/star/wizards/form/FormDocument.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormDocument.java,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/FormWizard.java b/wizards/com/sun/star/wizards/form/FormWizard.java index 5b0a7939f6c2..2917c015b4b2 100644 --- a/wizards/com/sun/star/wizards/form/FormWizard.java +++ b/wizards/com/sun/star/wizards/form/FormWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FormWizard.java,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/StyleApplier.java b/wizards/com/sun/star/wizards/form/StyleApplier.java index 153de51a1f45..79e0321a3c0b 100644 --- a/wizards/com/sun/star/wizards/form/StyleApplier.java +++ b/wizards/com/sun/star/wizards/form/StyleApplier.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StyleApplier.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/UIControlArranger.java b/wizards/com/sun/star/wizards/form/UIControlArranger.java index 5e967e3fa096..b596efe143ea 100644 --- a/wizards/com/sun/star/wizards/form/UIControlArranger.java +++ b/wizards/com/sun/star/wizards/form/UIControlArranger.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UIControlArranger.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/XCallFormWizard.java b/wizards/com/sun/star/wizards/form/XCallFormWizard.java index c3da310a583d..33bab9730ac0 100644 --- a/wizards/com/sun/star/wizards/form/XCallFormWizard.java +++ b/wizards/com/sun/star/wizards/form/XCallFormWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCallFormWizard.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/form/makefile.mk b/wizards/com/sun/star/wizards/form/makefile.mk index 2237ac207759..02122b5090d4 100644 --- a/wizards/com/sun/star/wizards/form/makefile.mk +++ b/wizards/com/sun/star/wizards/form/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5.42.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/CGLetter.java b/wizards/com/sun/star/wizards/letter/CGLetter.java index 0d464732c10b..986d43bac5bb 100644 --- a/wizards/com/sun/star/wizards/letter/CGLetter.java +++ b/wizards/com/sun/star/wizards/letter/CGLetter.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGLetter.java,v $ - * - * $Revision: 1.4.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/CGLetterWizard.java b/wizards/com/sun/star/wizards/letter/CGLetterWizard.java index 55f21e029892..0a6cfd90ab42 100644 --- a/wizards/com/sun/star/wizards/letter/CGLetterWizard.java +++ b/wizards/com/sun/star/wizards/letter/CGLetterWizard.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGLetterWizard.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/CGPaperElementLocation.java b/wizards/com/sun/star/wizards/letter/CGPaperElementLocation.java index 92d40c21d4de..7c8b28bc93ed 100644 --- a/wizards/com/sun/star/wizards/letter/CGPaperElementLocation.java +++ b/wizards/com/sun/star/wizards/letter/CGPaperElementLocation.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGPaperElementLocation.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/CallWizard.java b/wizards/com/sun/star/wizards/letter/CallWizard.java index 7b0e7e170597..f3508512807d 100644 --- a/wizards/com/sun/star/wizards/letter/CallWizard.java +++ b/wizards/com/sun/star/wizards/letter/CallWizard.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallWizard.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/LetterDocument.java b/wizards/com/sun/star/wizards/letter/LetterDocument.java index 492b867e0d6b..0c981c6e066e 100644 --- a/wizards/com/sun/star/wizards/letter/LetterDocument.java +++ b/wizards/com/sun/star/wizards/letter/LetterDocument.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LetterDocument.java,v $ - * - * $Revision: 1.10.146.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialog.java b/wizards/com/sun/star/wizards/letter/LetterWizardDialog.java index 3c54f92ca6f6..e0b8a8c2579e 100644 --- a/wizards/com/sun/star/wizards/letter/LetterWizardDialog.java +++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialog.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LetterWizardDialog.java,v $ - * - * $Revision: 1.6.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialogConst.java b/wizards/com/sun/star/wizards/letter/LetterWizardDialogConst.java index 74aec498b10a..b94ac6f0c0ac 100755 --- a/wizards/com/sun/star/wizards/letter/LetterWizardDialogConst.java +++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialogConst.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LetterWizardDialogConst.java,v $ - * - * $Revision: 1.4.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialogEvents.java b/wizards/com/sun/star/wizards/letter/LetterWizardDialogEvents.java index d81bd4b1d06b..0a6407dbde1d 100644 --- a/wizards/com/sun/star/wizards/letter/LetterWizardDialogEvents.java +++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialogEvents.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LetterWizardDialogEvents.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.java b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.java index 1a47712ca213..79aad36e6dcf 100644 --- a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.java +++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LetterWizardDialogImpl.java,v $ - * - * $Revision: 1.19.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialogResources.java b/wizards/com/sun/star/wizards/letter/LetterWizardDialogResources.java index 381baae0e0f9..01731d989ebc 100644 --- a/wizards/com/sun/star/wizards/letter/LetterWizardDialogResources.java +++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialogResources.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LetterWizardDialogResources.java,v $ - * - * $Revision: 1.7.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/LocaleCodes.java b/wizards/com/sun/star/wizards/letter/LocaleCodes.java index 8e1ddfb34498..9adbc48fc06b 100644 --- a/wizards/com/sun/star/wizards/letter/LocaleCodes.java +++ b/wizards/com/sun/star/wizards/letter/LocaleCodes.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LocaleCodes.java,v $ - * - * $Revision: 1.7.52.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/letter/makefile.mk b/wizards/com/sun/star/wizards/letter/makefile.mk index 6c4a62149d83..700d0b72dfb7 100644 --- a/wizards/com/sun/star/wizards/letter/makefile.mk +++ b/wizards/com/sun/star/wizards/letter/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7.42.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/makefile.mk b/wizards/com/sun/star/wizards/makefile.mk index d876d1903d5d..b25ba566b525 100644 --- a/wizards/com/sun/star/wizards/makefile.mk +++ b/wizards/com/sun/star/wizards/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.15 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/query/CallQueryWizard.java b/wizards/com/sun/star/wizards/query/CallQueryWizard.java index dd9170fb741f..268871285a73 100644 --- a/wizards/com/sun/star/wizards/query/CallQueryWizard.java +++ b/wizards/com/sun/star/wizards/query/CallQueryWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallQueryWizard.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/query/Finalizer.java b/wizards/com/sun/star/wizards/query/Finalizer.java index 0a7f0a42aec8..a614c0ee9b80 100644 --- a/wizards/com/sun/star/wizards/query/Finalizer.java +++ b/wizards/com/sun/star/wizards/query/Finalizer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Finalizer.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/query/QuerySummary.java b/wizards/com/sun/star/wizards/query/QuerySummary.java index 611068d8b953..f570970e0fe8 100644 --- a/wizards/com/sun/star/wizards/query/QuerySummary.java +++ b/wizards/com/sun/star/wizards/query/QuerySummary.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: QuerySummary.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/query/QueryWizard.java b/wizards/com/sun/star/wizards/query/QueryWizard.java index 14fe9c4757a9..3f624891849c 100644 --- a/wizards/com/sun/star/wizards/query/QueryWizard.java +++ b/wizards/com/sun/star/wizards/query/QueryWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: QueryWizard.java,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/query/XCallQueryWizard.java b/wizards/com/sun/star/wizards/query/XCallQueryWizard.java index 04cb6303db3f..a95913c02013 100644 --- a/wizards/com/sun/star/wizards/query/XCallQueryWizard.java +++ b/wizards/com/sun/star/wizards/query/XCallQueryWizard.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCallQueryWizard.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/query/makefile.mk b/wizards/com/sun/star/wizards/query/makefile.mk index 887b470b6d8a..5db541ce57bb 100644 --- a/wizards/com/sun/star/wizards/query/makefile.mk +++ b/wizards/com/sun/star/wizards/query/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/CallReportWizard.java b/wizards/com/sun/star/wizards/report/CallReportWizard.java index 82c405747ad8..2c83aaeee123 100644 --- a/wizards/com/sun/star/wizards/report/CallReportWizard.java +++ b/wizards/com/sun/star/wizards/report/CallReportWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallReportWizard.java,v $ - * $Revision: 1.25 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/DBColumn.java b/wizards/com/sun/star/wizards/report/DBColumn.java index 57e46662a2d1..eb6ce3229ac4 100644 --- a/wizards/com/sun/star/wizards/report/DBColumn.java +++ b/wizards/com/sun/star/wizards/report/DBColumn.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DBColumn.java,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/Dataimport.java b/wizards/com/sun/star/wizards/report/Dataimport.java index d0f6c4a0ceca..f47f0bd15cbb 100644 --- a/wizards/com/sun/star/wizards/report/Dataimport.java +++ b/wizards/com/sun/star/wizards/report/Dataimport.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Dataimport.java,v $ - * $Revision: 1.44 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/GroupFieldHandler.java b/wizards/com/sun/star/wizards/report/GroupFieldHandler.java index 579ffb43fd67..82e478bac781 100644 --- a/wizards/com/sun/star/wizards/report/GroupFieldHandler.java +++ b/wizards/com/sun/star/wizards/report/GroupFieldHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: GroupFieldHandler.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java b/wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java index a6a13071f10f..6422befd65f0 100755 --- a/wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java +++ b/wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: IReportBuilderLayouter.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java b/wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java index 8e32b5d853ab..59fd096fe363 100755 --- a/wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java +++ b/wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: IReportDefinitionReadAccess.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/IReportDocument.java b/wizards/com/sun/star/wizards/report/IReportDocument.java index e94f93bf9d2e..42acb390a31d 100644 --- a/wizards/com/sun/star/wizards/report/IReportDocument.java +++ b/wizards/com/sun/star/wizards/report/IReportDocument.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: IReportDocument.java,v $ - * - * $Revision: 1.3.6.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/RecordTable.java b/wizards/com/sun/star/wizards/report/RecordTable.java index 7ac6aa65ec2c..b4af7f7fa94b 100644 --- a/wizards/com/sun/star/wizards/report/RecordTable.java +++ b/wizards/com/sun/star/wizards/report/RecordTable.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: RecordTable.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/ReportFinalizer.java b/wizards/com/sun/star/wizards/report/ReportFinalizer.java index 9ffb89b768f5..1482e118e516 100644 --- a/wizards/com/sun/star/wizards/report/ReportFinalizer.java +++ b/wizards/com/sun/star/wizards/report/ReportFinalizer.java @@ -2,14 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ReportFinalizer.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/ReportImplementationHelper.java b/wizards/com/sun/star/wizards/report/ReportImplementationHelper.java index 417c43a45dc4..a8d26d68cd41 100644 --- a/wizards/com/sun/star/wizards/report/ReportImplementationHelper.java +++ b/wizards/com/sun/star/wizards/report/ReportImplementationHelper.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ReportImplementationHelper.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/ReportLayouter.java b/wizards/com/sun/star/wizards/report/ReportLayouter.java index b7e7d2c4f47a..d1532b47dc4a 100644 --- a/wizards/com/sun/star/wizards/report/ReportLayouter.java +++ b/wizards/com/sun/star/wizards/report/ReportLayouter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ReportLayouter.java,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/ReportTextDocument.java b/wizards/com/sun/star/wizards/report/ReportTextDocument.java index 7e74e3fc685b..3ab9e704b9b9 100644 --- a/wizards/com/sun/star/wizards/report/ReportTextDocument.java +++ b/wizards/com/sun/star/wizards/report/ReportTextDocument.java @@ -2,14 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ReportTextDocument.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/ReportTextImplementation.java b/wizards/com/sun/star/wizards/report/ReportTextImplementation.java index 6e0091b52ef5..ad6eeeb28e3e 100644 --- a/wizards/com/sun/star/wizards/report/ReportTextImplementation.java +++ b/wizards/com/sun/star/wizards/report/ReportTextImplementation.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ReportTextImplementation.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java index a4b4e3af18ad..616f4691b9d9 100644 --- a/wizards/com/sun/star/wizards/report/ReportWizard.java +++ b/wizards/com/sun/star/wizards/report/ReportWizard.java @@ -3,13 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ReportWizard.java,v $ - * $Revision: 1.76.18.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/XCallReportWizard.java b/wizards/com/sun/star/wizards/report/XCallReportWizard.java index 562ce506cc56..468068a6237d 100644 --- a/wizards/com/sun/star/wizards/report/XCallReportWizard.java +++ b/wizards/com/sun/star/wizards/report/XCallReportWizard.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCallReportWizard.java,v $ - * - * $Revision: 1.8.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/report/makefile.mk b/wizards/com/sun/star/wizards/report/makefile.mk index d4624cc690ba..b31639d21a46 100644 --- a/wizards/com/sun/star/wizards/report/makefile.mk +++ b/wizards/com/sun/star/wizards/report/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.17.26.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java b/wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java index 2972e8153787..ae77da12fc67 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java +++ b/wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ReportBuilderImplementation.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarSingleColumn.java b/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarSingleColumn.java index 8ab20bb35e81..ccb74ebf6f07 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarSingleColumn.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarSingleColumn.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ColumnarSingleColumn.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarThreeColumns.java b/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarThreeColumns.java index b185c6c990fa..2dc468fb09e7 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarThreeColumns.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarThreeColumns.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ColumnarThreeColumns.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarTwoColumns.java b/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarTwoColumns.java index 372e8b596f2f..d79713524021 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarTwoColumns.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/ColumnarTwoColumns.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ColumnarTwoColumns.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java b/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java index 0b6fe8d4d13b..55fdafe6c79a 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DesignTemplate.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/InBlocksLabelsAbove.java b/wizards/com/sun/star/wizards/reportbuilder/layout/InBlocksLabelsAbove.java index 9d56cc8fc31c..9fd891a446f2 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/InBlocksLabelsAbove.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/InBlocksLabelsAbove.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InBlocksLabelsAbove.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/InBlocksLabelsLeft.java b/wizards/com/sun/star/wizards/reportbuilder/layout/InBlocksLabelsLeft.java index 6a3d8602668c..c03cf7cec909 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/InBlocksLabelsLeft.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/InBlocksLabelsLeft.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InBlocksLabelsLeft.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/LayoutConstants.java b/wizards/com/sun/star/wizards/reportbuilder/layout/LayoutConstants.java index 127f26e02a78..c31ce4b5f277 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/LayoutConstants.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/LayoutConstants.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: InBlocksLabelsLeft.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java b/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java index 891a57b30fb4..a10affa9ea2c 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ReportBuilderLayouter.java,v $ - * - * $Revision: 1.3.6.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionEmptyObject.java b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionEmptyObject.java index aa777253a7f7..8df754795e63 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionEmptyObject.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionEmptyObject.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SectionEmptyObject.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java index 821ccf5a180d..ae3766fd3391 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SectionLabel.java,v $ - * - * $Revision: 1.3.6.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionObject.java b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionObject.java index caae8481ef10..fa33e85d39cb 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionObject.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionObject.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SectionObject.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionTextField.java b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionTextField.java index ebf11abacdf7..2a11fcd56f04 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionTextField.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionTextField.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SectionTextField.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/Tabular.java b/wizards/com/sun/star/wizards/reportbuilder/layout/Tabular.java index e0dadcb3d567..0fe168b28263 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/Tabular.java +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/Tabular.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Tabular.java,v $ - * - * $Revision: 1.2.36.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/makefile.mk b/wizards/com/sun/star/wizards/reportbuilder/layout/makefile.mk index 0bf60e0ba3d7..1af9e7c53862 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/layout/makefile.mk +++ b/wizards/com/sun/star/wizards/reportbuilder/layout/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.2.26.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/reportbuilder/makefile.mk b/wizards/com/sun/star/wizards/reportbuilder/makefile.mk index 961c1a0a1e30..d9a1a7447fe8 100644 --- a/wizards/com/sun/star/wizards/reportbuilder/makefile.mk +++ b/wizards/com/sun/star/wizards/reportbuilder/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.2.26.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/CGCategory.java b/wizards/com/sun/star/wizards/table/CGCategory.java index 4179011cb368..c39bf5a65f4c 100644 --- a/wizards/com/sun/star/wizards/table/CGCategory.java +++ b/wizards/com/sun/star/wizards/table/CGCategory.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGCategory.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/CGTable.java b/wizards/com/sun/star/wizards/table/CGTable.java index 0090eb38dc76..a1878bdeb02f 100644 --- a/wizards/com/sun/star/wizards/table/CGTable.java +++ b/wizards/com/sun/star/wizards/table/CGTable.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGTable.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/CallTableWizard.java b/wizards/com/sun/star/wizards/table/CallTableWizard.java index 7455df894c73..6d8a2d4a28dd 100644 --- a/wizards/com/sun/star/wizards/table/CallTableWizard.java +++ b/wizards/com/sun/star/wizards/table/CallTableWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallTableWizard.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/FieldDescription.java b/wizards/com/sun/star/wizards/table/FieldDescription.java index 7c4b2bcaa409..ff7be38e9193 100644 --- a/wizards/com/sun/star/wizards/table/FieldDescription.java +++ b/wizards/com/sun/star/wizards/table/FieldDescription.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FieldDescription.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/FieldFormatter.java b/wizards/com/sun/star/wizards/table/FieldFormatter.java index 1990eefda006..205413bd50f3 100644 --- a/wizards/com/sun/star/wizards/table/FieldFormatter.java +++ b/wizards/com/sun/star/wizards/table/FieldFormatter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FieldFormatter.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/Finalizer.java b/wizards/com/sun/star/wizards/table/Finalizer.java index f25ad3152911..43c6787a294c 100644 --- a/wizards/com/sun/star/wizards/table/Finalizer.java +++ b/wizards/com/sun/star/wizards/table/Finalizer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Finalizer.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/PrimaryKeyHandler.java b/wizards/com/sun/star/wizards/table/PrimaryKeyHandler.java index afedae2fb7ad..d8ecf13a9ad9 100644 --- a/wizards/com/sun/star/wizards/table/PrimaryKeyHandler.java +++ b/wizards/com/sun/star/wizards/table/PrimaryKeyHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PrimaryKeyHandler.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/ScenarioSelector.java b/wizards/com/sun/star/wizards/table/ScenarioSelector.java index cf0389b84ff3..d603ad18793e 100644 --- a/wizards/com/sun/star/wizards/table/ScenarioSelector.java +++ b/wizards/com/sun/star/wizards/table/ScenarioSelector.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ScenarioSelector.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/TableWizard.java b/wizards/com/sun/star/wizards/table/TableWizard.java index 9144dc607a9a..c2addb2218c1 100644 --- a/wizards/com/sun/star/wizards/table/TableWizard.java +++ b/wizards/com/sun/star/wizards/table/TableWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TableWizard.java,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/XCallTableWizard.java b/wizards/com/sun/star/wizards/table/XCallTableWizard.java index 47cba7da9314..db25675cdb46 100644 --- a/wizards/com/sun/star/wizards/table/XCallTableWizard.java +++ b/wizards/com/sun/star/wizards/table/XCallTableWizard.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCallTableWizard.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/table/makefile.mk b/wizards/com/sun/star/wizards/table/makefile.mk index d845f6456efb..f6dc959a0734 100644 --- a/wizards/com/sun/star/wizards/table/makefile.mk +++ b/wizards/com/sun/star/wizards/table/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6.42.1 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/text/TextDocument.java b/wizards/com/sun/star/wizards/text/TextDocument.java index c9af7bfb688c..4fe2e9f0d710 100644 --- a/wizards/com/sun/star/wizards/text/TextDocument.java +++ b/wizards/com/sun/star/wizards/text/TextDocument.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TextDocument.java,v $ - * $Revision: 1.16 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/text/TextFieldHandler.java b/wizards/com/sun/star/wizards/text/TextFieldHandler.java index ea8f493f98ca..5d8c677c621e 100644 --- a/wizards/com/sun/star/wizards/text/TextFieldHandler.java +++ b/wizards/com/sun/star/wizards/text/TextFieldHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TextFieldHandler.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/text/TextFrameHandler.java b/wizards/com/sun/star/wizards/text/TextFrameHandler.java index f79e341990d1..562444a1ad84 100644 --- a/wizards/com/sun/star/wizards/text/TextFrameHandler.java +++ b/wizards/com/sun/star/wizards/text/TextFrameHandler.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TextFrameHandler.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/text/TextSectionHandler.java b/wizards/com/sun/star/wizards/text/TextSectionHandler.java index 1b7b514a4eae..42fd75879c3c 100644 --- a/wizards/com/sun/star/wizards/text/TextSectionHandler.java +++ b/wizards/com/sun/star/wizards/text/TextSectionHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TextSectionHandler.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/text/TextStyleHandler.java b/wizards/com/sun/star/wizards/text/TextStyleHandler.java index 28451620bfa6..e6c952e65785 100644 --- a/wizards/com/sun/star/wizards/text/TextStyleHandler.java +++ b/wizards/com/sun/star/wizards/text/TextStyleHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TextStyleHandler.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/text/TextTableHandler.java b/wizards/com/sun/star/wizards/text/TextTableHandler.java index e387c7516c7e..d3646a7cfa37 100644 --- a/wizards/com/sun/star/wizards/text/TextTableHandler.java +++ b/wizards/com/sun/star/wizards/text/TextTableHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TextTableHandler.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/text/ViewHandler.java b/wizards/com/sun/star/wizards/text/ViewHandler.java index 37aa876498f5..e29ad10cfbb1 100644 --- a/wizards/com/sun/star/wizards/text/ViewHandler.java +++ b/wizards/com/sun/star/wizards/text/ViewHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ViewHandler.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/AggregateComponent.java b/wizards/com/sun/star/wizards/ui/AggregateComponent.java index 3b2d4649e89e..55a6b35dc7e9 100644 --- a/wizards/com/sun/star/wizards/ui/AggregateComponent.java +++ b/wizards/com/sun/star/wizards/ui/AggregateComponent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AggregateComponent.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/ButtonList.java b/wizards/com/sun/star/wizards/ui/ButtonList.java index d68306c5b915..634261145079 100644 --- a/wizards/com/sun/star/wizards/ui/ButtonList.java +++ b/wizards/com/sun/star/wizards/ui/ButtonList.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ImageList.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/CommandFieldSelection.java b/wizards/com/sun/star/wizards/ui/CommandFieldSelection.java index 37ff4a46b49e..ddca1039706a 100644 --- a/wizards/com/sun/star/wizards/ui/CommandFieldSelection.java +++ b/wizards/com/sun/star/wizards/ui/CommandFieldSelection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CommandFieldSelection.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/ControlScroller.java b/wizards/com/sun/star/wizards/ui/ControlScroller.java index 2a2a373fa841..f42fe81134a9 100644 --- a/wizards/com/sun/star/wizards/ui/ControlScroller.java +++ b/wizards/com/sun/star/wizards/ui/ControlScroller.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ControlScroller.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/DBLimitedFieldSelection.java b/wizards/com/sun/star/wizards/ui/DBLimitedFieldSelection.java index 7cf333ddf362..341ab73828c5 100644 --- a/wizards/com/sun/star/wizards/ui/DBLimitedFieldSelection.java +++ b/wizards/com/sun/star/wizards/ui/DBLimitedFieldSelection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DBLimitedFieldSelection.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/DocumentPreview.java b/wizards/com/sun/star/wizards/ui/DocumentPreview.java index 522f9f0e32be..173fae87f01b 100644 --- a/wizards/com/sun/star/wizards/ui/DocumentPreview.java +++ b/wizards/com/sun/star/wizards/ui/DocumentPreview.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DocumentPreview.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/FieldSelection.java b/wizards/com/sun/star/wizards/ui/FieldSelection.java index dac15efc375a..803f85948721 100644 --- a/wizards/com/sun/star/wizards/ui/FieldSelection.java +++ b/wizards/com/sun/star/wizards/ui/FieldSelection.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FieldSelection.java,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/FilterComponent.java b/wizards/com/sun/star/wizards/ui/FilterComponent.java index 3191c62d639f..8b40528fe832 100644 --- a/wizards/com/sun/star/wizards/ui/FilterComponent.java +++ b/wizards/com/sun/star/wizards/ui/FilterComponent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FilterComponent.java,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/ImageList.java b/wizards/com/sun/star/wizards/ui/ImageList.java index fd93a3192d8a..dcd378369c5f 100644 --- a/wizards/com/sun/star/wizards/ui/ImageList.java +++ b/wizards/com/sun/star/wizards/ui/ImageList.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ImageList.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/PathSelection.java b/wizards/com/sun/star/wizards/ui/PathSelection.java index 93378aa89838..4cb101382c6d 100755 --- a/wizards/com/sun/star/wizards/ui/PathSelection.java +++ b/wizards/com/sun/star/wizards/ui/PathSelection.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PathSelection.java,v $ - * - * $Revision: 1.5.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/PeerConfig.java b/wizards/com/sun/star/wizards/ui/PeerConfig.java index d9a5ea390b3f..d3871ee62a5b 100644 --- a/wizards/com/sun/star/wizards/ui/PeerConfig.java +++ b/wizards/com/sun/star/wizards/ui/PeerConfig.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: PeerConfig.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/SortingComponent.java b/wizards/com/sun/star/wizards/ui/SortingComponent.java index f7fd075d6b4c..29b646d3e852 100644 --- a/wizards/com/sun/star/wizards/ui/SortingComponent.java +++ b/wizards/com/sun/star/wizards/ui/SortingComponent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SortingComponent.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/TitlesComponent.java b/wizards/com/sun/star/wizards/ui/TitlesComponent.java index 904b76fcd1c8..d4091c964e14 100644 --- a/wizards/com/sun/star/wizards/ui/TitlesComponent.java +++ b/wizards/com/sun/star/wizards/ui/TitlesComponent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TitlesComponent.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/UnoDialog.java b/wizards/com/sun/star/wizards/ui/UnoDialog.java index 120b26367c8d..5a181b84c4b5 100644 --- a/wizards/com/sun/star/wizards/ui/UnoDialog.java +++ b/wizards/com/sun/star/wizards/ui/UnoDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UnoDialog.java,v $ - * $Revision: 1.17 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/UnoDialog2.java b/wizards/com/sun/star/wizards/ui/UnoDialog2.java index 236233ecf8a8..184a4a354b0c 100644 --- a/wizards/com/sun/star/wizards/ui/UnoDialog2.java +++ b/wizards/com/sun/star/wizards/ui/UnoDialog2.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UnoDialog2.java,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/WizardDialog.java b/wizards/com/sun/star/wizards/ui/WizardDialog.java index 15b840fa9c89..e7e239473bc9 100644 --- a/wizards/com/sun/star/wizards/ui/WizardDialog.java +++ b/wizards/com/sun/star/wizards/ui/WizardDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WizardDialog.java,v $ - * $Revision: 1.20 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java b/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java index f4cb7f567db8..24fbd10eb9dd 100644 --- a/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java +++ b/wizards/com/sun/star/wizards/ui/XCommandSelectionListener.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCommandSelectionListener.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/XCompletion.java b/wizards/com/sun/star/wizards/ui/XCompletion.java index 2d9716395e9e..545345731e39 100644 --- a/wizards/com/sun/star/wizards/ui/XCompletion.java +++ b/wizards/com/sun/star/wizards/ui/XCompletion.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XCompletion.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/XFieldSelectionListener.java b/wizards/com/sun/star/wizards/ui/XFieldSelectionListener.java index abb814f4bd5b..b47ad2363709 100644 --- a/wizards/com/sun/star/wizards/ui/XFieldSelectionListener.java +++ b/wizards/com/sun/star/wizards/ui/XFieldSelectionListener.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XFieldSelectionListener.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/XPathSelectionListener.java b/wizards/com/sun/star/wizards/ui/XPathSelectionListener.java index 41f4fb1f608f..5c76c092a46f 100755 --- a/wizards/com/sun/star/wizards/ui/XPathSelectionListener.java +++ b/wizards/com/sun/star/wizards/ui/XPathSelectionListener.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XPathSelectionListener.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java index 989419331c7c..ebbcba96f58c 100644 --- a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java +++ b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AbstractListener.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/CommonListener.java b/wizards/com/sun/star/wizards/ui/event/CommonListener.java index 2f4d83313ed9..18f33af2cef8 100644 --- a/wizards/com/sun/star/wizards/ui/event/CommonListener.java +++ b/wizards/com/sun/star/wizards/ui/event/CommonListener.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CommonListener.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/DataAware.java b/wizards/com/sun/star/wizards/ui/event/DataAware.java index 5e18f931fa34..b81b8e71bcdb 100644 --- a/wizards/com/sun/star/wizards/ui/event/DataAware.java +++ b/wizards/com/sun/star/wizards/ui/event/DataAware.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DataAware.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/DataAwareFields.java b/wizards/com/sun/star/wizards/ui/event/DataAwareFields.java index 3a6831606bc6..74881d7b1f23 100644 --- a/wizards/com/sun/star/wizards/ui/event/DataAwareFields.java +++ b/wizards/com/sun/star/wizards/ui/event/DataAwareFields.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DataAwareFields.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/EventNames.java b/wizards/com/sun/star/wizards/ui/event/EventNames.java index 4ec209ed3de0..50aa32dc57aa 100644 --- a/wizards/com/sun/star/wizards/ui/event/EventNames.java +++ b/wizards/com/sun/star/wizards/ui/event/EventNames.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EventNames.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/ListModelBinder.java b/wizards/com/sun/star/wizards/ui/event/ListModelBinder.java index e4f4b1a88f71..b2dc75f22f48 100644 --- a/wizards/com/sun/star/wizards/ui/event/ListModelBinder.java +++ b/wizards/com/sun/star/wizards/ui/event/ListModelBinder.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ListModelBinder.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java b/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java index 502b0dd47b0a..c45a496c7849 100644 --- a/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java +++ b/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: MethodInvocation.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/RadioDataAware.java b/wizards/com/sun/star/wizards/ui/event/RadioDataAware.java index 866155e0d256..7dddea572503 100644 --- a/wizards/com/sun/star/wizards/ui/event/RadioDataAware.java +++ b/wizards/com/sun/star/wizards/ui/event/RadioDataAware.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: RadioDataAware.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/SimpleDataAware.java b/wizards/com/sun/star/wizards/ui/event/SimpleDataAware.java index 2dc261feb71b..8a9c2200d76d 100644 --- a/wizards/com/sun/star/wizards/ui/event/SimpleDataAware.java +++ b/wizards/com/sun/star/wizards/ui/event/SimpleDataAware.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SimpleDataAware.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/Task.java b/wizards/com/sun/star/wizards/ui/event/Task.java index caf7239ccf67..16feacd5e1fa 100644 --- a/wizards/com/sun/star/wizards/ui/event/Task.java +++ b/wizards/com/sun/star/wizards/ui/event/Task.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Task.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/TaskEvent.java b/wizards/com/sun/star/wizards/ui/event/TaskEvent.java index 9cb31bcd8c43..1c54cfea2fa6 100644 --- a/wizards/com/sun/star/wizards/ui/event/TaskEvent.java +++ b/wizards/com/sun/star/wizards/ui/event/TaskEvent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TaskEvent.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/TaskListener.java b/wizards/com/sun/star/wizards/ui/event/TaskListener.java index 5b90df8a0904..114747c30776 100644 --- a/wizards/com/sun/star/wizards/ui/event/TaskListener.java +++ b/wizards/com/sun/star/wizards/ui/event/TaskListener.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TaskListener.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/ui/event/UnoDataAware.java b/wizards/com/sun/star/wizards/ui/event/UnoDataAware.java index d489ac9d47f4..632609d85f05 100644 --- a/wizards/com/sun/star/wizards/ui/event/UnoDataAware.java +++ b/wizards/com/sun/star/wizards/ui/event/UnoDataAware.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UnoDataAware.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/AbstractErrorHandler.java b/wizards/com/sun/star/wizards/web/AbstractErrorHandler.java index b92491879734..6a6c5a0c220f 100644 --- a/wizards/com/sun/star/wizards/web/AbstractErrorHandler.java +++ b/wizards/com/sun/star/wizards/web/AbstractErrorHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AbstractErrorHandler.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/BackgroundsDialog.java b/wizards/com/sun/star/wizards/web/BackgroundsDialog.java index 0d50664b9efe..70c40fbc6072 100644 --- a/wizards/com/sun/star/wizards/web/BackgroundsDialog.java +++ b/wizards/com/sun/star/wizards/web/BackgroundsDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: BackgroundsDialog.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/CallWizard.java b/wizards/com/sun/star/wizards/web/CallWizard.java index 7019e00f5d5c..f0318e5f2e18 100644 --- a/wizards/com/sun/star/wizards/web/CallWizard.java +++ b/wizards/com/sun/star/wizards/web/CallWizard.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CallWizard.java,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/ErrorHandler.java b/wizards/com/sun/star/wizards/web/ErrorHandler.java index 83f35a98bcf3..f330532a3058 100644 --- a/wizards/com/sun/star/wizards/web/ErrorHandler.java +++ b/wizards/com/sun/star/wizards/web/ErrorHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ErrorHandler.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/ExtensionVerifier.java b/wizards/com/sun/star/wizards/web/ExtensionVerifier.java index 463c5c18f58a..8bc036131b70 100644 --- a/wizards/com/sun/star/wizards/web/ExtensionVerifier.java +++ b/wizards/com/sun/star/wizards/web/ExtensionVerifier.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ExtensionVerifier.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/FTPDialog.java b/wizards/com/sun/star/wizards/web/FTPDialog.java index 0d9b083489e5..1cc68ed8491f 100644 --- a/wizards/com/sun/star/wizards/web/FTPDialog.java +++ b/wizards/com/sun/star/wizards/web/FTPDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FTPDialog.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/FTPDialogResources.java b/wizards/com/sun/star/wizards/web/FTPDialogResources.java index 7d6ae650b8f2..b9a5fe7548d6 100644 --- a/wizards/com/sun/star/wizards/web/FTPDialogResources.java +++ b/wizards/com/sun/star/wizards/web/FTPDialogResources.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FTPDialogResources.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/IconsDialog.java b/wizards/com/sun/star/wizards/web/IconsDialog.java index 92702b978eec..6228180a75f4 100644 --- a/wizards/com/sun/star/wizards/web/IconsDialog.java +++ b/wizards/com/sun/star/wizards/web/IconsDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: IconsDialog.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/ImageListDialog.java b/wizards/com/sun/star/wizards/web/ImageListDialog.java index 4fbf832f32ff..976d61222e72 100644 --- a/wizards/com/sun/star/wizards/web/ImageListDialog.java +++ b/wizards/com/sun/star/wizards/web/ImageListDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ImageListDialog.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/LogTaskListener.java b/wizards/com/sun/star/wizards/web/LogTaskListener.java index 18d65ef871c7..f1814f9e4cb6 100644 --- a/wizards/com/sun/star/wizards/web/LogTaskListener.java +++ b/wizards/com/sun/star/wizards/web/LogTaskListener.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LogTaskListener.java,v $ - * - * $Revision: 1.4.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/Process.java b/wizards/com/sun/star/wizards/web/Process.java index a9d29b9a7d67..d1ae8e23763e 100644 --- a/wizards/com/sun/star/wizards/web/Process.java +++ b/wizards/com/sun/star/wizards/web/Process.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Process.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/ProcessErrorHandler.java b/wizards/com/sun/star/wizards/web/ProcessErrorHandler.java index 62e0d7be3034..96106986515c 100644 --- a/wizards/com/sun/star/wizards/web/ProcessErrorHandler.java +++ b/wizards/com/sun/star/wizards/web/ProcessErrorHandler.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ProcessErrorHandler.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/ProcessErrors.java b/wizards/com/sun/star/wizards/web/ProcessErrors.java index 0485c754eb6a..ca6da968654f 100644 --- a/wizards/com/sun/star/wizards/web/ProcessErrors.java +++ b/wizards/com/sun/star/wizards/web/ProcessErrors.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ProcessErrors.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/ProcessStatusRenderer.java b/wizards/com/sun/star/wizards/web/ProcessStatusRenderer.java index 6caa4dfda3c6..3fa3726f2e8f 100644 --- a/wizards/com/sun/star/wizards/web/ProcessStatusRenderer.java +++ b/wizards/com/sun/star/wizards/web/ProcessStatusRenderer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ProcessStatusRenderer.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/StatusDialog.java b/wizards/com/sun/star/wizards/web/StatusDialog.java index 4f478c97aa21..ab1e7a0b6bc7 100644 --- a/wizards/com/sun/star/wizards/web/StatusDialog.java +++ b/wizards/com/sun/star/wizards/web/StatusDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StatusDialog.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/StylePreview.java b/wizards/com/sun/star/wizards/web/StylePreview.java index 4d41ca93fed5..93507929d84b 100644 --- a/wizards/com/sun/star/wizards/web/StylePreview.java +++ b/wizards/com/sun/star/wizards/web/StylePreview.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: StylePreview.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/TOCPreview.java b/wizards/com/sun/star/wizards/web/TOCPreview.java index a73790fb68d0..1fb70a11d4b5 100644 --- a/wizards/com/sun/star/wizards/web/TOCPreview.java +++ b/wizards/com/sun/star/wizards/web/TOCPreview.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TOCPreview.java,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/WWD_Events.java b/wizards/com/sun/star/wizards/web/WWD_Events.java index e396a46ddd30..81e9c2ffe860 100644 --- a/wizards/com/sun/star/wizards/web/WWD_Events.java +++ b/wizards/com/sun/star/wizards/web/WWD_Events.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WWD_Events.java,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/WWD_General.java b/wizards/com/sun/star/wizards/web/WWD_General.java index f0be62cabdc5..d4e273f4889b 100644 --- a/wizards/com/sun/star/wizards/web/WWD_General.java +++ b/wizards/com/sun/star/wizards/web/WWD_General.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WWD_General.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/WWD_Startup.java b/wizards/com/sun/star/wizards/web/WWD_Startup.java index b0dd726ace90..818781cd0bf3 100644 --- a/wizards/com/sun/star/wizards/web/WWD_Startup.java +++ b/wizards/com/sun/star/wizards/web/WWD_Startup.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WWD_Startup.java,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/WWHID.java b/wizards/com/sun/star/wizards/web/WWHID.java index 05b53e15af0d..6d9a4882fcb9 100644 --- a/wizards/com/sun/star/wizards/web/WWHID.java +++ b/wizards/com/sun/star/wizards/web/WWHID.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WWHID.java,v $ - * - * $Revision: 1.4.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/WebWizard.java b/wizards/com/sun/star/wizards/web/WebWizard.java index 41de8c8e5293..87ea5217b11e 100644 --- a/wizards/com/sun/star/wizards/web/WebWizard.java +++ b/wizards/com/sun/star/wizards/web/WebWizard.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WebWizard.java,v $ - * - * $Revision: 1.6.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/WebWizardConst.java b/wizards/com/sun/star/wizards/web/WebWizardConst.java index a8b2b972de0f..7ef17f134458 100644 --- a/wizards/com/sun/star/wizards/web/WebWizardConst.java +++ b/wizards/com/sun/star/wizards/web/WebWizardConst.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WebWizardConst.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/WebWizardDialog.java b/wizards/com/sun/star/wizards/web/WebWizardDialog.java index ce06a065868f..736639972c44 100644 --- a/wizards/com/sun/star/wizards/web/WebWizardDialog.java +++ b/wizards/com/sun/star/wizards/web/WebWizardDialog.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WebWizardDialog.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/WebWizardDialogResources.java b/wizards/com/sun/star/wizards/web/WebWizardDialogResources.java index 484174533fa9..c4a4f0cf58cd 100644 --- a/wizards/com/sun/star/wizards/web/WebWizardDialogResources.java +++ b/wizards/com/sun/star/wizards/web/WebWizardDialogResources.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: WebWizardDialogResources.java,v $ - * - * $Revision: 1.6.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGArgument.java b/wizards/com/sun/star/wizards/web/data/CGArgument.java index 7797dc29e934..2ae2c70ce69c 100644 --- a/wizards/com/sun/star/wizards/web/data/CGArgument.java +++ b/wizards/com/sun/star/wizards/web/data/CGArgument.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGArgument.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGContent.java b/wizards/com/sun/star/wizards/web/data/CGContent.java index fdd58da3f737..9bf32f26ff48 100644 --- a/wizards/com/sun/star/wizards/web/data/CGContent.java +++ b/wizards/com/sun/star/wizards/web/data/CGContent.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGContent.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGDesign.java b/wizards/com/sun/star/wizards/web/data/CGDesign.java index 856340fdfddf..00c1ea10b949 100644 --- a/wizards/com/sun/star/wizards/web/data/CGDesign.java +++ b/wizards/com/sun/star/wizards/web/data/CGDesign.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGDesign.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGDocument.java b/wizards/com/sun/star/wizards/web/data/CGDocument.java index eeb009ce0283..177355612675 100644 --- a/wizards/com/sun/star/wizards/web/data/CGDocument.java +++ b/wizards/com/sun/star/wizards/web/data/CGDocument.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGDocument.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGExporter.java b/wizards/com/sun/star/wizards/web/data/CGExporter.java index e58d56d9b20d..c23073fbed01 100644 --- a/wizards/com/sun/star/wizards/web/data/CGExporter.java +++ b/wizards/com/sun/star/wizards/web/data/CGExporter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGExporter.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGFilter.java b/wizards/com/sun/star/wizards/web/data/CGFilter.java index b02008a71d27..dc4f41df746b 100644 --- a/wizards/com/sun/star/wizards/web/data/CGFilter.java +++ b/wizards/com/sun/star/wizards/web/data/CGFilter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGFilter.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGGeneralInfo.java b/wizards/com/sun/star/wizards/web/data/CGGeneralInfo.java index 345a636659ad..c12d4c92f535 100644 --- a/wizards/com/sun/star/wizards/web/data/CGGeneralInfo.java +++ b/wizards/com/sun/star/wizards/web/data/CGGeneralInfo.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGGeneralInfo.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGIconSet.java b/wizards/com/sun/star/wizards/web/data/CGIconSet.java index f12f80942316..197c6c3e44b5 100644 --- a/wizards/com/sun/star/wizards/web/data/CGIconSet.java +++ b/wizards/com/sun/star/wizards/web/data/CGIconSet.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGIconSet.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGImage.java b/wizards/com/sun/star/wizards/web/data/CGImage.java index a4cd4dd12819..e6d459bf48d5 100644 --- a/wizards/com/sun/star/wizards/web/data/CGImage.java +++ b/wizards/com/sun/star/wizards/web/data/CGImage.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGImage.java,v $ - * - * $Revision: 1.2.412.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGLayout.java b/wizards/com/sun/star/wizards/web/data/CGLayout.java index 8fca3b01334c..9d9557c1615a 100644 --- a/wizards/com/sun/star/wizards/web/data/CGLayout.java +++ b/wizards/com/sun/star/wizards/web/data/CGLayout.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGLayout.java,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGPublish.java b/wizards/com/sun/star/wizards/web/data/CGPublish.java index d93f21e0bbdc..1a3746a3873d 100644 --- a/wizards/com/sun/star/wizards/web/data/CGPublish.java +++ b/wizards/com/sun/star/wizards/web/data/CGPublish.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGPublish.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGSession.java b/wizards/com/sun/star/wizards/web/data/CGSession.java index 59cf8f4fc601..3acd570b7878 100644 --- a/wizards/com/sun/star/wizards/web/data/CGSession.java +++ b/wizards/com/sun/star/wizards/web/data/CGSession.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGSession.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGSessionName.java b/wizards/com/sun/star/wizards/web/data/CGSessionName.java index d385969e6d3b..77cde79a8ca2 100644 --- a/wizards/com/sun/star/wizards/web/data/CGSessionName.java +++ b/wizards/com/sun/star/wizards/web/data/CGSessionName.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGSessionName.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGSettings.java b/wizards/com/sun/star/wizards/web/data/CGSettings.java index d6381ee41d13..ecc538b9fa83 100644 --- a/wizards/com/sun/star/wizards/web/data/CGSettings.java +++ b/wizards/com/sun/star/wizards/web/data/CGSettings.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGSettings.java,v $ - * - * $Revision: 1.7.164.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/CGStyle.java b/wizards/com/sun/star/wizards/web/data/CGStyle.java index 529c38157bf6..e6258d8c5fe1 100644 --- a/wizards/com/sun/star/wizards/web/data/CGStyle.java +++ b/wizards/com/sun/star/wizards/web/data/CGStyle.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CGStyle.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/ConfigSetItem.java b/wizards/com/sun/star/wizards/web/data/ConfigSetItem.java index c78d7c740f99..06c11a06178e 100644 --- a/wizards/com/sun/star/wizards/web/data/ConfigSetItem.java +++ b/wizards/com/sun/star/wizards/web/data/ConfigSetItem.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ConfigSetItem.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/TypeDetection.java b/wizards/com/sun/star/wizards/web/data/TypeDetection.java index 884738f4c4b5..d6998ac74814 100644 --- a/wizards/com/sun/star/wizards/web/data/TypeDetection.java +++ b/wizards/com/sun/star/wizards/web/data/TypeDetection.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TypeDetection.java,v $ - * - * $Revision: 1.2.412.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/data/makefile.mk b/wizards/com/sun/star/wizards/web/data/makefile.mk index 68152ecd9603..89362269fadc 100644 --- a/wizards/com/sun/star/wizards/web/data/makefile.mk +++ b/wizards/com/sun/star/wizards/web/data/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.11 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/export/AbstractExporter.java b/wizards/com/sun/star/wizards/web/export/AbstractExporter.java index d09043cc68e2..97b1109add01 100644 --- a/wizards/com/sun/star/wizards/web/export/AbstractExporter.java +++ b/wizards/com/sun/star/wizards/web/export/AbstractExporter.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AbstractExporter.java,v $ - * - * $Revision: 1.6.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/export/ConfiguredExporter.java b/wizards/com/sun/star/wizards/web/export/ConfiguredExporter.java index a785e6ce3019..de13a8c31bbe 100644 --- a/wizards/com/sun/star/wizards/web/export/ConfiguredExporter.java +++ b/wizards/com/sun/star/wizards/web/export/ConfiguredExporter.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ConfiguredExporter.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/export/CopyExporter.java b/wizards/com/sun/star/wizards/web/export/CopyExporter.java index 6555424efcf0..f620e3b106d3 100644 --- a/wizards/com/sun/star/wizards/web/export/CopyExporter.java +++ b/wizards/com/sun/star/wizards/web/export/CopyExporter.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: CopyExporter.java,v $ - * - * $Revision: 1.4.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/export/Exporter.java b/wizards/com/sun/star/wizards/web/export/Exporter.java index 84a6540ceb78..90f145cf1241 100644 --- a/wizards/com/sun/star/wizards/web/export/Exporter.java +++ b/wizards/com/sun/star/wizards/web/export/Exporter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Exporter.java,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/export/FilterExporter.java b/wizards/com/sun/star/wizards/web/export/FilterExporter.java index 1784f159f05c..8ff666d5ec87 100644 --- a/wizards/com/sun/star/wizards/web/export/FilterExporter.java +++ b/wizards/com/sun/star/wizards/web/export/FilterExporter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: FilterExporter.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/export/ImpressHTMLExporter.java b/wizards/com/sun/star/wizards/web/export/ImpressHTMLExporter.java index ebecaa8c42d4..07a79e15040e 100644 --- a/wizards/com/sun/star/wizards/web/export/ImpressHTMLExporter.java +++ b/wizards/com/sun/star/wizards/web/export/ImpressHTMLExporter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ImpressHTMLExporter.java,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/export/makefile.mk b/wizards/com/sun/star/wizards/web/export/makefile.mk index 2ad816ff834f..b123fdc6d255 100644 --- a/wizards/com/sun/star/wizards/web/export/makefile.mk +++ b/wizards/com/sun/star/wizards/web/export/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9.40.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/makefile.mk b/wizards/com/sun/star/wizards/web/makefile.mk index e9aa9ad61031..a452e7683d21 100644 --- a/wizards/com/sun/star/wizards/web/makefile.mk +++ b/wizards/com/sun/star/wizards/web/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.12 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/status/ErrorLog.java b/wizards/com/sun/star/wizards/web/status/ErrorLog.java index 982e36cf8ad5..d039fa5c64a3 100644 --- a/wizards/com/sun/star/wizards/web/status/ErrorLog.java +++ b/wizards/com/sun/star/wizards/web/status/ErrorLog.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ErrorLog.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/status/ErrorReporter.java b/wizards/com/sun/star/wizards/web/status/ErrorReporter.java index 327e6384d754..4d967e24f3df 100644 --- a/wizards/com/sun/star/wizards/web/status/ErrorReporter.java +++ b/wizards/com/sun/star/wizards/web/status/ErrorReporter.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ErrorReporter.java,v $ - * - * $Revision: 1.2.412.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/status/LogTaskListener.java b/wizards/com/sun/star/wizards/web/status/LogTaskListener.java index 27bf9aa62dfb..d4109da3406f 100644 --- a/wizards/com/sun/star/wizards/web/status/LogTaskListener.java +++ b/wizards/com/sun/star/wizards/web/status/LogTaskListener.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: LogTaskListener.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/status/Task.java b/wizards/com/sun/star/wizards/web/status/Task.java index 5b3e8ddb7a88..0fb0bf494286 100644 --- a/wizards/com/sun/star/wizards/web/status/Task.java +++ b/wizards/com/sun/star/wizards/web/status/Task.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: Task.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/status/TaskEvent.java b/wizards/com/sun/star/wizards/web/status/TaskEvent.java index fdde3287ebe3..dd1d06c1938a 100644 --- a/wizards/com/sun/star/wizards/web/status/TaskEvent.java +++ b/wizards/com/sun/star/wizards/web/status/TaskEvent.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TaskEvent.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/com/sun/star/wizards/web/status/TaskListener.java b/wizards/com/sun/star/wizards/web/status/TaskListener.java index 09af02e19ce8..63745bf83a62 100644 --- a/wizards/com/sun/star/wizards/web/status/TaskListener.java +++ b/wizards/com/sun/star/wizards/web/status/TaskListener.java @@ -3,14 +3,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TaskListener.java,v $ - * - * $Revision: 1.3.192.1 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/config/makefile.mk b/wizards/source/config/makefile.mk index 6ec425382638..42ec8d468782 100644 --- a/wizards/source/config/makefile.mk +++ b/wizards/source/config/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/configshare/makefile.mk b/wizards/source/configshare/makefile.mk index 3527bbc9723e..c86f66fb8a76 100644 --- a/wizards/source/configshare/makefile.mk +++ b/wizards/source/configshare/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/depot/makefile.mk b/wizards/source/depot/makefile.mk index 8fe2fdf9a1c7..2049b6a173a0 100644 --- a/wizards/source/depot/makefile.mk +++ b/wizards/source/depot/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/euro/euro.src b/wizards/source/euro/euro.src index 227c11203792..257632f8bbb4 100644 --- a/wizards/source/euro/euro.src +++ b/wizards/source/euro/euro.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: euro.src,v $ - * $Revision: 1.64 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/euro/makefile.mk b/wizards/source/euro/makefile.mk index e353473fcd1d..f4b4c22306f5 100644 --- a/wizards/source/euro/makefile.mk +++ b/wizards/source/euro/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/formwizard/dbwizres.src b/wizards/source/formwizard/dbwizres.src index d3b04cd8593d..065008c40cec 100644 --- a/wizards/source/formwizard/dbwizres.src +++ b/wizards/source/formwizard/dbwizres.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dbwizres.src,v $ - * $Revision: 1.80 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/formwizard/makefile.mk b/wizards/source/formwizard/makefile.mk index 25f4f947fdd8..3a5ec422625f 100644 --- a/wizards/source/formwizard/makefile.mk +++ b/wizards/source/formwizard/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/gimmicks/makefile.mk b/wizards/source/gimmicks/makefile.mk index 06be581395ba..de083f52e88d 100644 --- a/wizards/source/gimmicks/makefile.mk +++ b/wizards/source/gimmicks/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/imagelists/imagelists.src b/wizards/source/imagelists/imagelists.src index 93efc1cbbc2f..830c365ca4e4 100644 --- a/wizards/source/imagelists/imagelists.src +++ b/wizards/source/imagelists/imagelists.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: imagelists.src,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/imagelists/makefile.mk b/wizards/source/imagelists/makefile.mk index a006130fcdba..163377de392b 100644 --- a/wizards/source/imagelists/makefile.mk +++ b/wizards/source/imagelists/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/importwizard/importwi.src b/wizards/source/importwizard/importwi.src index 5031b8471b2d..daddcc284642 100644 --- a/wizards/source/importwizard/importwi.src +++ b/wizards/source/importwizard/importwi.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: importwi.src,v $ - * $Revision: 1.54 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/importwizard/makefile.mk b/wizards/source/importwizard/makefile.mk index f5924895f5e2..5c7ef4ce916a 100644 --- a/wizards/source/importwizard/makefile.mk +++ b/wizards/source/importwizard/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/launcher/makefile.mk b/wizards/source/launcher/makefile.mk index 6efbcc54792e..4bd474242f4b 100644 --- a/wizards/source/launcher/makefile.mk +++ b/wizards/source/launcher/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/schedule/makefile.mk b/wizards/source/schedule/makefile.mk index da7e54138366..f5c549b878ce 100644 --- a/wizards/source/schedule/makefile.mk +++ b/wizards/source/schedule/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/schedule/schedule.src b/wizards/source/schedule/schedule.src index 4aa8a9c61186..beabe83cf2a4 100644 --- a/wizards/source/schedule/schedule.src +++ b/wizards/source/schedule/schedule.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: schedule.src,v $ - * $Revision: 1.47 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/standard/makefile.mk b/wizards/source/standard/makefile.mk index f9fb96b8d98e..7ffef2e63789 100644 --- a/wizards/source/standard/makefile.mk +++ b/wizards/source/standard/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/template/makefile.mk b/wizards/source/template/makefile.mk index 6acd9a7830ad..82a30d0d25a8 100644 --- a/wizards/source/template/makefile.mk +++ b/wizards/source/template/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/template/template.src b/wizards/source/template/template.src index 553fc617e0e2..61e57f5cc053 100644 --- a/wizards/source/template/template.src +++ b/wizards/source/template/template.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: template.src,v $ - * $Revision: 1.49 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/tools/makefile.mk b/wizards/source/tools/makefile.mk index d4bd383d7388..801db34b4c3f 100644 --- a/wizards/source/tools/makefile.mk +++ b/wizards/source/tools/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/tutorials/makefile.mk b/wizards/source/tutorials/makefile.mk index d6152f434463..a5f673b1d3f0 100644 --- a/wizards/source/tutorials/makefile.mk +++ b/wizards/source/tutorials/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/webwizard/makefile.mk b/wizards/source/webwizard/makefile.mk index bc15fac65386..415e08bf9475 100644 --- a/wizards/source/webwizard/makefile.mk +++ b/wizards/source/webwizard/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/source/webwizard/webwizar.src b/wizards/source/webwizard/webwizar.src index 71aa805455ca..19d77d89f4a9 100644 --- a/wizards/source/webwizard/webwizar.src +++ b/wizards/source/webwizard/webwizar.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: webwizar.src,v $ - * $Revision: 1.24 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/util/hidother.src b/wizards/util/hidother.src index 755878ee7a5c..7f706a69b657 100644 --- a/wizards/util/hidother.src +++ b/wizards/util/hidother.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: hidother.src,v $ - * $Revision: 1.19 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/util/makefile.mk b/wizards/util/makefile.mk index 25f7d0ff6e08..16cf678b4281 100644 --- a/wizards/util/makefile.mk +++ b/wizards/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.10 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/wizards/util/target.pmk b/wizards/util/target.pmk index fb937fe0dde9..c44093461234 100644 --- a/wizards/util/target.pmk +++ b/wizards/util/target.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: target.pmk,v $ -# -# $Revision: 1.11 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/makefile.mk b/xmlsecurity/inc/makefile.mk index 00bf3620ef7e..e3ee4509ae73 100644 --- a/xmlsecurity/inc/makefile.mk +++ b/xmlsecurity/inc/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.3 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/pch/precompiled_xmlsecurity.cxx b/xmlsecurity/inc/pch/precompiled_xmlsecurity.cxx index d4c295acf90e..42b0254306c2 100644 --- a/xmlsecurity/inc/pch/precompiled_xmlsecurity.cxx +++ b/xmlsecurity/inc/pch/precompiled_xmlsecurity.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_xmlsecurity.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx b/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx index 25a82577b0e5..f2701c727e99 100644 --- a/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx +++ b/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: precompiled_xmlsecurity.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/biginteger.hxx b/xmlsecurity/inc/xmlsecurity/biginteger.hxx index e181eb122ab9..b77c7c3bb8c6 100644 --- a/xmlsecurity/inc/xmlsecurity/biginteger.hxx +++ b/xmlsecurity/inc/xmlsecurity/biginteger.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: biginteger.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/certificatechooser.hxx b/xmlsecurity/inc/xmlsecurity/certificatechooser.hxx index 725d23b27874..1f822e8df096 100644 --- a/xmlsecurity/inc/xmlsecurity/certificatechooser.hxx +++ b/xmlsecurity/inc/xmlsecurity/certificatechooser.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificatechooser.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx b/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx index 4910e7cc90dc..10727ad63d47 100644 --- a/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx +++ b/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificateviewer.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/certvalidity.hxx b/xmlsecurity/inc/xmlsecurity/certvalidity.hxx index 4a19335047be..20fb05579029 100644 --- a/xmlsecurity/inc/xmlsecurity/certvalidity.hxx +++ b/xmlsecurity/inc/xmlsecurity/certvalidity.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certvalidity.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/digitalsignaturesdialog.hxx b/xmlsecurity/inc/xmlsecurity/digitalsignaturesdialog.hxx index a6e4afac417f..60093fc37137 100644 --- a/xmlsecurity/inc/xmlsecurity/digitalsignaturesdialog.hxx +++ b/xmlsecurity/inc/xmlsecurity/digitalsignaturesdialog.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: digitalsignaturesdialog.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/documentsignaturehelper.hxx b/xmlsecurity/inc/xmlsecurity/documentsignaturehelper.hxx index 6fb4ac80badd..14d6a160bd01 100644 --- a/xmlsecurity/inc/xmlsecurity/documentsignaturehelper.hxx +++ b/xmlsecurity/inc/xmlsecurity/documentsignaturehelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: documentsignaturehelper.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/global.hrc b/xmlsecurity/inc/xmlsecurity/global.hrc index ef59a9dafa01..57a9a95e88b3 100644 --- a/xmlsecurity/inc/xmlsecurity/global.hrc +++ b/xmlsecurity/inc/xmlsecurity/global.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: global.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx b/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx index 88dd1b9a592d..2b4b57c00425 100644 --- a/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx +++ b/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macrosecurity.hxx,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/sigstruct.hxx b/xmlsecurity/inc/xmlsecurity/sigstruct.hxx index deb2aeef3c7f..345380835d70 100644 --- a/xmlsecurity/inc/xmlsecurity/sigstruct.hxx +++ b/xmlsecurity/inc/xmlsecurity/sigstruct.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: sigstruct.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/stbcontrl.hxx b/xmlsecurity/inc/xmlsecurity/stbcontrl.hxx index e4a2bd322296..b10465db2208 100644 --- a/xmlsecurity/inc/xmlsecurity/stbcontrl.hxx +++ b/xmlsecurity/inc/xmlsecurity/stbcontrl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: stbcontrl.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/warnings.hxx b/xmlsecurity/inc/xmlsecurity/warnings.hxx index 10a3c8d97323..a8f0b033616d 100644 --- a/xmlsecurity/inc/xmlsecurity/warnings.hxx +++ b/xmlsecurity/inc/xmlsecurity/warnings.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: warnings.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx b/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx index 53455b652fa5..4869b4728567 100644 --- a/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx +++ b/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignaturehelper.hxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/component/certificatecontainer.cxx b/xmlsecurity/source/component/certificatecontainer.cxx index dc310d389084..d490e500b2c3 100644 --- a/xmlsecurity/source/component/certificatecontainer.cxx +++ b/xmlsecurity/source/component/certificatecontainer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificatecontainer.cxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/component/certificatecontainer.hxx b/xmlsecurity/source/component/certificatecontainer.hxx index 6ff63fab0257..3bf11cd55d92 100644 --- a/xmlsecurity/source/component/certificatecontainer.hxx +++ b/xmlsecurity/source/component/certificatecontainer.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificatecontainer.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/component/documentdigitalsignatures.cxx b/xmlsecurity/source/component/documentdigitalsignatures.cxx index 5882bdbafd4a..ff7de666036d 100644 --- a/xmlsecurity/source/component/documentdigitalsignatures.cxx +++ b/xmlsecurity/source/component/documentdigitalsignatures.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: documentdigitalsignatures.cxx,v $ - * $Revision: 1.32 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/component/documentdigitalsignatures.hxx b/xmlsecurity/source/component/documentdigitalsignatures.hxx index 35d22c62ca6a..1102c65b43cb 100644 --- a/xmlsecurity/source/component/documentdigitalsignatures.hxx +++ b/xmlsecurity/source/component/documentdigitalsignatures.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: documentdigitalsignatures.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/component/makefile.mk b/xmlsecurity/source/component/makefile.mk index 2aeb715b7743..9ad3db7208cc 100644 --- a/xmlsecurity/source/component/makefile.mk +++ b/xmlsecurity/source/component/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/component/registerservices.cxx b/xmlsecurity/source/component/registerservices.cxx index 061a9dbf70bd..653b1038ba71 100644 --- a/xmlsecurity/source/component/registerservices.cxx +++ b/xmlsecurity/source/component/registerservices.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: registerservices.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/component/warnbox.src b/xmlsecurity/source/component/warnbox.src index 954b156287eb..dd55cad7558b 100644 --- a/xmlsecurity/source/component/warnbox.src +++ b/xmlsecurity/source/component/warnbox.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: warnbox.src,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/certificatechooser.cxx b/xmlsecurity/source/dialogs/certificatechooser.cxx index 1da33b586fe7..5a34945c639b 100644 --- a/xmlsecurity/source/dialogs/certificatechooser.cxx +++ b/xmlsecurity/source/dialogs/certificatechooser.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificatechooser.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/certificatechooser.src b/xmlsecurity/source/dialogs/certificatechooser.src index 896ccb103bbf..13ce734e46df 100644 --- a/xmlsecurity/source/dialogs/certificatechooser.src +++ b/xmlsecurity/source/dialogs/certificatechooser.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificatechooser.src,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/certificateviewer.cxx b/xmlsecurity/source/dialogs/certificateviewer.cxx index 765649ba3bf7..980bceec97c3 100644 --- a/xmlsecurity/source/dialogs/certificateviewer.cxx +++ b/xmlsecurity/source/dialogs/certificateviewer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificateviewer.cxx,v $ - * $Revision: 1.25 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/certificateviewer.src b/xmlsecurity/source/dialogs/certificateviewer.src index d2c812551c86..3a9466aeb9a8 100644 --- a/xmlsecurity/source/dialogs/certificateviewer.src +++ b/xmlsecurity/source/dialogs/certificateviewer.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificateviewer.src,v $ - * $Revision: 1.15 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/dialogs.hrc b/xmlsecurity/source/dialogs/dialogs.hrc index f62a2a422eaf..b30eb9198e32 100644 --- a/xmlsecurity/source/dialogs/dialogs.hrc +++ b/xmlsecurity/source/dialogs/dialogs.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: dialogs.hrc,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx index 31005a64f091..cc62f883360c 100644 --- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx +++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: digitalsignaturesdialog.cxx,v $ - * $Revision: 1.36 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.hrc b/xmlsecurity/source/dialogs/digitalsignaturesdialog.hrc index 19054bd0399b..08343bfbb29f 100644 --- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.hrc +++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.hrc @@ -1,28 +1,28 @@ /************************************************************************* * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ #if ! defined INCLUDED_DIGITALSIGNATURESDIALOG_HRC diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.src b/xmlsecurity/source/dialogs/digitalsignaturesdialog.src index 016014fbb582..e0cada1d0d5c 100644 --- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.src +++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: digitalsignaturesdialog.src,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/helpids.hrc b/xmlsecurity/source/dialogs/helpids.hrc index c0f9f4cd3dcb..6456dddb47b9 100644 --- a/xmlsecurity/source/dialogs/helpids.hrc +++ b/xmlsecurity/source/dialogs/helpids.hrc @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: helpids.hrc,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/macrosecurity.cxx b/xmlsecurity/source/dialogs/macrosecurity.cxx index 83e2ea82a303..0bee4e2011e7 100644 --- a/xmlsecurity/source/dialogs/macrosecurity.cxx +++ b/xmlsecurity/source/dialogs/macrosecurity.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macrosecurity.cxx,v $ - * $Revision: 1.31 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/macrosecurity.src b/xmlsecurity/source/dialogs/macrosecurity.src index 7ab81e6d23be..0683606f500c 100644 --- a/xmlsecurity/source/dialogs/macrosecurity.src +++ b/xmlsecurity/source/dialogs/macrosecurity.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: macrosecurity.src,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/makefile.mk b/xmlsecurity/source/dialogs/makefile.mk index 0f214a0c89ef..4cead130d887 100644 --- a/xmlsecurity/source/dialogs/makefile.mk +++ b/xmlsecurity/source/dialogs/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.8 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/resourcemanager.cxx b/xmlsecurity/source/dialogs/resourcemanager.cxx index f1b47c3f0f0d..bfc4cb92fd20 100644 --- a/xmlsecurity/source/dialogs/resourcemanager.cxx +++ b/xmlsecurity/source/dialogs/resourcemanager.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: resourcemanager.cxx,v $ - * $Revision: 1.14 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/resourcemanager.hxx b/xmlsecurity/source/dialogs/resourcemanager.hxx index 0525010f0abe..9ca06d17d0b5 100644 --- a/xmlsecurity/source/dialogs/resourcemanager.hxx +++ b/xmlsecurity/source/dialogs/resourcemanager.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: resourcemanager.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/stbcontrl.cxx b/xmlsecurity/source/dialogs/stbcontrl.cxx index bc5747ed3c88..cc18373f04d8 100644 --- a/xmlsecurity/source/dialogs/stbcontrl.cxx +++ b/xmlsecurity/source/dialogs/stbcontrl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: stbcontrl.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/warnings.cxx b/xmlsecurity/source/dialogs/warnings.cxx index cbc5b90cec59..b92266f427d7 100644 --- a/xmlsecurity/source/dialogs/warnings.cxx +++ b/xmlsecurity/source/dialogs/warnings.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: warnings.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/dialogs/warnings.src b/xmlsecurity/source/dialogs/warnings.src index 215c80c35790..2e0e697dae1f 100644 --- a/xmlsecurity/source/dialogs/warnings.src +++ b/xmlsecurity/source/dialogs/warnings.src @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: warnings.src,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/buffernode.cxx b/xmlsecurity/source/framework/buffernode.cxx index 1b8709a408b6..5e06d3fbc3b6 100644 --- a/xmlsecurity/source/framework/buffernode.cxx +++ b/xmlsecurity/source/framework/buffernode.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: buffernode.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/buffernode.hxx b/xmlsecurity/source/framework/buffernode.hxx index ca903b7e740e..ec5d071d234b 100644 --- a/xmlsecurity/source/framework/buffernode.hxx +++ b/xmlsecurity/source/framework/buffernode.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: buffernode.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/decryptorimpl.cxx b/xmlsecurity/source/framework/decryptorimpl.cxx index 967eaa6f5e54..a2fcafc1ca4b 100644 --- a/xmlsecurity/source/framework/decryptorimpl.cxx +++ b/xmlsecurity/source/framework/decryptorimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: decryptorimpl.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/decryptorimpl.hxx b/xmlsecurity/source/framework/decryptorimpl.hxx index 53f90698bb6c..99aa2822667c 100644 --- a/xmlsecurity/source/framework/decryptorimpl.hxx +++ b/xmlsecurity/source/framework/decryptorimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: decryptorimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/elementcollector.cxx b/xmlsecurity/source/framework/elementcollector.cxx index 4e2b1d4ecb40..7f720bb86250 100644 --- a/xmlsecurity/source/framework/elementcollector.cxx +++ b/xmlsecurity/source/framework/elementcollector.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: elementcollector.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/elementcollector.hxx b/xmlsecurity/source/framework/elementcollector.hxx index f8332f32d4bd..acef68b3bc8e 100644 --- a/xmlsecurity/source/framework/elementcollector.hxx +++ b/xmlsecurity/source/framework/elementcollector.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: elementcollector.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/elementmark.cxx b/xmlsecurity/source/framework/elementmark.cxx index d69470bf3f60..3185d5e954dc 100644 --- a/xmlsecurity/source/framework/elementmark.cxx +++ b/xmlsecurity/source/framework/elementmark.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: elementmark.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/elementmark.hxx b/xmlsecurity/source/framework/elementmark.hxx index 7aa516037724..0c08357867b4 100644 --- a/xmlsecurity/source/framework/elementmark.hxx +++ b/xmlsecurity/source/framework/elementmark.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: elementmark.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/encryptionengine.cxx b/xmlsecurity/source/framework/encryptionengine.cxx index 4dbfe8cc3589..53e0c295a192 100644 --- a/xmlsecurity/source/framework/encryptionengine.cxx +++ b/xmlsecurity/source/framework/encryptionengine.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: encryptionengine.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/encryptionengine.hxx b/xmlsecurity/source/framework/encryptionengine.hxx index 2e84f50aea69..375fcc42b239 100644 --- a/xmlsecurity/source/framework/encryptionengine.hxx +++ b/xmlsecurity/source/framework/encryptionengine.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: encryptionengine.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/encryptorimpl.cxx b/xmlsecurity/source/framework/encryptorimpl.cxx index 80e4c5e854bb..e2ba215e21ff 100644 --- a/xmlsecurity/source/framework/encryptorimpl.cxx +++ b/xmlsecurity/source/framework/encryptorimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: encryptorimpl.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/encryptorimpl.hxx b/xmlsecurity/source/framework/encryptorimpl.hxx index 0902dfdd2018..e80540ee9066 100644 --- a/xmlsecurity/source/framework/encryptorimpl.hxx +++ b/xmlsecurity/source/framework/encryptorimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: encryptorimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/makefile.mk b/xmlsecurity/source/framework/makefile.mk index 40695739b7b1..54c1fb507df4 100644 --- a/xmlsecurity/source/framework/makefile.mk +++ b/xmlsecurity/source/framework/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.4 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx index 806b1bf3f880..d5779e623522 100644 --- a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx +++ b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: saxeventkeeperimpl.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx index 38a070a4f95a..4afe43852f2d 100644 --- a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx +++ b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: saxeventkeeperimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/securityengine.cxx b/xmlsecurity/source/framework/securityengine.cxx index eb205bbd7d71..eac5e4189565 100644 --- a/xmlsecurity/source/framework/securityengine.cxx +++ b/xmlsecurity/source/framework/securityengine.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityengine.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/securityengine.hxx b/xmlsecurity/source/framework/securityengine.hxx index 0e25576d2b40..c5c9e84977ea 100644 --- a/xmlsecurity/source/framework/securityengine.hxx +++ b/xmlsecurity/source/framework/securityengine.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityengine.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/signaturecreatorimpl.cxx b/xmlsecurity/source/framework/signaturecreatorimpl.cxx index 049cc03575d8..761b981237f6 100644 --- a/xmlsecurity/source/framework/signaturecreatorimpl.cxx +++ b/xmlsecurity/source/framework/signaturecreatorimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signaturecreatorimpl.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/signaturecreatorimpl.hxx b/xmlsecurity/source/framework/signaturecreatorimpl.hxx index 2582b7506ec1..db25bf10f893 100644 --- a/xmlsecurity/source/framework/signaturecreatorimpl.hxx +++ b/xmlsecurity/source/framework/signaturecreatorimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signaturecreatorimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/signatureengine.cxx b/xmlsecurity/source/framework/signatureengine.cxx index 160fcd8c30ca..51fbdb259667 100644 --- a/xmlsecurity/source/framework/signatureengine.cxx +++ b/xmlsecurity/source/framework/signatureengine.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signatureengine.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/signatureengine.hxx b/xmlsecurity/source/framework/signatureengine.hxx index c28c6c0d36e3..b36cd6aa6442 100644 --- a/xmlsecurity/source/framework/signatureengine.hxx +++ b/xmlsecurity/source/framework/signatureengine.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signatureengine.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/signatureverifierimpl.cxx b/xmlsecurity/source/framework/signatureverifierimpl.cxx index 359139818eb0..535944ef8415 100644 --- a/xmlsecurity/source/framework/signatureverifierimpl.cxx +++ b/xmlsecurity/source/framework/signatureverifierimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signatureverifierimpl.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/signatureverifierimpl.hxx b/xmlsecurity/source/framework/signatureverifierimpl.hxx index 232a18738680..68b4fff245d2 100644 --- a/xmlsecurity/source/framework/signatureverifierimpl.hxx +++ b/xmlsecurity/source/framework/signatureverifierimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signatureverifierimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.cxx b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.cxx index 40727e0aa6b4..ec978dc488e1 100644 --- a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.cxx +++ b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlencryptiontemplateimpl.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx index 1155e7108856..af2f7ab93028 100644 --- a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx +++ b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlencryptiontemplateimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.cxx b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.cxx index 6cbb14360c6b..6b50d7b017ed 100644 --- a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.cxx +++ b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignaturetemplateimpl.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx index 3e01068626e9..c4e33fdfe972 100644 --- a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx +++ b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignaturetemplateimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/framework/xsec_framework.cxx b/xmlsecurity/source/framework/xsec_framework.cxx index 7ec12208f172..57eb78028df3 100644 --- a/xmlsecurity/source/framework/xsec_framework.cxx +++ b/xmlsecurity/source/framework/xsec_framework.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsec_framework.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/documentsignaturehelper.cxx b/xmlsecurity/source/helper/documentsignaturehelper.cxx index ca2cfe941f4d..d699787ba451 100644 --- a/xmlsecurity/source/helper/documentsignaturehelper.cxx +++ b/xmlsecurity/source/helper/documentsignaturehelper.cxx @@ -1,31 +1,28 @@ /************************************************************************* * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: documentsignaturehelper.cxx,v $ - * $Revision: 1.11 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove diff --git a/xmlsecurity/source/helper/makefile.mk b/xmlsecurity/source/helper/makefile.mk index adc85e92f197..6b5a6a525e48 100644 --- a/xmlsecurity/source/helper/makefile.mk +++ b/xmlsecurity/source/helper/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xmlsignaturehelper.cxx b/xmlsecurity/source/helper/xmlsignaturehelper.cxx index a5890544be00..dd3ae00f69c1 100644 --- a/xmlsecurity/source/helper/xmlsignaturehelper.cxx +++ b/xmlsecurity/source/helper/xmlsignaturehelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignaturehelper.cxx,v $ - * $Revision: 1.29 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xmlsignaturehelper2.cxx b/xmlsecurity/source/helper/xmlsignaturehelper2.cxx index 9baa6d7061c4..4c0c847b8d54 100644 --- a/xmlsecurity/source/helper/xmlsignaturehelper2.cxx +++ b/xmlsecurity/source/helper/xmlsignaturehelper2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignaturehelper2.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xmlsignaturehelper2.hxx b/xmlsecurity/source/helper/xmlsignaturehelper2.hxx index d386b1dbbf7a..84b45d02ba41 100644 --- a/xmlsecurity/source/helper/xmlsignaturehelper2.hxx +++ b/xmlsecurity/source/helper/xmlsignaturehelper2.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignaturehelper2.hxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xsecctl.cxx b/xmlsecurity/source/helper/xsecctl.cxx index 159227d43fcc..bdcb0658af1e 100644 --- a/xmlsecurity/source/helper/xsecctl.cxx +++ b/xmlsecurity/source/helper/xsecctl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsecctl.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xsecctl.hxx b/xmlsecurity/source/helper/xsecctl.hxx index 344d41bc01ad..4a715105d044 100644 --- a/xmlsecurity/source/helper/xsecctl.hxx +++ b/xmlsecurity/source/helper/xsecctl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsecctl.hxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xsecparser.cxx b/xmlsecurity/source/helper/xsecparser.cxx index c780164ce9c5..1546acbdb4ef 100644 --- a/xmlsecurity/source/helper/xsecparser.cxx +++ b/xmlsecurity/source/helper/xsecparser.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsecparser.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xsecparser.hxx b/xmlsecurity/source/helper/xsecparser.hxx index 5d3b5e415dbc..8de771569191 100644 --- a/xmlsecurity/source/helper/xsecparser.hxx +++ b/xmlsecurity/source/helper/xsecparser.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsecparser.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xsecsign.cxx b/xmlsecurity/source/helper/xsecsign.cxx index 2c2883cedda1..774a07cb28f2 100644 --- a/xmlsecurity/source/helper/xsecsign.cxx +++ b/xmlsecurity/source/helper/xsecsign.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsecsign.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/helper/xsecverify.cxx b/xmlsecurity/source/helper/xsecverify.cxx index 27c7305d3730..82210fdc91b3 100644 --- a/xmlsecurity/source/helper/xsecverify.cxx +++ b/xmlsecurity/source/helper/xsecverify.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsecverify.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/biginteger.cxx b/xmlsecurity/source/xmlsec/biginteger.cxx index 35545bbe0d3c..e3947671ae38 100644 --- a/xmlsecurity/source/xmlsec/biginteger.cxx +++ b/xmlsecurity/source/xmlsec/biginteger.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: biginteger.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.cxx b/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.cxx index 18e33fdaec5b..19dfeb9c08a7 100644 --- a/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.cxx +++ b/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificateextension_xmlsecimpl.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx index 3866a5c15efd..26d5e413307c 100644 --- a/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx +++ b/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certificateextension_xmlsecimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/certvalidity.cxx b/xmlsecurity/source/xmlsec/certvalidity.cxx index 275899b3ad1e..b92fe3b1214e 100644 --- a/xmlsecurity/source/xmlsec/certvalidity.cxx +++ b/xmlsecurity/source/xmlsec/certvalidity.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certvalidity.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/errorcallback.cxx b/xmlsecurity/source/xmlsec/errorcallback.cxx index 7a1795ee35e9..2c55bf1a4fad 100644 --- a/xmlsecurity/source/xmlsec/errorcallback.cxx +++ b/xmlsecurity/source/xmlsec/errorcallback.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: errorcallback.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/errorcallback.hxx b/xmlsecurity/source/xmlsec/errorcallback.hxx index e443528bd933..8c219a5396fd 100644 --- a/xmlsecurity/source/xmlsec/errorcallback.hxx +++ b/xmlsecurity/source/xmlsec/errorcallback.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: errorcallback.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/makefile.mk b/xmlsecurity/source/xmlsec/makefile.mk index 233b5c370620..1127419e12c8 100644 --- a/xmlsecurity/source/xmlsec/makefile.mk +++ b/xmlsecurity/source/xmlsec/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.12 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/makefile.mk b/xmlsecurity/source/xmlsec/mscrypt/makefile.mk index 100ade634e13..fd02aa7767fa 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/makefile.mk +++ b/xmlsecurity/source/xmlsec/mscrypt/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/oid.hxx b/xmlsecurity/source/xmlsec/mscrypt/oid.hxx index f2466e1c5803..05447254175c 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/oid.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/oid.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: oid.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx index 1b35d2b968bc..e84de0698016 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityenvironment_mscryptimpl.cxx,v $ - * $Revision: 1.18 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx index f1441184602f..a97c96b6c3d3 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityenvironment_mscryptimpl.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.cxx index 25c091d90b4b..43c0bc53cb22 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: seinitializer_mscryptimpl.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx index e67b8db1f3ef..8acd41dfa539 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: seinitializer_mscryptimpl.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx index e01fe5109190..d746f6831e4a 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: x509certificate_mscryptimpl.cxx,v $ - * $Revision: 1.12 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx index d70a38a67fc8..209a8a6ce10d 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: x509certificate_mscryptimpl.hxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.cxx index dd54cbaf0f80..e30eabfb279e 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlencryption_mscryptimpl.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx index 1f8cfebcc35b..fdc3d0ff41f8 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlencryption_mscryptimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlencryption_mscryptimpl.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.cxx index 49ebb03f154e..034bb70c591a 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsecuritycontext_mscryptimpl.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx index efcfd1333fc9..b6ad409ad4be 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsecuritycontext_mscryptimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.cxx index 11325d794404..80db62742f24 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignature_mscryptimpl.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx index 2102b4cc73fc..5f5178773221 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignature_mscryptimpl.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/mscrypt/xsec_mscrypt.cxx b/xmlsecurity/source/xmlsec/mscrypt/xsec_mscrypt.cxx index 7cb2c281e7f1..87b7bf035cc5 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/xsec_mscrypt.cxx +++ b/xmlsecurity/source/xmlsec/mscrypt/xsec_mscrypt.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsec_mscrypt.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/makefile.mk b/xmlsecurity/source/xmlsec/nss/makefile.mk index 94fdfd96e76c..df5bb7131a55 100644 --- a/xmlsecurity/source/xmlsec/nss/makefile.mk +++ b/xmlsecurity/source/xmlsec/nss/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.9 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx index 90779823eca3..0f8cfb744e5d 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityenvironment_nssimpl.cxx,v $ - * $Revision: 1.23 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx index d6586794bea5..8b2192a00b1f 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: securityenvironment_nssimpl.hxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx index 3255a2d5bf58..4aad18fa2c10 100644 --- a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: seinitializer_nssimpl.cxx,v $ - * $Revision: 1.22 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx index 7796a27a4146..70075adc84e3 100644 --- a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: seinitializer_nssimpl.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx index d6b5e189330e..287dce6408ef 100644 --- a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: x509certificate_nssimpl.cxx,v $ - * $Revision: 1.11 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx index bb16bcc7fb6e..c486cb4a9e8c 100644 --- a/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: x509certificate_nssimpl.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx index c84dd4d9cbc5..65da3caaf174 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlencryption_nssimpl.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx index f400f2bd421e..42484532fcae 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlencryption_nssimpl.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.cxx index 2c504c6b6c33..ca881d0ee92b 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsecuritycontext_nssimpl.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx index fb8694c3c49b..b75f2d0c0c72 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsecuritycontext_nssimpl.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx index 4199052f1f91..5f03b54580df 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignature_nssimpl.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx index 9a95d480d59b..44ed88b0a1bf 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlsignature_nssimpl.hxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/nss/xsec_nss.cxx b/xmlsecurity/source/xmlsec/nss/xsec_nss.cxx index e21e7d4b1d49..344f76bf3e5d 100644 --- a/xmlsecurity/source/xmlsec/nss/xsec_nss.cxx +++ b/xmlsecurity/source/xmlsec/nss/xsec_nss.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsec_nss.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/saxhelper.cxx b/xmlsecurity/source/xmlsec/saxhelper.cxx index 61a40d504c83..6e381334136e 100644 --- a/xmlsecurity/source/xmlsec/saxhelper.cxx +++ b/xmlsecurity/source/xmlsec/saxhelper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: saxhelper.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/saxhelper.hxx b/xmlsecurity/source/xmlsec/saxhelper.hxx index 4d8f2d7a167c..fab6157b6922 100644 --- a/xmlsecurity/source/xmlsec/saxhelper.hxx +++ b/xmlsecurity/source/xmlsec/saxhelper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: saxhelper.hxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx index 6994c102f64f..341f66b9ef1f 100644 --- a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx +++ b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmldocumentwrapper_xmlsecimpl.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx index 4f6dbe3a53e6..d2051fcf1406 100644 --- a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx +++ b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmldocumentwrapper_xmlsecimpl.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx index 1158aa359661..f9de04c16d5f 100644 --- a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx +++ b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlelementwrapper_xmlsecimpl.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx index 7ffac25bf16f..e90513266ec5 100644 --- a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx +++ b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlelementwrapper_xmlsecimpl.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/xmlstreamio.cxx b/xmlsecurity/source/xmlsec/xmlstreamio.cxx index 05c5159c335b..d5ba439467fe 100644 --- a/xmlsecurity/source/xmlsec/xmlstreamio.cxx +++ b/xmlsecurity/source/xmlsec/xmlstreamio.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlstreamio.cxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/xmlstreamio.hxx b/xmlsecurity/source/xmlsec/xmlstreamio.hxx index 52a20d83c857..3cb2e33528ab 100644 --- a/xmlsecurity/source/xmlsec/xmlstreamio.hxx +++ b/xmlsecurity/source/xmlsec/xmlstreamio.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xmlstreamio.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/source/xmlsec/xsec_xmlsec.cxx b/xmlsecurity/source/xmlsec/xsec_xmlsec.cxx index 067c3d37ef0c..60a0dbe097a3 100644 --- a/xmlsecurity/source/xmlsec/xsec_xmlsec.cxx +++ b/xmlsecurity/source/xmlsec/xsec_xmlsec.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: xsec_xmlsec.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/JavaFlatFilter.java b/xmlsecurity/tools/demo/JavaFlatFilter.java index e0ebb79dc32f..331ace804072 100644 --- a/xmlsecurity/tools/demo/JavaFlatFilter.java +++ b/xmlsecurity/tools/demo/JavaFlatFilter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: JavaFlatFilter.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/makefile.mk b/xmlsecurity/tools/demo/makefile.mk index 41f80da9c8ad..5dba00d23f40 100644 --- a/xmlsecurity/tools/demo/makefile.mk +++ b/xmlsecurity/tools/demo/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.14 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/mozprofile.cxx b/xmlsecurity/tools/demo/mozprofile.cxx index e16e4b13020d..928e84fd61bb 100644 --- a/xmlsecurity/tools/demo/mozprofile.cxx +++ b/xmlsecurity/tools/demo/mozprofile.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: mozprofile.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/multisigdemo.cxx b/xmlsecurity/tools/demo/multisigdemo.cxx index 4ca862ce14ef..ff8142f9252d 100644 --- a/xmlsecurity/tools/demo/multisigdemo.cxx +++ b/xmlsecurity/tools/demo/multisigdemo.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: multisigdemo.cxx,v $ - * $Revision: 1.9 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/performance.cxx b/xmlsecurity/tools/demo/performance.cxx index e9097bb8fa59..061091611de7 100644 --- a/xmlsecurity/tools/demo/performance.cxx +++ b/xmlsecurity/tools/demo/performance.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: performance.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/signdemo.cxx b/xmlsecurity/tools/demo/signdemo.cxx index 8cdd50eb551a..3cfad147beb3 100644 --- a/xmlsecurity/tools/demo/signdemo.cxx +++ b/xmlsecurity/tools/demo/signdemo.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signdemo.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/util.cxx b/xmlsecurity/tools/demo/util.cxx index dec0241b3db5..a124edfd523b 100644 --- a/xmlsecurity/tools/demo/util.cxx +++ b/xmlsecurity/tools/demo/util.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: util.cxx,v $ - * $Revision: 1.13 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/util.hxx b/xmlsecurity/tools/demo/util.hxx index 818b4fb9eaa6..46abbc5b7e21 100644 --- a/xmlsecurity/tools/demo/util.hxx +++ b/xmlsecurity/tools/demo/util.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: util.hxx,v $ - * $Revision: 1.7 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/util2.cxx b/xmlsecurity/tools/demo/util2.cxx index eeb5e0f32c62..955cb94a0474 100644 --- a/xmlsecurity/tools/demo/util2.cxx +++ b/xmlsecurity/tools/demo/util2.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: util2.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/demo/verifydemo.cxx b/xmlsecurity/tools/demo/verifydemo.cxx index 8ebb9be086e1..2ea9c8d94a94 100644 --- a/xmlsecurity/tools/demo/verifydemo.cxx +++ b/xmlsecurity/tools/demo/verifydemo.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: verifydemo.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/certmngr.cxx b/xmlsecurity/tools/standalone/csfit/certmngr.cxx index 9a088c504c9e..56dc1b5ae1ae 100644 --- a/xmlsecurity/tools/standalone/csfit/certmngr.cxx +++ b/xmlsecurity/tools/standalone/csfit/certmngr.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: certmngr.cxx,v $ - * $Revision: 1.8 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/decrypter.cxx b/xmlsecurity/tools/standalone/csfit/decrypter.cxx index d6e427f514da..9c2422c19bb5 100644 --- a/xmlsecurity/tools/standalone/csfit/decrypter.cxx +++ b/xmlsecurity/tools/standalone/csfit/decrypter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: decrypter.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/encrypter.cxx b/xmlsecurity/tools/standalone/csfit/encrypter.cxx index 460023ba670d..37821b6ed54e 100644 --- a/xmlsecurity/tools/standalone/csfit/encrypter.cxx +++ b/xmlsecurity/tools/standalone/csfit/encrypter.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: encrypter.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/helper.cxx b/xmlsecurity/tools/standalone/csfit/helper.cxx index e24ee84ca4a2..23c9e5908758 100644 --- a/xmlsecurity/tools/standalone/csfit/helper.cxx +++ b/xmlsecurity/tools/standalone/csfit/helper.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: helper.cxx,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/helper.hxx b/xmlsecurity/tools/standalone/csfit/helper.hxx index 819445430a0f..14a116444b63 100644 --- a/xmlsecurity/tools/standalone/csfit/helper.hxx +++ b/xmlsecurity/tools/standalone/csfit/helper.hxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: helper.hxx,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/makefile.mk b/xmlsecurity/tools/standalone/csfit/makefile.mk index bb578c393c02..36efa47ff648 100644 --- a/xmlsecurity/tools/standalone/csfit/makefile.mk +++ b/xmlsecurity/tools/standalone/csfit/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/signer.cxx b/xmlsecurity/tools/standalone/csfit/signer.cxx index bc88094ce52d..689b86ea369c 100644 --- a/xmlsecurity/tools/standalone/csfit/signer.cxx +++ b/xmlsecurity/tools/standalone/csfit/signer.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signer.cxx,v $ - * $Revision: 1.6 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/util/makefile.mk b/xmlsecurity/tools/standalone/csfit/util/makefile.mk index 3ac85f910f8d..ee030fd35320 100644 --- a/xmlsecurity/tools/standalone/csfit/util/makefile.mk +++ b/xmlsecurity/tools/standalone/csfit/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/csfit/verifier.cxx b/xmlsecurity/tools/standalone/csfit/verifier.cxx index 0abb1ca80ca1..54eaaa926a46 100644 --- a/xmlsecurity/tools/standalone/csfit/verifier.cxx +++ b/xmlsecurity/tools/standalone/csfit/verifier.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: verifier.cxx,v $ - * $Revision: 1.5 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/mscsfit/makefile.mk b/xmlsecurity/tools/standalone/mscsfit/makefile.mk index a312f55fad0c..1ab4575b5226 100644 --- a/xmlsecurity/tools/standalone/mscsfit/makefile.mk +++ b/xmlsecurity/tools/standalone/mscsfit/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.6 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/standalone/mscsfit/util/makefile.mk b/xmlsecurity/tools/standalone/mscsfit/util/makefile.mk index 3c1d17b7ecd1..16236ab60dfc 100644 --- a/xmlsecurity/tools/standalone/mscsfit/util/makefile.mk +++ b/xmlsecurity/tools/standalone/mscsfit/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.7 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/AdapterNode.java b/xmlsecurity/tools/uno/AdapterNode.java index 258f8804e616..bed8e2a3631c 100644 --- a/xmlsecurity/tools/uno/AdapterNode.java +++ b/xmlsecurity/tools/uno/AdapterNode.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AdapterNode.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/AttributeListHelper.java b/xmlsecurity/tools/uno/AttributeListHelper.java index 658a3d49bd2a..c95067bcecb6 100644 --- a/xmlsecurity/tools/uno/AttributeListHelper.java +++ b/xmlsecurity/tools/uno/AttributeListHelper.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: AttributeListHelper.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/DomToTreeModelAdapter.java b/xmlsecurity/tools/uno/DomToTreeModelAdapter.java index 141c3a68ab92..709d0efa9515 100644 --- a/xmlsecurity/tools/uno/DomToTreeModelAdapter.java +++ b/xmlsecurity/tools/uno/DomToTreeModelAdapter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: DomToTreeModelAdapter.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/EncryptionEntity.java b/xmlsecurity/tools/uno/EncryptionEntity.java index c762446962da..51f14b2bbf6b 100644 --- a/xmlsecurity/tools/uno/EncryptionEntity.java +++ b/xmlsecurity/tools/uno/EncryptionEntity.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: EncryptionEntity.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/ParsingThread.java b/xmlsecurity/tools/uno/ParsingThread.java index f4adbd64f454..f4bfea4a442e 100644 --- a/xmlsecurity/tools/uno/ParsingThread.java +++ b/xmlsecurity/tools/uno/ParsingThread.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: ParsingThread.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/SAXEventCollector.java b/xmlsecurity/tools/uno/SAXEventCollector.java index 3691f1ccbe5c..e94c55252083 100644 --- a/xmlsecurity/tools/uno/SAXEventCollector.java +++ b/xmlsecurity/tools/uno/SAXEventCollector.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SAXEventCollector.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/SAXEventPrinter.java b/xmlsecurity/tools/uno/SAXEventPrinter.java index 1991a9e700ed..d841926bdd13 100644 --- a/xmlsecurity/tools/uno/SAXEventPrinter.java +++ b/xmlsecurity/tools/uno/SAXEventPrinter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SAXEventPrinter.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/SecurityEntity.java b/xmlsecurity/tools/uno/SecurityEntity.java index e6e955d818b7..85ef5ed49891 100644 --- a/xmlsecurity/tools/uno/SecurityEntity.java +++ b/xmlsecurity/tools/uno/SecurityEntity.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SecurityEntity.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/SignatureEntity.java b/xmlsecurity/tools/uno/SignatureEntity.java index 4db930ff7be9..d02ad3ee74d7 100644 --- a/xmlsecurity/tools/uno/SignatureEntity.java +++ b/xmlsecurity/tools/uno/SignatureEntity.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: SignatureEntity.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/TestTool.java b/xmlsecurity/tools/uno/TestTool.java index c82047ce9321..6c87b34bbb43 100644 --- a/xmlsecurity/tools/uno/TestTool.java +++ b/xmlsecurity/tools/uno/TestTool.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: TestTool.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/UnsolvedReferenceTableModel.java b/xmlsecurity/tools/uno/UnsolvedReferenceTableModel.java index d48d5d66c9e5..21f17de8877d 100644 --- a/xmlsecurity/tools/uno/UnsolvedReferenceTableModel.java +++ b/xmlsecurity/tools/uno/UnsolvedReferenceTableModel.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: UnsolvedReferenceTableModel.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/XMLFileFilter.java b/xmlsecurity/tools/uno/XMLFileFilter.java index e84fa329e366..b9436cacfbda 100644 --- a/xmlsecurity/tools/uno/XMLFileFilter.java +++ b/xmlsecurity/tools/uno/XMLFileFilter.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMLFileFilter.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/XMLSecurityFrameworkController.java b/xmlsecurity/tools/uno/XMLSecurityFrameworkController.java index 4e9f81369ae6..058981b460b0 100644 --- a/xmlsecurity/tools/uno/XMLSecurityFrameworkController.java +++ b/xmlsecurity/tools/uno/XMLSecurityFrameworkController.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMLSecurityFrameworkController.java,v $ - * $Revision: 1.4 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/XMLTreeCellRanderer.java b/xmlsecurity/tools/uno/XMLTreeCellRanderer.java index 4d7b1fc63ead..77891a239853 100644 --- a/xmlsecurity/tools/uno/XMLTreeCellRanderer.java +++ b/xmlsecurity/tools/uno/XMLTreeCellRanderer.java @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: XMLTreeCellRanderer.java,v $ - * $Revision: 1.3 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/tools/uno/makefile.mk b/xmlsecurity/tools/uno/makefile.mk index 3f3da61e57d6..e919e44ea9ee 100644 --- a/xmlsecurity/tools/uno/makefile.mk +++ b/xmlsecurity/tools/uno/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/util/makefile.mk b/xmlsecurity/util/makefile.mk index cfc012a78cd2..bcbf7ac5e43d 100644 --- a/xmlsecurity/util/makefile.mk +++ b/xmlsecurity/util/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.24 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/util/target.pmk b/xmlsecurity/util/target.pmk index 23d80bbcc993..e46a4a0d817a 100644 --- a/xmlsecurity/util/target.pmk +++ b/xmlsecurity/util/target.pmk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: target.pmk,v $ -# -# $Revision: 1.5 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/workben/makefile.mk b/xmlsecurity/workben/makefile.mk index a0ab84daedf1..2430a36431c8 100644 --- a/xmlsecurity/workben/makefile.mk +++ b/xmlsecurity/workben/makefile.mk @@ -2,14 +2,10 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # -# Copyright 2008 by Sun Microsystems, Inc. +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.10 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify diff --git a/xmlsecurity/workben/signaturetest.cxx b/xmlsecurity/workben/signaturetest.cxx index 19ced0e22130..669d3e6705ea 100644 --- a/xmlsecurity/workben/signaturetest.cxx +++ b/xmlsecurity/workben/signaturetest.cxx @@ -2,13 +2,10 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2008 by Sun Microsystems, Inc. + * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * - * $RCSfile: signaturetest.cxx,v $ - * $Revision: 1.10 $ - * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify From da975155be99f7ed1c455fe9a4e92e22285a0671 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Fri, 12 Feb 2010 16:56:44 +0100 Subject: [PATCH 45/45] changefileheader2: #i10000#: convert files with CR/LF characters to CR only --- extensions/inc/abpilot.hrc | 12 +- extensions/inc/bibliography.hrc | 14 +- extensions/inc/dbpilots.hrc | 16 +- extensions/inc/propctrlr.hrc | 12 +- extensions/inc/update.hrc | 16 +- .../source/propctrlr/formgeometryhandler.cxx | 2 +- .../propctrlr/propertycontrolextender.cxx | 2 +- .../propctrlr/propertycontrolextender.hxx | 2 +- forms/source/component/Columns.hxx | 34 +- forms/source/helper/resettable.cxx | 2 +- forms/source/inc/resettable.hxx | 2 +- forms/source/inc/togglestate.hxx | 2 +- forms/source/misc/InterfaceContainer.cxx | 52 +- .../dialogs/digitalsignaturesdialog.hrc | 26 +- .../source/helper/documentsignaturehelper.cxx | 856 +++++++++--------- 15 files changed, 525 insertions(+), 525 deletions(-) diff --git a/extensions/inc/abpilot.hrc b/extensions/inc/abpilot.hrc index 80dc3567c472..ad2c4b1115c2 100644 --- a/extensions/inc/abpilot.hrc +++ b/extensions/inc/abpilot.hrc @@ -23,12 +23,12 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - -#ifndef EXTENSIONS_ABPILOT_HRC -#define EXTENSIONS_ABPILOT_HRC - -#include "extensio.hrc" - + +#ifndef EXTENSIONS_ABPILOT_HRC +#define EXTENSIONS_ABPILOT_HRC + +#include "extensio.hrc" + #define HID_ABSPILOT_PREVIOUS ( HID_ABP_START + 0) #define HID_ABSPILOT_NEXT ( HID_ABP_START + 1) #define HID_ABSPILOT_CANCEL ( HID_ABP_START + 2) diff --git a/extensions/inc/bibliography.hrc b/extensions/inc/bibliography.hrc index f66f63319c79..c67060e18edf 100644 --- a/extensions/inc/bibliography.hrc +++ b/extensions/inc/bibliography.hrc @@ -23,12 +23,12 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - -#ifndef EXTENSIONS_BIBLIOGRAPHY_HRC -#define EXTENSIONS_BIBLIOGRAPHY_HRC - -#include "extensio.hrc" - + +#ifndef EXTENSIONS_BIBLIOGRAPHY_HRC +#define EXTENSIONS_BIBLIOGRAPHY_HRC + +#include "extensio.hrc" + #define HID_BIB_CHANGESOURCE ( HID_BIBLIO_START + 0) #define HID_BIB_MAPPINGDLG ( HID_BIBLIO_START + 1) #define HID_BIB_TBX_TABLE ( HID_BIBLIO_START + 2) @@ -83,4 +83,4 @@ #error help id range overflow (BIBLIO) #endif -#endif // EXTENSIONS_BIBLIOGRAPHY_HRC +#endif // EXTENSIONS_BIBLIOGRAPHY_HRC diff --git a/extensions/inc/dbpilots.hrc b/extensions/inc/dbpilots.hrc index 051ab4a049c6..46ee01805938 100644 --- a/extensions/inc/dbpilots.hrc +++ b/extensions/inc/dbpilots.hrc @@ -23,12 +23,12 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - -#ifndef EXTENSIONS_DBPILOT_HRC -#define EXTENSIONS_DBPILOT_HRC - -#include "extensio.hrc" - + +#ifndef EXTENSIONS_DBPILOT_HRC +#define EXTENSIONS_DBPILOT_HRC + +#include "extensio.hrc" + #define HID_GHIDWIZARD_PREVIOUS ( HID_DBP_START + 0) #define HID_GHIDWIZARD_NEXT ( HID_DBP_START + 1) #define HID_GHIDWIZARD_CANCEL ( HID_DBP_START + 2) @@ -51,5 +51,5 @@ #if HID_DBP_LAST > HID_DBP_END #error help id range overflow (DBP) #endif - -#endif // EXTENSIONS_DBPILOT_HRC + +#endif // EXTENSIONS_DBPILOT_HRC diff --git a/extensions/inc/propctrlr.hrc b/extensions/inc/propctrlr.hrc index f42e7c9653ec..6961319f4dda 100644 --- a/extensions/inc/propctrlr.hrc +++ b/extensions/inc/propctrlr.hrc @@ -23,12 +23,12 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - -#ifndef EXTENSIONS_PROPCTRLR_HRC -#define EXTENSIONS_PROPCTRLR_HRC - -#include "extensio.hrc" - + +#ifndef EXTENSIONS_PROPCTRLR_HRC +#define EXTENSIONS_PROPCTRLR_HRC + +#include "extensio.hrc" + #define HID_PROP_INPUT_REQUIRED ( HID_PROPC_START + 0) #define HID_PROP_GROUPBOX ( HID_PROPC_START + 1) #define HID_PROP_CONTROLSOURCE ( HID_PROPC_START + 2) diff --git a/extensions/inc/update.hrc b/extensions/inc/update.hrc index c71ce0baf3c3..2cd1f8f69f12 100644 --- a/extensions/inc/update.hrc +++ b/extensions/inc/update.hrc @@ -23,12 +23,12 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - -#ifndef EXTENSIONS_UPDATE_HRC -#define EXTENSIONS_UPDATE_HRC - -#include "extensio.hrc" - + +#ifndef EXTENSIONS_UPDATE_HRC +#define EXTENSIONS_UPDATE_HRC + +#include "extensio.hrc" + #define HID_CHECK_FOR_UPD_DLG ( HID_UPDATE_START + 0) #define HID_CHECK_FOR_UPD_CLOSE ( HID_UPDATE_START + 1) #define HID_CHECK_FOR_UPD_PAUSE ( HID_UPDATE_START + 2) @@ -45,5 +45,5 @@ #if HID_UPDATE_LAST > HID_UPDATE_END #error help id range overflow (UPDATE) #endif - -#endif // EXTENSIONS_UPDATE_HRC + +#endif // EXTENSIONS_UPDATE_HRC diff --git a/extensions/source/propctrlr/formgeometryhandler.cxx b/extensions/source/propctrlr/formgeometryhandler.cxx index ca01ce451f36..31a2b9315238 100644 --- a/extensions/source/propctrlr/formgeometryhandler.cxx +++ b/extensions/source/propctrlr/formgeometryhandler.cxx @@ -23,7 +23,7 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_extensions.hxx" diff --git a/extensions/source/propctrlr/propertycontrolextender.cxx b/extensions/source/propctrlr/propertycontrolextender.cxx index 616a6203bc1c..d06ab54e0a79 100644 --- a/extensions/source/propctrlr/propertycontrolextender.cxx +++ b/extensions/source/propctrlr/propertycontrolextender.cxx @@ -23,7 +23,7 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_extensions.hxx" diff --git a/extensions/source/propctrlr/propertycontrolextender.hxx b/extensions/source/propctrlr/propertycontrolextender.hxx index 29e4138a6c39..0e74284c6f9b 100644 --- a/extensions/source/propctrlr/propertycontrolextender.hxx +++ b/extensions/source/propctrlr/propertycontrolextender.hxx @@ -23,7 +23,7 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - + #ifndef EXTENSIONS_PROPERTYCONTROLEXTENDER_HXX #define EXTENSIONS_PROPERTYCONTROLEXTENDER_HXX diff --git a/forms/source/component/Columns.hxx b/forms/source/component/Columns.hxx index 34f4fad58e5d..f52d8db1afa9 100644 --- a/forms/source/component/Columns.hxx +++ b/forms/source/component/Columns.hxx @@ -28,23 +28,23 @@ #ifndef _FRM_COLUMNS_HXX #define _FRM_COLUMNS_HXX -#include "cloneable.hxx" -#include "frm_strings.hxx" - -/** === begin UNO includes === **/ -#include -#include -#include -#include -/** === end UNO includes === **/ - -#include -#include -#include -#include -#include -#include -#include +#include "cloneable.hxx" +#include "frm_strings.hxx" + +/** === begin UNO includes === **/ +#include +#include +#include +#include +/** === end UNO includes === **/ + +#include +#include +#include +#include +#include +#include +#include using namespace comphelper; diff --git a/forms/source/helper/resettable.cxx b/forms/source/helper/resettable.cxx index c76a63c3d0f0..0210c0ead56c 100644 --- a/forms/source/helper/resettable.cxx +++ b/forms/source/helper/resettable.cxx @@ -23,7 +23,7 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - + // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_forms.hxx" diff --git a/forms/source/inc/resettable.hxx b/forms/source/inc/resettable.hxx index 9d3f085ea1f9..1e743806fb23 100644 --- a/forms/source/inc/resettable.hxx +++ b/forms/source/inc/resettable.hxx @@ -23,7 +23,7 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - + #ifndef FORMS_RESETTABLE_HXX #define FORMS_RESETTABLE_HXX diff --git a/forms/source/inc/togglestate.hxx b/forms/source/inc/togglestate.hxx index 291cc3ab71db..30efa6f14ed5 100644 --- a/forms/source/inc/togglestate.hxx +++ b/forms/source/inc/togglestate.hxx @@ -23,7 +23,7 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - + #ifndef FORMS_TOGGLESTATE_HXX #define FORMS_TOGGLESTATE_HXX diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx index 2db62692a3ab..ab605dbb9324 100644 --- a/forms/source/misc/InterfaceContainer.cxx +++ b/forms/source/misc/InterfaceContainer.cxx @@ -28,33 +28,33 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_forms.hxx" -#include "frm_resource.hrc" -#include "frm_resource.hxx" -#include "InterfaceContainer.hxx" -#include "property.hrc" -#include "services.hxx" - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include "frm_resource.hrc" +#include "frm_resource.hxx" +#include "InterfaceContainer.hxx" +#include "property.hrc" +#include "services.hxx" -#include -#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include //......................................................................... namespace frm diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.hrc b/xmlsecurity/source/dialogs/digitalsignaturesdialog.hrc index 08343bfbb29f..d63b44834f2c 100644 --- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.hrc +++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.hrc @@ -1,5 +1,5 @@ -/************************************************************************* - * +/************************************************************************* + * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. @@ -23,14 +23,14 @@ * * for a copy of the LGPLv3 License. * - ************************************************************************/ - -#if ! defined INCLUDED_DIGITALSIGNATURESDIALOG_HRC -#define INCLUDED_DIGITALSIGNATURESDIALOG_HRC - -//global.hrc in xmlsecurity/inc starts at 1000 -#define RID_DIGITALSIGNATUREDLG_START 2000 - -#define RID_XMLSECDLG_OLD_ODF_FORMAT RID_DIGITALSIGNATUREDLG_START -#define MSG_XMLSECDLG_QUERY_REMOVEDOCSIGNBEFORESIGN (RID_DIGITALSIGNATUREDLG_START + 1) -#endif + ************************************************************************/ + +#if ! defined INCLUDED_DIGITALSIGNATURESDIALOG_HRC +#define INCLUDED_DIGITALSIGNATURESDIALOG_HRC + +//global.hrc in xmlsecurity/inc starts at 1000 +#define RID_DIGITALSIGNATUREDLG_START 2000 + +#define RID_XMLSECDLG_OLD_ODF_FORMAT RID_DIGITALSIGNATUREDLG_START +#define MSG_XMLSECDLG_QUERY_REMOVEDOCSIGNBEFORESIGN (RID_DIGITALSIGNATUREDLG_START + 1) +#endif diff --git a/xmlsecurity/source/helper/documentsignaturehelper.cxx b/xmlsecurity/source/helper/documentsignaturehelper.cxx index d699787ba451..d0fba345588c 100644 --- a/xmlsecurity/source/helper/documentsignaturehelper.cxx +++ b/xmlsecurity/source/helper/documentsignaturehelper.cxx @@ -1,5 +1,5 @@ -/************************************************************************* - * +/************************************************************************* + * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. @@ -23,380 +23,380 @@ * * for a copy of the LGPLv3 License. * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_xmlsecurity.hxx" - -#include - -#include -#include -#include -#include -#include -#include "com/sun/star/beans/XPropertySet.hpp" - -#include "comphelper/documentconstants.hxx" -#include -#include "rtl/uri.hxx" - -using namespace ::com::sun::star::uno; -//using namespace ::com::sun::star; -namespace css = ::com::sun::star; -using rtl::OUString; - - -namespace -{ -::rtl::OUString getElement(::rtl::OUString const & version, ::sal_Int32 * index) -{ - while (*index < version.getLength() && version[*index] == '0') { - ++*index; - } - return version.getToken(0, '.', *index); -} - - - -// Return 1 if version1 is greater then version 2, 0 if they are equal -//and -1 if version1 is less version 2 -int compareVersions( - ::rtl::OUString const & version1, ::rtl::OUString const & version2) -{ - for (::sal_Int32 i1 = 0, i2 = 0; i1 >= 0 || i2 >= 0;) { - ::rtl::OUString e1(getElement(version1, &i1)); - ::rtl::OUString e2(getElement(version2, &i2)); - if (e1.getLength() < e2.getLength()) { - return -1; - } else if (e1.getLength() > e2.getLength()) { - return 1; - } else if (e1 < e2) { - return -1; - } else if (e1 > e2) { - return 1; - } - } - return 0; -} -} -//If the OOo 3.0 mode is used then we exclude -//'mimetype' and all content of 'META-INF'. -//If the argument 'bSigning' is true then the element list is created for a signing -//operation in which case we use the latest signing algorithm. That is all elements -//we find in the zip storage are added to the list. We do not support the old signatures -//which did not contain all files. -//If 'bSigning' is false, then we validate. If the user enabled validating according to OOo 3.0 -//then mimetype and all content of META-INF must be excluded. -void ImplFillElementList( - std::vector< rtl::OUString >& rList, const Reference < css::embed::XStorage >& rxStore, - const ::rtl::OUString rRootStorageName, const bool bRecursive, - const DocumentSignatureAlgorithm mode) -{ - ::rtl::OUString aMetaInfName( RTL_CONSTASCII_USTRINGPARAM( "META-INF" ) ); - ::rtl::OUString sMimeTypeName (RTL_CONSTASCII_USTRINGPARAM("mimetype")); - ::rtl::OUString aSep( RTL_CONSTASCII_USTRINGPARAM( "/" ) ); - - Reference < css::container::XNameAccess > xElements( rxStore, UNO_QUERY ); - Sequence< ::rtl::OUString > aElements = xElements->getElementNames(); - sal_Int32 nElements = aElements.getLength(); - const ::rtl::OUString* pNames = aElements.getConstArray(); - - for ( sal_Int32 n = 0; n < nElements; n++ ) - { - if (mode != OOo3_2Document - && (pNames[n] == aMetaInfName - || pNames[n] == sMimeTypeName)) - { - continue; - } - else - { - ::rtl::OUString sEncName = ::rtl::Uri::encode( - pNames[n], rtl_UriCharClassRelSegment, - rtl_UriEncodeStrict, RTL_TEXTENCODING_UTF8); - if (sEncName.getLength() == 0 && pNames[n].getLength() != 0) - throw css::uno::Exception(::rtl::OUString( - RTL_CONSTASCII_USTRINGPARAM("Failed to encode element name of XStorage")), 0); - - if ( rxStore->isStreamElement( pNames[n] ) ) - { - //Exclude documentsignatures.xml! - if (pNames[n].equals( - DocumentSignatureHelper::GetDocumentContentSignatureDefaultStreamName())) - continue; - ::rtl::OUString aFullName( rRootStorageName + sEncName ); - rList.push_back(aFullName); - } - else if ( bRecursive && rxStore->isStorageElement( pNames[n] ) ) - { - Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( pNames[n], css::embed::ElementModes::READ ); - rtl::OUString aFullRootName( rRootStorageName + sEncName + aSep ); - ImplFillElementList(rList, xSubStore, aFullRootName, bRecursive, mode); - } - } - } -} - - -bool DocumentSignatureHelper::isODFPre_1_2(const ::rtl::OUString & sVersion) -{ - //The property version exists only if the document is at least version 1.2 - //That is, if the document has version 1.1 and sVersion is empty. - //The constant is defined in comphelper/documentconstants.hxx - if (compareVersions(sVersion, ODFVER_012_TEXT) == -1) - return true; - return false; -} - -bool DocumentSignatureHelper::isOOo3_2_Signature(const SignatureInformation & sigInfo) -{ - ::rtl::OUString sManifestURI(RTL_CONSTASCII_USTRINGPARAM("META-INF/manifest.xml")); - bool bOOo3_2 = false; - typedef ::std::vector< SignatureReferenceInformation >::const_iterator CIT; - for (CIT i = sigInfo.vSignatureReferenceInfors.begin(); - i < sigInfo.vSignatureReferenceInfors.end(); i++) - { - if (i->ouURI.equals(sManifestURI)) - { - bOOo3_2 = true; - break; - } - } - return bOOo3_2; -} - -DocumentSignatureAlgorithm -DocumentSignatureHelper::getDocumentAlgorithm( - const ::rtl::OUString & sODFVersion, const SignatureInformation & sigInfo) -{ - OSL_ASSERT(sODFVersion.getLength()); - DocumentSignatureAlgorithm mode = OOo3_2Document; - if (!isOOo3_2_Signature(sigInfo)) - { - if (isODFPre_1_2(sODFVersion)) - mode = OOo2Document; - else - mode = OOo3_0Document; - } - return mode; -} - -//The function creates a list of files which are to be signed or for which -//the signature is to be validated. The strings are UTF8 encoded URIs which -//contain '/' as path separators. -// -//The algorithm how document signatures are created and validated has -//changed over time. The change affects only which files within the document -//are changed. Document signatures created by OOo 2.x only used particular files. Since -//OOo 3.0 everything except "mimetype" and "META-INF" are signed. As of OOo 3.2 everything -//except META-INF/documentsignatures.xml is signed. -//Signatures are validated according to the algorithm which was then used for validation. -//That is, when validating a signature which was created by OOo 3.0, then mimetype and -//META-INF are not used. -// -//When a signature is created then we always use the latest algorithm. That is, we use -//that of OOo 3.2 -std::vector< rtl::OUString > -DocumentSignatureHelper::CreateElementList( - const Reference < css::embed::XStorage >& rxStore, - const ::rtl::OUString /*rRootStorageName*/, DocumentSignatureMode eMode, - const DocumentSignatureAlgorithm mode) -{ - std::vector< rtl::OUString > aElements; - ::rtl::OUString aSep( RTL_CONSTASCII_USTRINGPARAM( "/" ) ); - - switch ( eMode ) - { - case SignatureModeDocumentContent: - { - if (mode == OOo2Document) //that is, ODF 1.0, 1.1 - { - // 1) Main content - ImplFillElementList(aElements, rxStore, ::rtl::OUString(), false, mode); - - // 2) Pictures... - rtl::OUString aSubStorageName( rtl::OUString::createFromAscii( "Pictures" ) ); - try - { - Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); - ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); - } - catch(css::io::IOException& ) - { - ; // Doesn't have to exist... - } - // 3) OLE.... - aSubStorageName = rtl::OUString::createFromAscii( "ObjectReplacements" ); - try - { - Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); - ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); - xSubStore.clear(); - - // Object folders... - rtl::OUString aMatchStr( rtl::OUString::createFromAscii( "Object " ) ); - Reference < css::container::XNameAccess > xElements( rxStore, UNO_QUERY ); - Sequence< ::rtl::OUString > aElementNames = xElements->getElementNames(); - sal_Int32 nElements = aElementNames.getLength(); - const ::rtl::OUString* pNames = aElementNames.getConstArray(); - for ( sal_Int32 n = 0; n < nElements; n++ ) - { - if ( ( pNames[n].match( aMatchStr ) ) && rxStore->isStorageElement( pNames[n] ) ) - { - Reference < css::embed::XStorage > xTmpSubStore = rxStore->openStorageElement( pNames[n], css::embed::ElementModes::READ ); - ImplFillElementList(aElements, xTmpSubStore, pNames[n]+aSep, true, mode); - } - } - } - catch( com::sun::star::io::IOException& ) - { - ; // Doesn't have to exist... - } - } - else - { - // Everything except META-INF - ImplFillElementList(aElements, rxStore, ::rtl::OUString(), true, mode); - } - } - break; - case SignatureModeMacros: - { - // 1) Macros - rtl::OUString aSubStorageName( rtl::OUString::createFromAscii( "Basic" ) ); - try - { - Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); - ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); - } - catch( com::sun::star::io::IOException& ) - { - ; // Doesn't have to exist... - } - - // 2) Dialogs - aSubStorageName = rtl::OUString::createFromAscii( "Dialogs") ; - try - { - Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); - ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); - } - catch( com::sun::star::io::IOException& ) - { - ; // Doesn't have to exist... - } - // 3) Scripts - aSubStorageName = rtl::OUString::createFromAscii( "Scripts") ; - try - { - Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); - ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); - } - catch( css::io::IOException& ) - { - ; // Doesn't have to exist... - } - } - break; - case SignatureModePackage: - { - // Everything except META-INF - ImplFillElementList(aElements, rxStore, ::rtl::OUString(), true, mode); - } - break; - } - - return aElements; -} - -SignatureStreamHelper DocumentSignatureHelper::OpenSignatureStream( - const Reference < css::embed::XStorage >& rxStore, sal_Int32 nOpenMode, DocumentSignatureMode eDocSigMode ) -{ - sal_Int32 nSubStorageOpenMode = css::embed::ElementModes::READ; - if ( nOpenMode & css::embed::ElementModes::WRITE ) - nSubStorageOpenMode = css::embed::ElementModes::WRITE; - - SignatureStreamHelper aHelper; - - try - { - ::rtl::OUString aSIGStoreName( RTL_CONSTASCII_USTRINGPARAM( "META-INF" ) ); - aHelper.xSignatureStorage = rxStore->openStorageElement( aSIGStoreName, nSubStorageOpenMode ); - if ( aHelper.xSignatureStorage.is() ) - { - ::rtl::OUString aSIGStreamName; - if ( eDocSigMode == SignatureModeDocumentContent ) - aSIGStreamName = DocumentSignatureHelper::GetDocumentContentSignatureDefaultStreamName(); - else if ( eDocSigMode == SignatureModeMacros ) - aSIGStreamName = DocumentSignatureHelper::GetScriptingContentSignatureDefaultStreamName(); - else - aSIGStreamName = DocumentSignatureHelper::GetPackageSignatureDefaultStreamName(); - - aHelper.xSignatureStream = aHelper.xSignatureStorage->openStreamElement( aSIGStreamName, nOpenMode ); - } - } - catch(css::io::IOException& ) - { - // Doesn't have to exist... - DBG_ASSERT( nOpenMode == css::embed::ElementModes::READ, "Error creating signature stream..." ); - } - - return aHelper; -} - -//sElementList contains all files which are expected to be signed. Only those files must me signed, -//no more, no less. -//The DocumentSignatureAlgorithm indicates if the document was created with OOo 2.x. Then -//the uri s in the Reference elements in the signature, were not properly encoded. -// For example: -bool DocumentSignatureHelper::checkIfAllFilesAreSigned( - const ::std::vector< ::rtl::OUString > & sElementList, - const SignatureInformation & sigInfo, - const DocumentSignatureAlgorithm alg) -{ - // Can only be valid if ALL streams are signed, which means real stream count == signed stream count - unsigned int nRealCount = 0; - for ( int i = sigInfo.vSignatureReferenceInfors.size(); i; ) - { - const SignatureReferenceInformation& rInf = sigInfo.vSignatureReferenceInfors[--i]; - // There is also an extra entry of type TYPE_SAMEDOCUMENT_REFERENCE because of signature date. - if ( ( rInf.nType == TYPE_BINARYSTREAM_REFERENCE ) || ( rInf.nType == TYPE_XMLSTREAM_REFERENCE ) ) - { - ::rtl::OUString sReferenceURI = rInf.ouURI; - if (alg == OOo2Document) - { - //Comparing URIs is a difficult. Therefore we kind of normalize - //it before comparing. We assume that our URI do not have a leading "./" - //and fragments at the end (...#...) - sReferenceURI = ::rtl::Uri::encode( - sReferenceURI, rtl_UriCharClassPchar, - rtl_UriEncodeCheckEscapes, RTL_TEXTENCODING_UTF8); - } - - //find the file in the element list - typedef ::std::vector< ::rtl::OUString >::const_iterator CIT; - for (CIT aIter = sElementList.begin(); aIter < sElementList.end(); aIter++) - { - ::rtl::OUString sElementListURI = *aIter; - if (alg == OOo2Document) - { - sElementListURI = - ::rtl::Uri::encode( - sElementListURI, rtl_UriCharClassPchar, - rtl_UriEncodeCheckEscapes, RTL_TEXTENCODING_UTF8); - } - if (sElementListURI.equals(sReferenceURI)) - { - nRealCount++; - break; - } - } - } - } - return sElementList.size() == nRealCount; -} - + ************************************************************************/ + +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_xmlsecurity.hxx" + +#include + +#include +#include +#include +#include +#include +#include "com/sun/star/beans/XPropertySet.hpp" + +#include "comphelper/documentconstants.hxx" +#include +#include "rtl/uri.hxx" + +using namespace ::com::sun::star::uno; +//using namespace ::com::sun::star; +namespace css = ::com::sun::star; +using rtl::OUString; + + +namespace +{ +::rtl::OUString getElement(::rtl::OUString const & version, ::sal_Int32 * index) +{ + while (*index < version.getLength() && version[*index] == '0') { + ++*index; + } + return version.getToken(0, '.', *index); +} + + + +// Return 1 if version1 is greater then version 2, 0 if they are equal +//and -1 if version1 is less version 2 +int compareVersions( + ::rtl::OUString const & version1, ::rtl::OUString const & version2) +{ + for (::sal_Int32 i1 = 0, i2 = 0; i1 >= 0 || i2 >= 0;) { + ::rtl::OUString e1(getElement(version1, &i1)); + ::rtl::OUString e2(getElement(version2, &i2)); + if (e1.getLength() < e2.getLength()) { + return -1; + } else if (e1.getLength() > e2.getLength()) { + return 1; + } else if (e1 < e2) { + return -1; + } else if (e1 > e2) { + return 1; + } + } + return 0; +} +} +//If the OOo 3.0 mode is used then we exclude +//'mimetype' and all content of 'META-INF'. +//If the argument 'bSigning' is true then the element list is created for a signing +//operation in which case we use the latest signing algorithm. That is all elements +//we find in the zip storage are added to the list. We do not support the old signatures +//which did not contain all files. +//If 'bSigning' is false, then we validate. If the user enabled validating according to OOo 3.0 +//then mimetype and all content of META-INF must be excluded. +void ImplFillElementList( + std::vector< rtl::OUString >& rList, const Reference < css::embed::XStorage >& rxStore, + const ::rtl::OUString rRootStorageName, const bool bRecursive, + const DocumentSignatureAlgorithm mode) +{ + ::rtl::OUString aMetaInfName( RTL_CONSTASCII_USTRINGPARAM( "META-INF" ) ); + ::rtl::OUString sMimeTypeName (RTL_CONSTASCII_USTRINGPARAM("mimetype")); + ::rtl::OUString aSep( RTL_CONSTASCII_USTRINGPARAM( "/" ) ); + + Reference < css::container::XNameAccess > xElements( rxStore, UNO_QUERY ); + Sequence< ::rtl::OUString > aElements = xElements->getElementNames(); + sal_Int32 nElements = aElements.getLength(); + const ::rtl::OUString* pNames = aElements.getConstArray(); + + for ( sal_Int32 n = 0; n < nElements; n++ ) + { + if (mode != OOo3_2Document + && (pNames[n] == aMetaInfName + || pNames[n] == sMimeTypeName)) + { + continue; + } + else + { + ::rtl::OUString sEncName = ::rtl::Uri::encode( + pNames[n], rtl_UriCharClassRelSegment, + rtl_UriEncodeStrict, RTL_TEXTENCODING_UTF8); + if (sEncName.getLength() == 0 && pNames[n].getLength() != 0) + throw css::uno::Exception(::rtl::OUString( + RTL_CONSTASCII_USTRINGPARAM("Failed to encode element name of XStorage")), 0); + + if ( rxStore->isStreamElement( pNames[n] ) ) + { + //Exclude documentsignatures.xml! + if (pNames[n].equals( + DocumentSignatureHelper::GetDocumentContentSignatureDefaultStreamName())) + continue; + ::rtl::OUString aFullName( rRootStorageName + sEncName ); + rList.push_back(aFullName); + } + else if ( bRecursive && rxStore->isStorageElement( pNames[n] ) ) + { + Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( pNames[n], css::embed::ElementModes::READ ); + rtl::OUString aFullRootName( rRootStorageName + sEncName + aSep ); + ImplFillElementList(rList, xSubStore, aFullRootName, bRecursive, mode); + } + } + } +} + + +bool DocumentSignatureHelper::isODFPre_1_2(const ::rtl::OUString & sVersion) +{ + //The property version exists only if the document is at least version 1.2 + //That is, if the document has version 1.1 and sVersion is empty. + //The constant is defined in comphelper/documentconstants.hxx + if (compareVersions(sVersion, ODFVER_012_TEXT) == -1) + return true; + return false; +} + +bool DocumentSignatureHelper::isOOo3_2_Signature(const SignatureInformation & sigInfo) +{ + ::rtl::OUString sManifestURI(RTL_CONSTASCII_USTRINGPARAM("META-INF/manifest.xml")); + bool bOOo3_2 = false; + typedef ::std::vector< SignatureReferenceInformation >::const_iterator CIT; + for (CIT i = sigInfo.vSignatureReferenceInfors.begin(); + i < sigInfo.vSignatureReferenceInfors.end(); i++) + { + if (i->ouURI.equals(sManifestURI)) + { + bOOo3_2 = true; + break; + } + } + return bOOo3_2; +} + +DocumentSignatureAlgorithm +DocumentSignatureHelper::getDocumentAlgorithm( + const ::rtl::OUString & sODFVersion, const SignatureInformation & sigInfo) +{ + OSL_ASSERT(sODFVersion.getLength()); + DocumentSignatureAlgorithm mode = OOo3_2Document; + if (!isOOo3_2_Signature(sigInfo)) + { + if (isODFPre_1_2(sODFVersion)) + mode = OOo2Document; + else + mode = OOo3_0Document; + } + return mode; +} + +//The function creates a list of files which are to be signed or for which +//the signature is to be validated. The strings are UTF8 encoded URIs which +//contain '/' as path separators. +// +//The algorithm how document signatures are created and validated has +//changed over time. The change affects only which files within the document +//are changed. Document signatures created by OOo 2.x only used particular files. Since +//OOo 3.0 everything except "mimetype" and "META-INF" are signed. As of OOo 3.2 everything +//except META-INF/documentsignatures.xml is signed. +//Signatures are validated according to the algorithm which was then used for validation. +//That is, when validating a signature which was created by OOo 3.0, then mimetype and +//META-INF are not used. +// +//When a signature is created then we always use the latest algorithm. That is, we use +//that of OOo 3.2 +std::vector< rtl::OUString > +DocumentSignatureHelper::CreateElementList( + const Reference < css::embed::XStorage >& rxStore, + const ::rtl::OUString /*rRootStorageName*/, DocumentSignatureMode eMode, + const DocumentSignatureAlgorithm mode) +{ + std::vector< rtl::OUString > aElements; + ::rtl::OUString aSep( RTL_CONSTASCII_USTRINGPARAM( "/" ) ); + + switch ( eMode ) + { + case SignatureModeDocumentContent: + { + if (mode == OOo2Document) //that is, ODF 1.0, 1.1 + { + // 1) Main content + ImplFillElementList(aElements, rxStore, ::rtl::OUString(), false, mode); + + // 2) Pictures... + rtl::OUString aSubStorageName( rtl::OUString::createFromAscii( "Pictures" ) ); + try + { + Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); + ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); + } + catch(css::io::IOException& ) + { + ; // Doesn't have to exist... + } + // 3) OLE.... + aSubStorageName = rtl::OUString::createFromAscii( "ObjectReplacements" ); + try + { + Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); + ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); + xSubStore.clear(); + + // Object folders... + rtl::OUString aMatchStr( rtl::OUString::createFromAscii( "Object " ) ); + Reference < css::container::XNameAccess > xElements( rxStore, UNO_QUERY ); + Sequence< ::rtl::OUString > aElementNames = xElements->getElementNames(); + sal_Int32 nElements = aElementNames.getLength(); + const ::rtl::OUString* pNames = aElementNames.getConstArray(); + for ( sal_Int32 n = 0; n < nElements; n++ ) + { + if ( ( pNames[n].match( aMatchStr ) ) && rxStore->isStorageElement( pNames[n] ) ) + { + Reference < css::embed::XStorage > xTmpSubStore = rxStore->openStorageElement( pNames[n], css::embed::ElementModes::READ ); + ImplFillElementList(aElements, xTmpSubStore, pNames[n]+aSep, true, mode); + } + } + } + catch( com::sun::star::io::IOException& ) + { + ; // Doesn't have to exist... + } + } + else + { + // Everything except META-INF + ImplFillElementList(aElements, rxStore, ::rtl::OUString(), true, mode); + } + } + break; + case SignatureModeMacros: + { + // 1) Macros + rtl::OUString aSubStorageName( rtl::OUString::createFromAscii( "Basic" ) ); + try + { + Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); + ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); + } + catch( com::sun::star::io::IOException& ) + { + ; // Doesn't have to exist... + } + + // 2) Dialogs + aSubStorageName = rtl::OUString::createFromAscii( "Dialogs") ; + try + { + Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); + ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); + } + catch( com::sun::star::io::IOException& ) + { + ; // Doesn't have to exist... + } + // 3) Scripts + aSubStorageName = rtl::OUString::createFromAscii( "Scripts") ; + try + { + Reference < css::embed::XStorage > xSubStore = rxStore->openStorageElement( aSubStorageName, css::embed::ElementModes::READ ); + ImplFillElementList(aElements, xSubStore, aSubStorageName+aSep, true, mode); + } + catch( css::io::IOException& ) + { + ; // Doesn't have to exist... + } + } + break; + case SignatureModePackage: + { + // Everything except META-INF + ImplFillElementList(aElements, rxStore, ::rtl::OUString(), true, mode); + } + break; + } + + return aElements; +} + +SignatureStreamHelper DocumentSignatureHelper::OpenSignatureStream( + const Reference < css::embed::XStorage >& rxStore, sal_Int32 nOpenMode, DocumentSignatureMode eDocSigMode ) +{ + sal_Int32 nSubStorageOpenMode = css::embed::ElementModes::READ; + if ( nOpenMode & css::embed::ElementModes::WRITE ) + nSubStorageOpenMode = css::embed::ElementModes::WRITE; + + SignatureStreamHelper aHelper; + + try + { + ::rtl::OUString aSIGStoreName( RTL_CONSTASCII_USTRINGPARAM( "META-INF" ) ); + aHelper.xSignatureStorage = rxStore->openStorageElement( aSIGStoreName, nSubStorageOpenMode ); + if ( aHelper.xSignatureStorage.is() ) + { + ::rtl::OUString aSIGStreamName; + if ( eDocSigMode == SignatureModeDocumentContent ) + aSIGStreamName = DocumentSignatureHelper::GetDocumentContentSignatureDefaultStreamName(); + else if ( eDocSigMode == SignatureModeMacros ) + aSIGStreamName = DocumentSignatureHelper::GetScriptingContentSignatureDefaultStreamName(); + else + aSIGStreamName = DocumentSignatureHelper::GetPackageSignatureDefaultStreamName(); + + aHelper.xSignatureStream = aHelper.xSignatureStorage->openStreamElement( aSIGStreamName, nOpenMode ); + } + } + catch(css::io::IOException& ) + { + // Doesn't have to exist... + DBG_ASSERT( nOpenMode == css::embed::ElementModes::READ, "Error creating signature stream..." ); + } + + return aHelper; +} + +//sElementList contains all files which are expected to be signed. Only those files must me signed, +//no more, no less. +//The DocumentSignatureAlgorithm indicates if the document was created with OOo 2.x. Then +//the uri s in the Reference elements in the signature, were not properly encoded. +// For example: +bool DocumentSignatureHelper::checkIfAllFilesAreSigned( + const ::std::vector< ::rtl::OUString > & sElementList, + const SignatureInformation & sigInfo, + const DocumentSignatureAlgorithm alg) +{ + // Can only be valid if ALL streams are signed, which means real stream count == signed stream count + unsigned int nRealCount = 0; + for ( int i = sigInfo.vSignatureReferenceInfors.size(); i; ) + { + const SignatureReferenceInformation& rInf = sigInfo.vSignatureReferenceInfors[--i]; + // There is also an extra entry of type TYPE_SAMEDOCUMENT_REFERENCE because of signature date. + if ( ( rInf.nType == TYPE_BINARYSTREAM_REFERENCE ) || ( rInf.nType == TYPE_XMLSTREAM_REFERENCE ) ) + { + ::rtl::OUString sReferenceURI = rInf.ouURI; + if (alg == OOo2Document) + { + //Comparing URIs is a difficult. Therefore we kind of normalize + //it before comparing. We assume that our URI do not have a leading "./" + //and fragments at the end (...#...) + sReferenceURI = ::rtl::Uri::encode( + sReferenceURI, rtl_UriCharClassPchar, + rtl_UriEncodeCheckEscapes, RTL_TEXTENCODING_UTF8); + } + + //find the file in the element list + typedef ::std::vector< ::rtl::OUString >::const_iterator CIT; + for (CIT aIter = sElementList.begin(); aIter < sElementList.end(); aIter++) + { + ::rtl::OUString sElementListURI = *aIter; + if (alg == OOo2Document) + { + sElementListURI = + ::rtl::Uri::encode( + sElementListURI, rtl_UriCharClassPchar, + rtl_UriEncodeCheckEscapes, RTL_TEXTENCODING_UTF8); + } + if (sElementListURI.equals(sReferenceURI)) + { + nRealCount++; + break; + } + } + } + } + return sElementList.size() == nRealCount; +} + /*Compares the Uri which are obtained from CreateElementList with the path obtained from the manifest.xml. Returns true if both strings are equal. @@ -405,58 +405,58 @@ bool DocumentSignatureHelper::equalsReferenceUriManifestPath( const OUString & rUri, const OUString & rPath) { bool retVal = false; - //split up the uri and path into segments. Both are separated by '/' - std::vector vUriSegments; - sal_Int32 nIndex = 0; - do - { - OUString aToken = rUri.getToken( 0, '/', nIndex ); - vUriSegments.push_back(aToken); - } - while (nIndex >= 0); - - std::vector vPathSegments; - nIndex = 0; - do - { - OUString aToken = rPath.getToken( 0, '/', nIndex ); - vPathSegments.push_back(aToken); - } - while (nIndex >= 0); - - //Now compare each segment of the uri with its counterpart from the path - if (vUriSegments.size() == vPathSegments.size()) - { - retVal = true; - typedef std::vector::const_iterator CIT; - for (CIT i = vUriSegments.begin(), j = vPathSegments.begin(); - i != vUriSegments.end(); i++, j++) - { - //Decode the uri segment, so that %20 becomes ' ', etc. - OUString sDecUri = ::rtl::Uri::decode( - *i, rtl_UriDecodeWithCharset, RTL_TEXTENCODING_UTF8); - if (!sDecUri.equals(*j)) - { - retVal = false; - break; - } - } - } + //split up the uri and path into segments. Both are separated by '/' + std::vector vUriSegments; + sal_Int32 nIndex = 0; + do + { + OUString aToken = rUri.getToken( 0, '/', nIndex ); + vUriSegments.push_back(aToken); + } + while (nIndex >= 0); + + std::vector vPathSegments; + nIndex = 0; + do + { + OUString aToken = rPath.getToken( 0, '/', nIndex ); + vPathSegments.push_back(aToken); + } + while (nIndex >= 0); + + //Now compare each segment of the uri with its counterpart from the path + if (vUriSegments.size() == vPathSegments.size()) + { + retVal = true; + typedef std::vector::const_iterator CIT; + for (CIT i = vUriSegments.begin(), j = vPathSegments.begin(); + i != vUriSegments.end(); i++, j++) + { + //Decode the uri segment, so that %20 becomes ' ', etc. + OUString sDecUri = ::rtl::Uri::decode( + *i, rtl_UriDecodeWithCharset, RTL_TEXTENCODING_UTF8); + if (!sDecUri.equals(*j)) + { + retVal = false; + break; + } + } + } return retVal; } - -::rtl::OUString DocumentSignatureHelper::GetDocumentContentSignatureDefaultStreamName() -{ - return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "documentsignatures.xml" ) ); -} - -::rtl::OUString DocumentSignatureHelper::GetScriptingContentSignatureDefaultStreamName() -{ - return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "macrosignatures.xml" ) ); -} - -::rtl::OUString DocumentSignatureHelper::GetPackageSignatureDefaultStreamName() -{ - return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "packagesignatures.xml" ) ); -} + +::rtl::OUString DocumentSignatureHelper::GetDocumentContentSignatureDefaultStreamName() +{ + return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "documentsignatures.xml" ) ); +} + +::rtl::OUString DocumentSignatureHelper::GetScriptingContentSignatureDefaultStreamName() +{ + return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "macrosignatures.xml" ) ); +} + +::rtl::OUString DocumentSignatureHelper::GetPackageSignatureDefaultStreamName() +{ + return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "packagesignatures.xml" ) ); +}