shorten the hashcode in the skin's generated css filename.
----------------------------------------------------------

                 Key: TRINIDAD-733
                 URL: https://issues.apache.org/jira/browse/TRINIDAD-733
             Project: MyFaces Trinidad
          Issue Type: Bug
          Components: Skinning
            Reporter: Jeanne Waldman
            Assignee: Jeanne Waldman


This is a small enhancement suggested by Blake Sullivan.

Blake suggested that we shorten the hashcode that we put into the generated css 
filename by using radix 36 instead of the default.
So in StyleSheetDocument, change:
String.valueOf(Math.abs(hashCode));
to
Integer.toString(Math.abs(hashCode), 36);

This will shorten the generated css filename.

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

Reply via email to