HTML Validation

View: New views
6 Messages — Rating Filter:   Alert me  

HTML Validation

by Thomas Feldman :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.

Hi,

 

When i try to validate a HTML  page rendered by jahia, it is full of errors. I take an example : sometimes, <link> tags are not closed by a </link>.

 

It is important for my application that the html is valid. My question is how can I access such tags that are not in the template definition (the above example of link is not found in a template…It must be generated by an engine or so…)

 

Thanks for your help.

 

Thomas Feldman
Chef de projet  technique -Technical Project Manager
__________________________________
__________________________

Duke - A Razorfish Company
86-90, rue Notre Dame de Nazareth
75003 Paris - France
T : +33 (0)1 53 44 17 19

thomas.feldman@...
http://www.duke-interactive.com
____________________________________________________________

If emails save time, not printing them saves trees

 


_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

Re: HTML Validation

by Sergiy Shyrkov-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello Thomas,

we are working hard on delivering WAI-compliant HTML code by detecting
all the sources of the generated content in the final template. The
generated content comes from different sources: JSP tags, Jahia content,
   template code, 3-rd party extensions etc. Ensuring overall compliance
is the final goal.
You can help us detect such problems by creating a JIRA ticket in our
issue tracking system (http://jira.jahia.org/) and we will address
reported issues with the next community release.

Thank you in advance for helping us improve Jahia!

Kind regards
Sergiy

Thomas Feldman wrote:

> Hi,
>
>  
>
> When i try to validate a HTML  page rendered by jahia, it is full of
> errors. I take an example : sometimes, <link> tags are not closed by a
> </link>.
>
>  
>
> It is important for my application that the html is valid. My question
> is how can I access such tags that are not in the template definition
> (the above example of link is not found in a template…It must be
> generated by an engine or so…)
>
>  
>
> Thanks for your help.
>
>  
>
> *Thomas Feldman
> *Chef de projet  technique -Technical Project Manager
> ____________________________________________________________
>
> *Duke - A Razorfish Company*
> 86-90, rue Notre Dame de Nazareth
> 75003 Paris - France
> T : +33 (0)1 53 44 17 19
>
> mailto:thomas.feldman@...
> http://www.duke-interactive.com
> ____________________________________________________________
>
> If emails save time, not printing them saves trees
>
>  
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> template_list mailing list
> template_list@...
> http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

Re: HTML Validation

by Thomas Feldman :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi sergiy,

I am aware that you are developing Jahia so that it fits the HTML constraints. But for my project, I need to have something working as soon as possible. SO, apart from the fact that I can help you issuing html bugs, how can I access to the bugging code in jahia (for example, where in Jahia exists the part that says that link has to be HTML written as <link> ... <link/>. It's not a template issue, so it must be in the code...

Can you help me?


-----Message d'origine-----
De : template_list-bounces@... [mailto:template_list-bounces@...] De la part de Sergiy Shyrkov
Envoyé : mardi 24 février 2009 13:52
À : template_list@...
Objet : Re: [template_list] HTML Validation

Hello Thomas,

we are working hard on delivering WAI-compliant HTML code by detecting
all the sources of the generated content in the final template. The
generated content comes from different sources: JSP tags, Jahia content,
   template code, 3-rd party extensions etc. Ensuring overall compliance
is the final goal.
You can help us detect such problems by creating a JIRA ticket in our
issue tracking system (http://jira.jahia.org/) and we will address
reported issues with the next community release.

Thank you in advance for helping us improve Jahia!

Kind regards
Sergiy

Thomas Feldman wrote:

> Hi,
>
>  
>
> When i try to validate a HTML  page rendered by jahia, it is full of
> errors. I take an example : sometimes, <link> tags are not closed by a
> </link>.
>
>  
>
> It is important for my application that the html is valid. My question
> is how can I access such tags that are not in the template definition
> (the above example of link is not found in a template...It must be
> generated by an engine or so...)
>
>  
>
> Thanks for your help.
>
>  
>
> *Thomas Feldman
> *Chef de projet  technique -Technical Project Manager
> ____________________________________________________________
>
> *Duke - A Razorfish Company*
> 86-90, rue Notre Dame de Nazareth
> 75003 Paris - France
> T : +33 (0)1 53 44 17 19
>
> mailto:thomas.feldman@...
> http://www.duke-interactive.com
> ____________________________________________________________
>
> If emails save time, not printing them saves trees
>
>  
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> template_list mailing list
> template_list@...
> http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

Re: HTML Validation

by Clément Egger-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Thomas,

The community source code is available online
http://www.jahia.org/cms/home/download/svn so if you want to correct some
tags to improve XHTML compliance on your own version, you can do it.

The tags used in templates are all located in the maven module 'taglib'

http://subversion.jahia.org/svn/jahia/trunk/taglib/src/main/java/org/jahia/t
aglibs/template/

and I think the ones that interest you the most are mostly fields classes

http://subversion.jahia.org/svn/jahia/trunk/taglib/src/main/java/org/jahia/t
aglibs/template/field/




-----Message d'origine-----
De : template_list-bounces@...
[mailto:template_list-bounces@...] De la part de Thomas Feldman
Envoyé : mardi 24 février 2009 15:45
À : Any questions regarding template development and/or about the taglibs
extension
Objet : Re: [template_list] HTML Validation

Hi sergiy,

I am aware that you are developing Jahia so that it fits the HTML
constraints. But for my project, I need to have something working as soon as
possible. SO, apart from the fact that I can help you issuing html bugs, how
can I access to the bugging code in jahia (for example, where in Jahia
exists the part that says that link has to be HTML written as <link> ...
<link/>. It's not a template issue, so it must be in the code...

Can you help me?


-----Message d'origine-----
De : template_list-bounces@...
[mailto:template_list-bounces@...] De la part de Sergiy Shyrkov
Envoyé : mardi 24 février 2009 13:52
À : template_list@...
Objet : Re: [template_list] HTML Validation

Hello Thomas,

we are working hard on delivering WAI-compliant HTML code by detecting
all the sources of the generated content in the final template. The
generated content comes from different sources: JSP tags, Jahia content,
   template code, 3-rd party extensions etc. Ensuring overall compliance
is the final goal.
You can help us detect such problems by creating a JIRA ticket in our
issue tracking system (http://jira.jahia.org/) and we will address
reported issues with the next community release.

Thank you in advance for helping us improve Jahia!

Kind regards
Sergiy

Thomas Feldman wrote:

> Hi,
>
>  
>
> When i try to validate a HTML  page rendered by jahia, it is full of
> errors. I take an example : sometimes, <link> tags are not closed by a
> </link>.
>
>  
>
> It is important for my application that the html is valid. My question
> is how can I access such tags that are not in the template definition
> (the above example of link is not found in a template...It must be
> generated by an engine or so...)
>
>  
>
> Thanks for your help.
>
>  
>
> *Thomas Feldman
> *Chef de projet  technique -Technical Project Manager
> ____________________________________________________________
>
> *Duke - A Razorfish Company*
> 86-90, rue Notre Dame de Nazareth
> 75003 Paris - France
> T : +33 (0)1 53 44 17 19
>
> mailto:thomas.feldman@...
> http://www.duke-interactive.com
> ____________________________________________________________
>
> If emails save time, not printing them saves trees
>
>  
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> template_list mailing list
> template_list@...
> http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.0.237 / Virus Database: 270.10.25/1957 - Release Date: 02/23/09
18:22:00

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

Re: HTML Validation

by Thomas Feldman :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi, downloaded the svn project....
Where can I find information about how to make the project, code and debug...I need some help to do my first steps...thank you


Thomas Feldman
Chef de projet  technique -Technical Project Manager
____________________________________________________________
Duke - A Razorfish Company
86-90, rue Notre Dame de Nazareth
75003 Paris - France
T : +33 (0)1 53 44 17 19
mailto:thomas.feldman@...
http://www.duke-interactive.com
____________________________________________________________
If emails save time, not printing them saves trees

-----Message d'origine-----
De : template_list-bounces@... [mailto:template_list-bounces@...] De la part de Clément Egger
Envoyé : mardi 24 février 2009 17:38
À : template_list@...
Objet : Re: [template_list] HTML Validation

Hi Thomas,

The community source code is available online
http://www.jahia.org/cms/home/download/svn so if you want to correct some
tags to improve XHTML compliance on your own version, you can do it.

The tags used in templates are all located in the maven module 'taglib'

http://subversion.jahia.org/svn/jahia/trunk/taglib/src/main/java/org/jahia/t
aglibs/template/

and I think the ones that interest you the most are mostly fields classes

http://subversion.jahia.org/svn/jahia/trunk/taglib/src/main/java/org/jahia/t
aglibs/template/field/




-----Message d'origine-----
De : template_list-bounces@...
[mailto:template_list-bounces@...] De la part de Thomas Feldman
Envoyé : mardi 24 février 2009 15:45
À : Any questions regarding template development and/or about the taglibs
extension
Objet : Re: [template_list] HTML Validation

Hi sergiy,

I am aware that you are developing Jahia so that it fits the HTML
constraints. But for my project, I need to have something working as soon as
possible. SO, apart from the fact that I can help you issuing html bugs, how
can I access to the bugging code in jahia (for example, where in Jahia
exists the part that says that link has to be HTML written as <link> ...
<link/>. It's not a template issue, so it must be in the code...

Can you help me?


-----Message d'origine-----
De : template_list-bounces@...
[mailto:template_list-bounces@...] De la part de Sergiy Shyrkov
Envoyé : mardi 24 février 2009 13:52
À : template_list@...
Objet : Re: [template_list] HTML Validation

Hello Thomas,

we are working hard on delivering WAI-compliant HTML code by detecting
all the sources of the generated content in the final template. The
generated content comes from different sources: JSP tags, Jahia content,
   template code, 3-rd party extensions etc. Ensuring overall compliance
is the final goal.
You can help us detect such problems by creating a JIRA ticket in our
issue tracking system (http://jira.jahia.org/) and we will address
reported issues with the next community release.

Thank you in advance for helping us improve Jahia!

Kind regards
Sergiy

Thomas Feldman wrote:

> Hi,
>
>  
>
> When i try to validate a HTML  page rendered by jahia, it is full of
> errors. I take an example : sometimes, <link> tags are not closed by a
> </link>.
>
>  
>
> It is important for my application that the html is valid. My question
> is how can I access such tags that are not in the template definition
> (the above example of link is not found in a template...It must be
> generated by an engine or so...)
>
>  
>
> Thanks for your help.
>
>  
>
> *Thomas Feldman
> *Chef de projet  technique -Technical Project Manager
> ____________________________________________________________
>
> *Duke - A Razorfish Company*
> 86-90, rue Notre Dame de Nazareth
> 75003 Paris - France
> T : +33 (0)1 53 44 17 19
>
> mailto:thomas.feldman@...
> http://www.duke-interactive.com
> ____________________________________________________________
>
> If emails save time, not printing them saves trees
>
>  
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> template_list mailing list
> template_list@...
> http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.0.237 / Virus Database: 270.10.25/1957 - Release Date: 02/23/09
18:22:00

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

Re: HTML Validation

by Benjamin Papez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello Thomas,

there is a Jahiapedia article about that: http://www.jahia.org/cms/lang/en/home/jahiapedia/Template_Developer_Guide/Using_Eclipse_For_Jahia#p105

It is based on Eclipse IDE. If you are using another IDE, you will for now need to adapt yourself.

Regards,
Benjamin

On 02.03.2009 11:41 Thomas Feldman wrote:
Hi, downloaded the svn project....
Where can I find information about how to make the project, code and debug...I need some help to do my first steps...thank you


Thomas Feldman
Chef de projet  technique -Technical Project Manager
____________________________________________________________
Duke - A Razorfish Company
86-90, rue Notre Dame de Nazareth
75003 Paris - France
T : +33 (0)1 53 44 17 19
thomas.feldman@...
http://www.duke-interactive.com
____________________________________________________________
If emails save time, not printing them saves trees

-----Message d'origine-----
De : template_list-bounces@... [template_list-bounces@...] De la part de Clément Egger
Envoyé : mardi 24 février 2009 17:38
À : template_list@...
Objet : Re: [template_list] HTML Validation

Hi Thomas,

The community source code is available online
http://www.jahia.org/cms/home/download/svn so if you want to correct some
tags to improve XHTML compliance on your own version, you can do it.

The tags used in templates are all located in the maven module 'taglib'

http://subversion.jahia.org/svn/jahia/trunk/taglib/src/main/java/org/jahia/t
aglibs/template/

and I think the ones that interest you the most are mostly fields classes

http://subversion.jahia.org/svn/jahia/trunk/taglib/src/main/java/org/jahia/t
aglibs/template/field/




-----Message d'origine-----
De : template_list-bounces@...
[template_list-bounces@...] De la part de Thomas Feldman
Envoyé : mardi 24 février 2009 15:45
À : Any questions regarding template development and/or about the taglibs
extension
Objet : Re: [template_list] HTML Validation

Hi sergiy,

I am aware that you are developing Jahia so that it fits the HTML
constraints. But for my project, I need to have something working as soon as
possible. SO, apart from the fact that I can help you issuing html bugs, how
can I access to the bugging code in jahia (for example, where in Jahia
exists the part that says that link has to be HTML written as <link> ...
<link/>. It's not a template issue, so it must be in the code...

Can you help me?


-----Message d'origine-----
De : template_list-bounces@...
[template_list-bounces@...] De la part de Sergiy Shyrkov
Envoyé : mardi 24 février 2009 13:52
À : template_list@...
Objet : Re: [template_list] HTML Validation

Hello Thomas,

we are working hard on delivering WAI-compliant HTML code by detecting 
all the sources of the generated content in the final template. The 
generated content comes from different sources: JSP tags, Jahia content, 
   template code, 3-rd party extensions etc. Ensuring overall compliance 
is the final goal.
You can help us detect such problems by creating a JIRA ticket in our 
issue tracking system (http://jira.jahia.org/) and we will address 
reported issues with the next community release.

Thank you in advance for helping us improve Jahia!

Kind regards
Sergiy

Thomas Feldman wrote:
  
Hi,

 

When i try to validate a HTML  page rendered by jahia, it is full of 
errors. I take an example : sometimes, <link> tags are not closed by a 
</link>.

 

It is important for my application that the html is valid. My question 
is how can I access such tags that are not in the template definition 
(the above example of link is not found in a template...It must be 
generated by an engine or so...)

 

Thanks for your help.

 

*Thomas Feldman
*Chef de projet  technique -Technical Project Manager
____________________________________________________________

*Duke - A Razorfish Company*
86-90, rue Notre Dame de Nazareth
75003 Paris - France
T : +33 (0)1 53 44 17 19

thomas.feldman@...
http://www.duke-interactive.com
____________________________________________________________

If emails save time, not printing them saves trees

 


------------------------------------------------------------------------

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
    

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 8.0.237 / Virus Database: 270.10.25/1957 - Release Date: 02/23/09
18:22:00

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list
_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list

  

_______________________________________________
template_list mailing list
template_list@...
http://lists.jahia.org/cgi-bin/mailman/listinfo/template_list