Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Discussions (General)
 Tag markups not executing
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Atomic Taco
Starting Member

USA
9 Posts

Posted - 15 January 2005 :  23:09:37  Show Profile  Visit Atomic Taco's Homepage
Using the forums over at http://www.c895fm.com/forum.

When I tried to do this http://www.c font color= green 895 /font id= green fm.com it did that. Tried to link to http://www.c895fm.com while making the 895 green.




Also, whe the image tag is spelled in uppercase, it does not execute. Example:

My Site: http://www.atomic-taco.com

Awesome station: http://www.c895fm.com

Their Snitz Forums: http://www.c895fm.com/forum


Edited by - Atomic Taco on 15 January 2005 23:10:04

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 16 January 2005 :  04:44:59  Show Profile
the first thing, is not a bug. you can't embed color tags within a url.

The second thing, isn't really a bug either, all of the instructions shows [img] not [IMG]
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 16 January 2005 :  04:54:49  Show Profile
for the image tags, if you want to have work also then replace the following in the inc_func_common.asp file:

Function ReplaceImageTags(fString)
 	Dim oTag, cTag
 	Dim roTag, rcTag
 	Dim oTagPos, cTagPos
 	Dim nTagPos
 	Dim counter1, counter2, counter3
 	Dim strUrlText
 	Dim Tagcount
 	Dim strTempString, strResultString
 	TagCount = 6
  	Dim ImgTags(6,2,2)
 	Dim strArray, strArray2

 	ImgTags(1,1,1) = ""
 	ImgTags(1,1,2) = "<img src="""
 	ImgTags(1,2,2) = """ border=""0"">"

 	ImgTags(2,1,1) = ""
 	ImgTags(2,1,2) = ImgTags(1,1,2)
 	ImgTags(2,2,2) = ImgTags(1,2,2)

 	ImgTags(3,1,1) = ""
 	ImgTags(3,1,2) = "<img align=""right"" src="""
 	ImgTags(3,2,2) = """ id=""right"" border=""0"">"

 	ImgTags(4,1,1) = ""
 	ImgTags(4,1,2) = ImgTags(3,1,2)
 	ImgTags(4,2,2) = ImgTags(3,2,2)

 	ImgTags(5,1,1) = ""
 	ImgTags(5,1,2) = "<img align=""left"" src="""
 	ImgTags(5,2,2) = """ id=""left"" border=""0"">"

 	ImgTags(6,1,1) = ""
 	ImgTags(6,1,2) = ImgTags(5,1,2)
 	ImgTags(6,2,2) = ImgTags(5,2,2)


with this:

Function ReplaceImageTags(fString)
 	Dim oTag, cTag
 	Dim roTag, rcTag
 	Dim oTagPos, cTagPos
 	Dim nTagPos
 	Dim counter1, counter2, counter3
 	Dim strUrlText
 	Dim Tagcount
 	Dim strTempString, strResultString
 	TagCount = 7
  	Dim ImgTags(7,2,2)
 	Dim strArray, strArray2

 	ImgTags(1,1,1) = ""
 	ImgTags(1,1,2) = "<img src="""
 	ImgTags(1,2,2) = """ border=""0"">"

 	ImgTags(2,1,1) = ""
 	ImgTags(2,1,2) = ImgTags(1,1,2)
 	ImgTags(2,2,2) = ImgTags(1,2,2)

 	ImgTags(3,1,1) = ""
 	ImgTags(3,1,2) = ImgTags(1,1,2)
 	ImgTags(3,2,2) = ImgTags(1,2,2)

 	ImgTags(4,1,1) = ""
 	ImgTags(4,1,2) = "<img align=""right"" src="""
 	ImgTags(4,2,2) = """ id=""right"" border=""0"">"

 	ImgTags(5,1,1) = ""
 	ImgTags(5,1,2) = ImgTags(4,1,2)
 	ImgTags(5,2,2) = ImgTags(4,2,2)

 	ImgTags(6,1,1) = ""
 	ImgTags(6,1,2) = "<img align=""left"" src="""
 	ImgTags(6,2,2) = """ id=""left"" border=""0"">"

 	ImgTags(7,1,1) = ""
 	ImgTags(7,1,2) = ImgTags(6,1,2)
 	ImgTags(7,2,2) = ImgTags(6,2,2)
Go to Top of Page

Atomic Taco
Starting Member

USA
9 Posts

Posted - 16 January 2005 :  13:24:20  Show Profile  Visit Atomic Taco's Homepage
I'm not a moderator, administrator, or ftper over there, so I'll forward this thread to them.

As to the color part, I can do it in HTML, so I should be able to do it in a forum.

My Site: http://www.atomic-taco.com

Awesome station: http://www.c895fm.com

Their Snitz Forums: http://www.c895fm.com/forum

Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 16 January 2005 :  14:27:47  Show Profile
quote:
As to the color part, I can do it in HTML, so I should be able to do it in a forum.
I can also embed IFRAME's using html, but I can't do that in a forum either.

Most forums don't allow you the full use of html tags nor does it allow you to do everything you can do in html. Reason being, for security. So you're stuck with just posting your url in one color.

Support Snitz Forums
Go to Top of Page

Atomic Taco
Starting Member

USA
9 Posts

Posted - 16 January 2005 :  16:40:02  Show Profile  Visit Atomic Taco's Homepage
quote:
Originally posted by Davio
quote:
As to the color part, I can do it in HTML, so I should be able to do it in a forum.
I can also embed IFRAME's using html, but I can't do that in a forum either.

Most forums don't allow you the full use of html tags nor does it allow you to do everything you can do in html. Reason being, for security. So you're stuck with just posting your url in one color.

But isn't it just a simple matter of telling it to parse the font tag anywhere, even embedded in a URL?

My Site: http://www.atomic-taco.com

Awesome station: http://www.c895fm.com

Their Snitz Forums: http://www.c895fm.com/forum

Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 16 January 2005 :  17:05:26  Show Profile
I just tried this and it seems you are doing it wrong.

Isn't this what you want to do?
www.c895fm.com

Support Snitz Forums
Go to Top of Page

Atomic Taco
Starting Member

USA
9 Posts

Posted - 19 January 2005 :  17:57:06  Show Profile  Visit Atomic Taco's Homepage
quote:
Originally posted by Davio

I just tried this and it seems you are doing it wrong.

Isn't this what you want to do?
www.c895fm.com

Yeah, but why is it necessary to use a bold tag?

My Site: http://www.atomic-taco.com

Awesome station: http://www.c895fm.com

Their Snitz Forums: http://www.c895fm.com/forum

Go to Top of Page

-gary
Development Team Member

406 Posts

Posted - 19 January 2005 :  18:09:13  Show Profile
quote:
Originally posted by Atomic Taco

Yeah, but why is it necessary to use a bold tag?



That would be because of the bug that isn't a bug.

http://forum.snitz.com/forum/topic.asp?TOPIC_ID=55581

KawiForums.com


Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 19 January 2005 :  21:56:21  Show Profile
It's necessary so it won't parse the url. between the [ url] [/url ] tags. If I left out the bold tags, it would look like:

www.c895fm.com

So the bold tags breaks up the www so it won't convert it to a url. You can also use any other forum tag that won't affect the output, inplace of the bold tags.

Support Snitz Forums
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 20 January 2005 :  06:05:49  Show Profile
quote:
Originally posted by -gary
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=55581
D'oh! Why didn't I remember that topic before I ripped this functionality out of inc_func_common.asp? Ah, well, shouldn't be too difficult to put it back in. Cheers for the reminder, Gary


Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.2 seconds. Powered By: Snitz Forums 2000 Version 3.4.07