Results 1 to 11 of 11

Thread: Mass HTML Documents Validator?

Hybrid View

  1. #1

    Thread Starter
    Frenzied Member wpearsall's Avatar
    Join Date
    Feb 2002
    Location
    England / UK
    Posts
    1,065

    Mass HTML Documents Validator?

    Hi there, does anyone know of a site where there is a mass document validator?, that will spider every link on the page, and create a report for each page?

    If not a site, a decent FREE windows program that will do it?

    Ta
    Wayne

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687
    Do a Google search for Garage Monkey Website.
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3
    Frenzied Member Rick Bull's Avatar
    Join Date
    Apr 2002
    Location
    England
    Posts
    1,444
    Also http://www.htmlhelp.com/tools/validator/batch.html has a validator where you can seperate files by new lines. It's not as good as the W3C one, but it's generally not bad.

  4. #4

    Thread Starter
    Frenzied Member wpearsall's Avatar
    Join Date
    Feb 2002
    Location
    England / UK
    Posts
    1,065
    Yep, found it, but only problem wiv it, its limited to 150 pages / time (which i understand, cuz it took like 5 - 10 mins to do the limit on my site with it )

    But i got rid of a lot of errors (Pretty basic stuff, like <tr><td>visible form stuff</td></tr>
    <hidden form stuff>
    </table>

    : Helped speed up the time my page's show too (only by a second or two, but it all helps huh )

    Cant figure out why the CSS validator for W3.org isnt working tho,

    Ne 1 no ne good css validators?
    Wayne

  5. #5
    Frenzied Member Rick Bull's Avatar
    Join Date
    Apr 2002
    Location
    England
    Posts
    1,444
    The W3C's one often goes down, just check back there tomorrow. But the HTML site I gave you up there has a CSS validator somewhere on their site. That one has quite a few bugs with advanced stuff like selectors, etc. Still not bad though.

  6. #6

    Thread Starter
    Frenzied Member wpearsall's Avatar
    Join Date
    Feb 2002
    Location
    England / UK
    Posts
    1,065
    OK, checking my CSS, i have quite a few warnings on it (tsk tsk for me i guess).

    http://adz.ods.org:88/themes/subGreen/style/style.css < Style Sheet.

    how do i add, "Background-Image" to the "Background" tag?
    I have this code for my body:

    Code:
    body {
    		color: #000000;
    		background: #EEFFEE;
    		background-image: NONE;
    		scrollbar-face-color: #EEFFEE;
    		scrollbar-highlight-color: #000000;
    		scrollbar-shadow-color: #EEFFEE;
    		scrollbar-3dlight-color: #E0E7F1;
    		scrollbar-arrow-color:  #587EA5;
    		scrollbar-track-color: #EEFFEE;
    		scrollbar-darkshadow-color: #015E8C;
    }
    and it returns these errors:

    Code:
    background-image: NONE
    Warning: The shorthand background property is more widely supported than background-image.
    
    scrollbar-face-color: #EEFFEE
    Error: Property scrollbar-face-color not recognized.
    
    scrollbar-highlight-color: #000000
    Error: Property scrollbar-highlight-color not recognized.
    
    scrollbar-shadow-color: #EEFFEE
    Error: Property scrollbar-shadow-color not recognized.
    
    scrollbar-3dlight-color: #E0E7F1
    Error: Property scrollbar-3dlight-color not recognized.
    
    scrollbar-arrow-color:  #587EA5
    Error: Property scrollbar-arrow-color not recognized.
    
    scrollbar-track-color: #EEFFEE
    Error: Property scrollbar-track-color not recognized.
    
    scrollbar-darkshadow-color: #015E8C
    Error: Property scrollbar-darkshadow-color not recognized.
    anyone know of a more "versitile" scrollbar coloring style?
    Wayne

  7. #7
    Frenzied Member Rick Bull's Avatar
    Join Date
    Apr 2002
    Location
    England
    Posts
    1,444
    Well for the background thing, if you don't want an image just remove the background-image bit:

    Code:
    background: #EEFFEE;
    As for the Scrollbar thing, that's a proprietary MS IE extension (which I think one of the linux browsers also supports). You have to just remove it if you want it to validate, or alternatively add it to your documents via JavaScript. I should be able to figure the JavaScript out for you if you want it.

  8. #8

    Thread Starter
    Frenzied Member wpearsall's Avatar
    Join Date
    Feb 2002
    Location
    England / UK
    Posts
    1,065
    Nah, i will knock up a bit of PHP Code to add the "<link rel=.." stuff for IE only things in

    Form styles r supporting in things other then IE correct?
    Wayne

  9. #9
    Frenzied Member Rick Bull's Avatar
    Join Date
    Apr 2002
    Location
    England
    Posts
    1,444
    CSS for form elements? Yeah they're supported in Mozilla and Opera 7. Mozilla has some very good support for background's of elements, like you can put animated GIFs as backgrounds for textboxes

  10. #10

    Thread Starter
    Frenzied Member wpearsall's Avatar
    Join Date
    Feb 2002
    Location
    England / UK
    Posts
    1,065
    OK, now, according to the mass html validator (and a lot of work i did going thru every php script i have done for me site, turning it into "Valid HTML Output"

    I am almost entirely done for the validness of the html on the whole site... except:

    <textarea WRAP="OFF" name=....
    Error: there is no attribute WRAP for this element (in this HTML version)
    So, im guessing (hopefully) there is some Style="??: ??;" method of turning WRAP > Off? (I have got a bit of PHP Script in a text area for people to add to their sites, & if it does wrap, it will cause errors etc So i need it off )

    know of the style= method? (if there is one) or a more "valid" method?

    TNX
    Wayne

  11. #11
    Frenzied Member Rick Bull's Avatar
    Join Date
    Apr 2002
    Location
    England
    Posts
    1,444
    <textarea style="white-space: nowrap;"></textarea>

    And if that doesn't work you may also need to add overflow: scroll; in there too, you shouldn't need to though.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width