You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

The filters in the Job Scheduler OperationGUI are stored in cookies because it is only implemented by javascript.

But you can set the filters by editing in the ./config/html/custom.js file in the form

 _job_filter['filter name']       = 'regular expression'; //to set a job filter
 _job_chain_filter['filter name'] = 'regular expression'; //to set a job chain filter
 _order_filter['filter name']     = 'regular expression'; //to set an order filter
 //or use 
 _project_filter['filter name']   = 'regular expression';
 //which is effective for jobs, job chains and orders simultaneously
  • Sample1:
    The filter projectA contains all objects which are stored in the Hot Folder subdirectory projectA:
 _project_filter['projectA']   = '^projectA/';
  • Sample2:
    The filter ftpJobs contains all jobs which have a suffix _ftp in its names:
 _job_filter['ftpJobs']   = '_ftp$';
  • Sample3:
    The filter someJobChains contains the job_chains myFirstProject/myFirstJobChain and mySecondProject/mySecondJobChain:
 _job_chain_filter['someJobChains']   = '^(myFirstProject/myFirstJobChain|mySecondProject/mySecondJobChain)$';
 //or
 _job_chain_filter['someJobChains']   = '^my(First|Second)Project/my(First|Second)JobChain$';
  • No labels