| Revision 2,
843 bytes
checked in by jamesoff, 9 years ago
(diff) |
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | ## bMotion plugins loader: simple |
|---|
| 2 | # |
|---|
| 3 | # $Id$ |
|---|
| 4 | # |
|---|
| 5 | |
|---|
| 6 | ############################################################################### |
|---|
| 7 | # This is a bMotion plugin |
|---|
| 8 | # Copyright (C) James Michael Seward 2000-2002 |
|---|
| 9 | # |
|---|
| 10 | # This program is covered by the GPL, please refer the to LICENCE file in the |
|---|
| 11 | # distribution; further information can be found in the headers of the scripts |
|---|
| 12 | # in the modules directory. |
|---|
| 13 | ############################################################################### |
|---|
| 14 | |
|---|
| 15 | set languages [split $bMotionSettings(languages) ","] |
|---|
| 16 | foreach language $languages { |
|---|
| 17 | bMotion_putloglev 2 * "bMotion: loading simple plugins language = $language" |
|---|
| 18 | set files [glob -nocomplain "$bMotionPlugins/$language/simple_*.tcl"] |
|---|
| 19 | foreach f $files { |
|---|
| 20 | bMotion_putloglev 1 * "bMotion: loading ($language) simple plugin file $f" |
|---|
| 21 | catch { |
|---|
| 22 | source $f |
|---|
| 23 | } |
|---|
| 24 | } |
|---|
| 25 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.