<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/3773" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2003-02-28T02:18:07-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/3773</id>

		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-02-28T02:18:07-04:00</updated>

		<published>2003-02-28T02:18:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=17191#p17191</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=17191#p17191"/>
		<title type="html"><![CDATA[Is there?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=17191#p17191"><![CDATA[
I'll give it a try.. Thank you.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Feb 28, 2003 2:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2003-02-27T19:20:58-04:00</updated>

		<published>2003-02-27T19:20:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=17184#p17184</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=17184#p17184"/>
		<title type="html"><![CDATA[Is there?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=17184#p17184"><![CDATA[
Why don't you put the html in an html file? If all you're doing is a bunch of puts "&lt;blah&gt;blahblah&lt;/blah&gt;" then that would be best. If you need to substitute values into it, read in the html template file and use regsub.<br><br>Also I don't see what the problem is with ppslim's suggestion of using { }. You rarely use curly brackets in html, so you could do something like<br><br>puts {&lt;META content="foo" name=GENERATOR&gt;&lt;/HEAD&gt;<br>line 2<br>line 3<br>line 4<br>}<br><br>and it would work just fine.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Thu Feb 27, 2003 7:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-02-27T10:44:26-04:00</updated>

		<published>2003-02-27T10:44:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=17167#p17167</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=17167#p17167"/>
		<title type="html"><![CDATA[Is there?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=17167#p17167"><![CDATA[
Evidently.. seems to be the same thing. I'll think to an alternative/solutin to this cos realy drives me nuts this earching thig <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Feb 27, 2003 10:44 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-02-27T09:21:58-04:00</updated>

		<published>2003-02-27T09:21:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=17157#p17157</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=17157#p17157"/>
		<title type="html"><![CDATA[Is there?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=17157#p17157"><![CDATA[
These are required, otherwise Tcl would interpret it as the end of a arguement.<br><br>You can however, suround you argument with curly braces ({}), however, you again have to escape the braces.<br><div class="codebox"><p>Code: </p><pre><code>puts $file "Hello to \"ppslim\" {the one and only}"puts $file {Hello to "ppslim" \{the one and onlu\}}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu Feb 27, 2003 9:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-02-27T07:56:34-04:00</updated>

		<published>2003-02-27T07:56:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=17152#p17152</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=17152#p17152"/>
		<title type="html"><![CDATA[Is there?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=17152#p17152"><![CDATA[
Well, I have to write a html code to tcl file and generate a html page in the end. In the html code are some "'s and to make the tcl work I must put a \ in front of it.<br><br>Eg. of html code:<div class="codebox"><p>Code: </p><pre><code>&lt;META content="foo" name=GENERATOR&gt;&lt;/HEAD&gt;</code></pre></div>and to tcl to make it work should be:<div class="codebox"><p>Code: </p><pre><code>&lt;META content=\"foo\" name=GENERATOR&gt;&lt;/HEAD&gt;</code></pre></div>Understood now what I meant to say?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Feb 27, 2003 7:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-02-27T07:01:27-04:00</updated>

		<published>2003-02-27T07:01:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=17151#p17151</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=17151#p17151"/>
		<title type="html"><![CDATA[Is there?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=17151#p17151"><![CDATA[
I fail to understand where you problem is, and why are you doing a search and replace with / for.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu Feb 27, 2003 7:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-02-27T06:53:30-04:00</updated>

		<published>2003-02-27T06:53:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=17150#p17150</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=17150#p17150"/>
		<title type="html"><![CDATA[Is there?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=17150#p17150"><![CDATA[
Is there something that chould make my work easier when I'm writing in html files using alot of html code. This *manual* search and add a '\' drives me nuts. Now I found and fix one and another one appears.. seesh. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> Isn't there a easier way to do so?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Feb 27, 2003 6:53 am</p><hr />
]]></content>
	</entry>
	</feed>
