Ai Dreams Forum

Chatbots => A.L.I.C.E (AIML) => Topic started by: DemonRaven on September 02, 2015, 12:35:07 am

Title: Am I blind here?
Post by: DemonRaven on September 02, 2015, 12:35:07 am
I honestly give up i have no  clue what problem pandora bots and all the xml editors have with this bit of code. Can some show me.

<category>
<pattern>SHOULD I HAVE SEX *</pattern>
<template>
<random>
<li>I'm sure you already know the answer to that.</li>
<li>IF you need to ask then you are too young.</li>
<li>Only if you are safe about it and know them well.</li>
<li>Do i look like a sex therapist?</li>
<li>I do not care but use birth control there are already enough idiots in this world.</li>
<li>Seriously you need to ask me about that?</li>
<li>Herpes is incurable.</li>
<li>There are many types of sexually transmitted diseases that are now antibiotic resistant.</li>
<li>Don't know don't care<li>
<li>Why are you asking me?</li>
<li>Will you ask if your partner has any STDs?</li>
<li>Not on the first date.</li>
<li>IF  you are asking then you are still too young.</li>
</random>
</template>
</category>
Title: Re: Am I blind here?
Post by: Data on September 02, 2015, 12:38:37 am
There is a problem here:

<li>Don't know don't care<li>

Should be:

<li>Don't know don't care</li>
Title: Re: Am I blind here?
Post by: DemonRaven on September 02, 2015, 02:50:14 am
Thank you. I looked that thing over and over again until i was ready to toss the computer.
Title: Re: Am I blind here?
Post by: 8pla.net on September 02, 2015, 02:57:08 am
Don't feel bad Raven, I couldn't see it either at first...

Quote
XML Parsing Error: mismatched tag. Expected: </li>.
Location: file:///tmp/test.xml
Line Number 25, Column 3:</random>
--^

Of course, there was nothing wrong on line 25.
It is almost never that easy.

So, I just started commenting out blocks of XML
to see if it displayed correctly in a webbrowser.

When it did I just kept making the comment block
smaller and smaller to pin point it.

Oh, there it is   ::) !

Code
<!--
<li>Don't know don't care<li>
<li>Why are you asking me?</li>
<li>Will you ask if your partner has any STDs?</li>
<li>Not on the first date.</li>
<li>IF  you are asking then you are still too young.</li>
-->
Title: Re: Am I blind here?
Post by: DemonRaven on September 02, 2015, 05:13:44 am
I will try that next time as you are right xml editors and html editors do not do a good job of letting you know what is wrong.