[jira] Commented: (SHALE-444) Eclipse Plugin

2007-06-01 Thread Ryan Wynn (JIRA)

[ 
https://issues.apache.org/struts/browse/SHALE-444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_41161
 ] 

Ryan Wynn commented on SHALE-444:
-

md5sum - b038c63fced4b25024c5d41f995296e9


 Eclipse Plugin
 --

 Key: SHALE-444
 URL: https://issues.apache.org/struts/browse/SHALE-444
 Project: Shale
  Issue Type: New Feature
  Components: Clay
 Environment: Any environment supported by Eclipse
Reporter: Ryan Wynn
 Attachments: shale-clay-plugin-src.zip


 Provide a clay plugin for eclipse.  Create a visual editor targeted towards 
 creating/maintaining clay component metadata.  Support autodetection of clay 
 component definitions in the workspace.  Allow component extension through 
 drag and drop from a component palette.  Provide autocompletion of managed 
 bean names and methods.  Support both visual and text modes.
   

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



[jira] Commented: (SHALE-444) Eclipse Plugin

2007-05-29 Thread Hermod Opstvedt (JIRA)

[ 
https://issues.apache.org/struts/browse/SHALE-444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_41132
 ] 

Hermod Opstvedt commented on SHALE-444:
---

Here are som bug fixes:

AttributesMetadataCellModifier.java

Lines 75-83:
case 2:
stringValue = attribute.getBindingType();
choices = metadataComponent.getChoices(property);
i = choices.length - 1;
+   //StringValue can be null
-   while (!stringValue.equals(choices[i])  i  0)
+   while (stringValue!=null  
!stringValue.equals(choices[i])  i  0)
--i;
result = new Integer(i);
break;

AttributesMetadataComponent.java

Lines 405-413
+// Current can be null
-while (current.getExtends() != null) {
+while (current!=null  current.getExtends() != null) {

current = (ComponentBean) 
model.getConfig(project).getDisplayElements().get(current.getExtends());
+// Current can be null
-if (current.getAttributes() != null) {
+if (current != null  current.getAttributes() != null) {
attributes.addAll(current.getAttributes().keySet());
}

}


 Eclipse Plugin
 --

 Key: SHALE-444
 URL: https://issues.apache.org/struts/browse/SHALE-444
 Project: Shale
  Issue Type: New Feature
  Components: Clay
 Environment: Any environment supported by Eclipse
Reporter: Ryan Wynn
 Attachments: shale-clay-plugin-src.zip


 Provide a clay plugin for eclipse.  Create a visual editor targeted towards 
 creating/maintaining clay component metadata.  Support autodetection of clay 
 component definitions in the workspace.  Allow component extension through 
 drag and drop from a component palette.  Provide autocompletion of managed 
 bean names and methods.  Support both visual and text modes.
   

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



[jira] Commented: (SHALE-444) Eclipse Plugin

2007-05-26 Thread Henri Yandell (JIRA)

[ 
https://issues.apache.org/struts/browse/SHALE-444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_41117
 ] 

Henri Yandell commented on SHALE-444:
-


Sadly both of you are right. The Incubator stuff currently says a grant is 
needed, and the way of thinking seems to be that it shouldn't.

Am talking to legal about getting this sorted.

 Eclipse Plugin
 --

 Key: SHALE-444
 URL: https://issues.apache.org/struts/browse/SHALE-444
 Project: Shale
  Issue Type: New Feature
  Components: Clay
 Environment: Any environment supported by Eclipse
Reporter: Ryan Wynn
 Attachments: shale-clay-plugin-src.zip


 Provide a clay plugin for eclipse.  Create a visual editor targeted towards 
 creating/maintaining clay component metadata.  Support autodetection of clay 
 component definitions in the workspace.  Allow component extension through 
 drag and drop from a component palette.  Provide autocompletion of managed 
 bean names and methods.  Support both visual and text modes.
   

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



[jira] Commented: (SHALE-444) Eclipse Plugin

2007-05-22 Thread Brett Porter (JIRA)

[ 
https://issues.apache.org/struts/browse/SHALE-444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_41094
 ] 

Brett Porter commented on SHALE-444:


The software grant is certainly worth doing for good measure, though I'm not 
sure it is required if an iCLA is already on file for all past contributors. 
Reading the IP template seems to indicate one is needed, but AFAICT the 
terminology in the icla and the grant are the same (so the grant would just be 
for when the authors may or may not have a CLA on file, or just as an added 
measure of assurance to make the paper trail clearer).

 Eclipse Plugin
 --

 Key: SHALE-444
 URL: https://issues.apache.org/struts/browse/SHALE-444
 Project: Shale
  Issue Type: New Feature
  Components: Clay
 Environment: Any environment supported by Eclipse
Reporter: Ryan Wynn
 Attachments: shale-clay-plugin-src.zip


 Provide a clay plugin for eclipse.  Create a visual editor targeted towards 
 creating/maintaining clay component metadata.  Support autodetection of clay 
 component definitions in the workspace.  Allow component extension through 
 drag and drop from a component palette.  Provide autocompletion of managed 
 bean names and methods.  Support both visual and text modes.
   

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



[jira] Commented: (SHALE-444) Eclipse Plugin

2007-05-11 Thread Hermod Opstvedt (JIRA)

[ 
https://issues.apache.org/struts/browse/SHALE-444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_40964
 ] 

Hermod Opstvedt commented on SHALE-444:
---

Wow - We have been waiting for this one for a long time - I'll be all over it 
in a couple of minutes.

 Eclipse Plugin
 --

 Key: SHALE-444
 URL: https://issues.apache.org/struts/browse/SHALE-444
 Project: Shale
  Issue Type: New Feature
  Components: Clay
 Environment: Any environment supported by Eclipse
Reporter: Ryan Wynn
 Attachments: shale-clay-plugin-src.zip


 Provide a clay plugin for eclipse.  Create a visual editor targeted towards 
 creating/maintaining clay component metadata.  Support autodetection of clay 
 component definitions in the workspace.  Allow component extension through 
 drag and drop from a component palette.  Provide autocompletion of managed 
 bean names and methods.  Support both visual and text modes.
   

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



[jira] Commented: (SHALE-444) Eclipse Plugin

2007-05-11 Thread Wendy Smoak (JIRA)

[ 
https://issues.apache.org/struts/browse/SHALE-444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_40969
 ] 

Wendy Smoak commented on SHALE-444:
---

Thanks, Ryan!

Because this is a substantial contribution that was not developed within the 
ASF's source control system and on our public mailing lists, it will need to 
go through the Incubator IP clearance process, as described here:  
http://incubator.apache.org/ip-clearance/index.html

A quick read through indicates that we need two more things from Ryan...
  1) a checksum (md5 hash) for the zip file
  2) a software grant - http://www.apache.org/licenses/software-grant.txt

There were license headers on the few files I looked at, and Ryan already has 
an iCLA on file.



 Eclipse Plugin
 --

 Key: SHALE-444
 URL: https://issues.apache.org/struts/browse/SHALE-444
 Project: Shale
  Issue Type: New Feature
  Components: Clay
 Environment: Any environment supported by Eclipse
Reporter: Ryan Wynn
 Attachments: shale-clay-plugin-src.zip


 Provide a clay plugin for eclipse.  Create a visual editor targeted towards 
 creating/maintaining clay component metadata.  Support autodetection of clay 
 component definitions in the workspace.  Allow component extension through 
 drag and drop from a component palette.  Provide autocompletion of managed 
 bean names and methods.  Support both visual and text modes.
   

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