Merge branch 'master' into bbmaster
This commit is contained in:
commit
f03f11372e
17 changed files with 218 additions and 122 deletions
|
@ -613,16 +613,18 @@ class BaseView(GenericView, I18NView):
|
||||||
|
|
||||||
# states
|
# states
|
||||||
|
|
||||||
|
viewStatesPermission = 'zope.ManageContent'
|
||||||
|
|
||||||
@Lazy
|
@Lazy
|
||||||
def states(self):
|
def states(self):
|
||||||
result = []
|
result = []
|
||||||
if not checkPermission('loops.ManageSite', self.context):
|
if not checkPermission(self.viewStatesPermission, self.context):
|
||||||
# TODO: replace by more sensible permission
|
|
||||||
return result
|
return result
|
||||||
if IResource.providedBy(self.target):
|
if IResource.providedBy(self.target):
|
||||||
statesDefs = self.globalOptions('organize.stateful.resource', ())
|
statesDefs = self.globalOptions('organize.stateful.resource', ())
|
||||||
else:
|
else:
|
||||||
statesDefs = self.globalOptions('organize.stateful.concept', ())
|
statesDefs = (self.globalOptions('organize.stateful.concept', []) +
|
||||||
|
self.typeOptions('organize.stateful', []))
|
||||||
for std in statesDefs:
|
for std in statesDefs:
|
||||||
stf = component.getAdapter(self.target, IStateful, name=std)
|
stf = component.getAdapter(self.target, IStateful, name=std)
|
||||||
result.append(stf)
|
result.append(stf)
|
||||||
|
|
|
@ -505,9 +505,9 @@ class ConceptView(BaseView):
|
||||||
|
|
||||||
def getObjectActions(self, page=None, target=None):
|
def getObjectActions(self, page=None, target=None):
|
||||||
acts = ['info']
|
acts = ['info']
|
||||||
acts.extend('state.' + st.statesDefinition for st in self.states)
|
|
||||||
if self.globalOptions('organize.allowSendEmail'):
|
if self.globalOptions('organize.allowSendEmail'):
|
||||||
acts.append('send_email')
|
acts.append('send_email')
|
||||||
|
acts.extend('state.' + st.statesDefinition for st in self.states)
|
||||||
return actions.get('object', acts, view=self, page=page, target=target)
|
return actions.get('object', acts, view=self, page=page, target=target)
|
||||||
|
|
||||||
actions = dict(object=getObjectActions)
|
actions = dict(object=getObjectActions)
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th tal:condition="item/showCheckboxes|nothing"> </th>
|
<th tal:condition="item/showCheckboxes|nothing"> </th>
|
||||||
<th i18n:translate="">Title</th>
|
<th i18n:translate="">Title</th>
|
||||||
<th i18n:translate="">Type</th>
|
<th class="center" i18n:translate="">Type</th>
|
||||||
<th i18n:translate="">Modification Date</th>
|
<th i18n:translate="">Modification Date</th>
|
||||||
<th i18n:translate="">Author(s)</th>
|
<th i18n:translate="">Author(s)</th>
|
||||||
<th i18n:translate=""
|
<th i18n:translate=""
|
||||||
|
@ -140,7 +140,7 @@
|
||||||
<td><span tal:replace="related/modified">2011-01-10</span></td>
|
<td><span tal:replace="related/modified">2011-01-10</span></td>
|
||||||
<td tal:attributes="title related/creators">
|
<td tal:attributes="title related/creators">
|
||||||
<span tal:replace="related/lastCreator">Author</span></td>
|
<span tal:replace="related/lastCreator">Author</span></td>
|
||||||
<td class="nowrap center"
|
<td class="nowrap"
|
||||||
tal:define="target nocall:related;
|
tal:define="target nocall:related;
|
||||||
style nothing"
|
style nothing"
|
||||||
tal:condition="view/showObjectActions">
|
tal:condition="view/showObjectActions">
|
||||||
|
|
|
@ -583,6 +583,12 @@
|
||||||
class="loops.browser.form.CreateConceptForm"
|
class="loops.browser.form.CreateConceptForm"
|
||||||
permission="zope.View" />
|
permission="zope.View" />
|
||||||
|
|
||||||
|
<page
|
||||||
|
name="create_concept_page.html"
|
||||||
|
for="loops.interfaces.INode"
|
||||||
|
class="loops.browser.form.CreateConceptPage"
|
||||||
|
permission="zope.View" />
|
||||||
|
|
||||||
<page
|
<page
|
||||||
name="edit_concept.html"
|
name="edit_concept.html"
|
||||||
for="loops.interfaces.INode"
|
for="loops.interfaces.INode"
|
||||||
|
@ -618,16 +624,14 @@
|
||||||
for="loops.browser.node.NodeView
|
for="loops.browser.node.NodeView
|
||||||
zope.publisher.interfaces.browser.IBrowserRequest"
|
zope.publisher.interfaces.browser.IBrowserRequest"
|
||||||
factory="loops.browser.form.CreateObject"
|
factory="loops.browser.form.CreateObject"
|
||||||
permission="zope.View"
|
permission="zope.View" />
|
||||||
/>
|
|
||||||
|
|
||||||
<zope:adapter
|
<zope:adapter
|
||||||
name="edit_resource"
|
name="edit_resource"
|
||||||
for="loops.browser.node.NodeView
|
for="loops.browser.node.NodeView
|
||||||
zope.publisher.interfaces.browser.IBrowserRequest"
|
zope.publisher.interfaces.browser.IBrowserRequest"
|
||||||
factory="loops.browser.form.EditObject"
|
factory="loops.browser.form.EditObject"
|
||||||
permission="zope.View"
|
permission="zope.View" />
|
||||||
/>
|
|
||||||
|
|
||||||
<zope:adapter
|
<zope:adapter
|
||||||
name="create_concept"
|
name="create_concept"
|
||||||
|
|
|
@ -372,6 +372,8 @@ class CreateConceptForm(CreateObjectForm):
|
||||||
|
|
||||||
defaultTitle = u'Create Concept, Type = '
|
defaultTitle = u'Create Concept, Type = '
|
||||||
form_action = 'create_concept'
|
form_action = 'create_concept'
|
||||||
|
inner_form = 'inner_concept_form.html'
|
||||||
|
qualifier = 'concept'
|
||||||
|
|
||||||
@Lazy
|
@Lazy
|
||||||
def defaultTypeToken(self):
|
def defaultTypeToken(self):
|
||||||
|
|
|
@ -78,8 +78,8 @@
|
||||||
tal:omit-tag="not:view/isInnerHtml">
|
tal:omit-tag="not:view/isInnerHtml">
|
||||||
<form method="post" enctype="multipart/form-data"
|
<form method="post" enctype="multipart/form-data"
|
||||||
id="dialog_form" class="dialog"
|
id="dialog_form" class="dialog"
|
||||||
tal:define="qualifier request/qualifier | string:resource;
|
tal:define="qualifier request/qualifier|view/qualifier|string:resource;
|
||||||
innerForm request/inner_form | string:inner_form.html;
|
innerForm request/inner_form|view/inner_form|string:inner_form.html;
|
||||||
typeToken view/typeToken;
|
typeToken view/typeToken;
|
||||||
fixedType view/fixedType">
|
fixedType view/fixedType">
|
||||||
<div dojoType="dijit.layout.ContentPane" region="center"
|
<div dojoType="dijit.layout.ContentPane" region="center"
|
||||||
|
|
|
@ -514,6 +514,12 @@ class NodeView(BaseView):
|
||||||
if target is not None:
|
if target is not None:
|
||||||
return BaseView(target, self.request).url
|
return BaseView(target, self.request).url
|
||||||
|
|
||||||
|
@Lazy
|
||||||
|
def typeProvider(self):
|
||||||
|
if self.virtualTargetObject is not None:
|
||||||
|
return IType(self.virtualTargetObject).typeProvider
|
||||||
|
return None
|
||||||
|
|
||||||
# target viewing and editing support
|
# target viewing and editing support
|
||||||
|
|
||||||
def getUrlForTarget(self, target):
|
def getUrlForTarget(self, target):
|
||||||
|
|
|
@ -387,7 +387,7 @@ div.menu-1, div.menu-2 {
|
||||||
.listing .object-actions {
|
.listing .object-actions {
|
||||||
float: none;
|
float: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
text-align: center;
|
/*text-align: center;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-action {
|
.icon-action {
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
type(u'classifier', u'Classifier', options=u'', typeInterface='loops.classifier.interfaces.IClassifier', viewName=u'classifier.html')
|
|
||||||
type(u'documenttype', u'Document Type', options=u'', typeInterface=u'', viewName=u'')
|
|
||||||
type(u'domain', u'Domain', options=u'', typeInterface=u'', viewName=u'')
|
|
||||||
type(u'extcollection', u'External Collection', options=u'', typeInterface='loops.integrator.interfaces.IExternalCollection', viewName=u'collection.html')
|
|
||||||
type(u'extfile', u'External File', options=u'', typeInterface='loops.interfaces.IExternalFile', viewName=u'')
|
|
||||||
type(u'file', u'File', options=u'', typeInterface='loops.interfaces.IFile', viewName=u'')
|
|
||||||
type(u'glossaryitem', u'Glossary Item', options=u'', typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'glossaryitem.html')
|
|
||||||
type(u'note', u'Note', options=u'', typeInterface='loops.interfaces.INote', viewName='note.html')
|
|
||||||
type(u'person', u'Person', options=u'', typeInterface='loops.knowledge.interfaces.IPerson', viewName=u'')
|
|
||||||
type(u'predicate', u'Predicate', options=u'', typeInterface=u'', viewName=u'')
|
|
||||||
type(u'process', u'Prozess', options=u'', typeInterface=u'', viewName=u'')
|
|
||||||
type(u'query', u'Query', options=u'', typeInterface='loops.expert.concept.IQueryConcept', viewName=u'')
|
|
||||||
type(u'textdocument', u'Text', options=u'', typeInterface='loops.interfaces.ITextDocument', viewName=u'')
|
|
||||||
type(u'topic', u'Topic', options=u'', typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'')
|
|
||||||
type(u'type', u'Type', options=u'', typeInterface='loops.interfaces.ITypeConcept', viewName=u'')
|
|
||||||
concept(u'hasType', u'has Type', u'predicate')
|
|
||||||
concept(u'ispartof', u'is Part of', u'predicate')
|
|
||||||
concept(u'ownedby', u'owned by', u'predicate')
|
|
||||||
concept(u'glossary', u'Glossary', u'query', options=u'', viewName=u'glossary.html')
|
|
||||||
concept(u'search', u'Suche', u'query', options=u'', viewName=u'search')
|
|
||||||
concept(u'standard', u'subobject', u'predicate')
|
|
||||||
concept(u'general', u'General', u'domain')
|
|
||||||
concept(u'system', u'System', u'domain')
|
|
||||||
child(u'general', u'documenttype', u'standard')
|
|
||||||
child(u'system', u'classifier', u'standard')
|
|
||||||
child(u'system', u'extcollection', u'standard')
|
|
||||||
node(u'home', u'Home', '', 'menu', body=u'Welcome\n=======')
|
|
||||||
node(u'participants', u'Participants', u'home', 'page', body=u'Participants\n============', target=u'concepts/person', viewName=u'listchildren')
|
|
||||||
node(u'topics', u'Topics', u'home', 'page', body=u'Topics\n======', target=u'concepts/topic', viewName=u'listchildren')
|
|
||||||
node(u'glossary', u'Glossary', u'home', 'page', target=u'concepts/glossary')
|
|
||||||
node(u'search', u'Search', u'home', 'page', target=u'concepts/search')
|
|
|
@ -1,76 +1,59 @@
|
||||||
type(u'query', u'Abfrage', options=u'', typeInterface='loops.expert.concept.IQueryConcept', viewName=u'')[
|
type(u'query', u'Abfrage', options=u'',
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:03', created='2011-04-25T17:01')]
|
typeInterface='loops.expert.concept.IQueryConcept', viewName=u'')
|
||||||
type(u'task', u'Aufgabe', options=u'', typeInterface='loops.knowledge.interfaces.ITask', viewName=u'')[
|
type(u'task', u'Aufgabe', options=u'',
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:02', created='2011-04-25T17:01')]
|
typeInterface='loops.knowledge.interfaces.ITask', viewName=u'')
|
||||||
type(u'domain', u'Bereich', options=u'', typeInterface=u'', viewName=u'')[
|
type(u'domain', u'Bereich', options=u'', typeInterface=u'', viewName=u'')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:02', created='2011-04-25T17:01')]
|
type(u'classifier', u'Classifier', options=u'',
|
||||||
type(u'classifier', u'Classifier', options=u'', typeInterface='loops.classifier.interfaces.IClassifier', viewName=u'classifier.html')[
|
typeInterface='loops.classifier.interfaces.IClassifier', viewName=u'classifier.html')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
type(u'documenttype', u'Document Type', options=u'', typeInterface=u'', viewName=u'')
|
||||||
type(u'documenttype', u'Document Type', options=u'', typeInterface=u'', viewName=u'')[
|
type(u'extcollection', u'External Collection', options=u'',
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
typeInterface='loops.integrator.interfaces.IExternalCollection',
|
||||||
type(u'extcollection', u'External Collection', options=u'', typeInterface='loops.integrator.interfaces.IExternalCollection', viewName=u'collection.html')[
|
viewName=u'collection.html')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
type(u'glossaryitem', u'Glossareintrag', options=u'',
|
||||||
type(u'glossaryitem', u'Glossareintrag', options=u'', typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'glossaryitem.html')[
|
typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'glossaryitem.html')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
type(u'media_asset', u'Media Asset',
|
||||||
type(u'media_asset', u'Media Asset', options=u'storage:varsubdir\nstorage_parameters:extfiles/sites_zzz\nasset_transform.minithumb: size(105)\nasset_transform.small: size(230)\nasset_transform.medium: size(480)', typeInterface='loops.media.interfaces.IMediaAsset', viewName=u'image_medium.html')[
|
options=u'storage:varsubdir\nstorage_parameters:extfiles/sites_zzz\nasset_transform.minithumb: size(105)\nasset_transform.small: size(230)\nasset_transform.medium: size(480)', typeInterface='loops.media.interfaces.IMediaAsset', viewName=u'image_medium.html')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-07-27T12:00', created='2011-04-25T17:08')]
|
type(u'note', u'Note', options=u'', typeInterface='loops.interfaces.INote',
|
||||||
type(u'note', u'Note', options=u'', typeInterface='loops.interfaces.INote', viewName='note.html')[
|
viewName='note.html')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
type(u'person', u'Person', options=u'',
|
||||||
type(u'person', u'Person', options=u'', typeInterface='loops.knowledge.interfaces.IPerson', viewName=u'')[
|
typeInterface='loops.knowledge.interfaces.IPerson', viewName=u'')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
type(u'predicate', u'Predicate', options=u'',
|
||||||
type(u'predicate', u'Predicate', options=u'', typeInterface=u'', viewName=u'')[
|
typeInterface=u'loops.interfaces.IPredicate', viewName=u'')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
type(u'event', u'Termin', options=u'', typeInterface='loops.organize.interfaces.ITask',
|
||||||
type(u'event', u'Termin', options=u'', typeInterface='loops.organize.interfaces.ITask', viewName=u'task.html')[
|
viewName=u'task.html')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:12', created='2011-04-25T17:11')]
|
type(u'textdocument', u'Text', options=u'', typeInterface='loops.interfaces.ITextDocument', viewName=u'')
|
||||||
type(u'textdocument', u'Text', options=u'', typeInterface='loops.interfaces.ITextDocument', viewName=u'')[
|
type(u'topic', u'Thema', options=u'', typeInterface='loops.knowledge.interfaces.ITopic',
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
viewName=u'')
|
||||||
type(u'topic', u'Thema', options=u'', typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'')[
|
type(u'type', u'Type', options=u'', typeInterface='loops.interfaces.ITypeConcept',
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:03', created='2011-04-25T17:01')]
|
viewName=u'')
|
||||||
type(u'type', u'Type', options=u'', typeInterface='loops.interfaces.ITypeConcept', viewName=u'')[
|
concept(u'depends', u'depends', u'predicate')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
concept(u'follows', u'follows', u'predicate')
|
||||||
concept(u'depends', u'depends', u'predicate')[
|
concept(u'general', u'Allgemein', u'domain')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
concept(u'glossary', u'Glossar', u'query', options=u'', viewName=u'glossary.html')
|
||||||
concept(u'follows', u'follows', u'predicate')[
|
concept(u'hasType', u'has Type', u'predicate')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
concept(u'ispartof', u'is Part of', u'predicate')
|
||||||
concept(u'general', u'Allgemein', u'domain')[
|
concept(u'issubtype', u'is Subtype', u'predicate')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
concept(u'knows', u'knows', u'predicate')
|
||||||
concept(u'glossary', u'Glossar', u'query', options=u'', viewName=u'glossary.html')[
|
concept(u'ownedby', u'owned by', u'predicate')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
concept(u'personal_info', u'Pers\xf6nliche Information', u'query', options=u'',
|
||||||
concept(u'hasType', u'has Type', u'predicate')[
|
viewName=u'personal_info.html')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
concept(u'provides', u'provides', u'predicate')
|
||||||
concept(u'ispartof', u'is Part of', u'predicate')[
|
concept(u'querytarget', u'is Query Target', u'predicate')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
concept(u'requires', u'requires', u'predicate')
|
||||||
concept(u'knows', u'knows', u'predicate')[
|
concept(u'search', u'Suche', u'query', options=u'', viewName=u'search')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
concept(u'standard', u'subobject', u'predicate')
|
||||||
concept(u'ownedby', u'owned by', u'predicate')[
|
concept(u'system', u'System', u'domain')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
concept(u'personal_info', u'Pers\xf6nliche Information', u'query', options=u'', viewName=u'personal_info.html')[
|
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:07', created='2011-04-25T17:07')]
|
|
||||||
concept(u'provides', u'provides', u'predicate')[
|
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
concept(u'querytarget', u'is Query Target', u'predicate')[
|
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
concept(u'requires', u'requires', u'predicate')[
|
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
concept(u'search', u'Suche', u'query', options=u'', viewName=u'search')[
|
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
concept(u'standard', u'subobject', u'predicate')[
|
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
concept(u'system', u'System', u'domain')[
|
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
child(u'general', u'documenttype', u'standard')
|
child(u'general', u'documenttype', u'standard')
|
||||||
child(u'general', u'event', u'standard')
|
child(u'general', u'event', u'standard')
|
||||||
child(u'system', u'classifier', u'standard')
|
child(u'system', u'classifier', u'standard')
|
||||||
child(u'system', u'extcollection', u'standard')
|
child(u'system', u'extcollection', u'standard')
|
||||||
|
child(u'system', u'issubtype', u'standard')
|
||||||
child(u'system', u'media_asset', u'standard')
|
child(u'system', u'media_asset', u'standard')
|
||||||
child(u'system', u'personal_info', u'standard')
|
child(u'system', u'personal_info', u'standard')
|
||||||
node(u'home', u'Startseite', '', 'menu', body=u'Willkommen\n==========')[
|
node(u'home', u'Startseite', '', 'menu', body=u'Willkommen\n==========')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
node(u'participants', u'Teilnehmer', u'home', 'page', body=u'Teilnehmer\n==========',
|
||||||
node(u'participants', u'Teilnehmer', u'home', 'page', body=u'Teilnehmer\n==========', target=u'concepts/person', viewName=u'listchildren')[
|
target=u'concepts/person', viewName=u'listchildren')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
node(u'topics', u'Themen', u'home', 'page', body=u'Themen\n======',
|
||||||
node(u'topics', u'Themen', u'home', 'page', body=u'Themen\n======', target=u'concepts/topic', viewName=u'listchildren')[
|
target=u'concepts/topic', viewName=u'listchildren')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
node(u'glossary', u'Glossar', u'home', 'page', target=u'concepts/glossary')
|
||||||
node(u'glossary', u'Glossar', u'home', 'page', target=u'concepts/glossary')[
|
node(u'search', u'Suche', u'home', 'page', target=u'concepts/search')
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
node(u'search', u'Suche', u'home', 'page', target=u'concepts/search')[
|
|
||||||
annotations(creators=(u'loops.admin',), modified='2011-04-25T17:01', created='2011-04-25T17:01')]
|
|
||||||
|
|
60
data/loops_std_en.dmp
Normal file
60
data/loops_std_en.dmp
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
type(u'query', u'Query', options=u'',
|
||||||
|
typeInterface='loops.expert.concept.IQueryConcept', viewName=u'')
|
||||||
|
type(u'task', u'Task', options=u'',
|
||||||
|
typeInterface='loops.knowledge.interfaces.ITask', viewName=u'')
|
||||||
|
type(u'domain', u'Domain', options=u'', typeInterface=u'', viewName=u'')
|
||||||
|
type(u'classifier', u'Classifier', options=u'',
|
||||||
|
typeInterface='loops.classifier.interfaces.IClassifier', viewName=u'classifier.html')
|
||||||
|
type(u'documenttype', u'Document Type', options=u'', typeInterface=u'', viewName=u'')
|
||||||
|
type(u'extcollection', u'External Collection', options=u'',
|
||||||
|
typeInterface='loops.integrator.interfaces.IExternalCollection',
|
||||||
|
viewName=u'collection.html')
|
||||||
|
type(u'glossaryitem', u'Glossary Item', options=u'',
|
||||||
|
typeInterface='loops.knowledge.interfaces.ITopic', viewName=u'glossaryitem.html')
|
||||||
|
type(u'media_asset', u'Media Asset',
|
||||||
|
options=u'storage:varsubdir\nstorage_parameters:extfiles/sites_zzz\nasset_transform.minithumb: size(105)\nasset_transform.small: size(230)\nasset_transform.medium: size(480)', typeInterface='loops.media.interfaces.IMediaAsset', viewName=u'image_medium.html')
|
||||||
|
type(u'note', u'Note', options=u'', typeInterface='loops.interfaces.INote',
|
||||||
|
viewName='note.html')
|
||||||
|
type(u'person', u'Person', options=u'',
|
||||||
|
typeInterface='loops.knowledge.interfaces.IPerson', viewName=u'')
|
||||||
|
type(u'predicate', u'Predicate', options=u'',
|
||||||
|
typeInterface=u'loops.interfaces.IPredicate', viewName=u'')
|
||||||
|
type(u'event', u'Event', options=u'', typeInterface='loops.organize.interfaces.ITask',
|
||||||
|
viewName=u'task.html')
|
||||||
|
type(u'textdocument', u'Text', options=u'', typeInterface='loops.interfaces.ITextDocument', viewName=u'')
|
||||||
|
type(u'topic', u'Topy', options=u'', typeInterface='loops.knowledge.interfaces.ITopic',
|
||||||
|
viewName=u'')
|
||||||
|
type(u'type', u'Type', options=u'', typeInterface='loops.interfaces.ITypeConcept',
|
||||||
|
viewName=u'')
|
||||||
|
concept(u'depends', u'depends', u'predicate')
|
||||||
|
concept(u'follows', u'follows', u'predicate')
|
||||||
|
concept(u'general', u'General', u'domain')
|
||||||
|
concept(u'glossary', u'Glossary', u'query', options=u'', viewName=u'glossary.html')
|
||||||
|
concept(u'hasType', u'has Type', u'predicate')
|
||||||
|
concept(u'ispartof', u'is Part of', u'predicate')
|
||||||
|
concept(u'issubtype', u'is Subtype', u'predicate')
|
||||||
|
concept(u'knows', u'knows', u'predicate')
|
||||||
|
concept(u'ownedby', u'owned by', u'predicate')
|
||||||
|
concept(u'personal_info', u'Personal Information', u'query', options=u'',
|
||||||
|
viewName=u'personal_info.html')
|
||||||
|
concept(u'provides', u'provides', u'predicate')
|
||||||
|
concept(u'querytarget', u'is Query Target', u'predicate')
|
||||||
|
concept(u'requires', u'requires', u'predicate')
|
||||||
|
concept(u'search', u'Search', u'query', options=u'', viewName=u'search')
|
||||||
|
concept(u'standard', u'subobject', u'predicate')
|
||||||
|
concept(u'system', u'System', u'domain')
|
||||||
|
child(u'general', u'documenttype', u'standard')
|
||||||
|
child(u'general', u'event', u'standard')
|
||||||
|
child(u'system', u'classifier', u'standard')
|
||||||
|
child(u'system', u'extcollection', u'standard')
|
||||||
|
child(u'system', u'issubtype', u'standard')
|
||||||
|
child(u'system', u'media_asset', u'standard')
|
||||||
|
child(u'system', u'personal_info', u'standard')
|
||||||
|
node(u'home', u'Homepage', '', 'menu', body=u'Welcome\n=======)
|
||||||
|
node(u'participants', u'Participants', u'home', 'page',
|
||||||
|
body=u'Participants\n============', target=u'concepts/person',
|
||||||
|
viewName=u'listchildren')
|
||||||
|
node(u'topics', u'Topics', u'home', 'page', body=u'Topics\n======',
|
||||||
|
target=u'concepts/topic', viewName=u'listchildren')
|
||||||
|
node(u'glossary', u'Glossary', u'home', 'page', target=u'concepts/glossary')
|
||||||
|
node(u'search', u'Search', u'home', 'page', target=u'concepts/search')
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
<browser:page
|
<browser:page
|
||||||
name="listConceptsForComboBox.js"
|
name="listConceptsForComboBox.js"
|
||||||
for="loops.interfaces.ILoopsObject"
|
for="loops.interfaces.INode"
|
||||||
class="loops.expert.browser.search.Search"
|
class="loops.expert.browser.search.Search"
|
||||||
attribute="listConcepts"
|
attribute="listConcepts"
|
||||||
permission="zope.View" />
|
permission="zope.View" />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 Helmut Merz helmutm@cy55.de
|
# Copyright (c) 2012 Helmut Merz helmutm@cy55.de
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -18,8 +18,6 @@
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Definition of view classes and other browser related stuff for tasks.
|
Definition of view classes and other browser related stuff for tasks.
|
||||||
|
|
||||||
$Id$
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import calendar
|
import calendar
|
||||||
|
@ -174,7 +172,8 @@ class CalendarInfo(NodeView):
|
||||||
tEvent = cm['event']
|
tEvent = cm['event']
|
||||||
hasType = cm.getTypePredicate()
|
hasType = cm.getTypePredicate()
|
||||||
start = datetime(self.selectedYear, self.selectedMonth, 1)
|
start = datetime(self.selectedYear, self.selectedMonth, 1)
|
||||||
end = start + timedelta(31)
|
fday, ndays = calendar.monthrange(self.selectedYear, self.selectedMonth)
|
||||||
|
end = start + timedelta(ndays)
|
||||||
view = self.eventListQuery
|
view = self.eventListQuery
|
||||||
if view is not None:
|
if view is not None:
|
||||||
relViews = (view.childViewFactory(r, self.request, contextIsSecond=True)
|
relViews = (view.childViewFactory(r, self.request, contextIsSecond=True)
|
||||||
|
|
|
@ -31,6 +31,7 @@ from cybertools.meta.interfaces import IOptions
|
||||||
from cybertools.stateful.base import Stateful as BaseStateful
|
from cybertools.stateful.base import Stateful as BaseStateful
|
||||||
from cybertools.stateful.base import StatefulAdapter, IndexInfo
|
from cybertools.stateful.base import StatefulAdapter, IndexInfo
|
||||||
from cybertools.stateful.interfaces import IStatesDefinition, ITransitionEvent
|
from cybertools.stateful.interfaces import IStatesDefinition, ITransitionEvent
|
||||||
|
from loops.common import adapted
|
||||||
from loops.interfaces import ILoopsObject, IConcept, IResource
|
from loops.interfaces import ILoopsObject, IConcept, IResource
|
||||||
from loops import util
|
from loops import util
|
||||||
|
|
||||||
|
@ -65,8 +66,10 @@ class StatefulConceptIndexInfo(IndexInfo):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def availableStatesDefinitions(self):
|
def availableStatesDefinitions(self):
|
||||||
options = IOptions(self.context.getLoopsRoot())
|
globalOptions = IOptions(self.context.getLoopsRoot())
|
||||||
return options('organize.stateful.concept', ())
|
typeOptions = IOptions(adapted(self.context.conceptType))
|
||||||
|
return (globalOptions('organize.stateful.concept', []) +
|
||||||
|
typeOptions('organize.stateful', []))
|
||||||
|
|
||||||
|
|
||||||
class StatefulResourceIndexInfo(IndexInfo):
|
class StatefulResourceIndexInfo(IndexInfo):
|
||||||
|
|
|
@ -37,7 +37,8 @@ from loops.util import _
|
||||||
|
|
||||||
|
|
||||||
statefulActions = ('classification_quality',
|
statefulActions = ('classification_quality',
|
||||||
'simple_publishing',)
|
'simple_publishing',
|
||||||
|
'task_states',)
|
||||||
|
|
||||||
|
|
||||||
class StateAction(Action):
|
class StateAction(Action):
|
||||||
|
|
|
@ -35,6 +35,20 @@
|
||||||
set_schema="cybertools.stateful.interfaces.IStateful" />
|
set_schema="cybertools.stateful.interfaces.IStateful" />
|
||||||
</zope:class>
|
</zope:class>
|
||||||
|
|
||||||
|
<zope:utility
|
||||||
|
factory="loops.organize.stateful.task.taskStates"
|
||||||
|
name="task_states" />
|
||||||
|
|
||||||
|
<zope:adapter
|
||||||
|
factory="loops.organize.stateful.task.StatefulTask"
|
||||||
|
name="task_states" trusted="True" />
|
||||||
|
<zope:class class="loops.organize.stateful.task.StatefulTask">
|
||||||
|
<require permission="zope.View"
|
||||||
|
interface="cybertools.stateful.interfaces.IStateful" />
|
||||||
|
<require permission="zope.ManageContent"
|
||||||
|
set_schema="cybertools.stateful.interfaces.IStateful" />
|
||||||
|
</zope:class>
|
||||||
|
|
||||||
<zope:utility
|
<zope:utility
|
||||||
factory="loops.organize.stateful.quality.classificationQuality"
|
factory="loops.organize.stateful.quality.classificationQuality"
|
||||||
name="classification_quality" />
|
name="classification_quality" />
|
||||||
|
|
53
organize/stateful/task.py
Normal file
53
organize/stateful/task.py
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2012 Helmut Merz helmutm@cy55.de
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
#
|
||||||
|
|
||||||
|
"""
|
||||||
|
Basic implementations for stateful objects and adapters.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from zope import component
|
||||||
|
from zope.component import adapter
|
||||||
|
from zope.interface import implementer
|
||||||
|
from zope.traversing.api import getName
|
||||||
|
|
||||||
|
from cybertools.stateful.definition import StatesDefinition
|
||||||
|
from cybertools.stateful.definition import State, Transition
|
||||||
|
from cybertools.stateful.interfaces import IStatesDefinition, IStateful
|
||||||
|
from loops.common import adapted
|
||||||
|
from loops.organize.stateful.base import StatefulLoopsObject
|
||||||
|
|
||||||
|
|
||||||
|
@implementer(IStatesDefinition)
|
||||||
|
def taskStates():
|
||||||
|
return StatesDefinition('task_states',
|
||||||
|
State('planned', 'planned', ('finish', 'cancel'),
|
||||||
|
color='yellow'),
|
||||||
|
State('finished', 'finished', ('reopen'),
|
||||||
|
color='green'),
|
||||||
|
State('cancelled', 'cancelled', ('reopen'),
|
||||||
|
color='grey'),
|
||||||
|
Transition('finish', 'finish', 'finished'),
|
||||||
|
Transition('cancel', 'cancel', 'cancelled'),
|
||||||
|
Transition('reopen', 're-open', 'planned'),
|
||||||
|
initialState='planned')
|
||||||
|
|
||||||
|
|
||||||
|
class StatefulTask(StatefulLoopsObject):
|
||||||
|
|
||||||
|
statesDefinition = 'task_states'
|
||||||
|
|
Loading…
Add table
Reference in a new issue