Skip to content

Commit 95b47d2

Browse files
committed
0.43:
- allow the 'additional' query string to override any other configured options, not just the sort order - switched the copyright header from 'Share Extras project' to 'Share Extras contributors' git-svn-id: https://share-extras.googlecode.com/svn/trunk/Audit Dashlet@898 a3f5c567-fd0f-3a89-9b71-a290c5a5f590
1 parent 847dcf0 commit 95b47d2

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ of the dashboard and drag the dashlet into one of the columns from the list of d
115115
Changelog
116116
---------
117117

118+
0.43:
119+
- allow the 'additional' query string to override any other configured options, not just the sort order
120+
- switched the copyright header from 'Share Extras project' to 'Share Extras contributors'
121+
118122
0.42:
119123
- switched to share extras namespace
120124
- some comments and jsdoc review

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
build.version=0.42
1+
build.version=0.43
22
project.name=audit-dashlet
33
jar.name=${project.name}-${build.version}.jar

config/alfresco/site-webscripts/org/sharextras/components/dashlets/audit-application-data.get.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function main()
2424
var sortOrder = "&forward=" + false; // most recent first
2525

2626
var uri = "/api/audit/query/"+stringUtils.urlEncode(application)+"?verbose=true"
27-
+ valueFilterQuery + sortOrder + maxEntryCount + optionalAdditionalQueryParams;
27+
+ optionalAdditionalQueryParams + valueFilterQuery + maxEntryCount + sortOrder;
2828

2929
var connector = remote.connect("alfresco");
3030
var result = connector.get(uri);

source/web/extras/components/dashlets/audit-application.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (C) 2010-2011 Alfresco Share Extras project
2+
* Copyright (C) 2010-2012 Share Extras contributors
33
*
44
* This file is part of the Alfresco Share Extras project.
55
*

0 commit comments

Comments
 (0)