[pod,px] Better error reporting. [gen] Calendar field: allow to validate events from a timeline.
This commit is contained in:
parent
bcf2952980
commit
9b9853e570
|
@ -691,7 +691,10 @@ class Calendar(Field):
|
||||||
# validable events at p_date.
|
# validable events at p_date.
|
||||||
for info in events:
|
for info in events:
|
||||||
if info.event.eventType in other.field.validation.schema:
|
if info.event.eventType in other.field.validation.schema:
|
||||||
return '<input type="checkbox" checked="checked" class="smallbox"/>'
|
cbId = '%s_%s_%s' % (other.obj.id, other.field.name,
|
||||||
|
date.strftime('%Y%m%d'))
|
||||||
|
return '<input type="checkbox" checked="checked" ' \
|
||||||
|
'class="smallbox" id="%s"/>' % cbId
|
||||||
return ''
|
return ''
|
||||||
# When there are multiple events, a background image is already shown
|
# When there are multiple events, a background image is already shown
|
||||||
if not events or (len(events) > 1): return ''
|
if not events or (len(events) > 1): return ''
|
||||||
|
@ -815,13 +818,19 @@ class Calendar(Field):
|
||||||
|
|
||||||
def getEventsAt(self, obj, date):
|
def getEventsAt(self, obj, date):
|
||||||
'''Returns the list of events that exist at some p_date (=day). p_date
|
'''Returns the list of events that exist at some p_date (=day). p_date
|
||||||
can be a DateTime instance or a tuple (i_year, i_month, i_day).'''
|
can be:
|
||||||
|
* a DateTime instance;
|
||||||
|
* a tuple (i_year, i_month, i_day);
|
||||||
|
* a string YYYYmmdd.
|
||||||
|
'''
|
||||||
obj = obj.o # Ensure p_obj is not a wrapper
|
obj = obj.o # Ensure p_obj is not a wrapper
|
||||||
if not hasattr(obj.aq_base, self.name): return
|
if not hasattr(obj.aq_base, self.name): return
|
||||||
years = getattr(obj, self.name)
|
years = getattr(obj, self.name)
|
||||||
# Get year, month and name from p_date
|
# Get year, month and name from p_date
|
||||||
if isinstance(date, tuple):
|
if isinstance(date, tuple):
|
||||||
year, month, day = date
|
year, month, day = date
|
||||||
|
elif isinstance(date, str):
|
||||||
|
year, month, day = int(date[:4]), int(date[4:6]), int(date[6:8])
|
||||||
else:
|
else:
|
||||||
year, month, day = date.year(), date.month(), date.day()
|
year, month, day = date.year(), date.month(), date.day()
|
||||||
# Dig into the oobtree
|
# Dig into the oobtree
|
||||||
|
@ -1236,16 +1245,20 @@ class Calendar(Field):
|
||||||
(hook, self.name, params, zobj.absolute_url())
|
(hook, self.name, params, zobj.absolute_url())
|
||||||
|
|
||||||
def validateEvents(self, obj):
|
def validateEvents(self, obj):
|
||||||
'''Validate or discard events from the request.'''
|
'''Validate or discard events from the request'''
|
||||||
rq = obj.REQUEST.form
|
rq = obj.REQUEST.form
|
||||||
counts = {'validated': 0, 'discarded': 0}
|
counts = {'validated': 0, 'discarded': 0}
|
||||||
removeDiscarded = self.validation.removeDiscarded
|
removeDiscarded = self.validation.removeDiscarded
|
||||||
|
tool = obj.getTool()
|
||||||
for action in ('validated', 'discarded'):
|
for action in ('validated', 'discarded'):
|
||||||
if not rq[action]: continue
|
if not rq[action]: continue
|
||||||
for info in rq[action].split(','):
|
for info in rq[action].split(','):
|
||||||
sdate, eventType, timeslot = info.split('_')
|
if rq['render'] == 'month':
|
||||||
|
# Every checkbox corresponds to an event at at given date,
|
||||||
|
# with a given event type at a given timeslot, in this
|
||||||
|
# calendar (self) on p_obj.
|
||||||
|
date, eventType, timeslot = info.split('_')
|
||||||
# Get the events defined at that date
|
# Get the events defined at that date
|
||||||
date = int(sdate[:4]), int(sdate[4:6]), int(sdate[6:8])
|
|
||||||
events = self.getEventsAt(obj, date)
|
events = self.getEventsAt(obj, date)
|
||||||
i = len(events) - 1
|
i = len(events) - 1
|
||||||
while i >= 0:
|
while i >= 0:
|
||||||
|
@ -1257,11 +1270,36 @@ class Calendar(Field):
|
||||||
raise Exception('Wrong event type')
|
raise Exception('Wrong event type')
|
||||||
# Validate or discard it
|
# Validate or discard it
|
||||||
if action == 'validated':
|
if action == 'validated':
|
||||||
event.eventType = self.validation.schema[eventType]
|
schema = self.validation.schema
|
||||||
|
event.eventType = schema[eventType]
|
||||||
else:
|
else:
|
||||||
if removeDiscarded: del events[i]
|
if removeDiscarded: del events[i]
|
||||||
counts[action] += 1
|
counts[action] += 1
|
||||||
i -= 1
|
i -= 1
|
||||||
|
elif rq['render'] == 'timeline':
|
||||||
|
# Every checkbox corresponds to a given date in some
|
||||||
|
# calendar (self, or one among self.others). It means that
|
||||||
|
# all "impactable" events at that date will be the target
|
||||||
|
# of the action.
|
||||||
|
otherId, fieldName, date = info.split('_')
|
||||||
|
otherObj = tool.getObject(otherId)
|
||||||
|
otherField = otherObj.getAppyType(fieldName)
|
||||||
|
# Get, on this calendar, the events defined at that date
|
||||||
|
events = otherField.getEventsAt(otherObj, date)
|
||||||
|
# Among them, validate or discard any impactable one
|
||||||
|
schema = otherField.validation.schema
|
||||||
|
i = len(events) - 1
|
||||||
|
while i >= 0:
|
||||||
|
event = events[i]
|
||||||
|
# Take this event into account only if in the schema
|
||||||
|
if event.eventType in schema:
|
||||||
|
if action == 'validated':
|
||||||
|
event.eventType = schema[event.eventType]
|
||||||
|
else:
|
||||||
|
# "self" imposes its own "removeDiscarded"
|
||||||
|
if removeDiscarded: del events[i]
|
||||||
|
counts[action] += 1
|
||||||
|
i -= 1
|
||||||
if not counts['validated'] and not counts['discarded']:
|
if not counts['validated'] and not counts['discarded']:
|
||||||
return obj.translate('action_null')
|
return obj.translate('action_null')
|
||||||
part = not removeDiscarded and ' (but not removed)' or ''
|
part = not removeDiscarded and ' (but not removed)' or ''
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
from appy import Object
|
from appy import Object
|
||||||
from appy.pod import PodError
|
from appy.pod import PodError
|
||||||
|
from appy.shared.utils import Traceback
|
||||||
from appy.pod.elements import *
|
from appy.pod.elements import *
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
@ -63,11 +64,13 @@ class BufferAction:
|
||||||
# Add in the error message the line nb where the errors occurs
|
# Add in the error message the line nb where the errors occurs
|
||||||
# within the PX.
|
# within the PX.
|
||||||
locator = self.buffer.env.parser.locator
|
locator = self.buffer.env.parser.locator
|
||||||
# The column number may not be given.
|
# The column number may not be given
|
||||||
col = locator.getColumnNumber()
|
col = locator.getColumnNumber()
|
||||||
if col == None: col = ''
|
if col == None: col = ''
|
||||||
else: col = ', column %d' % col
|
else: col = ', column %d' % col
|
||||||
errorMessage += ' (line %s%s)' % (locator.getLineNumber(), col)
|
errorMessage += ' (line %s%s)' % (locator.getLineNumber(), col)
|
||||||
|
# Integrate the traceback if requested
|
||||||
|
if dumpTb: errorMessage += '\n' + Traceback.get(5)
|
||||||
raise Exception(errorMessage)
|
raise Exception(errorMessage)
|
||||||
# Create a temporary buffer to dump the error. If I reuse this buffer to
|
# Create a temporary buffer to dump the error. If I reuse this buffer to
|
||||||
# dump the error (what I did before), and we are, at some depth, in a
|
# dump the error (what I did before), and we are, at some depth, in a
|
||||||
|
|
Loading…
Reference in a new issue