Changeset 6982
- Timestamp:
- Oct 19, 2015, 9:16:45 AM (7 years ago)
- Location:
- branches/3.6-stable/www
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.6-stable/www/admin/extensions/details.jsp
r6605 r6982 426 426 ProcessResults results = ec.getLastScanResults(); 427 427 FileResults fileResults = results.getResults(file); 428 List<Extension > unsafe = ec.checkUnsafeScriptableUsage(file);428 List<Extension<?>> unsafe = ec.checkUnsafeScriptableUsage(file); 429 429 %> 430 430 <tbody> -
branches/3.6-stable/www/admin/extensions/scan_results.jsp
r6409 r6982 86 86 { 87 87 ExtensionsFile extFile = fileResults.getExtensionsFile(); 88 List<Extension > unsafe = ec.checkUnsafeScriptableUsage(extFile);88 List<Extension<?>> unsafe = ec.checkUnsafeScriptableUsage(extFile); 89 89 String detailsId = Integer.toString(extFile.hashCode()); 90 90 List<String> messages = fileResults.getMessages(); -
branches/3.6-stable/www/admin/extensions/tree.jsp
r6684 r6982 221 221 222 222 List<ExtensionPoint> eps = ef.getObjectsOfClass(ExtensionPoint.class); 223 Collections.sort( eps, Registry.EXTENSIONPOINT_COMPARATOR);223 Collections.sort((List)eps, Registry.EXTENSIONPOINT_COMPARATOR); 224 224 for (ExtensionPoint ep : eps) 225 225 { … … 228 228 229 229 List<Extension> exts = ef.getObjectsOfClass(Extension.class); 230 Collections.sort( exts, Registry.EXTENSION_COMPARATOR);230 Collections.sort((List)exts, Registry.EXTENSION_COMPARATOR); 231 231 String currentGroupId = null; 232 232 JSONObject jsonGroup = null; -
branches/3.6-stable/www/admin/extensions/wizard.jsp
r6409 r6982 84 84 { 85 85 if (xtFile.getFile() == null) continue; // We skip internal extensions/plug-ins files 86 List<Extension > unsafeExtensions = ec.checkUnsafeScriptableUsage(xtFile);86 List<Extension<?>> unsafeExtensions = ec.checkUnsafeScriptableUsage(xtFile); 87 87 88 88 About about = xtFile.getAbout(); -
branches/3.6-stable/www/plugins/net/sf/basedb/plugins/executor/external_plugin_parameters.jsp
r6621 r6982 50 50 import="java.util.Iterator" 51 51 import="java.util.List" 52 import="java.util.Map" 53 import="org.jdom.Element" 52 import="java.util.Map" 54 53 import="org.json.simple.JSONArray" 55 54 import="org.json.simple.JSONObject"
Note: See TracChangeset
for help on using the changeset viewer.