|
From: <sb...@us...> - 2011-08-22 12:24:30
|
Revision: 6012
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=6012&view=rev
Author: sbohlen
Date: 2011-08-22 12:24:23 +0000 (Mon, 22 Aug 2011)
Log Message:
-----------
-delete non-source-code-related content from the repository to prevent subsequent use now that the authoritative repo has been switched to GITHUB
-introduce OBSOLETE.txt message file into all folders
-prepend OBSOLETE message to all .cs files to further ensure viewers are advised that the content in this repo is obsolete
Modified Paths:
--------------
trunk/nhibernate/src/NHibernate/Classic/ILifecycle.cs
trunk/nhibernate/src/NHibernate/Classic/IValidatable.cs
trunk/nhibernate/src/NHibernate/Classic/ValidationFailure.cs
trunk/nhibernate/src/NHibernate/Collection/AbstractPersistentCollection.cs
trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericBag.cs
trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericIdentifierBag.cs
trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericList.cs
trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericMap.cs
trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericSet.cs
trunk/nhibernate/src/NHibernate/Collection/IPersistentCollection.cs
trunk/nhibernate/src/NHibernate/Collection/PersistentArrayHolder.cs
trunk/nhibernate/src/NHibernate/Collection/PersistentBag.cs
trunk/nhibernate/src/NHibernate/Collection/PersistentIdentifierBag.cs
trunk/nhibernate/src/NHibernate/Collection/PersistentList.cs
trunk/nhibernate/src/NHibernate/Collection/PersistentMap.cs
trunk/nhibernate/src/NHibernate/Collection/PersistentSet.cs
trunk/nhibernate/src/NHibernate/Connection/ConnectionProvider.cs
trunk/nhibernate/src/NHibernate/Connection/ConnectionProviderFactory.cs
trunk/nhibernate/src/NHibernate/Connection/DriverConnectionProvider.cs
trunk/nhibernate/src/NHibernate/Connection/IConnectionProvider.cs
trunk/nhibernate/src/NHibernate/Connection/UserSuppliedConnectionProvider.cs
trunk/nhibernate/src/NHibernate/Context/CallSessionContext.cs
trunk/nhibernate/src/NHibernate/Context/ICurrentSessionContext.cs
trunk/nhibernate/src/NHibernate/Context/ManagedWebSessionContext.cs
trunk/nhibernate/src/NHibernate/Context/MapBasedSessionContext.cs
trunk/nhibernate/src/NHibernate/Context/ReflectiveHttpContext.cs
trunk/nhibernate/src/NHibernate/Context/ThreadLocalSessionContext.cs
trunk/nhibernate/src/NHibernate/Context/ThreadStaticSessionContext.cs
trunk/nhibernate/src/NHibernate/Context/WcfOperationSessionContext.cs
trunk/nhibernate/src/NHibernate/Context/WebSessionContext.cs
Added Paths:
-----------
trunk/nhibernate/src/NHibernate/Classic/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt
trunk/nhibernate/src/NHibernate/Collection/Generic/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt
trunk/nhibernate/src/NHibernate/Collection/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt
trunk/nhibernate/src/NHibernate/Connection/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt
Modified: trunk/nhibernate/src/NHibernate/Classic/ILifecycle.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Classic/ILifecycle.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Classic/ILifecycle.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
namespace NHibernate.Classic
{
/// <summary>
Modified: trunk/nhibernate/src/NHibernate/Classic/IValidatable.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Classic/IValidatable.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Classic/IValidatable.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
namespace NHibernate.Classic
{
/// <summary>
Modified: trunk/nhibernate/src/NHibernate/Classic/ValidationFailure.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Classic/ValidationFailure.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Classic/ValidationFailure.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Runtime.Serialization;
Added: trunk/nhibernate/src/NHibernate/Classic/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt
===================================================================
--- trunk/nhibernate/src/NHibernate/Classic/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt (rev 0)
+++ trunk/nhibernate/src/NHibernate/Classic/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt 2011-08-22 12:24:23 UTC (rev 6012)
@@ -0,0 +1,2 @@
+As of 8/21/2011 this repository has been officially deprecated.
+The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
\ No newline at end of file
Modified: trunk/nhibernate/src/NHibernate/Collection/AbstractPersistentCollection.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/AbstractPersistentCollection.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/AbstractPersistentCollection.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericBag.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericBag.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericBag.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericIdentifierBag.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericIdentifierBag.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericIdentifierBag.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericList.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericList.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericList.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericMap.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericMap.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericMap.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericSet.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericSet.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/Generic/PersistentGenericSet.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections.Generic;
using System.Data;
Added: trunk/nhibernate/src/NHibernate/Collection/Generic/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/Generic/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt (rev 0)
+++ trunk/nhibernate/src/NHibernate/Collection/Generic/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt 2011-08-22 12:24:23 UTC (rev 6012)
@@ -0,0 +1,2 @@
+As of 8/21/2011 this repository has been officially deprecated.
+The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
\ No newline at end of file
Modified: trunk/nhibernate/src/NHibernate/Collection/IPersistentCollection.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/IPersistentCollection.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/IPersistentCollection.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System.Collections;
using System.Data;
using NHibernate.Engine;
Modified: trunk/nhibernate/src/NHibernate/Collection/PersistentArrayHolder.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/PersistentArrayHolder.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/PersistentArrayHolder.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/PersistentBag.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/PersistentBag.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/PersistentBag.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/PersistentIdentifierBag.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/PersistentIdentifierBag.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/PersistentIdentifierBag.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/PersistentList.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/PersistentList.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/PersistentList.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/PersistentMap.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/PersistentMap.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/PersistentMap.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Collection/PersistentSet.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/PersistentSet.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Collection/PersistentSet.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Collections.Generic;
Added: trunk/nhibernate/src/NHibernate/Collection/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt
===================================================================
--- trunk/nhibernate/src/NHibernate/Collection/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt (rev 0)
+++ trunk/nhibernate/src/NHibernate/Collection/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt 2011-08-22 12:24:23 UTC (rev 6012)
@@ -0,0 +1,2 @@
+As of 8/21/2011 this repository has been officially deprecated.
+The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
\ No newline at end of file
Modified: trunk/nhibernate/src/NHibernate/Connection/ConnectionProvider.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Connection/ConnectionProvider.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Connection/ConnectionProvider.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Configuration;
Modified: trunk/nhibernate/src/NHibernate/Connection/ConnectionProviderFactory.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Connection/ConnectionProviderFactory.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Connection/ConnectionProviderFactory.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Connection/DriverConnectionProvider.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Connection/DriverConnectionProvider.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Connection/DriverConnectionProvider.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Data;
Modified: trunk/nhibernate/src/NHibernate/Connection/IConnectionProvider.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Connection/IConnectionProvider.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Connection/IConnectionProvider.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections.Generic;
using System.Data;
Modified: trunk/nhibernate/src/NHibernate/Connection/UserSuppliedConnectionProvider.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Connection/UserSuppliedConnectionProvider.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Connection/UserSuppliedConnectionProvider.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections.Generic;
using System.Data;
Added: trunk/nhibernate/src/NHibernate/Connection/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt
===================================================================
--- trunk/nhibernate/src/NHibernate/Connection/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt (rev 0)
+++ trunk/nhibernate/src/NHibernate/Connection/___README___THIS_REPOSITORY_IS_OBSOLETE___AUTHORITATIVE_REPOSITORY_HAS_BEEN_MOVED.txt 2011-08-22 12:24:23 UTC (rev 6012)
@@ -0,0 +1,2 @@
+As of 8/21/2011 this repository has been officially deprecated.
+The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
\ No newline at end of file
Modified: trunk/nhibernate/src/NHibernate/Context/CallSessionContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/CallSessionContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/CallSessionContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Runtime.Remoting.Messaging;
Modified: trunk/nhibernate/src/NHibernate/Context/ICurrentSessionContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/ICurrentSessionContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/ICurrentSessionContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using NHibernate.Engine;
Modified: trunk/nhibernate/src/NHibernate/Context/ManagedWebSessionContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/ManagedWebSessionContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/ManagedWebSessionContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using NHibernate.Engine;
Modified: trunk/nhibernate/src/NHibernate/Context/MapBasedSessionContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/MapBasedSessionContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/MapBasedSessionContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System.Collections;
using NHibernate.Engine;
Modified: trunk/nhibernate/src/NHibernate/Context/ReflectiveHttpContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/ReflectiveHttpContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/ReflectiveHttpContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.Linq.Expressions;
Modified: trunk/nhibernate/src/NHibernate/Context/ThreadLocalSessionContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/ThreadLocalSessionContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/ThreadLocalSessionContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections.Generic;
Modified: trunk/nhibernate/src/NHibernate/Context/ThreadStaticSessionContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/ThreadStaticSessionContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/ThreadStaticSessionContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
namespace NHibernate.Context
Modified: trunk/nhibernate/src/NHibernate/Context/WcfOperationSessionContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/WcfOperationSessionContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/WcfOperationSessionContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using System.ServiceModel;
Modified: trunk/nhibernate/src/NHibernate/Context/WebSessionContext.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Context/WebSessionContext.cs 2011-08-22 12:23:29 UTC (rev 6011)
+++ trunk/nhibernate/src/NHibernate/Context/WebSessionContext.cs 2011-08-22 12:24:23 UTC (rev 6012)
@@ -1,3 +1,5 @@
+//YOU ARE VIEWING AN OUTDATED VERSION OF THIS FILE
+//The new NHibernate repository can be found at https://github.com/nhibernate/nhibernate-core
using System;
using System.Collections;
using NHibernate.Engine;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|