You are viewing a plain text version of this content. The canonical link for it is here.
Posted to adffaces-issues@incubator.apache.org by "Mikhail Grushinskiy (JIRA)" <ad...@incubator.apache.org> on 2006/06/21 05:50:30 UTC

[jira] Created: (ADFFACES-30) Upgrade JSP version in all jspx in ADF/Trinidad examples to 2.0

Upgrade JSP version in all jspx in ADF/Trinidad examples  to 2.0
----------------------------------------------------------------

         Key: ADFFACES-30
         URL: http://issues.apache.org/jira/browse/ADFFACES-30
     Project: MyFaces ADF-Faces
        Type: Improvement

  Components: Build  
 Environment: all
    Reporter: Mikhail Grushinskiy
    Priority: Minor


For JSP 2.0 it should look like

<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">

and web.xml should be at 2.4 level

<web-app  xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">

EL should be upgraded to JSP 2.0  EL too


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (ADFFACES-30) Upgrade JSP version in all jspx in ADF/Trinidad examples to 2.0

Posted by "Mikhail Grushinskiy (JIRA)" <ad...@incubator.apache.org>.
    [ http://issues.apache.org/jira/browse/ADFFACES-30?page=comments#action_12417043 ] 

Mikhail Grushinskiy commented on ADFFACES-30:
---------------------------------------------

easier to by running sed via shell script on each jspx file

#! /bin/sh

find . -name \*.jspx > input_files

cat input_files | while read file_name
do
	echo $file_name
	sed -e 's#<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"#<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"#g' \
          $file_name > $file_name.new 
        mv -f $file_name.new $file_name
done



and editing web.xml manually for

<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> 



> Upgrade JSP version in all jspx in ADF/Trinidad examples  to 2.0
> ----------------------------------------------------------------
>
>          Key: ADFFACES-30
>          URL: http://issues.apache.org/jira/browse/ADFFACES-30
>      Project: MyFaces ADF-Faces
>         Type: Improvement

>   Components: Build
>  Environment: all
>     Reporter: Mikhail Grushinskiy
>     Priority: Minor

>
> For JSP 2.0 it should look like
> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
> and web.xml should be at 2.4 level
> <web-app  xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
> EL should be upgraded to JSP 2.0  EL too

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (ADFFACES-30) Upgrade JSP version in all jspx in ADF/Trinidad examples to 2.0

Posted by "Matthias Weßendorf (JIRA)" <ad...@incubator.apache.org>.
    [ http://issues.apache.org/jira/browse/ADFFACES-30?page=comments#action_12417041 ] 

Matthias Weßendorf commented on ADFFACES-30:
--------------------------------------------

hey dude,

feel free to provide a patch.

;)

> Upgrade JSP version in all jspx in ADF/Trinidad examples  to 2.0
> ----------------------------------------------------------------
>
>          Key: ADFFACES-30
>          URL: http://issues.apache.org/jira/browse/ADFFACES-30
>      Project: MyFaces ADF-Faces
>         Type: Improvement

>   Components: Build
>  Environment: all
>     Reporter: Mikhail Grushinskiy
>     Priority: Minor

>
> For JSP 2.0 it should look like
> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
> and web.xml should be at 2.4 level
> <web-app  xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
> EL should be upgraded to JSP 2.0  EL too

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Assigned: (ADFFACES-30) Upgrade JSP version in all jspx in ADF/Trinidad examples to 2.0

Posted by "Adam Winer (JIRA)" <ad...@incubator.apache.org>.
     [ http://issues.apache.org/jira/browse/ADFFACES-30?page=all ]

Adam Winer reassigned ADFFACES-30:
----------------------------------

    Assign To: Adam Winer

> Upgrade JSP version in all jspx in ADF/Trinidad examples  to 2.0
> ----------------------------------------------------------------
>
>          Key: ADFFACES-30
>          URL: http://issues.apache.org/jira/browse/ADFFACES-30
>      Project: MyFaces ADF-Faces
>         Type: Improvement

>   Components: Build
>  Environment: all
>     Reporter: Mikhail Grushinskiy
>     Assignee: Adam Winer
>     Priority: Minor

>
> For JSP 2.0 it should look like
> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
> and web.xml should be at 2.4 level
> <web-app  xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
> EL should be upgraded to JSP 2.0  EL too

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (ADFFACES-30) Upgrade JSP version in all jspx in ADF/Trinidad examples to 2.0

Posted by "Matthias Weßendorf (JIRA)" <ad...@incubator.apache.org>.
     [ https://issues.apache.org/jira/browse/ADFFACES-30?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matthias Weßendorf updated ADFFACES-30:
---------------------------------------

        Fix Version/s: 1.0.0-incubating-core
    Affects Version/s: 1.0.0-incubating-core

> Upgrade JSP version in all jspx in ADF/Trinidad examples  to 2.0
> ----------------------------------------------------------------
>
>                 Key: ADFFACES-30
>                 URL: https://issues.apache.org/jira/browse/ADFFACES-30
>             Project: MyFaces ADF-Faces
>          Issue Type: Improvement
>          Components: Build
>    Affects Versions: 1.0.0-incubating-core
>         Environment: all
>            Reporter: Mikhail Grushinskiy
>         Assigned To: Adam Winer
>            Priority: Minor
>             Fix For: 1.0.0-incubating-core
>
>
> For JSP 2.0 it should look like
> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
> and web.xml should be at 2.4 level
> <web-app  xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
> EL should be upgraded to JSP 2.0  EL too

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (ADFFACES-30) Upgrade JSP version in all jspx in ADF/Trinidad examples to 2.0

Posted by "Adam Winer (JIRA)" <ad...@incubator.apache.org>.
     [ http://issues.apache.org/jira/browse/ADFFACES-30?page=all ]
     
Adam Winer closed ADFFACES-30:
------------------------------

    Resolution: Fixed

Fixed;  thanks for the shell script.

> Upgrade JSP version in all jspx in ADF/Trinidad examples  to 2.0
> ----------------------------------------------------------------
>
>          Key: ADFFACES-30
>          URL: http://issues.apache.org/jira/browse/ADFFACES-30
>      Project: MyFaces ADF-Faces
>         Type: Improvement

>   Components: Build
>  Environment: all
>     Reporter: Mikhail Grushinskiy
>     Assignee: Adam Winer
>     Priority: Minor

>
> For JSP 2.0 it should look like
> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
> and web.xml should be at 2.4 level
> <web-app  xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
> EL should be upgraded to JSP 2.0  EL too

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira