[Erp5-report] r10601 - in /erp5/trunk/products/ERP5Cache: ./ CachePlugins/ Document/

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Oct 6 18:06:34 CEST 2006


Author: seb
Date: Fri Oct  6 18:06:28 2006
New Revision: 10601

URL: http://svn.erp5.org?rev=10601&view=rev
Log:
added license stuff

Modified:
    erp5/trunk/products/ERP5Cache/CachePlugins/BaseCache.py
    erp5/trunk/products/ERP5Cache/CachePlugins/DistributedRamCache.py
    erp5/trunk/products/ERP5Cache/CachePlugins/DummyCache.py
    erp5/trunk/products/ERP5Cache/CachePlugins/SQLCache.py
    erp5/trunk/products/ERP5Cache/CacheTool.py
    erp5/trunk/products/ERP5Cache/Document/CacheFactory.py
    erp5/trunk/products/ERP5Cache/Document/DistributedRamCachePlugin.py
    erp5/trunk/products/ERP5Cache/Document/RamCachePlugin.py
    erp5/trunk/products/ERP5Cache/Document/SQLCachePlugin.py

Modified: erp5/trunk/products/ERP5Cache/CachePlugins/BaseCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/CachePlugins/BaseCache.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/CachePlugins/BaseCache.py (original)
+++ erp5/trunk/products/ERP5Cache/CachePlugins/BaseCache.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,31 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
 """ 
 Base Cache plugin.
 """

Modified: erp5/trunk/products/ERP5Cache/CachePlugins/DistributedRamCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/CachePlugins/DistributedRamCache.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/CachePlugins/DistributedRamCache.py (original)
+++ erp5/trunk/products/ERP5Cache/CachePlugins/DistributedRamCache.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,31 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
 """
 Memcached based cache plugin.
 """

Modified: erp5/trunk/products/ERP5Cache/CachePlugins/DummyCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/CachePlugins/DummyCache.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/CachePlugins/DummyCache.py (original)
+++ erp5/trunk/products/ERP5Cache/CachePlugins/DummyCache.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,31 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
 "Local RAM based cache"
 
 from BaseCache import *

Modified: erp5/trunk/products/ERP5Cache/CachePlugins/SQLCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/CachePlugins/SQLCache.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/CachePlugins/SQLCache.py (original)
+++ erp5/trunk/products/ERP5Cache/CachePlugins/SQLCache.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,31 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
 """
 SQL (MySQL) based cache plugin.
 """

Modified: erp5/trunk/products/ERP5Cache/CacheTool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/CacheTool.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/CacheTool.py (original)
+++ erp5/trunk/products/ERP5Cache/CacheTool.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,32 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
+
 """ Cache Tool module for ERP5 """
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type.Tool.BaseTool import BaseTool

Modified: erp5/trunk/products/ERP5Cache/Document/CacheFactory.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/Document/CacheFactory.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/Document/CacheFactory.py (original)
+++ erp5/trunk/products/ERP5Cache/Document/CacheFactory.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,32 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
+
 from AccessControl import ClassSecurityInfo
 from Products.CMFCore import CMFCorePermissions
 from Products.ERP5Type import Permissions

Modified: erp5/trunk/products/ERP5Cache/Document/DistributedRamCachePlugin.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/Document/DistributedRamCachePlugin.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/Document/DistributedRamCachePlugin.py (original)
+++ erp5/trunk/products/ERP5Cache/Document/DistributedRamCachePlugin.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,31 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
 from AccessControl import ClassSecurityInfo
 from Products.CMFCore import CMFCorePermissions
 from Products.ERP5Type.XMLObject import XMLObject

Modified: erp5/trunk/products/ERP5Cache/Document/RamCachePlugin.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/Document/RamCachePlugin.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/Document/RamCachePlugin.py (original)
+++ erp5/trunk/products/ERP5Cache/Document/RamCachePlugin.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,32 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
+
 from AccessControl import ClassSecurityInfo
 from Products.CMFCore import CMFCorePermissions
 from Products.ERP5Type.XMLObject import XMLObject

Modified: erp5/trunk/products/ERP5Cache/Document/SQLCachePlugin.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Cache/Document/SQLCachePlugin.py?rev=10601&r1=10600&r2=10601&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Cache/Document/SQLCachePlugin.py (original)
+++ erp5/trunk/products/ERP5Cache/Document/SQLCachePlugin.py Fri Oct  6 18:06:28 2006
@@ -1,3 +1,31 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
+#                     Ivan Tyagov <ivan at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+##############################################################################
+
 from AccessControl import ClassSecurityInfo
 from Products.CMFCore import CMFCorePermissions
 from Products.ERP5Type.Base import Base




More information about the Erp5-report mailing list