I've been studying this evening various .tcl config files in order
to understand how things work. I guess many things will become
clearer once I start to modify settings and see what happens.
But for now I am stuck on not being able to find where some
variables are set.
For example within proc_doc ad_header, there is an entry
set html "<html>
<head>
$extra_stuff_for_document_head
<title>$page_title</title>
</head>
"
Ok, I understand this works like setting any other variable: set x
"bla bla" and then we make reference to "bla bla" as $x (the value
of x)
I wasn't able to find where extra_stuff_for_document_header is set.
Is it set in defining the parameters of the procedure ? i.e.
proc_doc ad_header_with_extra_stuff {page_title
{extra_stuff.....etc}}.
So is this procedure called in a form resembling this:
ad_header_with_extra_stuff [page_title
[some_procedure_that_gives_the_extra_stuff]] ?
I am trying to give as much detail about how my rationing goes on at
the moment and hope that someone is able to point out its flaws.
Thanks