1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
# -*- tcl -*-
# --------------------------------------------------------------
# List of modules to install and definitions guiding the process of
# doing so.
#
# This file is shared between 'installer.tcl' and 'sak.tcl', like
# 'package_version.tcl'. The swiss army knife requires access to the
# data in this file to be able to check if there are modules in the
# directory hierarchy, but missing in the list of installed modules.
# --------------------------------------------------------------
proc Exclude {m} {global excluded ; lappend excluded $m ; return }
proc Application {a} {global apps ; lappend apps $a ; return }
proc Module {m pkg doc exa} {
global modules guide
lappend modules $m
set guide($m,pkg) $pkg
set guide($m,doc) $doc
set guide($m,exa) $exa
return
}
set excluded [list]
set modules [list]
set apps [list]
array set guide {}
# --------------------------------------------------------------
# @@ Registration START
# name pkg doc example
Module autoscroll _tcl _man _null
Module canvas _tcl _man _null
Module chatwidget _tcl _man _null
Module controlwidget _tcl _man _exa
Module crosshair _tcl _man _null
Module ctext _ctxt _man _null
Module cursor _tcl _man _null
Module datefield _tcl _man _null
Module diagrams _tcl _man _null
Module getstring _tcl _man _null
Module history _tcl _man _null
Module ico _tcl _man _null
Module ipentry _tcl _man _null
Module khim _tclm _man _null
Module map _tcl _null _exa
Module mentry _tab _null _exa
Module menubar _tcl _man _exa
Module notifywindow _tcl _man _null
Module ntext _tcl _man _exa
Module persistentSelection _tcl _man _exa
Module plotchart _tcl _man _exa
Module scrollutil _tab _null _exa
Module shtmlview _tcl _man _null
Module style _tcl _man _null
Module swaplist _tcl _man _null
Module tablelist _tab _null _exa
Module text _tcl _null _null
Module tkpiechart _tcl _man _exa
Module tooltip _tcl _man _null
Module treeview _tcl _null _null
Module wcb _tab _null _exa
Module widget _tcl _man _exa
Module widgetPlus _tcl _man _exa
Module widgetl _tcli _man _null
Module widgetv _tcl _man _null
Application diagram-viewer
Application bitmap-editor
Application shtmlview
# @@ Registration END
# --------------------------------------------------------------
|