up vote 0 down vote favorite
1
share [g+] share [fb]

I'd like to run validations on the static web content I'm creating. Are there any good validators for XHTML, ATOM, and CSS? (The first two would be covered by any general-purpose XML-DTD validator.)

Later

I failed to specify that I wanted local validation, not something that uses the W3C service.

link|improve this question

75% accept rate
A shameless plug, and there are a few of these around, but I wrote a little markup validator gem which uses the w3c api you can see it here github.com/DylanFM/please_validate/tree/master – dylanfm May 30 '09 at 14:38
feedback

5 Answers

up vote 4 down vote accepted

Nokogiri ( http://github.com/tenderlove/nokogiri/tree/master ) is great tool for parsing XML/XHTML/HTML/etc and it looks like it can validate as well:

Nokogiri::XML.parse(string_or_io, nil, nil, Nokogiri::XML::PARSE_DTDVALID)

At the moment, I don't believe that you'll find a pure ruby project that will validate your CSS directives, but there are many that will let you use ruby code to generate valid CSS.

link|improve this answer
feedback

Markup Validation Service, by w3c, can validate XHTML.

There are also a CSS Validation Service and a Feed Validation Service.

Is that what you were looking for?

If you want to validate from inside a ruby program, here is an article explaining how to do that using this services. I didn't try it, sorry.

link|improve this answer
Going from the question title I'd say (s)he's looking for a Ruby script that can perform the validation locally. – John Topley May 30 '09 at 14:22
feedback

Check W3C Validators Ruby Gem.

W3C Validators is a Ruby wrapper for the World Wide Web Consortium's online validation services.

It supports the markup validator, the feed validator and the CSS validator.

Otherwise, W3C's Validator has a SOAP API which you can use even from Ruby, or there is an article demonstrates how to validate HTML in Ruby with libxml.

link|improve this answer
feedback

Just as an info: Nokogiri 1.3.0 was released today and now has validation classes for XML inside the official release. No need to get the trunk version.

http://nokogiri.rubyforge.org/nokogiri/

link|improve this answer
gem install nokogiri will get you the latest release, not a 'trunk' version, which would be master on git. – Caleb Thompson Jan 27 at 20:19
feedback

I use the following to validate the markup on all of our pages through our test suite: assert_valid_markup

It provides nice markup testing like:

class FooControllerTest < Test::Unit::TestCase
  def test_bar_markup
    get :bar
    assert_valid_markup
  end
end

or

class FooControllerTest < Test::Unit::TestCase
  def test_bar_markup
    assert_valid_markup "<div>Hello, world.</div>"
  end
end

# For the ultimate in convenience, use the class-level method to validate a slew of
# actions in one line. Par exemple:

class FooControllerTest < Test::Unit::TestCase
  assert_valid_markup :bar, :baz, :qux
end
link|improve this answer
did you delete that repository? GitHub says it doesn't exist – James A. Rosen May 31 '09 at 20:35
Hm, maybe it's a GitHub problem. The link doesn't work, but the URL does. – James A. Rosen May 31 '09 at 20:37
I fixed the link. Just had to get rid of the /tree/master bit. – Caleb Thompson Jan 27 at 20:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.