Author: scabanovich
Date: 2011-08-12 16:48:22 -0400 (Fri, 12 Aug 2011)
New Revision: 33864
Added:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/JsLinkAttributeValueLoader.java
Modified:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/FileTagProposalLoader.java
Log:
JBIDE-9538
https://issues.jboss.org/browse/JBIDE-9538
Modified:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/FileTagProposalLoader.java
===================================================================
---
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/FileTagProposalLoader.java 2011-08-12
20:46:53 UTC (rev 33863)
+++
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/FileTagProposalLoader.java 2011-08-12
20:48:22 UTC (rev 33864)
@@ -90,6 +90,15 @@
),
};
+ static TagProposal[] JS_TAG_PROPOSALS = new TagProposal[]{
+ new TagProposal(
+ FACELETS_URI,
+ ITagProposal.EMPTY_PREFIX,
+ "script", //$NON-NLS-1$
+ new JsLinkAttributeValueLoader("src") //$NON-NLS-1$
+ ),
+ };
+
static TagProposal JSP_INCLUDE = new TagProposal(
DropURI.JSP_URI,
"jsp", //$NON-NLS-1$
@@ -157,6 +166,7 @@
}
);
extensionMap.put("css",CSS_TAG_PROPOSALS); //$NON-NLS-1$
+ extensionMap.put("js",JS_TAG_PROPOSALS); //$NON-NLS-1$
extensionMap.put(
"inc", new TagProposal[]{ //$NON-NLS-1$
new TagProposal(
Added:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/JsLinkAttributeValueLoader.java
===================================================================
---
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/JsLinkAttributeValueLoader.java
(rev 0)
+++
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/JsLinkAttributeValueLoader.java 2011-08-12
20:48:22 UTC (rev 33864)
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.jst.jsp.jspeditor.dnd;
+
+import org.jboss.tools.common.model.ui.editors.dnd.AbsoluteFilePathAttributeValueLoader;
+import org.jboss.tools.common.model.ui.editors.dnd.DefaultDropWizardModel;
+import org.jboss.tools.common.model.ui.editors.dnd.IDropWizardModel;
+
+public class JsLinkAttributeValueLoader extends AbsoluteFilePathAttributeValueLoader {
+ static String ATTR_TYPE = "type"; //$NON-NLS-1$
+
+ public JsLinkAttributeValueLoader(String pathAttributeName) {
+ super(pathAttributeName, null, null);
+ }
+
+ public void fillTagAttributes(IDropWizardModel model) {
+ super.fillTagAttributes(model);
+ model.setAttributeValue(ATTR_TYPE, "text/javascript"); //$NON-NLS-1$
+ if(model instanceof DefaultDropWizardModel) {
+ ((DefaultDropWizardModel)model).setPreferable(ATTR_TYPE);
+ }
+ }
+
+}
Property changes on:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/dnd/JsLinkAttributeValueLoader.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain