You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Monica Nguon (JIRA)" <ji...@apache.org> on 2012/10/25 10:04:11 UTC

[jira] [Created] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Monica Nguon created WICKET-4837:
------------------------------------

             Summary: SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
                 Key: WICKET-4837
                 URL: https://issues.apache.org/jira/browse/WICKET-4837
             Project: Wicket
          Issue Type: Bug
          Components: wicket-extensions
            Reporter: Monica Nguon


SmartLinkLabel seems to be working just fine:

add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK


SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Resolved] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Sven Meier (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sven Meier resolved WICKET-4837.
--------------------------------

    Resolution: Fixed
      Assignee: Sven Meier

Text is now parsed for links first and then line breaks are handled
                
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>            Assignee: Sven Meier
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Sven Meier (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sven Meier updated WICKET-4837:
-------------------------------

    Fix Version/s: 1.5.9
    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>            Assignee: Sven Meier
>             Fix For: 6.3.0, 1.5.9
>
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Martin Grigorov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Grigorov updated WICKET-4837:
------------------------------------

    Fix Version/s: 6.3.0
    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>            Assignee: Sven Meier
>             Fix For: 6.3.0, 1.5.9
>
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Labels:   (was: smart)
    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Martin Grigorov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13484048#comment-13484048 ] 

Martin Grigorov commented on WICKET-4837:
-----------------------------------------

Please attach the modified quickstart.
                
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Description: 
SmartLinkLabel seems to be working just fine:
add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK

SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK

Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
- Version 1.5.8: 

  was:
SmartLinkLabel seems to be working just fine:
add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK

SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK

Tested using Wicket QuickStart.

    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Comment: was deleted

(was: HomePage.java and associated markup, modified from Wicket QuickStart project.)
    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Affects Version/s: 6.2.0
    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Description: 
SmartLinkLabel seems to be working just fine:
add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK

SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK

Tested using Wicket QuickStart.

  was:
SmartLinkLabel seems to be working just fine:

add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK


SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK

    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>            Reporter: Monica Nguon
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Attachment: HomePage.html
                HomePage.java

HomePage.java and associated markup, modified from Wicket QuickStart project.
                
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13484017#comment-13484017 ] 

Monica Nguon commented on WICKET-4837:
--------------------------------------

Steps to reproduce:

mvn archetype:generate -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=1.5.8 -DgroupId=com.mycompany -DartifactId=myproject158 -DarchetypeRepository=https://repository.apache.org/ -DinteractiveMode=false

Modify the POM to uncomment the "wicket-extensions" dependency.

Modify HomePage.java and associated markup (see attached files).

mvn jetty:run

Go to http://localhost:8080/ to visualize the result (see attached screenshot).
                
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Attachment: Screenshot1.png
    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Labels: smart  (was: )
    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Affects Version/s: 1.5.8
    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (WICKET-4837) SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks

Posted by "Monica Nguon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Monica Nguon updated WICKET-4837:
---------------------------------

    Description: 
SmartLinkLabel seems to be working just fine:
add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK

SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK

Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
- Version 1.5.8: SmartLinkMultiLineLabel not working.
- Version 6.2.0: SmartLinkMultiLineLabel not working either.

  was:
SmartLinkLabel seems to be working just fine:
add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK

SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK

Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
- Version 1.5.8: 

    
> SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks
> ----------------------------------------------------------------------------------
>
>                 Key: WICKET-4837
>                 URL: https://issues.apache.org/jira/browse/WICKET-4837
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.5.8, 6.2.0
>            Reporter: Monica Nguon
>         Attachments: HomePage.html, HomePage.java, Screenshot1.png
>
>
> SmartLinkLabel seems to be working just fine:
> add(new SmartLinkLabel("smartLinkLabel1", "test@domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel2", "http://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel3", "https://domain.com"));		// OK
> add(new SmartLinkLabel("smartLinkLabel4", "ftp://domain.com"));			// OK
> add(new SmartLinkLabel("smartLinkLabel5", "Email: test@domain.com"));	// OK
> SmartLinkMultiLineLabel does not seem to detect email addresses or URLs:
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel1", "test@domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel2", "http://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel3", "https://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel4", "ftp://domain.com"));			// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel5", "test@domain.com\nhttp://domain.com"));		// NO HYPERLINK
> add(new SmartLinkMultiLineLabel("smartLinkMultiLineLabel6", "Email: test@domain.com"));		// NO HYPERLINK
> Tested using Wicket QuickStart (http://wicket.apache.org/start/quickstart.html):
> - Version 1.5.8: SmartLinkMultiLineLabel not working.
> - Version 6.2.0: SmartLinkMultiLineLabel not working either.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira