Search:  

 
 
   All ForumsHot TopicsGallery






how-to block ads


 
Forums » The Site » BBR Feedback » Forum Feature Requests » Allow the use of less than sign in forum posts
Search Topic:
Uniqs:
1292
Share Topic:
RSS topic:
toggle:
flat / full
normal / watch
Posting:
Post a:
Post a:
Search option for who/where? »
« "Internet status" forum request  
page: 1 · 2 · 3
AuthorAll Replies


joako
Premium
join:2000-09-07
Gainesville, FL

Allow the use of less than sign in forum posts

It's annoying if you use a less than sign, e.g.

[LESS THAN] 5

It just cuts off the rest of your post without any warning. I know its to prevent HTML tags but why not figure out another way to do it where you are blocking actual tags??? or replace the sign with the &lessthan; or whatever the hell the HTML code is?

This has happened to me > 5 times already I post a thread and come back later and it makes no sense because half is missing!
--
09:F9:11:02:9D:74:E3:5B:D8:41:56:C5:63:56:88:C0


dvd536
as Mr. Pink as they come
Premium
join:2001-04-27
Phoenix, AZ
What about using the code tags and the less than/more thans within the code block?
--
When I gez aju zavateh na nalechoo more new yonooz tonigh molinigh - Ken Lee


Johnny
Premium
join:2001-06-27
Atlanta, GA
reply to joako
**Sign**

Any parser should be able to tell that a left angle bracket by itself is not HTML and ignore it.


cacroll
Eventually, Prozac becomes normal
Premium
join:2002-07-25
Martinez, CA

edit:
May 5th, @10:24PM

reply to joako
How about < 5?
How about &lt; 5?
It's not being blocked, it's just how HTML works. You can't write a < or > without writing them as &lt; and &gt;


Johnny
Premium
join:2001-06-27
Atlanta, GA

said by cacroll See Profile :

How about < 5?
How about &lt; 5?
I know that, you know that, but jeez, this site is not supposed to require knowledge of character encoding to type a message.


drew
World's Best Boss
Premium
join:2002-07-10
Port Orchard, WA
clubs:
reply to joako
<

that's not too hard, but I'll *sign*

I'd like to see it easier.


cacroll
Eventually, Prozac becomes normal
Premium
join:2002-07-25
Martinez, CA


edit:
May 5th, @10:37PM

reply to Johnny
said by Johnny See Profile :

jeez, this site is not supposed to require knowledge of character encoding to type a message.


Life sucks. This site allows us to use HTML tags like <b>bold</b>. The forum software isn't intuitive.

Object.
--
Cheers,
Chuck
MS-MVP 2005-2007 [Windows - Networking]
PChuck's Network


cacroll
Eventually, Prozac becomes normal
Premium
join:2002-07-25
Martinez, CA

reply to Johnny
said by Johnny See Profile :

Any parser should be able to tell that a left angle bracket by itself is not HTML and ignore it.


Define "by itself". Do you mean unpaired, or surrounded by spaces?

If the former, the parser would have to scan the entire message that you're writing, to check for pairs of < and > ? If the latter, you could write "if a < b" but couldn't write "if a<b"?
--
Cheers,
Chuck
MS-MVP 2005-2007 [Windows - Networking]
PChuck's Network


Johnny
Premium
join:2001-06-27
Atlanta, GA

said by cacroll See Profile :

said by Johnny See Profile :

Any parser should be able to tell that a left angle bracket by itself is not HTML and ignore it.
Define "by itself". Do you mean unpaired, or surrounded by spaces?
I mean without being part of a valid HTML expression.
If the former, the parser would have to scan the entire message that you're writing, to check for pairs of < and > ? If the latter, you could write "if a < b" but couldn't write "if a<b"?
It has to scan it anyway, to look for the expression that it must assume the left angle is a part of. As you said, if it reaches the end without identifying a valid expression, it can either throw an error, throw away the text scanned up to that point (which is what it is doing now), or treat the text scanned as plain text.

The feature request is to treat scanned text that does not constitute a valid HTML expression as plain text and just output it.

The same is true for square brackets - the metalanguage or BNF for them is fairly limited, so it isn't hard to determine if the characters following a left bracket are making a valid expression. As soon as the first invalid character is encountered, it can bail and treat it as plain text.


joako
Premium
join:2000-09-07
Gainesville, FL

reply to cacroll
said by cacroll See Profile :

said by Johnny See Profile :

jeez, this site is not supposed to require knowledge of character encoding to type a message.


Life sucks. This site allows us to use HTML tags like <b>bold</b>. The forum software isn't intuitive.

Object.
So feature request to make the forum software intuitive.

FWIW this "bug" is not an issue with vbulletin.
--
09:F9:11:02:9D:74:E3:5B:D8:41:56:C5:63:56:88:C0


cacroll
Eventually, Prozac becomes normal
Premium
join:2002-07-25
Martinez, CA

reply to Johnny
said by Johnny See Profile :

said by cacroll See Profile :

said by Johnny See Profile :

