ICEfaces
  1. ICEfaces
  2. ICE-7486

Review ACE TLD documentation for quality and correctness

    Details

    • Type: Improvement Improvement
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 2.1-Beta2
    • Fix Version/s: 3.0
    • Component/s: ACE-Components
    • Labels:
      None
    • Environment:
      ICEfaces 3 ACE components
    • Affects:
      Documentation (User Guide, Ref. Guide, etc.)

      Description

      The ACE TLD documentation requires a general edit/review pass to improve overall quality and usefulness, and to ensure correctness.
      ---

      Let's make sure that our documentation is truly useful. Some of it leaves a lot to be desired. I'll provide examples in ace:tooltip since I ran across it randomly.

      @Property(tlddoc="Boolean value that makes tooltip global, which uses title attributes of elements in page to create the tooltip.", defaultValue="false")
      private boolean global;

      No idea what this means. Does global place the tooltip directly inside the body? Or it will somehow be used on every element in the page that has a title attribute?


      @Property(tlddoc="The mouse event that the tooltip will be displayed (default mouseover)", defaultValue="mouseover")
      private String showEvent;

      @Property(tlddoc="The mouse event that the tooltip will be closed (default mouseout)", defaultValue="mouseout")
      private String hideEvent;

      What are all possible values?


      @Property(tlddoc="The delay time of the tooltip display in milliseconds (default 140)", defaultValue="140")
      private int showDelay;

      @Property(tlddoc="The delay time of the tooltip hide in milliseconds (default 0)", defaultValue="0")
      private int hideDelay;

      @Property(tlddoc="Duration to display the show effect (default 500)", defaultValue="500")
      private int showEffectLength;

      @Property(tlddoc="Duration to display the hide effect (default 500)", defaultValue="500")
      private int hideEffectLength;

      The first two explain that the time is in milliseconds but the last two don't.


      @Property(name="for", tlddoc="Specifies the id of the component that will display the tooltip")
      private String forValue;

      @Property(tlddoc="Specifies the id of the element that will display the tooltip")
      private String forElement;

      I'm not sure what the difference between these is. Is forElement an alternative to for, where I can display the tooltip on an element instead of a component? What is the precedence between the two?

        Activity

        Ken Fyten created issue -
        Ken Fyten made changes -
        Field Original Value New Value
        Salesforce Case []
        Fix Version/s 2.1 [ 10241 ]
        Affects [Documentation (User Guide, Ref. Guide, etc.)]
        Assignee Mark Collette [ mark.collette ]
        Hide
        Ken Fyten added a comment -

        All of our @Component and @Property annotations should have real tlddoc entries specified, but some of them don't. We should get around to that before the release, since we can't do it later like the wiki. I just searched for missing @Component tlddoc, and didn't even try for @Property.

        @Component(
        tagName = "cellEditor",
        componentClass = "org.icefaces.ace.component.celleditor.CellEditor",
        generatedClass = "org.icefaces.ace.component.celleditor.CellEditorBase",
        rendererClass = "org.icefaces.ace.component.celleditor.CellEditorRenderer",
        extendsClass = "javax.faces.component.UIComponentBase",
        componentType = "org.icefaces.ace.component.CellEditor",
        rendererType = "org.icefaces.ace.component.CellEditorRenderer",
        componentFamily = "org.icefaces.ace.CellEditor",
        tlddoc = ""

        @Component(
        tagName = "dataTable",
        componentClass = "org.icefaces.ace.component.datatable.DataTable",
        generatedClass = "org.icefaces.ace.component.datatable.DataTableBase",
        rendererClass = "org.icefaces.ace.component.datatable.DataTableRenderer",
        extendsClass = "javax.faces.component.UIData",
        componentType = "org.icefaces.ace.component.DataTable",
        rendererType = "org.icefaces.ace.component.DataTableRenderer",
        componentFamily = "org.icefaces.ace.DataTable",
        tlddoc = ""

        @Component(
        tagName = "expansionToggler",
        componentClass = "org.icefaces.ace.component.expansiontoggler.ExpansionToggler",
        generatedClass = "org.icefaces.ace.component.expansiontoggler.ExpansionTogglerBase",
        rendererClass = "org.icefaces.ace.component.expansiontoggler.ExpansionTogglerRenderer",
        extendsClass = "javax.faces.component.UIComponentBase",
        componentType = "org.icefaces.ace.component.ExpansionToggler",
        rendererType = "org.icefaces.ace.component.ExpansionTogglerRenderer",
        componentFamily = "org.icefaces.ace.ExpansionToggler",
        tlddoc = ""

        @Component(
        tagName = "linkButton",
        componentClass = "org.icefaces.ace.component.linkbutton.LinkButton",
        rendererClass = "org.icefaces.ace.component.linkbutton.LinkButtonRenderer",
        generatedClass = "org.icefaces.ace.component.linkbutton.LinkButtonBase",
        extendsClass = "javax.faces.component.UICommand",
        componentType = "org.icefaces.ace.component.LinkButton",
        rendererType = "org.icefaces.ace.component.LinkButtonRenderer",
        componentFamily = "org.icefaces.ace.LinkButton"
        )

        @Component(
        tagName = "row",
        componentClass = "org.icefaces.ace.component.row.Row",
        generatedClass = "org.icefaces.ace.component.row.RowBase",
        extendsClass = "javax.faces.component.UIComponentBase",
        componentType = "org.icefaces.ace.component.Row",
        componentFamily = "org.icefaces.ace.Row",
        tlddoc = ""

        @Component(
        tagName = "rowEditor",
        componentClass = "org.icefaces.ace.component.roweditor.RowEditor",
        generatedClass = "org.icefaces.ace.component.roweditor.RowEditorBase",
        rendererClass = "org.icefaces.ace.component.roweditor.RowEditorRenderer",
        extendsClass = "javax.faces.component.UIComponentBase",
        componentType = "org.icefaces.ace.component.RowEditor",
        rendererType = "org.icefaces.ace.component.RowEditorRenderer",
        componentFamily = "org.icefaces.ace.RowEditor",
        tlddoc = ""

        @Component(
        tagName = "rowExpansion",
        componentClass = "org.icefaces.ace.component.rowexpander.RowExpander",
        generatedClass = "org.icefaces.ace.component.rowexpander.RowExpanderBase",
        extendsClass = "javax.faces.component.UIComponentBase",
        componentType = "org.icefaces.ace.component.RowExpander",
        componentFamily = "org.icefaces.ace.RowExpander",
        tlddoc = ""

        @Component(
        tagName = "panelExpansion",
        componentClass = "org.icefaces.ace.component.rowpanelexpander.RowPanelExpander",
        generatedClass = "org.icefaces.ace.component.rowpanelexpander.RowPanelExpanderBase",
        extendsClass = "javax.faces.component.UIColumn",
        componentType = "org.icefaces.ace.component.RowPanelExpander",
        componentFamily = "org.icefaces.ace.RowPanelExpander",
        tlddoc = ""

        @Component(
        tagName = "tableConfigPanel",
        extendsClass = "javax.faces.component.UIComponentBase",
        rendererClass = "org.icefaces.ace.component.tableconfigpanel.TableConfigPanelRenderer",
        rendererType = "org.icefaces.ace.component.TableConfigPanelRenderer",
        generatedClass = "org.icefaces.ace.component.tableconfigpanel.TableConfigPanelBase",
        componentType = "org.icefaces.ace.component.TableConfigPanel",
        componentClass = "org.icefaces.ace.component.tableconfigpanel.TableConfigPanel",
        componentFamily = "org.icefaces.ace.TableConfigPanel",
        tlddoc = "")

        Show
        Ken Fyten added a comment - All of our @Component and @Property annotations should have real tlddoc entries specified, but some of them don't. We should get around to that before the release, since we can't do it later like the wiki. I just searched for missing @Component tlddoc, and didn't even try for @Property. @Component( tagName = "cellEditor", componentClass = "org.icefaces.ace.component.celleditor.CellEditor", generatedClass = "org.icefaces.ace.component.celleditor.CellEditorBase", rendererClass = "org.icefaces.ace.component.celleditor.CellEditorRenderer", extendsClass = "javax.faces.component.UIComponentBase", componentType = "org.icefaces.ace.component.CellEditor", rendererType = "org.icefaces.ace.component.CellEditorRenderer", componentFamily = "org.icefaces.ace.CellEditor", tlddoc = "" @Component( tagName = "dataTable", componentClass = "org.icefaces.ace.component.datatable.DataTable", generatedClass = "org.icefaces.ace.component.datatable.DataTableBase", rendererClass = "org.icefaces.ace.component.datatable.DataTableRenderer", extendsClass = "javax.faces.component.UIData", componentType = "org.icefaces.ace.component.DataTable", rendererType = "org.icefaces.ace.component.DataTableRenderer", componentFamily = "org.icefaces.ace.DataTable", tlddoc = "" @Component( tagName = "expansionToggler", componentClass = "org.icefaces.ace.component.expansiontoggler.ExpansionToggler", generatedClass = "org.icefaces.ace.component.expansiontoggler.ExpansionTogglerBase", rendererClass = "org.icefaces.ace.component.expansiontoggler.ExpansionTogglerRenderer", extendsClass = "javax.faces.component.UIComponentBase", componentType = "org.icefaces.ace.component.ExpansionToggler", rendererType = "org.icefaces.ace.component.ExpansionTogglerRenderer", componentFamily = "org.icefaces.ace.ExpansionToggler", tlddoc = "" @Component( tagName = "linkButton", componentClass = "org.icefaces.ace.component.linkbutton.LinkButton", rendererClass = "org.icefaces.ace.component.linkbutton.LinkButtonRenderer", generatedClass = "org.icefaces.ace.component.linkbutton.LinkButtonBase", extendsClass = "javax.faces.component.UICommand", componentType = "org.icefaces.ace.component.LinkButton", rendererType = "org.icefaces.ace.component.LinkButtonRenderer", componentFamily = "org.icefaces.ace.LinkButton" ) @Component( tagName = "row", componentClass = "org.icefaces.ace.component.row.Row", generatedClass = "org.icefaces.ace.component.row.RowBase", extendsClass = "javax.faces.component.UIComponentBase", componentType = "org.icefaces.ace.component.Row", componentFamily = "org.icefaces.ace.Row", tlddoc = "" @Component( tagName = "rowEditor", componentClass = "org.icefaces.ace.component.roweditor.RowEditor", generatedClass = "org.icefaces.ace.component.roweditor.RowEditorBase", rendererClass = "org.icefaces.ace.component.roweditor.RowEditorRenderer", extendsClass = "javax.faces.component.UIComponentBase", componentType = "org.icefaces.ace.component.RowEditor", rendererType = "org.icefaces.ace.component.RowEditorRenderer", componentFamily = "org.icefaces.ace.RowEditor", tlddoc = "" @Component( tagName = "rowExpansion", componentClass = "org.icefaces.ace.component.rowexpander.RowExpander", generatedClass = "org.icefaces.ace.component.rowexpander.RowExpanderBase", extendsClass = "javax.faces.component.UIComponentBase", componentType = "org.icefaces.ace.component.RowExpander", componentFamily = "org.icefaces.ace.RowExpander", tlddoc = "" @Component( tagName = "panelExpansion", componentClass = "org.icefaces.ace.component.rowpanelexpander.RowPanelExpander", generatedClass = "org.icefaces.ace.component.rowpanelexpander.RowPanelExpanderBase", extendsClass = "javax.faces.component.UIColumn", componentType = "org.icefaces.ace.component.RowPanelExpander", componentFamily = "org.icefaces.ace.RowPanelExpander", tlddoc = "" @Component( tagName = "tableConfigPanel", extendsClass = "javax.faces.component.UIComponentBase", rendererClass = "org.icefaces.ace.component.tableconfigpanel.TableConfigPanelRenderer", rendererType = "org.icefaces.ace.component.TableConfigPanelRenderer", generatedClass = "org.icefaces.ace.component.tableconfigpanel.TableConfigPanelBase", componentType = "org.icefaces.ace.component.TableConfigPanel", componentClass = "org.icefaces.ace.component.tableconfigpanel.TableConfigPanel", componentFamily = "org.icefaces.ace.TableConfigPanel", tlddoc = "")
        Ken Fyten made changes -
        Fix Version/s 3.1 [ 10312 ]
        Fix Version/s 3.0 [ 10241 ]
        Ken Fyten made changes -
        Salesforce Case []
        Fix Version/s 3.0 [ 10241 ]
        Fix Version/s 3.1 [ 10312 ]
        Assignee Priority P2
        Ken Fyten made changes -
        Salesforce Case []
        Assignee Priority P2 P1
        Assignee Mark Collette [ mark.collette ] Ken Fyten [ ken.fyten ]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27067 Fri Dec 23 13:06:53 MST 2011 ken.fyten ICE-7486 - Improved TLD documentation for ace:sliderEntry.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/sliderentry/SliderEntryMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27069 Fri Dec 23 14:02:53 MST 2011 ken.fyten ICE-7486 - Improved TLD documentation for ace:sliderEntry.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/sliderentry/SliderEntryMeta.java
        Hide
        Ken Fyten added a comment -

        sliderEntry is completed.

        Show
        Ken Fyten added a comment - sliderEntry is completed.
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27169 Thu Jan 12 10:31:53 MST 2012 art.zambrano ICE-7486 tlddoc improvements
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/contextmenu/ContextMenuMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/animation/AnimationBehaviorHandlerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/dataexporter/DataExporterMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/pushbutton/PushButtonMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/checkboxbutton/CheckboxButtonMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/linkbutton/LinkButtonMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/ajax/AjaxBehaviorHandlerMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27171 Thu Jan 12 12:23:39 MST 2012 art.zambrano ICE-7486 tlddoc improvements
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/menuitem/MenuItemMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/menu/MenuMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/contextmenu/ContextMenuMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/menubar/MenuBarMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/menubutton/MenuButtonMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27184 Fri Jan 13 09:18:33 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/accordion/AccordionMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/accordion/AccordionPaneMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27185 Fri Jan 13 10:20:35 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/accordion/AccordionPaneMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/pushbutton/PushButtonMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/checkboxbutton/CheckboxButtonMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/linkbutton/LinkButtonMeta.java
        Hide
        yip.ng added a comment -

        accordion and accordionPane done.

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\accordion\AccordionMeta.java
        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\accordion\AccordionPaneMeta.java
        Completed: At revision: 27184

        Show
        yip.ng added a comment - accordion and accordionPane done. Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\accordion\AccordionMeta.java Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\accordion\AccordionPaneMeta.java Completed: At revision: 27184
        Hide
        yip.ng added a comment -

        checkboxbutton, linkbutton and pushbutton done.

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\checkboxbutton\CheckboxButtonMeta.java
        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\linkbutton\LinkButtonMeta.java
        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\pushbutton\PushButtonMeta.java
        Completed: At revision: 27185

        Show
        yip.ng added a comment - checkboxbutton, linkbutton and pushbutton done. Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\checkboxbutton\CheckboxButtonMeta.java Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\linkbutton\LinkButtonMeta.java Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\pushbutton\PushButtonMeta.java Completed: At revision: 27185
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27191 Fri Jan 13 14:39:58 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/dialog/DialogMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/confirmationdialog/ConfirmationDialogMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27194 Fri Jan 13 16:30:47 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/datetimeentry/DateTimeEntryMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27195 Fri Jan 13 16:40:43 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/notificationpanel/NotificationPanelMeta.java
        Hide
        yip.ng added a comment -

        confirmationdialog and dialog done.

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\confirmationdialog\ConfirmationDialogMeta.java
        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\dialog\DialogMeta.java
        Completed: At revision: 27191

        Show
        yip.ng added a comment - confirmationdialog and dialog done. Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\confirmationdialog\ConfirmationDialogMeta.java Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\dialog\DialogMeta.java Completed: At revision: 27191
        Hide
        yip.ng added a comment -

        datetimeentry done.

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\datetimeentry\DateTimeEntryMeta.java
        Completed: At revision: 27194

        Show
        yip.ng added a comment - datetimeentry done. Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\datetimeentry\DateTimeEntryMeta.java Completed: At revision: 27194
        Hide
        yip.ng added a comment -

        notificationpanel done.

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\notificationpanel\NotificationPanelMeta.java
        Completed: At revision: 27195

        Show
        yip.ng added a comment - notificationpanel done. Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\notificationpanel\NotificationPanelMeta.java Completed: At revision: 27195
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27202 Mon Jan 16 11:45:37 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/tooltip/TooltipMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27204 Mon Jan 16 13:21:52 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/progressbar/ProgressBarMeta.java
        Hide
        yip.ng added a comment -

        Tooltip done.

        Revision: 27202


        Modified : /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/tooltip/TooltipMeta.java

        Show
        yip.ng added a comment - Tooltip done. Revision: 27202 Modified : /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/tooltip/TooltipMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27207 Mon Jan 16 14:26:43 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/resizable/ResizableMeta.java
        Hide
        yip.ng added a comment -

        Progress bar done.

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\progressbar\ProgressBarMeta.java
        Completed: At revision: 27204

        Show
        yip.ng added a comment - Progress bar done. Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\progressbar\ProgressBarMeta.java Completed: At revision: 27204
        Hide
        yip.ng added a comment -

        Resizable done.

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\resizable\ResizableMeta.java
        Completed: At revision: 27207

        Show
        yip.ng added a comment - Resizable done. Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\resizable\ResizableMeta.java Completed: At revision: 27207
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27214 Tue Jan 17 10:08:37 MST 2012 art.zambrano ICE-7486 tlddoc improvements
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/menuitem/MenuItemMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/menu/MenuMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/contextmenu/ContextMenuMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/menubar/MenuBarMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/animation/AnimationBehaviorHandlerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/dataexporter/DataExporterMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/menubutton/MenuButtonMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/ajax/AjaxBehaviorHandlerMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27218 Tue Jan 17 12:21:35 MST 2012 art.zambrano ICE-7486 tlddoc improvements
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/panel/PanelMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/submenu/SubmenuMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/excludefromexport/ExcludeFromExportMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/maskedentry/MaskedEntryMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/dnd/DraggableMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/dnd/DroppableMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/printer/PrinterMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27231 Tue Jan 17 23:33:20 MST 2012 art.zambrano ICE-7486 tlddoc improvements
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/panel/PanelMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/excludefromexport/ExcludeFromExportMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/maskedentry/MaskedEntryMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/dnd/DraggableMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/dnd/DroppableMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27272 Thu Jan 19 16:37:05 MST 2012 art.zambrano ICE-7486 tlddoc improvements
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/confirmationdialog/ConfirmationDialogMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/contextmenu/ContextMenuMeta.java
        Hide
        Ken Fyten added a comment -

        As of svn rvn# 27274 the following issues remain:

        Nils:
        cellEditor, missing description, link to Wiki page
        column, missing link to Wiki page
        columnGroup, missing link to Wiki page
        dataTable, description is from h:dataTable, needs to be replaced, also add Wiki link
        expansionToggler, missing desc, link to wiki page
        panelExpansion, missing description and wiki page link.
        row, missing description and wiki page link.
        rowEditor, missing description and wiki page link.
        rowExpansion, missing description and wiki page link.
        tableConfigPanel, missing description and wiki page link.

        Mark:
        fileEntry, missing link to wiki page, formatting for description
        tabPane, missing desc formatting and wiki page link.
        tabSet, missing desc formatting and wiki page link.
        tabSetProxy, missing wiki page link.

        Yip:
        linkButton, improper punctuation on target attribute.
        maskedEntry, missing desc.for pass through attributes

        Show
        Ken Fyten added a comment - As of svn rvn# 27274 the following issues remain: Nils: cellEditor, missing description, link to Wiki page column, missing link to Wiki page columnGroup, missing link to Wiki page dataTable, description is from h:dataTable, needs to be replaced, also add Wiki link expansionToggler, missing desc, link to wiki page panelExpansion, missing description and wiki page link. row, missing description and wiki page link. rowEditor, missing description and wiki page link. rowExpansion, missing description and wiki page link. tableConfigPanel, missing description and wiki page link. Mark: fileEntry, missing link to wiki page, formatting for description tabPane, missing desc formatting and wiki page link. tabSet, missing desc formatting and wiki page link. tabSetProxy, missing wiki page link. Yip: linkButton, improper punctuation on target attribute. maskedEntry, missing desc.for pass through attributes
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27284 Fri Jan 20 12:41:13 MST 2012 nils.lundquist ICE-7486 - Completed TLD documentation. Added Wiki links and missing descriptions.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/tableconfigpanel/TableConfigPanelMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/celleditor/CellEditorMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/row/RowMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/columngroup/ColumnGroupMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/sliderentry/SliderEntryMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/roweditor/RowEditorMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/column/ColumnMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/rowexpander/RowExpanderMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/datatable/DataTableMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/expansiontoggler/ExpansionTogglerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/rowpanelexpander/RowPanelExpanderMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27288 Fri Jan 20 13:28:49 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/linkbutton/LinkButtonMeta.java
        Hide
        Nils Lundquist added a comment -

        Completed documentation changes. Added wiki links and missing descriptions.

        Show
        Nils Lundquist added a comment - Completed documentation changes. Added wiki links and missing descriptions.
        Hide
        yip.ng added a comment -

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\linkbutton\LinkButtonMeta.java
        Completed: At revision: 27288

        Show
        yip.ng added a comment - Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\linkbutton\LinkButtonMeta.java Completed: At revision: 27288
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27295 Fri Jan 20 14:56:34 MST 2012 yip.ng ICE-7486: Review ACE TLD documentation for quality and correctness.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/maskedentry/MaskedEntryMeta.java
        Hide
        yip.ng added a comment -

        Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\maskedentry\MaskedEntryMeta.java
        Completed: At revision: 27295

        Show
        yip.ng added a comment - Modified: C:\svn\ossrepo\icefaces3\trunk\icefaces\ace\component\src\org\icefaces\ace\component\maskedentry\MaskedEntryMeta.java Completed: At revision: 27295
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27300 Fri Jan 20 18:56:18 MST 2012 mark.collette ICE-7486 : Review ACE TLD documentation for quality and correctness
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/fileentry/FileEntryMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27301 Fri Jan 20 18:57:02 MST 2012 mark.collette ICE-7486 : Review ACE TLD documentation for quality and correctness
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/tabset/TabPaneMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/tabset/TabSetProxyMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/tabset/TabSetMeta.java
        Hide
        Mark Collette added a comment -

        FileEntry done.
        Subversion 27300

        TabSet, TabPane, TabSetProxy done.
        Subversion 27301

        Show
        Mark Collette added a comment - FileEntry done. Subversion 27300 TabSet, TabPane, TabSetProxy done. Subversion 27301
        Ken Fyten made changes -
        Salesforce Case []
        Assignee Priority P1
        Security Private [ 10001 ]
        Ken Fyten made changes -
        Status Open [ 1 ] Resolved [ 5 ]
        Resolution Fixed [ 1 ]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27504 Mon Jan 30 13:06:44 MST 2012 art.zambrano ICE-7486 tlddoc corrections
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/resizable/ResizableMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27522 Mon Jan 30 15:35:51 MST 2012 ken.fyten ICE-7486 tlddoc corrections
        Files Changed
        Commit graph MODIFY /icefaces3/tags/icefaces-3.0.0/icefaces/ace/component/src/org/icefaces/ace/component/resizable/ResizableMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27597 Wed Feb 01 16:07:20 MST 2012 art.zambrano ICE-7486 tlddoc corrections
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/submenu/SubmenuMeta.java
        Ken Fyten made changes -
        Status Resolved [ 5 ] Closed [ 6 ]

          People

          • Assignee:
            Ken Fyten
            Reporter:
            Ken Fyten
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: