You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "David (JIRA)" <ji...@apache.org> on 2007/10/08 22:54:54 UTC

[jira] Created: (WICKET-1051) StyleSheetReference doesn't take style/locale into account

StyleSheetReference doesn't take style/locale into account
----------------------------------------------------------

                 Key: WICKET-1051
                 URL: https://issues.apache.org/jira/browse/WICKET-1051
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.3.0-beta1
         Environment: -
            Reporter: David


StyleSheetReference (in essence PackagedResourceReference) doesn't take the style and locale into account as is common for resource loaders.

Changing PackagedResourceReference line 102 from
				ResourceReference ref = new ResourceReference(referer, f);
to
				ResourceReference ref = new ResourceReference(referer, f, getLocale(), getStyle());
fixes this issue

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


[jira] Resolved: (WICKET-1051) StyleSheetReference doesn't take style/locale into account

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

Juergen Donnerstag resolved WICKET-1051.
----------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.3.0-beta5
         Assignee: Juergen Donnerstag

thanks

> StyleSheetReference doesn't take style/locale into account
> ----------------------------------------------------------
>
>                 Key: WICKET-1051
>                 URL: https://issues.apache.org/jira/browse/WICKET-1051
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.3.0-beta1
>         Environment: -
>            Reporter: David
>            Assignee: Juergen Donnerstag
>             Fix For: 1.3.0-beta5
>
>
> StyleSheetReference (in essence PackagedResourceReference) doesn't take the style and locale into account as is common for resource loaders.
> Changing PackagedResourceReference line 102 from
> 				ResourceReference ref = new ResourceReference(referer, f);
> to
> 				ResourceReference ref = new ResourceReference(referer, f, getLocale(), getStyle());
> fixes this issue

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