diff options
author | stanley lieber <stanley.lieber@gmail.com> | 2013-12-22 14:56:04 -0500 |
---|---|---|
committer | stanley lieber <stanley.lieber@gmail.com> | 2013-12-22 14:56:04 -0500 |
commit | 9e021d9230cadbb1dea88694494bf3f8bec9fe02 (patch) | |
tree | c8b74fb06179ff4f9e1bd2f52b19bfe113c4d137 /sys/lib/plumb/basic | |
parent | 66f86d03a511dd145e0be08619a09cdd712a89c0 (diff) |
/sys/lib/plumb/basic: add commas to some rules for file names that will frequently contain commas
Diffstat (limited to 'sys/lib/plumb/basic')
-rw-r--r-- | sys/lib/plumb/basic | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/lib/plumb/basic b/sys/lib/plumb/basic index c32616ebd..ff8ee5a9c 100644 --- a/sys/lib/plumb/basic +++ b/sys/lib/plumb/basic @@ -15,8 +15,8 @@ plumb client window $browser # rtf files go to wdoc2txt type is text -data matches '[a-zA-Z¡-0-9_\-./]+' -data matches '([a-zA-Z¡-0-9_\-./]+)\.rtf' +data matches '[a-zA-Z¡-0-9_\-.,/]+' +data matches '([a-zA-Z¡-0-9_\-.,/]+)\.rtf' arg isfile $0 plumb to msword plumb start wdoc2txt $file @@ -35,23 +35,23 @@ plumb start window rc -c '''echo % mail '''$0'; mail '$0 # audio type is text -data matches '[a-zA-Z¡-0-9_\-./]+' -data matches '([a-zA-Z¡-0-9_\-./]+)\.(mp3|ogg|flac|m3u|pls)' +data matches '[a-zA-Z¡-0-9_\-.,/]+' +data matches '([a-zA-Z¡-0-9_\-.,/]+)\.(mp3|ogg|flac|m3u|pls)' arg isfile $0 plumb to audio plumb start window play $0 # image files go to page type is text -data matches '[a-zA-Z¡-0-9_\-./]+' -data matches '([a-zA-Z¡-0-9_\-./]+)\.(jpe?g|JPE?G|gif|GIF|tiff?|TIFF?|ppm|PPM|bit|BIT|png|PNG|pgm|PGM|bmp|BMP|yuv|YUV)' +data matches '[a-zA-Z¡-0-9_\-.,/]+' +data matches '([a-zA-Z¡-0-9_\-.,/]+)\.(jpe?g|JPE?G|gif|GIF|tiff?|TIFF?|ppm|PPM|bit|BIT|png|PNG|pgm|PGM|bmp|BMP|yuv|YUV)' arg isfile $0 plumb to image plumb client page -wi # page bookmarks type is text -data matches '(([a-zA-Z¡-0-9_\-./]+)\.(ps|PS|eps|EPS|pdf|PDF|dvi|DVI|doc|DOC|epub|EPUB|cb[tz]|CB[TZ]))!(.+)' +data matches '(([a-zA-Z¡-0-9_\-.,/]+)\.(ps|PS|eps|EPS|pdf|PDF|dvi|DVI|doc|DOC|epub|EPUB|cb[tz]|CB[TZ]))!(.+)' arg isfile $1 data set $file attr add addr=$4 @@ -61,8 +61,8 @@ plumb start page -wij $0 $file # postscript/pdf/dvi/doc go to page but not over the a plumb port # the port is here for reference but is unused type is text -data matches '[a-zA-Z¡-0-9_\-./]+' -data matches '([a-zA-Z¡-0-9_\-./]+)\.(ps|PS|eps|EPS|pdf|PDF|dvi|DVI|doc|DOC|epub|EPUB|cb[tz]|CB[TZ])' +data matches '[a-zA-Z¡-0-9_\-.,/]+' +data matches '([a-zA-Z¡-0-9_\-.,/]+)\.(ps|PS|eps|EPS|pdf|PDF|dvi|DVI|doc|DOC|epub|EPUB|cb[tz]|CB[TZ])' arg isfile $0 plumb to postscript plumb start page -w $file |