Andreea Nechifor
97beacce15
REPO-1154 : adding repo numaber
2017-10-26 14:06:29 +03:00
ramunteanu
05bc9e6e91
Merge pull request #13 from Alfresco/fix/REPO-1943_remove_nonexistent_membership
...
fix/REPO-1943_remove_nonexistent_membership
2017-10-26 11:48:55 +03:00
Andreea Nechifor
2eabed9f13
REPO-1154: added comments on test : testSearchTermWhiteSpace
2017-10-26 11:17:07 +03:00
Matt Ward
55b683be8e
REPO-2983: REST API: Additional information for node path elements
...
Renamed the path element "type" field to "nodeType", to be consistent
with other uses.
2017-10-25 17:12:27 +01:00
Matt Ward
ffd7e197f0
REPO-2983: REST API: Additional information for node path elements
...
Filtered the "aspectNames" field using the same list of exclusions
as the other places that aspect names are returned. For example in
`/nodes/{nodeId}/children?include=aspectNames` (currently just sys:*)
2017-10-25 16:47:13 +01:00
Andreea Nechifor
af639709f5
REPO-1154 : Format test method
2017-10-25 16:02:17 +03:00
Matt Ward
d234223ae7
REPO-2983: REST API: Additional information for node path elements
...
Added `type` and `aspectNames` fields for each path element.
Example output:
```
...
"elements": [
{
"id": "1f525aa6-d0c5-4395-96e3-b140d728c5ca",
"name": "Company Home",
"type": "cm:folder",
"aspectNames": [
"cm:titled",
"cm:auditable",
"sys:referenceable",
"sys:localized",
"app:uifacets"
]
},
...
]
...
```
2017-10-25 12:30:50 +01:00
Andreea Nechifor
b42dc86bac
REPO-1154: added trem as text in lucene search
2017-10-25 12:39:02 +03:00
Raluca Munteanu
aa345673b6
REPO-1943: RestAPI: Deleting a non-existent group member does not return 404.
...
- Changed membership validation.
2017-10-25 11:55:16 +03:00
Andreea Nechifor
0e1006cae1
Create branch for REPO-1154
2017-10-25 08:36:16 +03:00
alfresco-build
cd232bbf2d
[maven-release-plugin] prepare for next development iteration
2017-10-18 15:10:09 +00:00
alfresco-build
0d6fc78d33
[maven-release-plugin] prepare release alfresco-remote-api-6.3
2017-10-18 15:10:00 +00:00
Andrei Rebegea
8a73d35774
Merge pull request #14 from Alfresco/develop
...
REPO-2025: merging to master to do a release of the remote-api
2017-10-18 16:32:23 +03:00
Andrei Rebegea
287a12427e
REPO-2025: update alfresco-repository dependecy to 6.8
2017-10-18 16:02:23 +03:00
Raluca Munteanu
db82bf34c6
REPO-1943: RestAPI: Deleting a non-existent group member does not return 404
2017-10-17 11:30:47 +03:00
Raluca Munteanu
3c3afb10c7
REPO-1943: RestAPI: Deleting a non-existent group member does not return 404.
...
- Added verification for group membership existence.
2017-10-17 10:55:26 +03:00
Andrei Rebegea
701b8a8b0c
REPO-2025: add DB jobs to run DB tests and mark Lucene tests ( #12 )
...
* REPO-2025 fix/REPO-2025_cat_tests branch to categories and split tests
* REPO-2025: marking the tests that use Lucene in the remote-api project
* REPO-2025: fix the project version before merging to develop
2017-10-16 19:17:09 +03:00
Matt Ward
6d21c1d005
REPO-2575: feedback from Derek - changed default property setting
2017-10-13 14:20:35 +01:00
Matt Ward
99b6716ca6
ALF-21953: updated to use super pom v9
2017-10-12 15:12:54 +01:00
Matt Ward
23f20e2e5a
Merge pull request #11 from Alfresco/feature/REPO-2575_basic_auth_header_toggle
...
REPO-2575: allow sending 'AlfTicket' scheme in WWW-Authenticate header
2017-10-10 14:28:42 +01:00
Matt Ward
dd325c419f
REPO-2575: update alfresco-repository version dependency
...
Now using 6.6 released to include the classpath*:alfresco/project-*.properties props loader pattern.
2017-10-10 12:53:33 +01:00
Matt Ward
066f635029
REPO-2575: renamed properties file as per review
...
Review comment by Derek https://github.com/Alfresco/alfresco-repository/pull/30
Changed properties file name to be specific to the remote-api project.
2017-10-10 10:02:07 +01:00
Matt Ward
dfb270a6e1
REPO-2575: allow sending 'AlfTicket' scheme in WWW-Authenticate header
...
"401 response with www-authenticate header causes browser native login prompt to be shown."
By sending:
WWW-Authenticate: AlfTicket realm="..."
We can avoid making the browser pop up a Basic auth dialogue box. This
is particularly useful for apps built for the browser that talk directly
to the Alfresco public APIs at the backend.
To use this feature, set alfresco.restApi.basicAuthScheme=false
2017-10-09 14:39:21 +01:00
Alexandru-Eusebiu Epure
72b037b30c
Merge pull request #10 from Alfresco/fix/REPO-1882_Create_group_or_person_with_backslash
...
Fix/repo 1882 create group or person with backslash
2017-10-06 15:40:24 +03:00
Alexandru-Eusebiu Epure
250e6c34d0
REPO-1882: Create a group or a person with an id that contains backslash does not throw an error
...
Remove testCreatePersonWithInvalidCharacter() JUnit created in the prevoius commit, and modified testCreatePerson(), that previously verified creation of '/' to verify all 4 invalid characters.
Merged checking of '\' and '/' when creating groups into one single block that verifies all 4 invalid character in testCreateGroup() JUnit.
2017-10-06 14:33:31 +03:00
Alexandru-Eusebiu Epure
723fb50d67
REPO-1882: Create a group or a person with an id that contains backslash does not throw an error
...
Added an char array containing illegall characters (/,\,\n,\r) to Groups and People API's, and adapted the checking of the previous illlegal character (/), to verify all of them.
Added two tests (one for group and one for people), creating using invalid id's.
2017-10-05 17:25:14 +03:00
Matt Ward
1742e74001
Merge pull request #9 from Alfresco/fix/REPO-2827_incorrect_favourite_description
...
REPO-2827: fixed favourite folders/files description field
2017-10-04 09:40:26 +01:00
Matt Ward
dda8557aea
REPO-2827: fixed favourite folders/files description field
...
When listing favourites through the REST API, the folders and files were showing the “title” in the description field rather than the “description”.
Fixed and also added a test.
2017-10-02 12:18:38 +01:00
Derek Hulley
d7178c9870
Merge pull request #8 from Alfresco/fix/REPO-1253_fix_error_surname
...
Fix REPO-1253 Community: ALF-21749: Manage Sites page broken when users without a surname are synchronized from LDAP
2017-09-26 13:29:47 +01:00
Abdul Mohammed
22c5ad9e70
REPO-1253: ALF-21749: Manage Sites page broken when users without a surname are synchronized from LDAP
2017-09-21 15:00:36 +01:00
Abdul Mohammed
39d8a172c2
REPO-1253: ALF-21749: Manage Sites page broken when users without a surname are synchronized from LDAP
2017-09-21 14:44:15 +01:00
Abdul Mohammed
b0cf0872e1
Merge pull request #7 from Alfresco/fix/REPO-2897_fix_error_typo
...
REPO-2897: ALF-21944: membership.delete.js - wrong exception variable…
2017-09-21 13:06:36 +01:00
Abdul Mohammed
9fdc923d00
REPO-2897: ALF-21944: membership.delete.js - wrong exception variable name in catch block
2017-09-21 12:46:23 +01:00
Alan Davis
a35545fee6
REPO-2921 Put a .gitbugtraq file in all develop Branches
2017-09-20 15:14:57 +01:00
Andrei Rebegea
fc403cef1c
REPO-2881: standardize the l10n file - adding new line at the end
2017-09-19 15:08:53 +03:00
Andrei Rebegea
3f4e64b6e0
REPO-2881 : L10n: Add l10n.properties to code repositories : remote-api
2017-09-19 13:18:15 +03:00
alfresco-build
c0bd09f047
[maven-release-plugin] prepare for next development iteration
2017-09-12 14:16:46 +01:00
alfresco-build
48ca3dd9e3
[maven-release-plugin] prepare release alfresco-remote-api-6.2
2017-09-12 14:16:40 +01:00
Alex Mukha
4f57f3ad03
Merge pull request #6 from Alfresco/develop
...
REPO-2815 Sync master with develop
2017-09-12 13:42:52 +01:00
Alex Mukha
ae53ab6f1c
REPO-2815 Update repository version to 6.4
2017-09-12 13:09:20 +01:00
aforascu
14c0280d85
Merge pull request #5 from Alfresco/fix/MNT-17918_updateInitiator
...
REPO-2514 / MNT-17918: Workflow API: Update Process Variable Rest API…
2017-08-28 11:00:55 +03:00
Andrei Forascu
018eabcb3b
REPO-2514 / MNT-17918: Workflow API: Update Process Variable Rest API fails on updating "initiator":
...
- removed redundant cast
2017-08-28 10:55:36 +03:00
Andrei Forascu
1bc4059594
REPO-2514 / MNT-17918: Workflow API: Update Process Variable Rest API fails on updating "initiator":
...
- fixed by converting the initiator actual value to a ActivitiScriptNode instead of NodeRef. Still, the value passed in the response must be of type NodeRef
- added a check in WorkflowRestImpl for cases where customers already updated "initiator" process variable with type NodeRef
- added a Junit that checks also the "initiator" value after it is set using PUT request
2017-08-25 14:47:13 +03:00
Alex Mukha
6fed14733c
Merge branch 'feature/REPO-1851_get_avatar' into 'develop'
...
Avatars: retrieve, update and delete
See merge request !23
2017-08-23 11:25:47 +01:00
Andrei Rebegea
3550c00a32
REPO-2794: format a test class
2017-08-23 12:42:53 +03:00
Andrei Rebegea
bdb2739eac
REPO-2794: clean up unused test suite class
2017-08-23 12:37:29 +03:00
alfresco-build
cab5f3f63f
[maven-release-plugin] prepare for next development iteration
2017-08-22 13:20:52 +00:00
alfresco-build
c0bf9a0fca
[maven-release-plugin] prepare release alfresco-remote-api-6.1
2017-08-22 13:20:47 +00:00
Alex Mukha
48b8d2200c
Sync master with develop
2017-08-22 14:08:49 +01:00
Alex Mukha
3636b2e488
Update repository version to 6.2
2017-08-22 13:19:49 +01:00