Welcome, Guest. Please Login or Register.
April 27, 2024, 12:28:04 AM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  YaBB SE Info  |  News From the YaBB SE Team  |  Correct HTML progress [update 12/01 01.30] « previous next »
Pages: [1] 2 Reply Ignore Print
Author Topic: Correct HTML progress [update 12/01 01.30]  (Read 6717 times)
Tim_C
Guest
Correct HTML progress [update 12/01 01.30]
« on: November 23, 2001, 11:17:30 PM »
Reply with quote

Progress on making YaBB SE HTML 4.01 Transitional Correct:
Done
Boardindex
Topic index
Profile
The complete admin center
Error Pages
Posting Page
Modify Page
Register
Login
Threads
Edit Profile
Print Page
Search (input and output)
Notify
Send Topic

currently working on: nothing
« Last Edit: December 01, 2001, 12:36:43 AM by Tim C » Logged
Ted
(purple cow)
YaBB Crony
Full Member
***
Posts: 182


ICQ - 111893141
Re:Good news!
« Reply #1 on: November 24, 2001, 06:32:21 AM »
Reply with quote

very nice
Logged
Jeff Lewis
Global Moderator
YaBB God
*****
Posts: 10149


I'm a llama!

WWW
Re:Good news!
« Reply #2 on: November 24, 2001, 01:31:03 PM »
Reply with quote

Good stuff Tim :)
Logged

alexrolko
Guest
Re:Correct HTML progress
« Reply #3 on: November 24, 2001, 06:08:59 PM »
Reply with quote

Cool now when do i get to be an admin?  ;D
Logged
Tim_C
Guest
Re:Correct HTML progress
« Reply #4 on: November 25, 2001, 12:58:49 AM »
Reply with quote

brought this baby back on topic, so sorry to those who lost 5 posts :P
Logged
alexrolko
Guest
Re:Correct HTML progress
« Reply #5 on: November 25, 2001, 03:05:00 AM »
Reply with quote

Man Tim your strict!! jeeez al least you'd make a good judge.
Logged
Tim_C
Guest
Re:Correct HTML progress
« Reply #6 on: November 25, 2001, 03:12:36 PM »
Reply with quote

for those who javascripting and want it to be validated:

this is incorrect

<!-- hide this stuff
document.write('<p>hello world</p>')
// stop hiding -->

this is the way to do it:

<!-- hide this stuff
document.write('<p>hello world<\/p>')
// stop hiding -->

I don't know why, but hey it has got to have somekind of reason. that little slash took me 2 hours to find :o :-/
Logged
Patty
Full Member
***
Posts: 249


Drat. I caught Darth Llama.

Re:Correct HTML progress
« Reply #7 on: November 25, 2001, 06:34:03 PM »
Reply with quote

I'm using Netscape 6 at the moment (just to see if everything works -- I usually use IE). The width of the "Start+New+Thred" and "Post Reply" screens is too large -- as it is in YaBB Gold. It's probably running off the screen at lower resolutions. The main index page seemed fine, though. Also, some of the main action buttons run off the screen from time to time -- hitting 'refresh' fixes it.

No posts on "Page 2" of this thread, either, even though a page 2 was displayed. Also, when I went to preview this very post, I saw strange characters where I think I used parenthesis and/or quotes. And I lost all my data when I went to edit the post again.
Logged
Pattyb
Guest
Re: Where'd my post go?
« Reply #8 on: November 25, 2001, 06:38:20 PM »
Reply with quote

Um ... so where did the post go? I can see it here in the "topic summary."
Logged
Patty
Full Member
***
Posts: 249


Drat. I caught Darth Llama.

Re:Correct HTML progress
« Reply #9 on: November 25, 2001, 06:49:17 PM »
Reply with quote

I, um, guess this is a small bug in the thread? No posts on page 2, but they appear on the first page.  The thing is: when the post was the most current on the index page, clicking through brought you to the blank "page 2."
Logged
Zef Hemel
Advisor
YaBB God
*****
Posts: 1182


Me too

ICQ - 61109769 WWW
Re:Correct HTML progress
« Reply #10 on: November 25, 2001, 06:50:15 PM »
Reply with quote

I think the reply count isn't lowered when deleting posts :)
Logged

Joseph Fung
Global Moderator
YaBB God
*****
Posts: 4512


Keep smiling: it makes others nervous.

WWW
Re:Correct HTML progress
« Reply #11 on: November 25, 2001, 06:50:30 PM »
Reply with quote

Quote from: Patty link=board=9;threadid=116;start=0#793 date=Nov 25th at 01:49pmI, um, guess this is a small bug in the thread? No posts on page 2, but they appear on the first page.  The thing is: when the post was the most current on the index page, clicking through brought you to the blank "page 2."

my bad - on post deletions the message count wasn't being updated.
Logged

Zef Hemel
Advisor
YaBB God
*****
Posts: 1182


Me too

ICQ - 61109769 WWW
Re:Correct HTML progress
« Reply #12 on: November 25, 2001, 06:51:17 PM »
Reply with quote

like I said ;D
Logged

DemonSlayer
Jr. Member
**
Posts: 51


That movie messed with people's heads!!!

ICQ - 35241250 WWW
Re:Correct HTML progress
« Reply #13 on: November 25, 2001, 08:09:32 PM »
Reply with quote

LoL
Logged

Demon Slayer
"The end is near"
"I feel the power of the Dark Hadou"

.:The Chronicles:. Forum
Ted
(purple cow)
YaBB Crony
Full Member
***
Posts: 182


ICQ - 111893141
Re:Correct HTML progress
« Reply #14 on: November 25, 2001, 10:05:18 PM »
Reply with quote

Quote from: Tim_C link=board=9;threadid=116;start=0#733 date=November 25th, 2001, 10:12:36 amthis is the way to do it:

<!-- hide this stuff
document.write('<p>hello world<\/p>')
// stop hiding -->


A common error (and the most common source of erroneous bug reports for the WDG HTML Validator) occurs when writing HTML tags within a SCRIPT element:

<script type="text/javascript">
<!--
  // This is an error!
  document.write("</P>");
// -->
</script>Technically, the first occurrence of "</" followed by any letter is considered the end tag for the SCRIPT element. While browsers are forgiving in this, authors should avoid using strings such as "</P>" in their embedded scripts. JavaScript allows authors to use a backslash to avoid ending the SCRIPT element prematurely:

<script type="text/javascript">
<!--
  document.write("<\/P>");
// -->
</script>

---http://www.htmlhelp.com/tools/validator/problems.html#script

ie, the first slash is escaping the second one.
« Last Edit: November 25, 2001, 10:07:28 PM by Ted » Logged
Pages: [1] 2 Reply Ignore Print 
YaBB SE Community  |  YaBB SE Info  |  News From the YaBB SE Team  |  Correct HTML progress [update 12/01 01.30] « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.074 seconds with 20 queries.