[JBoss JIRA] Created: (GTNPORTAL-541) Javascript merge ordering
by Julien Viet (JIRA)
Javascript merge ordering
-------------------------
Key: GTNPORTAL-541
URL: https://jira.jboss.org/jira/browse/GTNPORTAL-541
Project: GateIn Portal
Issue Type: Task
Reporter: Julien Viet
Assignee: Trong Tran
Fix For: 3.0.0-CR01
based on a priority XML tag that will allow the javascript service to merge them.
if <priority> tag is not specified : priority => -1 : -1 means that the scripts will be loaded *last*
merge of javascript is based on priority + alphabetical name with the following policy:
compare(int p1, String n1, int p2, String n2) {
if (p1 == p2) {
// we compare n1 and n2
} else {
if (p1 == -1) {
// p2 is more important
} else if (p2 == -1) {
// p1 is more important
} else {
// we compare p1 and p2
}
}
}
the javascript service will keep the script + priority and every time a new script is added, the final javascript will be recomputed.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 2 months
[JBoss JIRA] Created: (GTNPORTAL-508) Admin GUI weirdness
by Chris Laprun (JIRA)
Admin GUI weirdness
-------------------
Key: GTNPORTAL-508
URL: https://jira.jboss.org/jira/browse/GTNPORTAL-508
Project: GateIn Portal
Issue Type: Bug
Components: User Interface, WSRP integration
Affects Versions: 3.0.0-Beta04
Reporter: Chris Laprun
Fix For: 3.0.0-CR01
There are several issues at work here, so this JIRA issue might end up being split into several once the problem is analyzed.
1. Dragging portlets in the edit page mode sometimes results in an error dialog: The target blockId to update is not found: UIPortalToolPanel. I had noticed this issue previously but it seems to have been addressed but now, it's back with a vengeance! This is mostly noticeable when trying to add WSRP portlets in a page.
2. When the error is displayed, the style used by Portal is somehow changed to another one. See the sequence of attached screenshots.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 2 months