Any parser should be able to tell that a left angle bracket by itself is not HTML and ignore it.
Define "by itself". Do you mean unpaired, or surrounded by spaces?
I mean without being part of a valid HTML expression.
If the former, the parser would have to scan the entire message that you're writing, to check for pairs of < and > ? If the latter, you could write "if a < b" but couldn't write "if a<b"?
It has to scan it anyway, to look for the expression that it must assume the left angle is a part of. As you said, if it reaches the end without identifying a valid expression, it can either throw an error, throw away the text scanned up to that point (which is what it is doing now), or treat the text scanned as plain text.

The feature request is to treat scanned text that does not constitute a valid HTML expression as plain text and just output it.

The same is true for square brackets - the metalanguage or BNF for them is fairly limited, so it isn't hard to determine if the characters following a left bracket are making a valid expression. As soon as the first invalid character is encountered, it can bail and treat it as plain text.


I guess all that depends upon what "it" is. If the forum software allows plain old HTML, it's probably just an HTML exit. The HTML isn't checked, or rendered by the forum software, it's rendered by your browser when it's displayed.

As I pointed out to Joako, it's not that the forum software is preventing him from doing anything. The forum software lets him enter anything he wants to - just like most HTML based web page editors. The browser is the problem, when the post is rendered. If you have a "<" in the code without a closing ">", almost any thing can happen. But it's a browser problem, not the forum problem.
--
Cheers,
Chuck
MS-MVP 2005-2007 [Windows - Networking]
PChuck's Network


jmorlan
Crescit Eundo

join:2001-02-05
Pacifica, CA
reply to joako
<Object>


cacroll
Eventually, Prozac becomes normal
Premium
join:2002-07-25
Martinez, CA

reply to joako
said by joako See Profile :

So feature request to make the forum software intuitive.

FWIW this "bug" is not an issue with vbulletin.


I've used vBulletin. They have a limited HTML clone, not real HTML, and it's a pain in the ass to do anything besides text.

Here, you just code HTML. If you muck up the HTML, learn to fix it. What you're complaining about isn't a bug, it's how HTML works.

Object to making the software intuitive.
--
Cheers,
Chuck
MS-MVP 2005-2007 [Windows - Networking]
PChuck's Network


Alcohol
Premium
join:2003-05-26
Edison, NJ
reply to joako
*object*


bobrk
4145. Meanwhile Afghanistan rages on
Premium
join:2000-02-02
San Jose, CA
·SONIC.NET

reply to joako
*sign*

Other forum software makes it easy, why not here? Good project for justin See Profile.

FWIW, I have no problem typing tags, been doing it for nearly 30 years.
--
Iraq Coalition Deaths | bobrk


C_
Kill The Socialists
Premium
join:2001-03-19
Aurora, IL
*object*


InGreenwood

@rr.com
reply to joako
Object!


Dude111
An Awesome Dude
Premium
join:2003-08-04
USA
 reply to joako
The easiest way to do this is have an option to DISABLE HTML in your post


djrobx

join:2000-05-31
Valencia, CA
·AT&T U-Verse
·AT&T CallVantage
·Time Warner VOIP
·RoadRunner Cable
·DSL EXTREME

reply to joako
*Sign*

Justin and the other geniuses who've done absolutely amazing things with the coding of this site have got to be able to address this problem a little more intelligently than it's handled now.

It's not a matter of how difficult it is to type &lt; or &gt;. Lots of posts get cut off because the poster didn't understand how to type out the symbol. Perhaps BBR should automatically disable HTML when there is an open-close mismatch.
--
Laser eye surgery rocks! I love frickin' laser beams.


Dude111
An Awesome Dude
Premium
join:2003-08-04
USA
reply to joako
I think its kinds strange justin only has HTML posting enabled.......

Most sites have HTML DISABLED (for security reasons)

Ah well...
-
Forums » The Site » BBR Feedback » Forum Feature RequestsSearch option for who/where? »
« "Internet status" forum request  
page: 1 · 2 · 3


Friday, 22-Aug 01:01:29 Terms of Use | Privacy Policy | Hosting by www.nac.net - DSL,Hosting & Co-lo | feedback | contact
over 9 years online! © 1999-2008 dslreports.com.republican-creole
page compression OFF
Most commented news this week
· [106] New Comcast Throttling System = 'A Really Good DSL Experience'
· [101] Was FiOS a Good Idea?
· [79] ISPs Whine About Network Neutrality 'Paranoia'
· [79] Shouldn't You Be Able To Buy Your Cable Box?
· [77] Landscaping, Courtesy of AT&T?
· [76] FCC Finally Issues Comcast Throttling Order
· [57] Craig Moffett: Network Upgrades Are For Ninnies
· [56] Google Launches White Space Broadband Website
· [56] Did Apple iPhone Fix Make Problems Worse?
· [55] AT&T Cooking Up New VoIP Product
Most people now reading
· Just reccived a message from Jim Prentice [TekSavvy]
· [Speed] Comcast to throttle individual users; all protocols [Comcast HSI]
· Porch light bulbs [Home Repair & Improvement]
· How I Stole Someone's Identity [Security]
· Anyone know how to capture NBCOlympics.com video streams [General Questions]
· Neighbor Yanks a Power Line & Voltage Overloads the Block [Home Repair & Improvement]
· [iPhone] 2.0.2 firmware is out, Please post outcome [All things Macintosh]
· Port 25 being blocked nation wide....WTF [Comcast HSI]
· Criss Angel revealed. [56k lookout! (broadband heavy)]