monozub
2006-Jul-27 02:48 UTC
[Rails] How To Test For W3C compliance locally and possibly to include it in to Continuous integraition process
Hi Everyone, As many of you out there I''m "protected" by the firewall which prevents me from checking my code for W3C compliance, I am able to check the production code but i would like to test my code before it goes to production. So if anyone was able to have that check done locally, possibly including some sort of tests in to the integration process, I would truly appreciate knowledge exchange. Sincerely: Gregory Bluvshteyn
Scott Mathieson
2006-Jul-27 13:03 UTC
[Rails] How To Test For W3C compliance locally and possibly to include it in to Continuous integraition process
i''m assuming you mean (x)html/css by code... if so, you can cut and paste into the w3c validators "Validate by Direct Input" (x)html => http://validator.w3.org/ css => http://jigsaw.w3.org/css-validator/ if this is a work situation i suggest having a word with the powers that be - expecting you to develop web apps with that kind of limitation is ludicrous; mind you, deploying to a staging server is probably a good idea anyway On Thursday 27 July 2006 02:46, monozub wrote:> Hi Everyone, > > As many of you out there I''m "protected" by the firewall which prevents > me from checking my code for W3C compliance, I am able to check the > production > code but i would like to test my code before it goes to production. > > So if anyone was able to have that check done locally, possibly > including some sort of tests in to the integration process, I would > truly appreciate knowledge exchange. > > Sincerely: > > Gregory Bluvshteyn > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails
Jonathan del Strother
2006-Jul-27 14:36 UTC
[Rails] How To Test For W3C compliance locally and possibly to include it in to Continuous integraition process
Alternatively, use Firefox''s Web Developer extension, which submits the html / css for you. On 27 Jul 2006, at 14:03, Scott Mathieson wrote:> i''m assuming you mean (x)html/css by code... if so, you can cut and > paste into > the w3c validators > > "Validate by Direct Input" > > (x)html => http://validator.w3.org/ > css => http://jigsaw.w3.org/css-validator/ > > if this is a work situation i suggest having a word with the powers > that be - > expecting you to develop web apps with that kind of limitation is > ludicrous; > mind you, deploying to a staging server is probably a good idea anyway > > On Thursday 27 July 2006 02:46, monozub wrote: >> Hi Everyone, >> >> As many of you out there I''m "protected" by the firewall which >> prevents >> me from checking my code for W3C compliance, I am able to check the >> production >> code but i would like to test my code before it goes to production. >> >> So if anyone was able to have that check done locally, possibly >> including some sort of tests in to the integration process, I would >> truly appreciate knowledge exchange. >> >> Sincerely: >> >> Gregory Bluvshteyn >> >> >> _______________________________________________ >> Rails mailing list >> Rails@lists.rubyonrails.org >> http://lists.rubyonrails.org/mailman/listinfo/rails > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails
Matt White
2006-Jul-27 14:50 UTC
[Rails] How To Test For W3C compliance locally and possibly to include it in to Continuous integraition process
Of course this isn''t going to deliver CI, but I swear by this firefox extension: https://addons.mozilla.org/firefox/249/. There''s an addon for Safari that does the same thing. It''s based on HTMLTidy, so it doesn''t require a network connection. Matt On 7/27/06, Jonathan del Strother <maillist@steelskies.com> wrote:> > Alternatively, use Firefox''s Web Developer extension, which submits > the html / css for you. > > On 27 Jul 2006, at 14:03, Scott Mathieson wrote: > > > i''m assuming you mean (x)html/css by code... if so, you can cut and > > paste into > > the w3c validators > > > > "Validate by Direct Input" > > > > (x)html => http://validator.w3.org/ > > css => http://jigsaw.w3.org/css-validator/ > > > > if this is a work situation i suggest having a word with the powers > > that be - > > expecting you to develop web apps with that kind of limitation is > > ludicrous; > > mind you, deploying to a staging server is probably a good idea anyway > > > > On Thursday 27 July 2006 02:46, monozub wrote: > >> Hi Everyone, > >> > >> As many of you out there I''m "protected" by the firewall which > >> prevents > >> me from checking my code for W3C compliance, I am able to check the > >> production > >> code but i would like to test my code before it goes to production. > >> > >> So if anyone was able to have that check done locally, possibly > >> including some sort of tests in to the integration process, I would > >> truly appreciate knowledge exchange. > >> > >> Sincerely: > >> > >> Gregory Bluvshteyn > >> > >> > >> _______________________________________________ > >> Rails mailing list > >> Rails@lists.rubyonrails.org > >> http://lists.rubyonrails.org/mailman/listinfo/rails > > _______________________________________________ > > Rails mailing list > > Rails@lists.rubyonrails.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Thermal Creative http://blog.thermalcreative.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060727/26872575/attachment.html
Tim Heighes
2006-Jul-27 17:17 UTC
[Rails] How To Test For W3C compliance locally and possibly to include it in to Continuous integraition process
Install the W3C validator locally and use the responsible markup plugin:- http://blog.codahale.com/2006/03/05/responsiblemarkup-v01-unit-test- your-way-to-responsible-markup/ On Jul 27, 2006, at 3:46 AM, monozub wrote:> Hi Everyone, > > As many of you out there I''m "protected" by the firewall which > prevents me from checking my code for W3C compliance, I am able to > check the production > code but i would like to test my code before it goes to production. > > So if anyone was able to have that check done locally, possibly > including some sort of tests in to the integration process, I would > truly appreciate knowledge exchange. > > Sincerely: > > Gregory Bluvshteyn > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails