diff options
author | Karl Berry <karl@freefriends.org> | 2017-04-13 17:59:45 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-04-13 17:59:45 +0000 |
commit | 10afec2bf982256b64b6ced347ff4bf48b089e48 (patch) | |
tree | d42dab7840aacff1d7f9d7a3a24daf582635acd1 /Master/tlpkg/doc/historic | |
parent | b6f42e4828ceef356437c85cb453288238170636 (diff) |
2017 pretest initial
git-svn-id: svn://tug.org/texlive/trunk@43775 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/doc/historic')
14 files changed, 42 insertions, 0 deletions
diff --git a/Master/tlpkg/doc/historic/texlive2008-wizard.png b/Master/tlpkg/doc/historic/texlive2008-wizard.png Binary files differnew file mode 100644 index 00000000000..0d70d328616 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2008-wizard.png diff --git a/Master/tlpkg/doc/historic/texlive2008.png b/Master/tlpkg/doc/historic/texlive2008.png Binary files differnew file mode 100644 index 00000000000..9aefd9648cd --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2008.png diff --git a/Master/tlpkg/doc/historic/texlive2009-wizard.png b/Master/tlpkg/doc/historic/texlive2009-wizard.png Binary files differnew file mode 100644 index 00000000000..9a0b3ba53b1 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2009-wizard.png diff --git a/Master/tlpkg/doc/historic/texlive2010.png b/Master/tlpkg/doc/historic/texlive2010.png Binary files differnew file mode 100644 index 00000000000..24e0e666c8f --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2010.png diff --git a/Master/tlpkg/doc/historic/texlive2011.png b/Master/tlpkg/doc/historic/texlive2011.png Binary files differnew file mode 100644 index 00000000000..66110087c41 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2011.png diff --git a/Master/tlpkg/doc/historic/texlive2012.png b/Master/tlpkg/doc/historic/texlive2012.png Binary files differnew file mode 100644 index 00000000000..61041d8b238 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2012.png diff --git a/Master/tlpkg/doc/historic/texlive2013-horizontal.png b/Master/tlpkg/doc/historic/texlive2013-horizontal.png Binary files differnew file mode 100644 index 00000000000..7ce3d8f0c9f --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2013-horizontal.png diff --git a/Master/tlpkg/doc/historic/texlive2014-horizontal.png b/Master/tlpkg/doc/historic/texlive2014-horizontal.png Binary files differnew file mode 100644 index 00000000000..14699fdf123 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2014-horizontal.png diff --git a/Master/tlpkg/doc/historic/texlive2014.png b/Master/tlpkg/doc/historic/texlive2014.png Binary files differnew file mode 100644 index 00000000000..06d577dae0d --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2014.png diff --git a/Master/tlpkg/doc/historic/texlive2015-horizontal.png b/Master/tlpkg/doc/historic/texlive2015-horizontal.png Binary files differnew file mode 100644 index 00000000000..6d179b37e41 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2015-horizontal.png diff --git a/Master/tlpkg/doc/historic/texlive2015.png b/Master/tlpkg/doc/historic/texlive2015.png Binary files differnew file mode 100644 index 00000000000..347d5968df3 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2015.png diff --git a/Master/tlpkg/doc/historic/texlive2016-horizontal.png b/Master/tlpkg/doc/historic/texlive2016-horizontal.png Binary files differnew file mode 100644 index 00000000000..d12e46cfd58 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2016-horizontal.png diff --git a/Master/tlpkg/doc/historic/texlive2016.png b/Master/tlpkg/doc/historic/texlive2016.png Binary files differnew file mode 100644 index 00000000000..d64a787c514 --- /dev/null +++ b/Master/tlpkg/doc/historic/texlive2016.png diff --git a/Master/tlpkg/doc/historic/tlmgr-keyword-search-interface.txt b/Master/tlpkg/doc/historic/tlmgr-keyword-search-interface.txt new file mode 100644 index 00000000000..2b955040470 --- /dev/null +++ b/Master/tlpkg/doc/historic/tlmgr-keyword-search-interface.txt @@ -0,0 +1,42 @@ +How to interface tlmgr search with keywords + +new search interface: + +tlmgr search <options> <literal> + searches the normal way, i.e., pkg names, short/long desc +tlmgr search <options> --file <literal> + searches the current --file way, i.e., the list of files of a package +tlmgr search <options> --taxonomy <literal> + searches the taxonomy (keyword, functionality, characterization) +tlmgr search <options> --extended <terms> + allows full searching (will maybe implemented later) + +<options> ::= --global | --word | --list [keywords|functions|characterizations] + +<terms> ::= <term> | <term> <terms> +<term> ::= AND | OR | LEFT | RIGHT + keyword=<literal> | function=<levels> | + characterization=<levels> | + package-name=<literal> | title=<literal> | + description=<literal> | file=<literal> + +<levels> ::= <level> | <level> " > " <levels> +<level> ::= <literal> + + +defaults = package-names=ARG OR titles=ARG OR descriptions=ARG +AND -> conjunction +OR -> disjunction +LEFT|RIGHT -> parenthesis for grouping of and and or + +<literal> may contain wildcards and it is matched in a glob style (no re!!) + + +example + tlmgr search keyword=paragraph AND description=dropped +should give back the lettrine package + + tlmgr search characterization=bibliography +searches for all packages with characterization containing anywhere the string +"bibliography" (case insensitive). + |