Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
73:workspaces [2020/09/22 12:29] – [Manage Workspaces] cafs73:workspaces [2021/02/26 00:29] emr
Line 1: Line 1:
 ====== Manage Workspaces ====== ====== Manage Workspaces ======
- 
-{{youtube>N0OTilCKsgs?large}} 
- 
  
 ===== Manage the Workspace Tree ===== ===== Manage the Workspace Tree =====
  
-TBD+Go to ''Administration > Workspaces''.
  
-===== Use Workspace Variables ===== +With the respective menus you can create, delete, edit, and move workspaces.
- +
-TBD+
  
 +The ''Open'' menu brings you to the workspace's process starting page.
 ===== Use Workspace Attributes ===== ===== Use Workspace Attributes =====
  
 Workspaces can now have specific attributes. Administrators can globally define possible attributes via the ''Administration > Workspaces > … > Configure Workspace Attributes'' menu in __any__ workspace: Workspaces can now have specific attributes. Administrators can globally define possible attributes via the ''Administration > Workspaces > … > Configure Workspace Attributes'' menu in __any__ workspace:
  
-{{  :73:workspaceattributes-listattributes.png?direct&798x217  }}+[[https://doc.stagesasaservice.com/lib/exe/fetch.php?media=73:workspaceattributes-listattributes.png|{{  :73:workspaceattributes-listattributes.png?direct&798x217  }}]]
  
 Attributes can be of type string or selection. Here is an example of how to define a selection and its possible values: Attributes can be of type string or selection. Here is an example of how to define a selection and its possible values:
  
-{{  :73:workspaceattributes-defineselection.png?direct&800x416  }}+[[https://doc.stagesasaservice.com/lib/exe/fetch.php?media=73:workspaceattributes-defineselection.png|{{  :73:workspaceattributes-defineselection.png?direct&800x416  }}]]
  
 After defining the attributes, they can be used in individual workspaces. To set an attribute to a specific value for a workspace, use the ''Edit'' menu for that workspace and switch to the ''Attributes'' tab: After defining the attributes, they can be used in individual workspaces. To set an attribute to a specific value for a workspace, use the ''Edit'' menu for that workspace and switch to the ''Attributes'' tab:
  
-{{  :73:workspaceattributes-selectattributes.png?direct&800x276  }}+[[https://doc.stagesasaservice.com/lib/exe/fetch.php?media=73:workspaceattributes-selectattributes.png|{{  :73:workspaceattributes-selectattributes.png?direct&800x276  }}]]
  
-In Stages 7.3, the workspace attributes can be used in scripts, e.g. to select only a specific set of workspaces:+In Stages 7.3, the workspace attributes can be used in scripts, e.g. to select only a specific set of workspaces:<code>
  
-<code> 
 var workspace = stages.getProjectByPath(workspacePath); var workspace = stages.getProjectByPath(workspacePath);
 var modelYearAttribute = workspace.getAttribute("modelYear"); var modelYearAttribute = workspace.getAttribute("modelYear");
Line 36: Line 31:
    ...    ...
 } }
 +
 </code> </code>