[gen] Within Ref fields, added 2 icons for moving tied objects to top or bottom + bugfixes.
|
@ -45,7 +45,7 @@ class Calendar(Field):
|
|||
goForward=not endDate or (endDate.strftime(fmt) > \
|
||||
grid[-1][-1].strftime(fmt))">
|
||||
<!-- Go to the previous month -->
|
||||
<img class="clickable" if="goBack" src=":url('arrowLeftSimple')"
|
||||
<img class="clickable" if="goBack" src=":url('arrowLeft')"
|
||||
onclick=":'askMonthView(%s,%s,%s,%s)' % \
|
||||
(q(ajaxHookId),q(objUrl),q(field.name),q(previousMonth))"/>
|
||||
<!-- Go back to the default date -->
|
||||
|
@ -58,7 +58,7 @@ class Calendar(Field):
|
|||
q(objUrl), q(field.name), q(defaultDateMonth))"
|
||||
disabled=":defaultDate.strftime(fmt)==monthDayOne.strftime(fmt)"/>
|
||||
<!-- Go to the next month -->
|
||||
<img class="clickable" if="goForward" src=":url('arrowRightSimple')"
|
||||
<img class="clickable" if="goForward" src=":url('arrowRight')"
|
||||
onclick=":'askMonthView(%s, %s, %s, %s)' % (q(ajaxHookId), \
|
||||
q(objUrl), q(field.name), q(nextMonth))"/>
|
||||
<span>:_('month_%s' % monthDayOne.aMonth())</span>
|
||||
|
|
|
@ -78,18 +78,28 @@ class Ref(Field):
|
|||
# This PX displays icons for triggering actions on a given referenced object
|
||||
# (edit, delete, etc).
|
||||
pxObjectActions = Px('''
|
||||
<table class="noStyle">
|
||||
<table class="noStyle" var="tiedUid=tied.o.id">
|
||||
<tr>
|
||||
<!-- Arrows for moving objects up or down -->
|
||||
<td if="not isBack and (len(objects)>1) and changeOrder and canWrite \
|
||||
<td if="not isBack and (totalNumber >1) and changeOrder and canWrite \
|
||||
and not inPickList"
|
||||
var2="objectIndex=field.getIndexOf(zobj, tied);
|
||||
var2="objectIndex=field.getIndexOf(zobj, tiedUid);
|
||||
ajaxBaseCall=navBaseCall.replace('**v**','%s,%s,{%s:%s,%s:%s}'%\
|
||||
(q(startNumber), q('doChangeOrder'), q('refObjectUid'),
|
||||
q(tied.o.id), q('move'), q('**v**')))">
|
||||
q(tiedUid), q('move'), q('**v**')))">
|
||||
<!-- Move to top -->
|
||||
<img if="objectIndex > 1" class="clickable"
|
||||
src=":url('arrowsUp')" title=":_('move_top')"
|
||||
onclick=":ajaxBaseCall.replace('**v**', 'top')"/>
|
||||
<!-- Move to bottom -->
|
||||
<img if="objectIndex < (totalNumber-2)" class="clickable"
|
||||
src=":url('arrowsDown')" title=":_('move_bottom')"
|
||||
onclick=":ajaxBaseCall.replace('**v**', 'bottom')"/>
|
||||
<!-- Move up -->
|
||||
<img if="objectIndex > 0" class="clickable" src=":url('arrowUp')"
|
||||
title=":_('move_up')"
|
||||
onclick=":ajaxBaseCall.replace('**v**', 'up')"/>
|
||||
<!-- Move down -->
|
||||
<img if="objectIndex < (totalNumber-1)" class="clickable"
|
||||
src=":url('arrowDown')" title=":_('move_down')"
|
||||
onclick=":ajaxBaseCall.replace('**v**', 'down')"/>
|
||||
|
@ -107,7 +117,7 @@ class Ref(Field):
|
|||
<!-- Delete -->
|
||||
<td if="not isBack and field.delete and canWrite and tied.o.mayDelete()">
|
||||
<img class="clickable" title=":_('object_delete')" src=":url('delete')"
|
||||
onclick=":'onDeleteObject(%s)' % q(tied.o.id)"/>
|
||||
onclick=":'onDeleteObject(%s)' % q(tiedUid)"/>
|
||||
</td>
|
||||
<!-- Unlink -->
|
||||
<td if="not isBack and field.unlink and canWrite and not inPickList">
|
||||
|
@ -115,14 +125,14 @@ class Ref(Field):
|
|||
action='unlink'"
|
||||
class="clickable" title=":_('object_unlink')" src=":url(imgName)"
|
||||
onclick=":'onLink(%s,%s,%s,%s)' % (q(action), q(zobj.id), \
|
||||
q(field.name), q(tied.o.id))"/>
|
||||
q(field.name), q(tiedUid))"/>
|
||||
</td>
|
||||
<!-- Insert (if in pick list) -->
|
||||
<td if="inPickList">
|
||||
<img var="action='link'" class="clickable" title=":_('object_link')"
|
||||
src=":url(action)"
|
||||
onclick=":'onLink(%s,%s,%s,%s)' % (q(action), q(zobj.id), \
|
||||
q(field.name), q(tied.o.id))"/>
|
||||
q(field.name), q(tiedUid))"/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>''')
|
||||
|
@ -923,16 +933,25 @@ class Ref(Field):
|
|||
(obj.id, self.name, code % ('objs', 'objs'), poss)
|
||||
|
||||
def doChangeOrder(self, obj):
|
||||
'''Moves a referred object up or down.'''
|
||||
'''Moves a referred object up/down/top/bottom.'''
|
||||
rq = obj.REQUEST
|
||||
# Move the item up (-1), down (+1) ?
|
||||
move = (rq['move'] == 'down') and 1 or -1
|
||||
# The UID of the referred object to move
|
||||
# How to move the item?
|
||||
move = rq['move']
|
||||
# Get the UID of the tied object to move
|
||||
uid = rq['refObjectUid']
|
||||
uids = getattr(obj.aq_base, self.name)
|
||||
oldIndex = uids.index(uid)
|
||||
# Remove the object from its previous position.
|
||||
uids.remove(uid)
|
||||
newIndex = oldIndex + move
|
||||
# Re-insert the object at its new position.
|
||||
if move == 'up':
|
||||
newIndex = oldIndex - 1
|
||||
elif move == 'down':
|
||||
newIndex = oldIndex + 1
|
||||
elif move == 'top':
|
||||
newIndex = 0
|
||||
elif move == 'bottom':
|
||||
newIndex = len(uids)
|
||||
uids.insert(newIndex, uid)
|
||||
|
||||
xhtmlToText = re.compile('<.*?>', re.S)
|
||||
|
@ -959,11 +978,12 @@ class Ref(Field):
|
|||
res = refObject.tool.o.truncateValue(res, maxWidth)
|
||||
return res
|
||||
|
||||
def getIndexOf(self, obj, refObj):
|
||||
'''Gets the position of p_refObj within this field on p_obj.'''
|
||||
def getIndexOf(self, obj, tiedUid):
|
||||
'''Gets the position of tied object identified by p_tiedUid within this
|
||||
field on p_obj.'''
|
||||
uids = getattr(obj.aq_base, self.name, None)
|
||||
if not uids: raise IndexError()
|
||||
return uids.index(refObj.o.id)
|
||||
return uids.index(tiedUid)
|
||||
|
||||
def sort(self, obj):
|
||||
'''Called when the user wants to sort the content of this field.'''
|
||||
|
|
|
@ -103,6 +103,14 @@ msgstr ""
|
|||
msgid "move_down"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "Move to top"
|
||||
msgid "move_top"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "Move to bottom"
|
||||
msgid "move_bottom"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "create"
|
||||
msgid "query_create"
|
||||
msgstr ""
|
||||
|
|
|
@ -103,6 +103,14 @@ msgstr ""
|
|||
msgid "move_down"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "Move to top"
|
||||
msgid "move_top"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "Move to bottom"
|
||||
msgid "move_bottom"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "create"
|
||||
msgid "query_create"
|
||||
msgstr ""
|
||||
|
|
|
@ -103,6 +103,14 @@ msgstr "Nach oben verschieben"
|
|||
msgid "move_down"
|
||||
msgstr "Nach unten verschieben"
|
||||
|
||||
#. Default: "Move to top"
|
||||
msgid "move_top"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "Move to bottom"
|
||||
msgid "move_bottom"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "create"
|
||||
msgid "query_create"
|
||||
msgstr "Anfertigen"
|
||||
|
|
|
@ -104,6 +104,14 @@ msgstr "Move up"
|
|||
msgid "move_down"
|
||||
msgstr "Move down"
|
||||
|
||||
#. Default: "Move to top"
|
||||
msgid "move_top"
|
||||
msgstr "Move to top"
|
||||
|
||||
#. Default: "Move to bottom"
|
||||
msgid "move_bottom"
|
||||
msgstr "Move to bottom"
|
||||
|
||||
#. Default: "create"
|
||||
msgid "query_create"
|
||||
msgstr "create"
|
||||
|
|
|
@ -103,6 +103,14 @@ msgstr "Mueva hacia arriba"
|
|||
msgid "move_down"
|
||||
msgstr "Mueva hacia abajo"
|
||||
|
||||
#. Default: "Move to top"
|
||||
msgid "move_top"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "Move to bottom"
|
||||
msgid "move_bottom"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "create"
|
||||
msgid "query_create"
|
||||
msgstr "Crear"
|
||||
|
|
|
@ -104,6 +104,14 @@ msgstr "Déplacer vers le haut"
|
|||
msgid "move_down"
|
||||
msgstr "Déplacer vers le bas"
|
||||
|
||||
#. Default: "Move to top"
|
||||
msgid "move_top"
|
||||
msgstr "Déplacer en première position"
|
||||
|
||||
#. Default: "Move to bottom"
|
||||
msgid "move_bottom"
|
||||
msgstr "Déplacer en dernière position"
|
||||
|
||||
#. Default: "create"
|
||||
msgid "query_create"
|
||||
msgstr "Créer"
|
||||
|
|
|
@ -103,6 +103,14 @@ msgstr "Su"
|
|||
msgid "move_down"
|
||||
msgstr "Giù"
|
||||
|
||||
#. Default: "Move to top"
|
||||
msgid "move_top"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "Move to bottom"
|
||||
msgid "move_bottom"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "create"
|
||||
msgid "query_create"
|
||||
msgstr "Creazione in corso"
|
||||
|
|
|
@ -103,6 +103,14 @@ msgstr "Verplaats naar boven"
|
|||
msgid "move_down"
|
||||
msgstr "Verplaats naar beneden"
|
||||
|
||||
#. Default: "Move to top"
|
||||
msgid "move_top"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "Move to bottom"
|
||||
msgid "move_bottom"
|
||||
msgstr ""
|
||||
|
||||
#. Default: "create"
|
||||
msgid "query_create"
|
||||
msgstr "Aanmaken"
|
||||
|
|
|
@ -48,9 +48,9 @@ function len(dict) {
|
|||
return res;
|
||||
}
|
||||
|
||||
function switchLanguage(selectWidget) {
|
||||
function switchLanguage(selectWidget, siteUrl) {
|
||||
var language = selectWidget.options[selectWidget.selectedIndex].value;
|
||||
goto("/config/changeLanguage?language=" + language);
|
||||
goto(siteUrl + '/config/changeLanguage?language=' + language);
|
||||
}
|
||||
|
||||
var isIe = (navigator.appName == "Microsoft Internet Explorer");
|
||||
|
|
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 218 B |
Before Width: | Height: | Size: 212 B |
BIN
gen/ui/arrowRight.png
Normal file
After Width: | Height: | Size: 229 B |
Before Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 216 B |
BIN
gen/ui/arrowsDown.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
gen/ui/arrowsLeft.png
Normal file
After Width: | Height: | Size: 236 B |
BIN
gen/ui/arrowsRight.png
Normal file
After Width: | Height: | Size: 235 B |
BIN
gen/ui/arrowsUp.png
Normal file
After Width: | Height: | Size: 241 B |
|
@ -50,13 +50,13 @@ class ToolWrapper(AbstractWrapper):
|
|||
<tr valign="bottom">
|
||||
<!-- Go to the first page -->
|
||||
<td if="(startNumber != 0) and (startNumber != batchSize)"><img
|
||||
class="clickable" src=":url('arrowLeftDouble')"
|
||||
class="clickable" src=":url('arrowsLeft')"
|
||||
title=":_('goto_first')"
|
||||
onClick=":navBaseCall.replace('**v**', '0'+sortAndFilter)"/></td>
|
||||
|
||||
<!-- Go to the previous page -->
|
||||
<td var="sNumber=startNumber - batchSize" if="startNumber != 0"><img
|
||||
class="clickable" src=":url('arrowLeftSimple')"
|
||||
class="clickable" src=":url('arrowLeft')"
|
||||
title=":_('goto_previous')"
|
||||
onClick=":navBaseCall.replace('**v**', \
|
||||
str(sNumber)+sortAndFilter)"/></td>
|
||||
|
@ -70,7 +70,7 @@ class ToolWrapper(AbstractWrapper):
|
|||
<!-- Go to the next page -->
|
||||
<td var="sNumber=startNumber + batchSize"
|
||||
if="sNumber < totalNumber"><img class="clickable"
|
||||
src=":url('arrowRightSimple')" title=":_('goto_next')"
|
||||
src=":url('arrowRight')" title=":_('goto_next')"
|
||||
onClick=":navBaseCall.replace('**v**', \
|
||||
str(sNumber)+sortAndFilter)"/></td>
|
||||
|
||||
|
@ -82,7 +82,7 @@ class ToolWrapper(AbstractWrapper):
|
|||
sNumber= nbOfCountedPages * batchSize"
|
||||
if="(startNumber != sNumber) and \
|
||||
(startNumber != sNumber-batchSize)"><img class="clickable"
|
||||
src=":url('arrowRightDouble')" title=":_('goto_last')"
|
||||
src=":url('arrowsRight')" title=":_('goto_last')"
|
||||
onClick=":navBaseCall.replace('**v**', \
|
||||
str(sNumber)+sortAndFilter)"/></td>
|
||||
</tr>
|
||||
|
|
|
@ -31,9 +31,9 @@ class AbstractWrapper(object):
|
|||
|
||||
<!-- Go to the first or previous page -->
|
||||
<a if="ni.firstUrl" href=":ni.firstUrl"><img title=":_('goto_first')"
|
||||
src=":url('arrowLeftDouble')"/></a><a
|
||||
src=":url('arrowsLeft')"/></a><a
|
||||
if="ni.previousUrl" href=":ni.previousUrl"><img
|
||||
title=":_('goto_previous')" src=":url('arrowLeftSimple')"/></a>
|
||||
title=":_('goto_previous')" src=":url('arrowLeft')"/></a>
|
||||
|
||||
<!-- Explain which element is currently shown -->
|
||||
<span class="discreet">
|
||||
|
@ -42,9 +42,9 @@ class AbstractWrapper(object):
|
|||
|
||||
<!-- Go to the next or last page -->
|
||||
<a if="ni.nextUrl" href=":ni.nextUrl"><img title=":_('goto_next')"
|
||||
src=":url('arrowRightSimple')"/></a><a
|
||||
src=":url('arrowRight')"/></a><a
|
||||
if="ni.lastUrl" href=":ni.lastUrl"><img title=":_('goto_last')"
|
||||
src=":url('arrowRightDouble')"/></a>
|
||||
src=":url('arrowsRight')"/></a>
|
||||
</div>''')
|
||||
|
||||
pxNavigationStrip = Px('''
|
||||
|
@ -188,10 +188,10 @@ class AbstractWrapper(object):
|
|||
class="pageLink clickable">:_('app_connect')</a>
|
||||
|
||||
<!-- Language selector -->
|
||||
<select if="ztool.showLanguageSelector()"
|
||||
<select if="ztool.showLanguageSelector()" class="pageLink"
|
||||
var2="languages=ztool.getLanguages();
|
||||
defaultLanguage=languages[0]"
|
||||
class="pageLink" onchange="switchLanguage(this)">
|
||||
onchange=":'switchLanguage(this,%s)' % q(ztool.getSiteUrl())">
|
||||
<option for="lg in languages" value=":lg"
|
||||
selected=":lang == lg">:ztool.getLanguageName(lg)</option>
|
||||
</select>
|
||||
|
|