--- a/appinstaller/AppinstUi/Daemon/Src/daemonbehaviour.cpp Thu Dec 17 08:51:10 2009 +0200
+++ b/appinstaller/AppinstUi/Daemon/Src/daemonbehaviour.cpp Thu Jan 07 12:52:45 2010 +0200
@@ -24,60 +24,59 @@
namespace Swi
- {
- // For uninstaller
- CDaemonBehaviour* CDaemonBehaviour::NewL( CProgramStatus& aMainStatus )
- {
- CDaemonBehaviour* self = NewLC( aMainStatus );
- CleanupStack::Pop(self);
- return self;
- }
-
- CDaemonBehaviour* CDaemonBehaviour::NewLC( CProgramStatus& aMainStatus )
- {
- CDaemonBehaviour* self = new (ELeave) CDaemonBehaviour;
- CleanupStack::PushL(self);
- self->ConstructL( aMainStatus );
- return self;
- }
-
- void CDaemonBehaviour::ConstructL( CProgramStatus& aMainStatus )
- {
- User::LeaveIfError(iFs.Connect());
- User::LeaveIfError(iFs.ShareProtected());
-
- // For uninstaller
- iSisInstaller = CSisInstaller::NewL( this, aMainStatus );
- // Create plugin
- TRAP_IGNORE( iSwiDaemonPlugin = CSwiDaemonPlugin::NewL() );
- }
-
- CDaemonBehaviour::~CDaemonBehaviour()
- {
- if ( iSwiDaemonPlugin )
- {
- delete iSwiDaemonPlugin;
- REComSession::FinalClose();
- }
- delete iSisInstaller;
- iSisInstaller = NULL;
- iFs.Close();
-
-
-#ifdef RD_MULTIPLE_DRIVE
- iDriveArray.Close();
-#endif
- }
-
- // from MDaemonBehaviour
- TBool CDaemonBehaviour::StartupL()
- {
- // Return state of Startup
- return ETrue;
- }
+ {
+ // For uninstaller
+ CDaemonBehaviour* CDaemonBehaviour::NewL( CProgramStatus& aMainStatus )
+ {
+ CDaemonBehaviour* self = NewLC( aMainStatus );
+ CleanupStack::Pop(self);
+ return self;
+ }
+
+ CDaemonBehaviour* CDaemonBehaviour::NewLC( CProgramStatus& aMainStatus )
+ {
+ CDaemonBehaviour* self = new (ELeave) CDaemonBehaviour;
+ CleanupStack::PushL(self);
+ self->ConstructL( aMainStatus );
+ return self;
+ }
+
+ void CDaemonBehaviour::ConstructL( CProgramStatus& aMainStatus )
+ {
+ User::LeaveIfError(iFs.Connect());
+ User::LeaveIfError(iFs.ShareProtected());
+
+ // For uninstaller
+ iSisInstaller = CSisInstaller::NewL( this, aMainStatus );
+ // Create plugin
+ TRAP_IGNORE( iSwiDaemonPlugin = CSwiDaemonPlugin::NewL() );
+ }
+
+ CDaemonBehaviour::~CDaemonBehaviour()
+ {
+ if ( iSwiDaemonPlugin )
+ {
+ delete iSwiDaemonPlugin;
+ REComSession::FinalClose();
+ }
+ delete iSisInstaller;
+ iSisInstaller = NULL;
+ iFs.Close();
+
+#ifdef RD_MULTIPLE_DRIVE
+ iDriveArray.Close();
+#endif
+ }
+
+ // from MDaemonBehaviour
+ TBool CDaemonBehaviour::StartupL()
+ {
+ // Return state of Startup
+ return ETrue;
+ }
void CDaemonBehaviour::MediaChangeL(TInt aDrive, TChangeType aChangeType)
- {
+ {
FLOG_1( _L("Daemon: Media change %d"), aDrive );
RSisRegistryWritableSession registrySession;
@@ -86,69 +85,79 @@
if (aChangeType==EMediaInserted)
{
- FLOG( _L("Daemon: Media inserted") );
+ FLOG( _L("Daemon: Media inserted") );
+ FLOG( _L("Daemon: Media change: Update sis registry") );
+ // notify IAR
+ // Error ou1cimx1#212652
+ // Note SWI Daemon needs to notify sis registry from
+ // media change. Otherwice registry is not updated
+ // and e.g. IsPresentL function will give false results.
+ // Note also that this function should be called before
+ // ProcessPreinstalledFilesL in SWI Daemon.
+ registrySession.AddDriveL(aDrive);
+
// Scan directory on the card and run pre-installed through SWIS
- ProcessPreinstalledFilesL(aDrive);
-
- // notify IAR
- registrySession.AddDriveL(aDrive);
-
+ FLOG( _L("Daemon: Media change: Process preinstalled files") );
+ ProcessPreinstalledFilesL(aDrive);
+
#ifdef RD_MULTIPLE_DRIVE
// Add inserted media drive to drive array.
if ( iDriveArray.Find(aDrive) == KErrNotFound )
{
iDriveArray.AppendL(aDrive);
}
-#endif
+#endif
}
else if (aChangeType==EMediaRemoved)
{
FLOG( _L("Daemon: Media removed") );
-
+
#ifdef RD_MULTIPLE_DRIVE
// Get Installer state.
TBool installerRunning = iSisInstaller->IsInstalling();
#endif
-
+
#ifndef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
// notify IAR
+ // Note SWI Daemon need to notify sis registry from
+ // media change.
registrySession.RemoveDriveL(aDrive);
#endif //SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
-
+
// Cancel all requests for install
iSisInstaller->Cancel();
-
+
#ifdef RD_MULTIPLE_DRIVE
-// Notify plugin
- if(iSwiDaemonPlugin)
- {
- TInt index = iDriveArray.Find(aDrive);
- iSwiDaemonPlugin->MediaRemoved(index);
- }
+ // Notify plugin
+ if(iSwiDaemonPlugin)
+ {
+ TInt index = iDriveArray.Find(aDrive);
+ iSwiDaemonPlugin->MediaRemoved(index);
+ }
#else
-// Notify plugin
- if(iSwiDaemonPlugin)
- {
- iSwiDaemonPlugin->MediaRemoved(aDrive);
- }
+ // Notify plugin
+ if(iSwiDaemonPlugin)
+ {
+ iSwiDaemonPlugin->MediaRemoved(aDrive);
+ }
#endif //RD_MULTIPLE_DRIVE
-
+
#ifdef RD_MULTIPLE_DRIVE
// Get index of removed drive from array
TInt index = iDriveArray.Find(aDrive);
-
+
if ( index > KErrNotFound )
{
iDriveArray.Remove(index);
iDriveArray.Compress();
}
-
+
// Continue installing from other drives if needed.
if ( installerRunning )
- {
+ {
// Get count of inserted drives.
TInt count = iDriveArray.Count();
-
+
if ( count )
{
for(index = 0; index < count; index++ )
@@ -158,31 +167,32 @@
}
}
}
-#endif
- }
- CleanupStack::PopAndDestroy(®istrySession);
- }
-
+#endif
+ }
+
+ CleanupStack::PopAndDestroy(®istrySession);
+ }
+
void CDaemonBehaviour::ProcessPreinstalledFilesL(TInt aDrive)
- {
- _LIT(KDaemonPrivatePath,":\\private\\10202dce\\");
-
+ {
+ _LIT(KDaemonPrivatePath,":\\private\\10202dce\\");
+
#ifndef RD_MULTIPLE_DRIVE
- iSisInstaller->Cancel();
-#endif
- // For uninstaller
+ iSisInstaller->Cancel();
+#endif
+ // For uninstaller
// Set on installing mode.
iGeneralProcessStatus = EStateInstalling;
FLOG_1( _L("[CDaemonBehaviour] iGeneralProcessStatus = %d"),
- iGeneralProcessStatus );
-
- ProcessPreinstalledFilesL(aDrive, KDaemonPrivatePath);
+ iGeneralProcessStatus );
+
+ ProcessPreinstalledFilesL(aDrive, KDaemonPrivatePath);
iStartNotified = EFalse;
- iDrive = aDrive;
- iSisInstaller->StartInstallingL();
- }
-
- void CDaemonBehaviour::ProcessPreinstalledFilesL(TInt aDrive, const TDesC& aDirectory)
+ iDrive = aDrive;
+ iSisInstaller->StartInstallingL();
+ }
+
+ void CDaemonBehaviour::ProcessPreinstalledFilesL(TInt aDrive, const TDesC& aDirectory)
{
FLOG( _L("Daemon: ProcessPreInstalledFilesL") );
TPath preInstalledPath;
@@ -193,7 +203,7 @@
FLOG_1( _L("Daemon: ProcessPreInstalledFilesL Getting dir %S"), &preInstalledPath );
CDir* dir = NULL;
- TInt err = iFs.GetDir(preInstalledPath, KEntryAttNormal, ESortNone, dir);
+ TInt err = iFs.GetDir(preInstalledPath, KEntryAttNormal, ESortNone, dir);
if (err != KErrNone && err != KErrPathNotFound)
{
FLOG_1( _L("Daemon: ProcessPreInstalledFilesL GetDir with error %d"), err );
@@ -217,7 +227,7 @@
}
}
- // For uninstaller
+ // For uninstaller
TInt& CDaemonBehaviour::GetProcessStatus()
{
return iGeneralProcessStatus;
@@ -227,8 +237,8 @@
void CDaemonBehaviour::SetProcessStatus( TInt aStatus )
{
iGeneralProcessStatus = aStatus;
- }
-
+ }
+
// For plugin support
void CDaemonBehaviour::DoNotifyMediaProcessingComplete()
{
@@ -253,11 +263,11 @@
{
FLOG( _L("Daemon: NotifyPlugin"));
if ( !iStartNotified )
- {
- FLOG_1( _L("Daemon: MediaProcessingStart for drive = %d"), iDrive );
- iSwiDaemonPlugin->MediaProcessingStart( iDrive );
- iStartNotified = ETrue;
- }
+ {
+ FLOG_1( _L("Daemon: MediaProcessingStart for drive = %d"), iDrive );
+ iSwiDaemonPlugin->MediaProcessingStart( iDrive );
+ iStartNotified = ETrue;
+ }
}
// For plugin support
@@ -282,5 +292,5 @@
CleanupStack::PopAndDestroy( &file );
}
- } // namespace Swi
+ } // namespace Swi
//EOF
--- a/appinstaller/AppinstUi/Plugin/SisxUI/Inc/SisxUIOperationWatcher.h Thu Dec 17 08:51:10 2009 +0200
+++ b/appinstaller/AppinstUi/Plugin/SisxUI/Inc/SisxUIOperationWatcher.h Thu Jan 07 12:52:45 2010 +0200
@@ -26,12 +26,17 @@
#include <e32base.h>
#include <SWInstStartupTaskParam.h>
#include <SWInstLogTaskParam.h>
-#include <DRMHelper.h>
#include "SisxUIHandler.h"
#include "CUICancelTimer.h"
// FORWARD DECLARATIONS
+namespace ContentAccess
+{
+class CManager;
+class TAgent;
+}
+
namespace Swi
{
class CInstallPrefs;
@@ -312,7 +317,7 @@
* @param aAgent - content access agent
* @return Manager - Manages files and content access agents
*/
- ContentAccess::CManager* GetCafDataL( TAgent& aAgent );
+ ContentAccess::CManager* GetCafDataL( ContentAccess::TAgent& aAgent );
/**
* Register PIP package content to DRM DCF server.
--- a/appinstaller/AppinstUi/Plugin/SisxUI/Src/SisxUIOperationWatcher.cpp Thu Dec 17 08:51:10 2009 +0200
+++ b/appinstaller/AppinstUi/Plugin/SisxUI/Src/SisxUIOperationWatcher.cpp Thu Jan 07 12:52:45 2010 +0200
@@ -36,13 +36,10 @@
#include <SWInstFileTaskParam.h>
#include <e32property.h>
#include <SWInstallerInternalPSKeys.h>
-#include <Oma2Agent.h>
+#include <Oma2Agent.h> // KOmaDrm2AgentName
#include <syslangutil.h>
-
-#include <caf/caf.h>
-//#include <caf/content.h>
-//#include <caf/stringattributeset.h>
-//#include <caf/attributeset.h>
+#include <caf/manager.h> // ContentAccess::CManager
+#include <caf/agent.h> // ContentAccess::TAgent
#include <DcfEntry.h> // JPAA-7GEB7P
#include <DcfRep.h> // JPAA-7GEB7P
@@ -1228,7 +1225,7 @@
// (other items were commented in a header).
// -----------------------------------------------------------------------------
//
-ContentAccess::CManager* CSisxUIOperationWatcher::GetCafDataL( TAgent& aAgent )
+ContentAccess::CManager* CSisxUIOperationWatcher::GetCafDataL( ContentAccess::TAgent& aAgent )
{
RArray<TAgent> agents;
@@ -1245,8 +1242,8 @@
break;
}
}
- CleanupStack::Pop(); // manager
- CleanupStack::PopAndDestroy(); // agents
+ CleanupStack::Pop( manager );
+ CleanupStack::PopAndDestroy( &agents );
return manager;
}
--- a/iaupdate/IAD/engine/controller/src/iaupdateloader.cpp Thu Dec 17 08:51:10 2009 +0200
+++ b/iaupdate/IAD/engine/controller/src/iaupdateloader.cpp Thu Jan 07 12:52:45 2010 +0200
@@ -159,10 +159,14 @@
rootExpired = ETrue;
}
- MNcdNodeContainer* container( rootNode->QueryInterfaceLC< MNcdNodeContainer >() );
- TInt childCount( container->ChildCount() );
- CleanupStack::PopAndDestroy( container );
-
+ TInt childCount( 0 );
+ MNcdNodeContainer* container( rootNode->QueryInterfaceLC< MNcdNodeContainer >() );
+ if ( container )
+ {
+ childCount = container->ChildCount();
+ CleanupStack::PopAndDestroy( container );
+ }
+
IAUPDATE_TRACE_1("[IAUPDATE] count of children: %d", childCount );
//2 here means arrow CGW and firmware CGW. If one of them failed last time,
--- a/iaupdate/IAD/ui/group/iaupdate.mmp Thu Dec 17 08:51:10 2009 +0200
+++ b/iaupdate/IAD/ui/group/iaupdate.mmp Thu Jan 07 12:52:45 2010 +0200
@@ -80,7 +80,7 @@
USERINCLUDE ../../firmwareupdate/inc
USERINCLUDE ../../launcher/inc
-MW_LAYER_SYSTEMINCLUDE
+APP_LAYER_SYSTEMINCLUDE
LIBRARY iaupdatetools.lib
LIBRARY iaupdateapi.lib
--- a/installationservices/swi/source/certstoretobin/Swicertstoretobin.pl Thu Dec 17 08:51:10 2009 +0200
+++ b/installationservices/swi/source/certstoretobin/Swicertstoretobin.pl Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
# Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0""
+# under the terms of the License "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
--- a/installationservices/swi/source/sisxrecognizer/recsisx.cpp Thu Dec 17 08:51:10 2009 +0200
+++ b/installationservices/swi/source/sisxrecognizer/recsisx.cpp Thu Jan 07 12:52:45 2010 +0200
@@ -24,6 +24,7 @@
#include <ecom/ecom.h>
#include <ecom/implementationproxy.h>
#include <u32hal.h>
+#include <e32svr.h>
using namespace Swi;
--- a/installationservices/swi/test/tsisfile/data/cancel.pkg Thu Dec 17 08:51:10 2009 +0200
+++ b/installationservices/swi/test/tsisfile/data/cancel.pkg Thu Jan 07 12:52:45 2010 +0200
@@ -465,4 +465,504 @@
"test1.txt"-"C:\Documents\InstTest\test3.txt";
"test1.txt"-"C:\Documents\InstTest\test3.txt";
"test1.txt"-"C:\Documents\InstTest\test3.txt";
-"test1.txt"-"C:\Documents\InstTest\test3.txt";
\ No newline at end of file
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
+"test1.txt"-"C:\Documents\InstTest\test3.txt";
--- a/installationservices/swi/test/tuiscriptadaptors/scripts/switermination.script Thu Dec 17 08:51:10 2009 +0200
+++ b/installationservices/swi/test/tuiscriptadaptors/scripts/switermination.script Thu Jan 07 12:52:45 2010 +0200
@@ -44,7 +44,7 @@
RUN_TEST_STEP 50 tuiscriptadaptors SwisNotRunning
// Make sure install can actually complete now (and set up for further tests)
-RUN_TEST_STEP 400 tuiscriptadaptors InstallStep z:\tswi\tuiscriptadaptors\scripts\switermination.ini cancelpackage
+RUN_TEST_STEP 600 tuiscriptadaptors InstallStep z:\tswi\tuiscriptadaptors\scripts\switermination.ini cancelpackage
// Abort install which runs exe to completion
RUN_TEST_STEP_RESULT -39 3 tuiscriptadaptors InstallStep z:\tswi\tuiscriptadaptors\scripts\testrun.ini exeRIRW
@@ -122,7 +122,7 @@
CONSECUTIVE
CONCURRENT
-run_program killrunningprocess 101f7295 800000
+run_program killrunningprocess 101f7295 400000
RUN_TEST_STEP 20 tuiscriptadaptors InstallStep z:\tswi\tuiscriptadaptors\scripts\switermination.ini def052175_swiskilled
CONSECUTIVE
@@ -259,7 +259,7 @@
DELAY 4000
// Complete uninstall of cancelpackage.
-RUN_TEST_STEP 15 tuiscriptadaptors UninstallStep z:\tswi\tuiscriptadaptors\scripts\switermination.ini u_cancelpackage
+RUN_TEST_STEP 35 tuiscriptadaptors UninstallStep z:\tswi\tuiscriptadaptors\scripts\switermination.ini u_cancelpackage
END_TESTCASE API-SEC-SwisTerminated-0001
--- a/ncdengine/provider/server/src/ncdinstalloperationimpl.cpp Thu Dec 17 08:51:10 2009 +0200
+++ b/ncdengine/provider/server/src/ncdinstalloperationimpl.cpp Thu Jan 07 12:52:45 2010 +0200
@@ -467,7 +467,10 @@
{
// Writing JAD to file on this side because proxies can't
// write to engine's private dir
- DeletePtr( iJadFile );
+ if ( iJadFile )
+ {
+ DeletePtr( iJadFile );
+ }
iJadFile =
CNcdProviderUtils::InstallationServiceL().WriteJadL(
fileInfo->FilePath(), downloadInfo->DescriptorData() );
--- a/secureswitools/makekeys/src/MAKEKEYS.CPP Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/makekeys/src/MAKEKEYS.CPP Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0""
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/makekeys/src/openssllicense.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/makekeys/src/openssllicense.h Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0""
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/openssllib/import/inc/openssl/comp.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/openssllib/import/inc/openssl/comp.h Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
#ifndef HEADER_COMP_H
#define HEADER_COMP_H
--- a/secureswitools/openssllib/import/inc/openssl/ebcdic.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/openssllib/import/inc/openssl/ebcdic.h Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/openssllib/import/inc/openssl/opensslconf.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/openssllib/import/inc/openssl/opensslconf.h Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
--- a/secureswitools/openssllib/import/inc/openssl/opensslv.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/openssllib/import/inc/openssl/opensslv.h Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/dumpsis/options.cpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/dumpsis/options.cpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0""
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/interpretsis/openssllicense.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/interpretsis/openssllicense.h Thu Jan 07 12:52:45 2010 +0200
@@ -1,7 +1,7 @@
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
-// under the terms of "Eclipse Public License v1.0""
+// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
--- a/secureswitools/swisistools/source/makesis/makesis.cpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/makesis/makesis.cpp Thu Jan 07 12:52:45 2010 +0200
@@ -1,7 +1,7 @@
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
-// under the terms of "Eclipse Public License v1.0""
+// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
--- a/secureswitools/swisistools/source/makesis/openssllicense.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/makesis/openssllicense.h Thu Jan 07 12:52:45 2010 +0200
@@ -1,7 +1,7 @@
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
-// under the terms of "Eclipse Public License v1.0""
+// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
--- a/secureswitools/swisistools/source/signsis/openssllicense.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/signsis/openssllicense.h Thu Jan 07 12:52:45 2010 +0200
@@ -1,7 +1,7 @@
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
-// under the terms of "Eclipse Public License v1.0""
+// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
--- a/secureswitools/swisistools/source/signsis/parameter.cpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/signsis/parameter.cpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0""
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOM.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOM.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMAttr.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMAttr.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMBuilder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMBuilder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMCDATASection.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMCDATASection.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMCharacterData.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMCharacterData.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMComment.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMComment.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMConfiguration.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMConfiguration.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocument.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocument.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentFragment.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentFragment.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentRange.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentRange.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentTraversal.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentTraversal.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentType.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentType.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMElement.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMElement.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntity.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntity.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntityReference.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntityReference.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntityResolver.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntityResolver.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMError.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMError.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMErrorHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMErrorHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementation.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementation.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationLS.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationLS.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationRegistry.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationRegistry.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMInputSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMLocator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMLocator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNamedNodeMap.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNamedNodeMap.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNode.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNode.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
#ifndef DOMNode_HEADER_GUARD_
#define DOMNode_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeFilter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeFilter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeIterator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeIterator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeList.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeList.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNotation.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNotation.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMPSVITypeInfo.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMPSVITypeInfo.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMProcessingInstruction.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMProcessingInstruction.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMRange.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMRange.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMRangeException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMRangeException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMText.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMText.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMTreeWalker.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMTreeWalker.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMTypeInfo.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMTypeInfo.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMUserDataHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMUserDataHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMWriter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMWriter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMWriterFilter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMWriterFilter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathEvaluator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathEvaluator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathExpression.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathExpression.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathNSResolver.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathNSResolver.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathNamespace.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathNamespace.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathResult.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathResult.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/StDOMNode.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/StDOMNode.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/ChildNode.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/ChildNode.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOMParser.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOMParser.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOMString.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOMString.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Attr.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Attr.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_CDATASection.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_CDATASection.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_CharacterData.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_CharacterData.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Comment.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Comment.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DOMException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DOMException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DOMImplementation.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DOMImplementation.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Document.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Document.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DocumentFragment.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DocumentFragment.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DocumentType.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DocumentType.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Element.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Element.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Entity.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Entity.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_EntityReference.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_EntityReference.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NamedNodeMap.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NamedNodeMap.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Node.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Node.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeFilter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeFilter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeIterator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeIterator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeList.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeList.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Notation.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Notation.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_ProcessingInstruction.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_ProcessingInstruction.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Range.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Range.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_RangeException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_RangeException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Text.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Text.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_TreeWalker.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_TreeWalker.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_XMLDecl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_XMLDecl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DomMemDebug.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DomMemDebug.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/MemDebug.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/MemDebug.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NameNodeFilter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NameNodeFilter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NodeIDMap.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NodeIDMap.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NodeVector.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NodeVector.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/ParentNode.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/ParentNode.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/BinOutputStream.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/BinOutputStream.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/LocalFileFormatTarget.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/LocalFileFormatTarget.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/LocalFileInputSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/LocalFileInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemBufFormatTarget.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemBufFormatTarget.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemBufInputSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemBufInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemoryManager.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemoryManager.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/StdInInputSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/StdInInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/StdOutFormatTarget.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/StdOutFormatTarget.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/URLInputSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/URLInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/ValidationContext.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/ValidationContext.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/Wrapper4DOMInputSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/Wrapper4DOMInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/Wrapper4InputSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/Wrapper4InputSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttDef.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttDef.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttDefList.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttDefList.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttr.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttr.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLBuffer.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLBuffer.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLBufferMgr.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLBufferMgr.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLContentModel.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLDTDDescription.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLDTDDescription.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLDocumentHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLDocumentHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLElementDecl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLElementDecl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLEntityDecl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLEntityDecl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLEntityHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLEntityHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLErrorCodes.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLErrorCodes.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLErrorReporter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLErrorReporter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLFormatter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLFormatter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLGrammarDescription.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLGrammarDescription.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLGrammarPool.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLGrammarPool.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLNotationDecl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLNotationDecl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLPScanToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLPScanToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRecognizer.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRecognizer.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRefInfo.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRefInfo.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLSchemaDescription.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLSchemaDescription.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLValidityCodes.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLValidityCodes.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIAttribute.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIAttribute.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIAttributeList.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIAttributeList.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIElement.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIElement.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIItem.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIItem.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAnnotation.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAnnotation.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeDeclaration.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeDeclaration.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeGroupDefinition.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeGroupDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeUse.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeUse.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSComplexTypeDefinition.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSComplexTypeDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSConstants.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSConstants.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSElementDeclaration.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSElementDeclaration.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSFacet.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSFacet.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSIDCDefinition.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSIDCDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModel.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModel.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModelGroup.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModelGroup.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModelGroupDefinition.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModelGroupDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSMultiValueFacet.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSMultiValueFacet.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamedMap.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamedMap.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamedMap.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamedMap.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamespaceItem.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamespaceItem.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNotationDeclaration.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNotationDeclaration.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSObject.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSObject.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSParticle.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSParticle.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSTypeDefinition.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSTypeDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSValue.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSValue.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSWildcard.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSWildcard.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/AbstractDOMParser.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/AbstractDOMParser.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/DOMBuilderImpl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/DOMBuilderImpl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAX2XMLFilterImpl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAX2XMLFilterImpl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAX2XMLReaderImpl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAX2XMLReaderImpl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAXParser.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAXParser.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/XercesDOMParser.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/XercesDOMParser.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/AttributeList.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/AttributeList.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/DTDHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/DTDHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/DocumentHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/DocumentHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/EntityResolver.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/EntityResolver.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/ErrorHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/ErrorHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/HandlerBase.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/HandlerBase.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/InputSource.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/InputSource.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/Locator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/Locator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/Parser.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/Parser.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/SAXException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/SAXException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/SAXParseException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/SAXParseException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/Attributes.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/Attributes.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/ContentHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/ContentHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/DeclHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/DeclHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/DefaultHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/DefaultHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/LexicalHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/LexicalHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/SAX2XMLFilter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/SAX2XMLFilter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/SAX2XMLReader.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/SAX2XMLReader.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/XMLReaderFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/XMLReaderFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ArrayIndexOutOfBoundsException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ArrayIndexOutOfBoundsException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/AutoSense.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/AutoSense.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Base64.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Base64.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BaseRefVectorOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BaseRefVectorOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BaseRefVectorOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BaseRefVectorOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BinFileInputStream.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BinFileInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BinInputStream.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BinInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BitOps.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BitOps.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BitSet.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BitSet.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/BorlandCDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/BorlandCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/CSetDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/CSetDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/CodeWarriorDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/CodeWarriorDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/DECCXXDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/DECCXXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/GCCDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/GCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/HPCCDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/HPCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/IBMVAOS2Defs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/IBMVAOS2Defs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/IBMVAW32Defs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/IBMVAW32Defs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/MIPSproDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/MIPSproDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/MVSCPPDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/MVSCPPDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/OS400SetDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/OS400SetDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/PTXCCDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/PTXCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/QCCDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/QCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SCOCCDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SCOCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SunCCDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SunCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SunKaiDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SunKaiDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/TandemCCDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/TandemCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/VCPPDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/VCPPDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/CountedPointer.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/CountedPointer.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/CountedPointer.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/CountedPointer.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/DefaultPanicHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/DefaultPanicHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/EmptyStackException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/EmptyStackException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/EncodingValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/EncodingValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/FlagJanitor.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/FlagJanitor.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/FlagJanitor.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/FlagJanitor.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashBase.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashBase.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashCMStateSet.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashCMStateSet.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashPtr.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashPtr.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashXMLCh.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashXMLCh.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HexBin.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HexBin.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/IOException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/IOException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/IllegalArgumentException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/IllegalArgumentException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/InvalidCastException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/InvalidCastException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Janitor.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Janitor.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Janitor.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Janitor.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KVStringPair.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KVStringPair.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyRefPair.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyRefPair.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyRefPair.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyRefPair.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyValuePair.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyValuePair.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyValuePair.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyValuePair.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/LogicalPath.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/LogicalPath.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/ICU/ICUMsgLoader.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/ICU/ICUMsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/InMemory/XercesMessages_en_US.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/InMemory/XercesMessages_en_US.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgCatalog/XMLMsgCat_Ids.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgCatalog/XMLMsgCat_Ids.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgFile/MsgLoader.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgFile/MsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgFile/XMLMessages.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgFile/XMLMessages.h Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/Win32/Win32MsgLoader.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/Win32/Win32MsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Mutexes.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Mutexes.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NameIdPool.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NameIdPool.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NameIdPool.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NameIdPool.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccess/MacOSURLAccess.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccess/MacOSURLAccess.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccess/URLAccessBinInputStream.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccess/URLAccessBinInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccessCF/MacOSURLAccessCF.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccessCF/MacOSURLAccessCF.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccessCF/URLAccessCFBinInputStream.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccessCF/URLAccessCFBinInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/Socket/SocketNetAccessor.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/Socket/SocketNetAccessor.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/Socket/UnixHTTPURLInputStream.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/Socket/UnixHTTPURLInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/WinSock/BinHTTPURLInputStream.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/WinSock/BinHTTPURLInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/WinSock/WinSockNetAccessor.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/WinSock/WinSockNetAccessor.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/libWWW/BinURLInputStream.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/libWWW/BinURLInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/libWWW/LibWWWNetAccessor.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/libWWW/LibWWWNetAccessor.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NoSuchElementException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NoSuchElementException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NullPointerException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NullPointerException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NumberFormatException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NumberFormatException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/OutOfMemoryException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/OutOfMemoryException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/PanicHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/PanicHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ParseException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ParseException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/PlatformUtils.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/PlatformUtils.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/AIX/AIXDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/AIX/AIXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/BeOS/BeOSDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/BeOS/BeOSDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Cygwin/CygwinDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Cygwin/CygwinDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/FreeBSD/FreeBSDDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/FreeBSD/FreeBSDDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/HPUX/HPUXDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/HPUX/HPUXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/IRIX/IRIXDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/IRIX/IRIXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Interix/InterixDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Interix/InterixDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Linux/LinuxDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Linux/LinuxDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacAbstractFile.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacAbstractFile.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacCarbonFile.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacCarbonFile.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacOSDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacOSDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacPosixFile.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacPosixFile.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/NetBSD/NetBSDDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/NetBSD/NetBSDDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS2/OS2Defs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS2/OS2Defs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/FileHandleImpl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/FileHandleImpl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/OS390Defs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/OS390Defs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/Path390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/Path390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS400/OS400Defs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS400/OS400Defs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS400/OS400PlatformUtils.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS400/OS400PlatformUtils.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OpenServer/OpenServerDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OpenServer/OpenServerDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/PTX/PTXDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/PTX/PTXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/QNX/QNXDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/QNX/QNXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Solaris/SolarisDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Solaris/SolarisDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Tandem/TandemDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Tandem/TandemDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Tru64/Tru64Defs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Tru64/Tru64Defs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/UnixWare/UnixWareDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/UnixWare/UnixWareDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Win32/Win32Defs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Win32/Win32Defs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Win32/resource.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Win32/resource.h Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/QName.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/QName.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash2KeysTableOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash2KeysTableOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash2KeysTableOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash2KeysTableOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash3KeysIdPool.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash3KeysIdPool.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash3KeysIdPool.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash3KeysIdPool.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHashTableOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHashTableOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHashTableOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHashTableOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefStackOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefStackOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefStackOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefStackOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefVectorOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefVectorOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefVectorOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefVectorOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RuntimeException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RuntimeException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SchemaDateTimeException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SchemaDateTimeException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SecurityManager.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SecurityManager.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/StringPool.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/StringPool.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SynchronizedStringPool.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SynchronizedStringPool.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransENameMap.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransENameMap.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransENameMap.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransENameMap.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Cygwin/CygwinTransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Cygwin/CygwinTransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/ICU/ICUTransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/ICU/ICUTransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv/IconvTransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv/IconvTransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv390/Iconv390TransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv390/Iconv390TransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/Iconv400TransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/Iconv400TransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/iconv_cnv.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/iconv_cnv.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/iconv_util.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/iconv_util.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/pos400.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/pos400.h Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/utypes.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/utypes.h Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/IconvGNU/IconvGNUTransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/IconvGNU/IconvGNUTransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/MacOSUnicodeConverter/MacOSUnicodeConverter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/MacOSUnicodeConverter/MacOSUnicodeConverter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/Uniconv390TransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/Uniconv390TransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XML256TableTranscoder390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XML256TableTranscoder390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XML88591Transcoder390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XML88591Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLASCIITranscoder390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLASCIITranscoder390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLEBCDICTranscoder390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLEBCDICTranscoder390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLIBM1047Transcoder390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLIBM1047Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLIBM1140Transcoder390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLIBM1140Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLUTF8Transcoder390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLUTF8Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLWin1252Transcoder390.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLWin1252Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/ccsid.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/ccsid.h Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/uniconv.h Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/uniconv.h Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Win32/Win32TransService.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Win32/Win32TransService.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TranscodingException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TranscodingException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UTFDataFormatException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UTFDataFormatException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UnexpectedEOFException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UnexpectedEOFException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UnsupportedEncodingException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UnsupportedEncodingException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueArrayOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueArrayOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueArrayOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueArrayOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueHashTableOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueHashTableOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueHashTableOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueHashTableOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueStackOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueStackOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueStackOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueStackOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueVectorOf.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueVectorOf.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueVectorOf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueVectorOf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XML256TableTranscoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XML256TableTranscoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XML88591Transcoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XML88591Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLASCIITranscoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLASCIITranscoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLAbstractDoubleFloat.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLAbstractDoubleFloat.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLBigDecimal.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLBigDecimal.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLBigInteger.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLBigInteger.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLChTranscoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLChTranscoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLChar.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLChar.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDOMMsg.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDOMMsg.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDateTime.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDateTime.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDeleterFor.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDeleterFor.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDeleterFor.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDeleterFor.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDouble.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDouble.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEBCDICTranscoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEBCDICTranscoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEntityResolver.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEntityResolver.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEnumerator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEnumerator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLExceptMsgs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLExceptMsgs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLFloat.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLFloat.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLHolder.c Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLHolder.c Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLHolder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLHolder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLIBM1047Transcoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLIBM1047Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLIBM1140Transcoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLIBM1140Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLInitializer.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLInitializer.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLInteger.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLInteger.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLMsgLoader.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLMsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLNetAccessor.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLNetAccessor.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLNumber.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLNumber.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLRegisterCleanup.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLRegisterCleanup.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLResourceIdentifier.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLResourceIdentifier.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLString.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLString.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLStringTokenizer.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLStringTokenizer.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUCS4Transcoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUCS4Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLURL.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLURL.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUTF16Transcoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUTF16Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUTF8Transcoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUTF8Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUni.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUni.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUniDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUniDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUri.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUri.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLWin1252Transcoder.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLWin1252Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMemory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMemory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XercesDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XercesDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XercesVersion.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XercesVersion.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ASCIIRangeFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ASCIIRangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/BMPattern.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/BMPattern.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/BlockRangeFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/BlockRangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/CharToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/CharToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ClosureToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ClosureToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ConcatToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ConcatToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ConditionToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ConditionToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Match.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Match.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ModifierToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ModifierToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Op.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Op.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/OpFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/OpFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ParenToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ParenToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ParserForXMLSchema.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ParserForXMLSchema.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeTokenMap.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeTokenMap.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegularExpression.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegularExpression.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxParser.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxParser.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxUtil.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxUtil.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/StringToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/StringToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Token.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Token.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/TokenFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/TokenFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/TokenInc.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/TokenInc.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UniCharTable.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UniCharTable.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UnicodeRangeFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UnicodeRangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UnionToken.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UnionToken.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/XMLRangeFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/XMLRangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/XMLUniCharacter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/XMLUniCharacter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDAttDef.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDAttDef.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDAttDefList.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDAttDefList.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDElementDecl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDElementDecl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDEntityDecl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDEntityDecl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDGrammar.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDGrammar.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDScanner.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDScanner.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DocTypeHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DocTypeHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/AllContentModel.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/AllContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMAny.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMAny.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMBinaryOp.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMBinaryOp.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMLeaf.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMLeaf.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMNode.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMNode.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMStateSet.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMStateSet.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMUnaryOp.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMUnaryOp.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/ContentLeafNameTypeVector.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/ContentLeafNameTypeVector.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/ContentSpecNode.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/ContentSpecNode.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/DFAContentModel.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/DFAContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/Grammar.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/Grammar.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/GrammarResolver.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/GrammarResolver.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/MixedContentModel.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/MixedContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/SimpleContentModel.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/SimpleContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractNumericFacetValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractNumericFacetValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractNumericValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractNumericValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractStringValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractStringValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AnySimpleTypeDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AnySimpleTypeDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AnyURIDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AnyURIDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/Base64BinaryDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/Base64BinaryDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/BooleanDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/BooleanDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DatatypeValidatorFactory.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DatatypeValidatorFactory.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateTimeDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateTimeDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateTimeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateTimeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DayDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DayDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DecimalDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DecimalDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DoubleDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DoubleDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DurationDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DurationDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/ENTITYDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/ENTITYDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/FloatDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/FloatDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/HexBinaryDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/HexBinaryDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/IDDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/IDDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/IDREFDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/IDREFDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/InvalidDatatypeFacetException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/InvalidDatatypeFacetException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/InvalidDatatypeValueException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/InvalidDatatypeValueException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/ListDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/ListDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/MonthDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/MonthDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/MonthDayDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/MonthDayDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NCNameDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NCNameDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NOTATIONDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NOTATIONDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NameDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NameDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/QNameDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/QNameDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/StringDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/StringDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/TimeDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/TimeDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/UnionDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/UnionDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/XMLCanRepGroup.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/XMLCanRepGroup.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/YearDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/YearDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/YearMonthDatatypeValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/YearMonthDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/ComplexTypeInfo.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/ComplexTypeInfo.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/GeneralAttributeCheck.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/GeneralAttributeCheck.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/NamespaceScope.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/NamespaceScope.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/PSVIDefs.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/PSVIDefs.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaAttDef.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaAttDef.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaAttDefList.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaAttDefList.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaElementDecl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaElementDecl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaGrammar.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaGrammar.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaInfo.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaInfo.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaSymbols.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaSymbols.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaValidator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaValidator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SubstitutionGroupComparator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SubstitutionGroupComparator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/TraverseSchema.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/TraverseSchema.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XMLSchemaDescriptionImpl.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XMLSchemaDescriptionImpl.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDDOMParser.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDDOMParser.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDErrorReporter.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDErrorReporter.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDLocator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDLocator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XUtil.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XUtil.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesAttGroupInfo.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesAttGroupInfo.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesElementWildcard.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesElementWildcard.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesGroupInfo.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesGroupInfo.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/FieldActivator.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/FieldActivator.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/FieldValueMap.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/FieldValueMap.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Field.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Field.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Key.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Key.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_KeyRef.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_KeyRef.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Selector.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Selector.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Unique.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Unique.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IdentityConstraint.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IdentityConstraint.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IdentityConstraintHandler.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IdentityConstraintHandler.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/ValueStore.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/ValueStore.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/ValueStoreCache.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/ValueStoreCache.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathException.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathException.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathMatcher.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathMatcher.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathMatcherStack.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathMatcherStack.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathSymbols.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathSymbols.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XercesXPath.hpp Thu Dec 17 08:51:10 2009 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XercesXPath.hpp Thu Jan 07 12:52:45 2010 +0200
@@ -2,7 +2,7 @@
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
+* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*