00001 /* -*- tcl -*-*/ 00002 /* --------------------------------------------------------------*/ 00003 /* List of modules to install and definitions guiding the process of*/ 00004 /* doing so.*/ 00005 /* */ 00006 /* This file is shared between 'installer.tcl' and 'sak.tcl', like*/ 00007 /* 'package_version.tcl'. The swiss army knife requires access to the*/ 00008 /* data in this file to be able to check if there are modules in the*/ 00009 /* directory hierarchy, but missing in the list of installed modules.*/ 00010 /* --------------------------------------------------------------*/ 00011 00012 ret Exclude (type m) {global excluded ; lappend excluded $m ; return } 00013 ret Application (type a) {global apps ; lappend apps $a ; return } 00014 00015 ret Module (type m , type pkg , type doc , type exa) { 00016 global modules guide 00017 00018 lappend modules $m 00019 set guide($m,pkg) $pkg 00020 set guide($m,doc) $doc 00021 set guide($m,exa) $exa 00022 return 00023 } 00024 00025 excluded = [list] 00026 modules = [list] 00027 apps = [list] 00028 array guide = {} 00029 00030 /* --------------------------------------------------------------*/ 00031 /* @@ Registration START*/ 00032 00033 Exclude calendar 00034 00035 /* name pkg doc example*/ 00036 Module aes _tcl _man _null 00037 Module asn _tcl _man _null 00038 Module base64 _tcl _man _null 00039 Module base32 _tcl _man _null 00040 Module bee _tcl _man _null 00041 Module bench _tcl _null _null 00042 Module bibtex _tcl _man _null 00043 Module blowfish _tcl _man _null 00044 Module calendar _tci _man _null 00045 Module cmdline _tcl _man _null 00046 Module comm _tcl _man _null 00047 Module control _tci _man _null 00048 Module counter _tcl _man _null 00049 Module crc _tcl _man _null 00050 Module csv _tcl _man _exa 00051 Module des _tcl _man _null 00052 Module dns _msg _man _exa 00053 Module docstrip _tcl _man _null 00054 Module doctools _doc _man _exa 00055 Module exif _tcl _man _null 00056 Module fileutil _tcl _man _null 00057 Module ftp _tcl _man _exa 00058 Module ftpd _tcl _man _exa 00059 Module fumagic _tcl _man _null 00060 Module grammar_fa _tcl _man _null 00061 Module grammar_me _tcl _man _null 00062 Module grammar_peg _tcl _man _null 00063 Module html _tcl _man _null 00064 Module htmlparse _tcl _man _null 00065 Module http _tcl _man _null 00066 Module ident _tcl _man _null 00067 Module inifile _tcl _man _null 00068 Module interp _tcl _man _null 00069 Module irc _tcl _man _exa 00070 Module javascript _tcl _man _null 00071 Module jpeg _tcl _man _null 00072 Module json _tcl _man _null 00073 Module ldap _tcl _man _exa 00074 Module log _msg _man _null 00075 Module mapproj _tcl _man _exa 00076 Module math _tci _man _exa 00077 Module md4 _tcl _man _null 00078 Module md5 _tcl _man _null 00079 Module md5crypt _tcl _man _null 00080 Module mime _tcl _man _exa 00081 Module multiplexer _tcl _man _null 00082 Module ncgi _tcl _man _null 00083 Module nmea _tcl _man _null 00084 Module nntp _tcl _man _exa 00085 Module nns _tcl _man _null 00086 Module ntp _tcl _man _exa 00087 Module otp _tcl _man _null 00088 Module page _tcr _man _null 00089 Module pluginmgr _tcl _man _null 00090 Module png _tcl _man _null 00091 Module pop3 _tcl _man _null 00092 Module pop3d _tcl _man _null 00093 Module profiler _tcl _man _null 00094 Module rc4 _tcl _man _null 00095 Module rcs _tcl _man _null 00096 Module report _tcl _man _null 00097 Module ripemd _tcl _man _null 00098 Module sasl _tcl _man _null 00099 Module sha1 _tcl _man _null 00100 Module smtpd _tcl _man _exa 00101 Module snit _tcl _man _null 00102 Module soundex _tcl _man _null 00103 Module stooop _tcl _man _null 00104 Module struct _tcl _man _exa 00105 Module tar _tcl _man _null 00106 Module term _tcr _man _exa 00107 Module textutil _tex _man _null 00108 Module tie _tcl _man _null 00109 Module tiff _tcl _man _null 00110 Module transfer _tcl _man _null 00111 Module treeql _tcl _man _null 00112 Module uev _tcl _man _null 00113 Module units _tcl _man _null 00114 Module uri _tcl _man _null 00115 Module uuid _tcl _man _null 00116 Module wip _tcl _man _null 00117 00118 Application dtplite 00119 Application tcldocstrip 00120 Application page 00121 00122 /* @@ Registration END*/ 00123 /* --------------------------------------------------------------*/ 00124