Skip to content
Snippets Groups Projects
Select Git revision
  • Issue/2304-virtuosoRoars
  • main default protected
  • gitkeep
  • dev protected
  • Issue/2914-trellisMigrator
  • Issue/2847-reporting
  • Hotfix/2776-workingNewVersion
  • Hotfix/xxxx-correctAssignments
  • Issue/2666-adminCronjobs-theSequal
  • Issue/2666-adminCronjobs
  • Issue/2518-docs
  • Hotfix/xxxx-coscineGraph
  • Fix/v0.1.7-dependencies
  • Hotfix/2212-fixFiles
  • Issue/2222-resourceDateCreated
  • Issue/2221-projectDateCreated
  • Hotfix/xxxx-changeUrls
  • Issue/1321-pidEnquiryOverhaul
  • Issue/1782-structualDataIntegration
  • Issue/2084-migrateResourceStructuralData
  • v0.1.24
  • v0.1.23
  • v0.1.22
  • v0.1.21
  • v0.1.20
  • v0.1.19
  • v0.1.18
  • v0.1.17
  • v0.1.16
  • v0.1.15
  • v0.1.14
  • v0.1.13
  • v0.1.12
  • v0.1.11
  • v0.1.10
  • v0.1.9
  • v0.1.7
  • v0.1.8
  • v0.1.6
  • v0.1.5
40 results

.gitattributes

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    plotID_options.m 1.00 KiB
    function [options] = plotID_options(input)
    %PLOTID_OPTIONS gives you a struct with all the options defined in publish
    %   Two modes are implemented default and debug
    
    options = struct();
    switch input
        case 'default' %same as Arguments Block       
            options.Location  = 'local'; % storage path
            options.Method  = 'individual';
            options.ParentFolder  = 'export';
            options.ConfigFileName = 'config.json';%individual config names possible
            options.CopyUserFCN = true;
            options.CSV = false;
            options.ShowMessages = true;
            options.ForcePublish  = false; %publish anyway
        case 'debug'
            options.Location  = 'local'; % storage path
            options.Method  = 'individual';
            options.ParentFolder  = 'export';
            options.ConfigFileName = 'config.json';%individual config names possible
            options.CopyUserFCN = true;
            options.CSV = true;
            options.ShowMessages = true;
            options.ForcePublish  = true; %publish anyway        
    end
    
    end