Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourYellow
titleWork in progress

Table of Contents

 

Introduction 

X1800

Feature Version Compatibility Matrix

The YADE getlist operation enable user to list all the files matching with file_spec parameter from source directory. The getlist operation creates a local file list file as specified in the result_set_filename parameter.

Issues

WebDAV getlist support is subject to the following issues:

Jira
serverSOS JIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
maximumIssues20
jqlQueryproject = YADE and labels = webdav
serverId6dc67751-9d67-34cd-985b-194a8cdc9602

Feature Version Compatibility Matrix

 

VersionAvailabilityCommentsJIRA
1.5.4041+YESthis feature has bug but work around available
Jira
serverSOS JIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverId6dc67751-9d67-34cd-985b-194a8cdc9602
keyYADE-293
1.6.4075+YESthis feature has bug, but work around available
Jira
serverSOS JIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverId6dc67751-9d67-34cd-985b-194a8cdc9602
keyYADE-293
1.7.4321YESNANA
1.8.2YESNANA
1.9-RC1YESimproved functionality,new banner, file list on stdoutNA
1.10PLANEDimproved functionality, file attributes e.g. file size etc
Jira
serverSOS JIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverId6dc67751-9d67-34cd-985b-194a8cdc9602
keyYADE-266

Workaround to avoid bug YADE-293

To avoid the bug 

Jira
serverSOS JIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverId6dc67751-9d67-34cd-985b-194a8cdc9602
keyYADE-293
 set parameter force_files=false in YADE profile or from command line.

 x

Example Profile For Getlist Over WebDAV With Proxy

...

Code Block
languagebash
titleProfile : getlist_webdav_to_localhost_with_proxy
linenumberstrue
[getlist_webdav_to_localhost_with_proxy]
file_spec              = ^.*$
operation              = getlist
result_set_filename    = c:\__temp\getlist-output.txt
create_result_set      = true
;;
source_protocol        = webdav
source_host            = https://mediacenter.gmx.net
source_port            = 443
source_user            = sos_media
source_password        = qanN9UCH9eYUzHr2
source_ssh_auth_method = url
source_dir             = /home/test/outbound
;;
source_proxy_host        = homer.sos
source_proxy_user        = proxy_user
source_proxy_port        = 2525
source_proxy_password    = rug2vYaF7qNP
;;

Operation Getlist output

The YADE operation GetList create two local result files. The result file's name and location can be configured by parameter  result_set_filename. Since during a GetList operation there are no "current file(s)" therefore YADE creates two files;

  1. output-file 
    • This file contains list of files present at the source_dir including the path of each file.
  2. output-file.csv
    • This file contains the YADE operation's history details e.g. source_dir, file_name, size etc..
    • The purpose of this file is to maintain a history of GetList operations along side of output file.

The above mentioned files will be overwritten during the next execution of the YADE profile.

 

 

 

 x