Home
- Details
var group = people.getGroup("GROUP_MYGROUP");
var nodes = people.getPeople("mypeople*");
logger.log("found:" + nodes.length);
logger.log("\n");
for each(var node in nodes)
{
user = utils.getNodeFromString(node);
people.addAuthority(group, user);
//people.removeAuthority(group, user);
logger.log(user.properties["cm:userName"]);
}
- Details
The solution for Alfresco 5.2 version is to add the configuration to the alfresco-global.properties:
activities.post.ignored-types=org.alfresco.documentlibrary.file-previewed,org.alfresco.documentlibrary.file-downloaded
More informations:
https://community.alfresco.com/thread/228224-how-to-hide-document-previewed-in-site-activities-dashlet-52e52d
- Details
revert added files
svn rm --keep-local .
. - path to the folder or file
--keep-local - remove files only from repository and keep it local ()
show file history
svn log -l 5 /path/to/file.txt
-l 5 - number of last versions to show
/path/to/file.txt - your file
compare two file versions
svn -r 1:2 diff /path/to/file.txt
-r 1:2 - version numbers (only numbers without r)
search file through repository with many not checked out projects
svn list -R http://svn.my_host/svn/my_repo_folders | grep my_file_name
- Details
Go to the page with services and klick "refresh"
for Repository
http://www.localhost:8080/alfresco/service/index
for Share
http://www.localhost:8080/share/service/index
Seite 2 von 10