diff --git a/product/CMFActivity/Activity/SQLJoblib.py b/product/CMFActivity/Activity/SQLJoblib.py new file mode 100644 index 0000000000000000000000000000000000000000..b7f0df3deaef950e0bf007d53bff23235a0375ea --- /dev/null +++ b/product/CMFActivity/Activity/SQLJoblib.py @@ -0,0 +1,37 @@ +############################################################################## +# +# Copyright (c) 2002,2007 Nexedi SA and Contributors. All Rights Reserved. +# Jean-Paul Smets-Solanes <jp@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 SQLDict import SQLDict + +class SQLJoblib(SQLDict): + """ + XXX SQLJoblib + """ + sql_table = 'message_job' + uid_group = 'portal_activity_job' + diff --git a/product/CMFActivity/ActivityTool.py b/product/CMFActivity/ActivityTool.py index 5910e0b6a4f36ce5359639a15a0fe6c91a15cc0c..c4069e2fc517edf12fee3c918082f98c748dd83e 100644 --- a/product/CMFActivity/ActivityTool.py +++ b/product/CMFActivity/ActivityTool.py @@ -459,7 +459,7 @@ allow_class(GroupedMessage) # Activity Registration def activity_dict(): - from Activity import SQLDict, SQLQueue + from Activity import SQLDict, SQLQueue, SQLJoblib return {k: getattr(v, k)() for k, v in locals().iteritems()} activity_dict = activity_dict()