Skip to content

Commit

Permalink
0.43:
Browse files Browse the repository at this point in the history
    - 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
  • Loading branch information
romainguinot committed Jan 18, 2012
1 parent 847dcf0 commit 95b47d2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.txt
Expand Up @@ -115,6 +115,10 @@ of the dashboard and drag the dashlet into one of the columns from the list of d
Changelog
---------

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'

0.42:
- switched to share extras namespace
- some comments and jsdoc review
Expand Down
2 changes: 1 addition & 1 deletion build.properties
@@ -1,3 +1,3 @@
build.version=0.42
build.version=0.43
project.name=audit-dashlet
jar.name=${project.name}-${build.version}.jar
Expand Up @@ -24,7 +24,7 @@ function main()
var sortOrder = "&forward=" + false; // most recent first

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

var connector = remote.connect("alfresco");
var result = connector.get(uri);
Expand Down
2 changes: 1 addition & 1 deletion source/web/extras/components/dashlets/audit-application.js
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2010-2011 Alfresco Share Extras project
* Copyright (C) 2010-2012 Share Extras contributors
*
* This file is part of the Alfresco Share Extras project.
*
Expand Down

0 comments on commit 95b47d2

Please sign in to comment.