49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
;; GLOBALS
;;
(define *datashare:current-tab-number* 0)
(define datashare:help (conc "Usage: datashare [action [params ...]]
Note: run datashare without parameters to start the gui.
publish <area> <key> [group] : Publish data to share, use group to protect (i)
get <area> <key> [destpath] : Get a link to data, put the link in destpath (ii)
update <area> <key> : Update the link to data to the latest iteration.
(i) Uses group ownership of files to be published for group if not specified
(ii) Uses local path or looks up script to find path in configs
Part of the Megatest tool suite. Learn more at http://www.kiatoa.com/fossils/megatest
Version: " megatest-fossil-hash)) ;; "
;;======================================================================
;; RECORDS
|
|
|
|
<
|
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
;; GLOBALS
;;
(define *datashare:current-tab-number* 0)
(define datashare:help (conc "Usage: datashare [action [params ...]]
Note: run datashare without parameters to start the gui.
publish path <area> version : Publish data to share, use group to protect
get <area> version [destpath] : Get a link to data, put the link in destpath (i)
update <area> : Update the link to data to the latest iteration.
(i) Uses local path or looks up script to find path in configs
Part of the Megatest tool suite. Learn more at http://www.kiatoa.com/fossils/megatest
Version: " megatest-fossil-hash)) ;; "
;;======================================================================
;; RECORDS
|