Revision
26225 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 5 13:02:51 2011 UTC
(8 years, 11 months ago)
by
fvlankvelt
Original Path:
hippo-cms7/cms/trunk/admin
Diff to
previous 26173
HREPTWO-4819: remove precondition check for workflow menu items
Since the workflow menu is regularly rebuild (not just repainted), with new
wicket ids generated each time, the precondition check would fail.
The text component in the action description has become a label instead of a
link, as the workflow(s) plugin will make sure that a link is created.
Revision
26073 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 29 15:09:43 2010 UTC
(8 years, 11 months ago)
by
fvlankvelt
Original Path:
hippo-cms7/cms/trunk/admin
Diff to
previous 25882
HREPTWO-4840: use type ancestors to find the primary item
The JcrHelper method is the recommended way of finding the primary item, as it
checks the type hierarchy. This is particularly relevant for the gallery
imageset, that is supposed to be subtyped and that uses a primary item.
Revision
25817 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 20 09:37:20 2010 UTC
(8 years, 11 months ago)
by
fvlankvelt
Original Path:
hippo-cms7/cms/trunk/admin
Diff to
previous 25799
HREPTWO-4821: implement design specified in issue screenshots
Extracted some chunks from screen.css into more appropriate places, including
the images referenced from these parts.
Removed mimetype icons that were no longer used.
Revision
25799 -
Directory Listing
-
[select for diffs]
Modified
Fri Dec 17 10:51:02 2010 UTC
(8 years, 11 months ago)
by
fvlankvelt
Original Path:
hippo-cms7/cms/trunk/admin
Diff to
previous 25797
HREPTWO-4830: update url name synchronously after edit
Doing this asynchronously could lead to situations where the response arrived after the wicket submit had been sent. Also removed the reliance on the keyUp event, as that may not arrive in time.
forwarded from branch
Revision
25784 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 15 15:22:25 2010 UTC
(8 years, 11 months ago)
by
fvlankvelt
Original Path:
hippo-cms7/cms/trunk/admin
Diff to
previous 25778
HREPTWO-4734: forward port
- upgrade module for cms
- initialize french translations separately
- consistent hippo:version tags on a clean and upgraded repository
- update module for image sets
This update module takes care of converting hippogallery:exampleImageSet and
hippogallery:stdImageGallery nodes.
Revision
25696 -
Directory Listing
-
[select for diffs]
Modified
Thu Dec 9 13:44:50 2010 UTC
(8 years, 11 months ago)
by
fvlankvelt
Original Path:
hippo-cms7/cms/trunk/admin
Diff to
previous 25694
HREPTWO-4804: forward port from 2.18 branch to trunk
- Grid lines broken in doc listing view
- The icons in the doclisting require a zero padding, else they break the tr's height. The new BaseIconAttributeModifier does just this for cells with icons, by adding a special class 'ICON - 16'.
Apply same attribute modifier to translation column
Classes were renamed to better reflect their purpose.
Revision
25694 -
Directory Listing
-
[select for diffs]
Modified
Thu Dec 9 11:44:28 2010 UTC
(9 years ago)
by
fvlankvelt
Original Path:
hippo-cms7/cms/trunk/admin
Diff to
previous 25674
HREPTWO-4810: more careful saving of the data store
Handle saves explicitly and remember what records have been updated during the save. The Ext data store resets all the dirty flags when it receives the response to the save operation.
Revision
25276 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 24 11:29:53 2010 UTC
(9 years ago)
by
fvlankvelt
Original Path:
hippo-ecm/cms/trunk/admin
Diff to
previous 25239
HREPTWO-4704: revert to galleryworkflowimpl in threepane workflow category
The issue that caused this most likely suffered from the missing getSize() implementation on query result NodeIterators.
A fix for that is included, making the searchingtranslatorplugin usable again.
Revision
24167 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 4 09:42:53 2010 UTC
(9 years, 2 months ago)
by
bvanhalderen
Original Path:
hippo-ecm/trunk/addon/cms/admin
Diff to
previous 24125
HREPTWO-4560: On order to cache dataprovider modules they have to be
re-entrant and thread safe. Prior 2.17.00 this was not the case, hence
this forward-ported commit. Event though currently the data provider
modules are safe to use, it is a sound precausion to re-create the
modules here too. The memory footprint will not be very big and it
serves as a good precaution against mis-behaving modules.
Revision
23964 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 16 14:10:49 2010 UTC
(9 years, 2 months ago)
by
fvlankvelt
Original Path:
hippo-ecm/trunk/addon/cms/admin
Diff to
previous 23850
HREPTWO-2245, HREPTWO-4257: icons are provided by panels themselves instead of
being hardcoded in the stylesheet
The ITitleDecorator class has been extended to include an icon accessor method.
The IconSize enum enumerates the standard sizes used by the CMS. Each icon
should be square.
Dialogs do not need to implement the ITitleDecorator interface. The
IDialogService.Dialog interface declares all methods that need to be
implemented by dialogs.
The icons have been moved from the skin project into the plugins themselves.
Revision
23418 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 12 08:54:49 2010 UTC
(9 years, 4 months ago)
by
fvlankvelt
Original Path:
hippo-ecm/trunk/addon/cms/admin
Diff to
previous 23374
HREPTWO-4304: actively remove listeners
JCR listeners were still receiving events, even though the session was no
longer used. They are now removed actively from the system when the session is
invalidated by the container. One can therefore choose to set the timeout to a
small value, to make sure that all sessions are closed when e.g. an importer
runs. Alternatively, one can actively invalidate the sessions from the
container management console before starting an operation that will generate
many events.