Book Image

Alfresco 3 Cookbook

Book Image

Alfresco 3 Cookbook

Overview of this book

Alfresco is the renowned and multiple award winning open source Enterprise content management system which allows you to build, design, and implement your very own ECM solutions.You have read a number of tutorials, blogs, and books on Alfresco. Now you're in the real world, trying to use Alfresco, but you’re running into problems with it. This is the book you want. Packed full of solutions that can be instantly applied, this cookbook with its practical based recipes and minimal explanation meets that demand.This Alfresco 3 cookbook boasts a comprehensive selection of recipes covering everything from the basics to the advanced. The book has recipes for quickly installing Alfresco in Windows and Linux and helping you use custom content model, rules, and search. There is also a collection of recipes focused on creating Scripts, Freemarker templates, Web Scripts, and new workflow definitions. Steps to integrate Alfresco with other systems like MS-Office are also included. You will be able to use Alfresco’s File and Email servers. Finally, step-by-step recipes are presented to create an Alfresco build environment and compile the source code. This Alfresco 3 Cookbook is perfect for developers looking to start working on Alfresco quickly, gain complete understanding, write custom implementations, and achieve expertise very easily.
Table of Contents (21 chapters)
Alfresco 3 Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a backup copy of a document


In this recipe, we will write a script to create a backup copy of a particular document.

How to do it...

  1. 1. Create a new script file in the Company Home>Data Dictionary>Scripts>Cookbook folder and add the following code. Let’s say the file is named createbackup.js

    var back = space.childByNamePath("Backup");
    if (back == null && space.hasPermission("CreateChildren"))
    {
    back = space.createFolder("Backup");
    }
    if (back != null && back.hasPermission("CreateChildren"))
    {
    var copied = document.copy(back);
    if (copied != null)
    {
    var backName = "Backup of " + copied.name;
    copied.name = backName;
    copied.properties.description = "This is a Backup copy created by JS";
    copied.save();
    }
    }
    
  2. 2. Execute the script using Run Action on the document Test_JS_API.txt in the Chapter 8 folder.

  3. 3. After executing the script, a new folder named Backup will be created (if it does not exist already) and a copy of this document (named Backup of Test_JS_API.txt)...