tcl-pam: PAM authentication for Tcl (Tcl package)This is an announcement for a relatively new Tcl project: tcl-pam
Tcl-pam is a Tcl interface to the PAM* service of Linux. It provides a
Tcl package that allows Tcl scripts to use PAM to authenticate users and
programs. It relies on linux-pam library:
http://www.kernel.org/pub/linux/libs/pam/
* PAM (Pluggable Authentication Modules): A mechanism to integrate
multiple low−level authentication schemes into a high−level application
programming interface (API). This enables programs that rely on
authentication to be written independently of the underlying
authentication scheme.
Platform: Linux
Home page: http://sourceforge.net/projects/tcl-pam/
Man page: http://tcl-pam.sourceforge.net/
Author: Alexandros Stergiakis
alsterg
...
tcl-gaul: Genetic Algorithms for Tcl. (Tcl package)This is an announcement for a relatively new Tcl project: tcl-gaul
Tcl-gaul is a Tcl extension for genetic/evolutionary algorithm
processing.It relies on the GAUL library: http://gaul.sourceforge.net/
* A genetic algorithm (GA) is a search technique used in computing
to find exact or approximate solutions to optimization and search
problems. Genetic algorithms are categorized as global search
heuristics. They are a particular class of evolutionary algorithms
that use techniques inspired by evolutionary biology such as
inheritance, mutation, selection, and crossover. For an introduction to
genetic algorithms visit: http://gaul.sourceforge.net/intro.html
Platform: Linux (GAUL library dependency)
Home page: http://sourceforge.net/projects/tcl-gaul/
Man page: http://tcl-gaul.sourceforge.net/
Author: Alexandros Stergiakis
alsterg
...
tcl-syslog: Unix system logging for Tcl (Tcl package)This is an announcement for a relatively new Tcl project: tcl-syslog
Tcl-syslog is a Tcl interface to the *nix syslog service. It provides a
Tcl package that allows Tcl scripts to log messages to syslog.
Platform: Linux/Unix
Home page: http://sourceforge.net/projects/tcl-syslog/
Man page: http://tcl-syslog.sourceforge.net/
Author: Alexandros Stergiakis
alsterg
...
tcl-mq: POSIX Message Queues for Tcl. (Tcl package)This is an announcement for a relatively new Tcl project: tcl-mp
Tcl-mp is a Tcl interface to POSIX Message Queues*. It provides a Tcl
package that allows scripts to create/open/close/unlink multiple
parallel message queues, and to send/receive messages synchronously and
asynchronously to/from them.
* A POSIX message queue is an Inter-Process Communication mechanism
available on Linux and some other POSIX-compliant operating systems. It
allows to or more processes (or threads) to communicate under the
same OS. The messages are buffered by the kernel, which gives them
kernel persistency. A message queue can be thought of as a linked list
of messages. Threads with adequate permission can put messages onto the
queue, and threads with adequuate permission can remove messages from
the queue. Each message is assigned a priority by the sender, and the
oldest message of highest priority is always retrieved first. Unlike
PIPES and FIFOS, no requirement exists that someone be waiting for a
message to arrive on a queue, before some process writes a message
to that queue. It's not even a requirement for both processes to exist
at the same time. Read mq_overview(7) for more details
Platform: Linux
Home page: http://sourceforge.net/projects/tcl-mp/
Man page: http://tcl-mp.sourceforge.net/
Author: Alexandros Stergiakis
alsterg
On Sep 3, 11:37=A0am, Alexandros Stergiakis <alst...@gmail.com> wrote:
> This is an announcement for a relatively new Tcl pro...
tcl-mmap: A POSIX mmap interface for Tcl. (Tcl package)This is an announcement for a relatively new Tcl project: tcl-mmap
Tcl-mmap is a Tcl interface to the POSIX mmap* system call. It provides
a Tcl package that allows Tcl scripts to: 1) Memory map files for
improved access efficiency; 2) Share memory between related processes;
3) Easily implement cyclic persistent log files.
* See the mmap(2) man page.
Platform: Linux/Unix
Home page: http://sourceforge.net/projects/tcl-mmap/
Man page: http://tcl-mmap.sourceforge.net/
Author: Alexandros Stergiakis
On Sep 3, 11:48=A0am, Alexandros Stergiakis <alst...@gmail.com> wrote:
> This is an announcement for a relatively new Tcl project: tcl-mmap
>
> Tcl-mmap is a Tcl interface to the POSIX mmap* system call. It provides
> a Tcl package that allows Tcl scripts to: 1) Memory map files for
> improved access efficiency; 2) Share memory between related processes;
> 3) Easily implement cyclic persistent log files.
>
> * See the mmap(2) man page.
>
Great to see this and the other packages you made.
Looking at the manpage it looks a bit misformatted before the usage
example.
Any specific reason to use GPL for this instead the usual Tcl/MIT/BSD
style license used?
Michael
schlenk wrote:
> On Sep 3, 11:48 am, Alexandros Stergiakis <alst...@gmail.com> wrote:
>> This is an announcement for a relatively new Tcl project: tcl-mmap
>>
>> Tcl-mmap is a Tcl interface to the POSIX mmap* system call. It provides
>> a Tcl package that...
[TCL] diff type operations in TCLI didn't see anything in tcllib and thus far haven't turned up anything
that looks like it will work. I would like to know if there is a TCL
package, or already written procedure, that will do a simple diff of two
files and tell me if they're the same or if they have differences.
Is there anything like this?
---------------------------------------------
Andrew R. Falanga (a non-HP employee)
Hewlett-Packard Company
11311 Chinden Blvd.
Boise, Idaho
---------------------------------------------
Please note: The e-mail address is purposely
mangled. I do not wish my account at HP to...
Opening a TCL program from within another TCL program in ANSYS Tcl-TkHi everyone,
I have been pulling my hair with this one for a couple of days and
still have not found a fix. I'm working within ANSYS Tcl-Tk
implementation.
I created a Tcl-Tk script that generates a simple window with three
buttons. Each button opens another window which is created in a
separate Tcl file. The second window have a lot of text entries,
variables, procedures, etc. I can open the second Tcl file by itself
and everything works as supposed, but when I open it using the button
in the first window, it opens but any procedure called by the widgets
on the second window are not found...
Here's the deal... Since I'm working within the ANSYS implementation
of Tcl-Tk, I'm actually using an ANSYS command to open the second
window. The command I use is:
###
ans_sendcommand ~eui,'source O:/mad_projects_2/ANSYS/Macros/
IBR_CAS.tcl'
###
It actually sends a command back to ANSYS telling it to execute a Tcl
command... I know this is not pretty but its the only way i was able
to make it at least show the window.
##############################
#Main Tcl (excerpt):
##############################
namespace eval Tools {
proc IBRCambpell {} {
#source O:/mad_projects_2/ANSYS/Macros/IBR_CAS.tcl
ans_sendcommand ~eui,'source O:/mad_projects_2/ANSYS/Macros/
IBR_CAS.tcl'
}
proc viewManager {} {
ans_sendcommand ~eui,'source O:/mad_projects_2/ANSYS/Macros/
ViewManager.tcl'
}
proc powerAnnotation {} {
ans_sendcommand ~eui,'source ...
How Tcl speaks for itself and how Tcl is not spoken for...Hello
It's Friday and... well...
Two things about Tcl going through my mind this week, a nice anecdote
and a
eyebrow-rising thing on Wikipedia:
Anecdote:
Until three months ago I worked in a scientific institue where I wrote
much
software in Tcl, especially a big Build and Report System, some tools
for
automatic checking of coding style and other things. Tcl had a bad
reputation
there (not because of me... they dropped Tcl before I started there in
favour of
Joy, then JavaScript and now Python) and besides me, there was only
one
co-worker who appearantly writes some small Tcl-Scripts to support
other
researchers in their work. To get completely rid of Tcl, they even
started to
reimplement all things, I wrote in Tcl in Python just to have it in a
language,
that most of them know (which is a good decision on the one hand, but
on the
other hand, I think, it would be better to simply learn Tcl ;-), which
made me a
little bit sad.
Now there is a new collegue who has to maintain some of the things I
wrote. Comming from Perl he wasn't exactly enthusiastic when he heard,
that he
must maintain my old code in such an obscure language..
Two weeks ago, I got mail from him. He's just studying a complex
system of
scripts that are used for a sandboxed build system for source code
which comes
from external untrusted source and must be compiled and tested. Of
course it's
written in Tcl (and some bash-Scripting). He told me, that although he
has never
looked at Tcl before,...
How to compile tcl or encrypt tclI use TclPro1.5 to compile my tcl script with tixwish in the Solaris before.
But I cannot use the same method in Linux. Why?
Is there any utility for me to compile or encrypt the code by using tixwish?
The following is the simple code if I use the tixwish:
#!/home/albertl/local/bin/tixwish
puts "haha"
And after using procomp by the TclPro1.5
Error in startup script: The TclPro ByteCode Loader is not available or does not support the correct version
while executing
"error "The TclPro ByteCode Loader is not available or does not support the correct version""
invoked from within
"if {[catch {package require tbcload 1.3} err] == 1} {
error "The TclPro ByteCode Loader is not available or does not support the correct version"
...."
(file "a.tbc" line 4)
The problem seems that tbcload1.3 cannot be found?
But tbcload is already there "/home/albertl/local/lib/tbcload1.3"
Why?
Can anyone tell me?
stratus schrieb:
> I use TclPro1.5 to compile my tcl script with tixwish in the Solaris before.
> But I cannot use the same method in Linux. Why?
>
> Is there any utility for me to compile or encrypt the code by using tixwish?
>
Tixwish is just a wish shell with the Tix package baked in. If TclPro
does not have a specific bigwish with Tix included your out of luck on
that road (but could build your own if you liked).
You might have success with freewrap or TDK, don't know for su...
tcl application with tcl applicationHere is another question, I have one tcl-based application A, my co-
worker has a tcl-based application B. Now I want to integrate my
application A into the application B.
After integration, I want to be able to run A's tcl command in B.
Assume I can only change A's code, is there any way to do this?
On 17 Dez., 07:03, teacupfull business <teacupfull.busin...@gmail.com>
wrote:
> Here is another question, I have one tcl-based application A, my co-
> worker has a tcl-based application B. Now I want to integrate my
> application A into the application B.
>...
Extending TCL in C with tcl.h - Disabliing [<tcl-cmd>] featureHi,
TCL has a command execution syntax like this:
[<tcl cmd>]
Anything inside the 3rd bracket will be executed as a Tcl command by
the Tcl interprater.
Is there any way I can disable/delete this Tcl construct [ <tcl-cmd>]?
In other words, my Tcl interprator should print
"[32]"
for tcl command
puts "[32]"
It should not try to treat [] as a special character.
Is this any way possible while extending Tcl in C with tcl.h?
Thank you,
Arijit
* arijit79@gmail.com
| puts "[32]"
|
| It should not try to treat [] as a special character.
Check out the TCL quoting rules.
http://www.tcl.tk/man/tcl8.4/TclCmd/Tcl.htm
http://www.tcl.tk/man/tcl8.4/TclCmd/Tcl.htm#M10
http://www.tcl.tk/man/tcl8.4/TclCmd/Tcl.htm#M15
Any of
puts {[32]}
puts "\[32\]"
will do the trick.
R'
On May 8, 3:14 am, ariji...@gmail.com wrote:
> Is there any way I can disable/delete this Tcl construct [ <tcl-cmd>]?
By doing this, you would disable the primary functionality of Tcl.
I'm certain you could go into the tcl source and stop it - but why not
talk about what you are really trying to do. Perhaps someone can give
you a better way of doing what you are wanting to do.
...
TclHello,
where can I see for tcl syntacs and how-to run a tcl
test?
Thank You
Vittore
___________________________________
Yahoo! Mail: gratis 1GB per i messaggi e allegati da 10MB
http://mail.yahoo.it
----------------------------------------------------------------------------
Posted to the ptolemy-hackers mailing list. Please send administrative
mail for this list to: ptolemy-hackers-request@ptolemy.eecs.berkeley.edu
...
TclHello all.
I found on hobbes the afaik latest Tcl for Os/2 v8.35
Is there any newer port, cause i try to update the eggdrop and that
says:
Your Tcl version is much too old for Eggdrop to use. You should
download and compile a more recent version. The most reliable
current version is 8.5.X and can be downloaded from
ftp://tcl.activestate.com/pub/tcl/tcl8_5/.
--
With the best regards from the Netherlands,
Tu, "Tellerbop" <Tellerbop@wint.nl>, hai scritto questo in data Wed,
14 Jan 2009 19:11:18 UTC:
> Hello all.
>
> I found on hobbes the afaik latest Tcl for Os/2...
TCLHello,
i would like to build TCL/TK as a separate DLL-Library. Can anyone tell me
how this can be done
with VC 6.0?
Best regards,
Reinhold
"Reinhold.kwauka" <bernd-reinhold.kwauka@t-online.de> wrote:
>Hello,
>
>i would like to build TCL/TK as a separate DLL-Library. Can anyone tell me
>how this can be done
>with VC 6.0?
>
>Best regards,
>Reinhold
>
1) get the source from http://tcl.sourceforge.net/
2) open a command prompt
3) cd to the win/ subdirectory
4) call vcvars32.bat located in ??\vc98\bin\ of vc6 for wherever you
installed it.
5) type @ the prompt:
nmake -f makefile.vc
--
David Gravereaux <davygrvy@pobox.com>
[species: human; planet: earth,milkyway(western spiral arm),alpha sector]
Reinhold.kwauka wrote:
> Hello,
>
> i would like to build TCL/TK as a separate DLL-Library. Can anyone tell me
> how this can be done
> with VC 6.0?
>
> Best regards,
> Reinhold
>
>
Its already done. Just download a binary release for windows and check
\Program Files\Tcl\lib for the DLLs and static libraries.
...
[TCL] multi-threaded tcl appsHi,
Where can one find complete documentation on the ttrace package to the
Thread package? I'd like to know what commands are available in ttrace
and how to use them.
---------------------------------------------
Andrew R. Falanga (a non-HP employee)
Hewlett-Packard Company
11311 Chinden Blvd.
Boise, Idaho
---------------------------------------------
Please note: The e-mail address is purposely
mangled. I do not wish my account at HP to
become a spam haven. If you wish to e-mail
me, the address consists of a dot between
my first and last names (excluding my middle
initial). The rest...
How Tcl source finds init.tcl???Hi,
I have one question about how Tcl finds init.tcl.
What environment variable does Tcl source use to get the search path for
init.tcl?
Is there any way to specifically use init.tcl from a certain path?
Thanks a lot in advance!
Lihong
lihong pei wrote:
> I have one question about how Tcl finds init.tcl.
> What environment variable does Tcl source use to get the search path for
> init.tcl?
If the environment variable TCL_LIBRARY exists, it's value is assumed
to be a single directory which is added to the search path for init.tcl.
Note that this is offered mostly as a way for...
Tcl extension: check Tcl version?Is there a recommended way to check if a (binary) Tcl extension
is loaded to the same Tcl version that was used for linking
the extension?
Currently I'm encountering a problem with an extension that
I have built (and linked) with libtk8.3.so and that can be
loaded under wish8.5 as well (without re-bulding, using
package require). A number of newly provided commands work
well in spite of the version mixture, but others don't, and
wish8.5 crashes when these commands are used.
Is this behavior normal, i.e. should I check that compile-time
version and run-time version are identical? Or does this
indicate some subtle coding problem?
Thanks for any suggestions
Olaf
Olaf Dietrich wrote:
> Is there a recommended way to check if a (binary) Tcl extension
> is loaded to the same Tcl version that was used for linking
> the extension?
>
> Currently I'm encountering a problem with an extension that
> I have built (and linked) with libtk8.3.so and that can be
> loaded under wish8.5 as well (without re-bulding, using
> package require). A number of newly provided commands work
> well in spite of the version mixture, but others don't, and
> wish8.5 crashes when these commands are used.
>
> Is this behavior normal, i.e. should I check that compile-time
> version and run-time version are identical? Or does this
> indicate some subtle coding problem?
Not subtle. Major problem. DO NOT DO THAT.
If you want to be loadable across mult...
Inline::Tcl vs. Inline::TclThe readme for CPAN's Inline::Tcl says this:
> This module is not related to the Inline::Tcl module, but it might be
> valuable to have some compatibility between the two.
>
This sentence seems to suggest that there is another module
named Inline::Tcl somewhere. Is this true, and if so, where
can I find it?
Mumia W. wrote:
> The readme for CPAN's Inline::Tcl says this:
>
> > This module is not related to the Inline::Tcl module, but it might be
> > valuable to have some compatibility between the two.
> >
>
> This sentence seems to suggest ...
MS Dictation and TCLI'm trying to use the MS dictation tool while in TCL 8.5 program. The text
starts to appear, but then the program crashes.
It would be great to find a way to make this work.
Thanks!
Barney
Tcl 8.5 (wish 8.5)
makeindex (12/14/2007)
MSWinXP sp3
plenty of ram and storage
...
Debugger for Tcl/Tk and [incr Tcl]
hi,
where can i get Coverage for debugging tcl/tk, [incr Tcl] source?
this tool is advised to use in 'Practical Programming in Tcl and Tk'
or any other good debugger, which i could use?
best,
s.
On Jan 23, 5:56=A0am, Sitaca <sit...@gmail.com> wrote:
> hi,
>
> where can i get Coverage for debugging tcl/tk, [incr Tcl] source?
> this tool is advised to use in 'Practical Programming in Tcl and Tk'
>
> or any other good debugger, which i could use?
I see, at http://wiki.tcl.tk/8638 , a brief reference to the topic of
coverage for tcl. I don't know whether or not any of the tools
mentioned include coverage of itcl.
On 23 jan, 12:52, "Larry W. Virden" <lvir...@gmail.com> wrote:
> On Jan 23, 5:56=A0am, Sitaca <sit...@gmail.com> wrote:
>
> > hi,
>
> > where can i get Coverage for debugging tcl/tk, [incr Tcl] source?
> > this tool is advised to use in 'Practical Programming in Tcl and Tk'
>
> > or any other good debugger, which i could use?
>
> I see, athttp://wiki.tcl.tk/8638, a brief reference to the topic of
> coverage for tcl. I don't know whether or not any of the tools
> mentioned include coverage of itcl.
I have a more complete version of the coverage tool mentioned on
that page. I just never got around to publishing it more widely.
As for debuggers: the Wiki has a lot of pointers on that subject
as well.
Regards,
Arjen
Larry W. Virden wrote:...
Tcl onlyI am curious about how many people just use Tcl for a systems language (instead of say, BASH) but don't use Tk.
On Thursday, July 12, 2012 6:22:45 AM UTC-7, Robert wrote:
> I am curious about how many people just use Tcl for a systems language (i=
nstead of say, BASH) but don't use Tk.
For me, if the script is mainly concerned with invoking other programs and =
little else, then I'll grit my teeth and do it in bash because it handles s=
uch things well even if the syntax is vintage Algol. Otherwise, it is hard =
to get me to program in anything other than Tcl when the target is a conven=
tional computing environment.
Andrew Mangogna
On Thursday, July 12, 2012 9:22:45 AM UTC-4, Robert wrote:
> I am curious about how many people just use Tcl for a systems language (instead of say, BASH) but don't use Tk.
I use tcl, bash, perl, awk.
I hardly ever have GUI frontends.
Στις 12/7/2012 16:22, ο/η Robert έγραψε:
> I am curious about how many people just use Tcl for a systems language (instead of say, BASH) but don't use Tk.
>
I use tcl in almost all my scripts. I rarely use bash, and only for
basic stuff (i.e. run a few tcl scripts in order).
George
On 7/12/12 8:22 AM, Robert wrote:
> I am curious about how many people just use Tcl for a systems language (instead of say, BASH) but don't use Tk.
While not exactly what you asked, I use Tcl to create Web Services -- that
does not involve any GUIs (a...
Possible bug in Tcl or Windows or Tcl on WindowsHi,
There seems to be a bug in the way numbers are compared in Tcl.
Consider the below script for calculating Pythagorean triplets.
For hypotenuse upto a value of 100, there should have been 63
unique triplets.
On Windows XP the script detects only 62. The script doesn't detect
the case where c=99, b=20 ==> a=101.
However running the same script under Tcl 8.4.1 in Cygwin detects
63 triplets.
I don't have a Linux machine at hand to test it there.
Following is the script and relevant output. Could anyone shed some
light
on the cause of this. Maybe it has something to do with how the
numbers
are represented internally?
Running the script for N>100 shows up many more such missed values.
An equivalent program in C runs correctly on the same machine. C code
was compiled using both gcc and VC++6.0.
#########################################################################
# a^2 = b^2 + c^2
proc pythag {MAX} {
set i 0
for {set c 2} {$c <= $MAX} {incr c} {
for {set b 1} {$b < $c} {incr b} {
set a [expr hypot($c, $b)] ;# Calc. Hypot
if { ($c == 99) && ($b == 20)} { ;# <<<<<<<<
puts ">> [expr round($a)] == $a"
}
if {[expr round($a)] == $a} {
puts "$a : $b : $c"
incr i
}
}
}
return $i
}
if {$argc == 1} {
set MAX [lindex $argv 0]
} else {
puts stderr "Usage: tclsh $argv0 N"
exit
}
puts [pythag $MAX]
############# OUTPUT ################
Tcl 8.4.1 (Cygwi...
Tcl-2004 Update: More food and Tcl jobsGerald just finished some negotiating with the hotel, and we've
increased the meals at Tcl-2004. There will be free breakfast,
lunch and breaks on all days, and free dinner on Wed and Thur.
We'll have an open bar a couple of the conference nights also.
Just the food is worth more than the registration fee! Add in
the technical talks, panels, camaraderie and social networking,
and this conference is a bargain you won't see again.
At least two groups that are looking for Tcl/Tk developers will
be present, so bring a resume if you're on the prowl.
Online registration will cl...
Tcl Web Service with Authorization kills TclHi!
I am trying to use web services with authorization using wsdl on
tclhttpd 3.5.1, ActiveTcl8.4.18, WS::Server/Utils/Client 1.0.8. tls
1.50, tdom 0.8.2, SuSE Linux 10.0.
Are there any known issues using WSDL and authorization?
Server side is exactly the example in
http://members.cox.net/~gerald.lester/WebServices/Tcl%20Web%20Service%20Example.html
As client side is using authorization http headers are appended to
client commands. Reading the definitions of the offered services is fine.
::WS::Client::GetAndParseWsdl\
http://localhost:8015/service/wsExamples/wsdl\
{"Authorization" "Basic ZmlzOnNVc2VANi40"}
but executing
set results [::WS::Client::DoCall wsExamples SimpleEcho {TestString
{This is a test}} {"Authorization" "Basic ZmlzOnNVc2VANi40"}}
returns
Unexpected EOF received from Server
and the tclhttpd process aborts.
/home/sg/bin/sgw: line 4: 7550 Segmentation fault
${TCLSH:-"tclsh8.4"} /opt/tclhttpd3.5.1/bin/httpd.tcl -debug 1
TIA
Stefan
Stefan Finzel wrote:
> Hi!
>
> I am trying to use web services with authorization using wsdl on
> tclhttpd 3.5.1, ActiveTcl8.4.18, WS::Server/Utils/Client 1.0.8. tls
> 1.50, tdom 0.8.2, SuSE Linux 10.0.
>
> Are there any known issues using WSDL and authorization?
None that I know of.
I'll not have a chance to look at this for a while. I suggest that you
attempt to debug/fix it on your own and file a bug report (with p...