Automated build for v0.01
This commit is contained in:
30
lib/dijit/templates/Calendar.html
Normal file
30
lib/dijit/templates/Calendar.html
Normal file
@ -0,0 +1,30 @@
|
||||
<div class="dijitCalendarContainer dijitInline" role="presentation" aria-labelledby="${id}_mddb ${id}_year">
|
||||
<div class="dijitReset dijitCalendarMonthContainer" role="presentation">
|
||||
<div class='dijitReset dijitCalendarArrow dijitCalendarDecrementArrow' data-dojo-attach-point="decrementMonth">
|
||||
<img src="${_blankGif}" alt="" class="dijitCalendarIncrementControl dijitCalendarDecrease" role="presentation"/>
|
||||
<span data-dojo-attach-point="decreaseArrowNode" class="dijitA11ySideArrow">-</span>
|
||||
</div>
|
||||
<div class='dijitReset dijitCalendarArrow dijitCalendarIncrementArrow' data-dojo-attach-point="incrementMonth">
|
||||
<img src="${_blankGif}" alt="" class="dijitCalendarIncrementControl dijitCalendarIncrease" role="presentation"/>
|
||||
<span data-dojo-attach-point="increaseArrowNode" class="dijitA11ySideArrow">+</span>
|
||||
</div>
|
||||
<div data-dojo-attach-point="monthNode" class="dijitInline"></div>
|
||||
</div>
|
||||
<table cellspacing="0" cellpadding="0" role="grid" data-dojo-attach-point="gridNode">
|
||||
<thead>
|
||||
<tr role="row">
|
||||
${!dayCellsHtml}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody data-dojo-attach-point="dateRowsNode" data-dojo-attach-event="ondijitclick: _onDayClick" class="dijitReset dijitCalendarBodyContainer">
|
||||
${!dateRowsHtml}
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="dijitReset dijitCalendarYearContainer" role="presentation">
|
||||
<div class="dijitCalendarYearLabel">
|
||||
<span data-dojo-attach-point="previousYearLabelNode" class="dijitInline dijitCalendarPreviousYear" role="button"></span>
|
||||
<span data-dojo-attach-point="currentYearLabelNode" class="dijitInline dijitCalendarSelectedYear" role="button" id="${id}_year"></span>
|
||||
<span data-dojo-attach-point="nextYearLabelNode" class="dijitInline dijitCalendarNextYear" role="button"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
9
lib/dijit/templates/CheckedMenuItem.html
Normal file
9
lib/dijit/templates/CheckedMenuItem.html
Normal file
@ -0,0 +1,9 @@
|
||||
<tr class="dijitReset" data-dojo-attach-point="focusNode" role="${role}" tabIndex="-1" aria-checked="${checked}">
|
||||
<td class="dijitReset dijitMenuItemIconCell" role="presentation">
|
||||
<span class="dijitInline dijitIcon dijitMenuItemIcon dijitCheckedMenuItemIcon" data-dojo-attach-point="iconNode"></span>
|
||||
<span class="dijitMenuItemIconChar dijitCheckedMenuItemIconChar">${!checkedChar}</span>
|
||||
</td>
|
||||
<td class="dijitReset dijitMenuItemLabel" colspan="2" data-dojo-attach-point="containerNode,labelNode,textDirNode"></td>
|
||||
<td class="dijitReset dijitMenuItemAccelKey" style="display: none" data-dojo-attach-point="accelKeyNode"></td>
|
||||
<td class="dijitReset dijitMenuArrowCell" role="presentation"> </td>
|
||||
</tr>
|
5
lib/dijit/templates/ColorPalette.html
Normal file
5
lib/dijit/templates/ColorPalette.html
Normal file
@ -0,0 +1,5 @@
|
||||
<div class="dijitInline dijitColorPalette" role="grid">
|
||||
<table data-dojo-attach-point="paletteTableNode" class="dijitPaletteTable" cellSpacing="0" cellPadding="0" role="presentation">
|
||||
<tbody data-dojo-attach-point="gridNode"></tbody>
|
||||
</table>
|
||||
</div>
|
12
lib/dijit/templates/Dialog.html
Normal file
12
lib/dijit/templates/Dialog.html
Normal file
@ -0,0 +1,12 @@
|
||||
<div class="dijitDialog" role="dialog" aria-labelledby="${id}_title">
|
||||
<div data-dojo-attach-point="titleBar" class="dijitDialogTitleBar">
|
||||
<span data-dojo-attach-point="titleNode" class="dijitDialogTitle" id="${id}_title"
|
||||
role="heading" level="1"></span>
|
||||
<span data-dojo-attach-point="closeButtonNode" class="dijitDialogCloseIcon" data-dojo-attach-event="ondijitclick: onCancel" title="${buttonCancel}" role="button" tabindex="-1">
|
||||
<span data-dojo-attach-point="closeText" class="closeText" title="${buttonCancel}">x</span>
|
||||
</span>
|
||||
</div>
|
||||
<div data-dojo-attach-point="containerNode" class="dijitDialogPaneContent"></div>
|
||||
${!actionBarTemplate}
|
||||
</div>
|
||||
|
16
lib/dijit/templates/Fieldset.html
Normal file
16
lib/dijit/templates/Fieldset.html
Normal file
@ -0,0 +1,16 @@
|
||||
<fieldset>
|
||||
<legend data-dojo-attach-event="ondijitclick:_onTitleClick, onkeydown:_onTitleKey"
|
||||
data-dojo-attach-point="titleBarNode, titleNode">
|
||||
<span data-dojo-attach-point="arrowNode" class="dijitInline dijitArrowNode" role="presentation"></span
|
||||
><span data-dojo-attach-point="arrowNodeInner" class="dijitArrowNodeInner"></span
|
||||
><span data-dojo-attach-point="titleNode, focusNode" class="dijitFieldsetLegendNode" id="${id}_titleNode"></span>
|
||||
</legend>
|
||||
<div class="dijitFieldsetContentOuter" data-dojo-attach-point="hideNode" role="presentation">
|
||||
<div class="dijitReset" data-dojo-attach-point="wipeNode" role="presentation">
|
||||
<div class="dijitFieldsetContentInner" data-dojo-attach-point="containerNode" role="region"
|
||||
id="${id}_pane" aria-labelledby="${id}_titleNode">
|
||||
<!-- nested divs because wipeIn()/wipeOut() doesn't work right on node w/padding etc. Put padding on inner div. -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
9
lib/dijit/templates/InlineEditBox.html
Normal file
9
lib/dijit/templates/InlineEditBox.html
Normal file
@ -0,0 +1,9 @@
|
||||
<span data-dojo-attach-point="editNode" role="presentation" class="dijitReset dijitInline dijitOffScreen"
|
||||
><span data-dojo-attach-point="editorPlaceholder"></span
|
||||
><span data-dojo-attach-point="buttonContainer"
|
||||
><button data-dojo-type="./form/Button" data-dojo-props="label: '${buttonSave}', 'class': 'saveButton'"
|
||||
data-dojo-attach-point="saveButton" data-dojo-attach-event="onClick:save"></button
|
||||
><button data-dojo-type="./form/Button" data-dojo-props="label: '${buttonCancel}', 'class': 'cancelButton'"
|
||||
data-dojo-attach-point="cancelButton" data-dojo-attach-event="onClick:cancel"></button
|
||||
></span
|
||||
></span>
|
4
lib/dijit/templates/Menu.html
Normal file
4
lib/dijit/templates/Menu.html
Normal file
@ -0,0 +1,4 @@
|
||||
<table class="dijit dijitMenu dijitMenuPassive dijitReset dijitMenuTable" role="menu" tabIndex="${tabIndex}"
|
||||
cellspacing="0">
|
||||
<tbody class="dijitReset" data-dojo-attach-point="containerNode"></tbody>
|
||||
</table>
|
2
lib/dijit/templates/MenuBar.html
Normal file
2
lib/dijit/templates/MenuBar.html
Normal file
@ -0,0 +1,2 @@
|
||||
<div class="dijitMenuBar dijitMenuPassive" data-dojo-attach-point="containerNode" role="menubar" tabIndex="${tabIndex}"
|
||||
></div>
|
4
lib/dijit/templates/MenuBarItem.html
Normal file
4
lib/dijit/templates/MenuBarItem.html
Normal file
@ -0,0 +1,4 @@
|
||||
<div class="dijitReset dijitInline dijitMenuItem dijitMenuItemLabel" data-dojo-attach-point="focusNode"
|
||||
role="menuitem" tabIndex="-1">
|
||||
<span data-dojo-attach-point="containerNode,textDirNode"></span>
|
||||
</div>
|
14
lib/dijit/templates/MenuItem.html
Normal file
14
lib/dijit/templates/MenuItem.html
Normal file
@ -0,0 +1,14 @@
|
||||
<tr class="dijitReset" data-dojo-attach-point="focusNode" role="menuitem" tabIndex="-1">
|
||||
<td class="dijitReset dijitMenuItemIconCell" role="presentation">
|
||||
<span role="presentation" class="dijitInline dijitIcon dijitMenuItemIcon" data-dojo-attach-point="iconNode"></span>
|
||||
</td>
|
||||
<td class="dijitReset dijitMenuItemLabel" colspan="2" data-dojo-attach-point="containerNode,textDirNode"
|
||||
role="presentation"></td>
|
||||
<td class="dijitReset dijitMenuItemAccelKey" style="display: none" data-dojo-attach-point="accelKeyNode"></td>
|
||||
<td class="dijitReset dijitMenuArrowCell" role="presentation">
|
||||
<span data-dojo-attach-point="arrowWrapper" style="visibility: hidden">
|
||||
<span class="dijitInline dijitIcon dijitMenuExpand"></span>
|
||||
<span class="dijitMenuExpandA11y">+</span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
10
lib/dijit/templates/MenuSeparator.html
Normal file
10
lib/dijit/templates/MenuSeparator.html
Normal file
@ -0,0 +1,10 @@
|
||||
<tr class="dijitMenuSeparator" role="separator">
|
||||
<td class="dijitMenuSeparatorIconCell">
|
||||
<div class="dijitMenuSeparatorTop"></div>
|
||||
<div class="dijitMenuSeparatorBottom"></div>
|
||||
</td>
|
||||
<td colspan="3" class="dijitMenuSeparatorLabelCell">
|
||||
<div class="dijitMenuSeparatorTop dijitMenuSeparatorLabel"></div>
|
||||
<div class="dijitMenuSeparatorBottom"></div>
|
||||
</td>
|
||||
</tr>
|
9
lib/dijit/templates/ProgressBar.html
Normal file
9
lib/dijit/templates/ProgressBar.html
Normal file
@ -0,0 +1,9 @@
|
||||
<div class="dijitProgressBar dijitProgressBarEmpty" role="progressbar"
|
||||
><div data-dojo-attach-point="internalProgress" class="dijitProgressBarFull"
|
||||
><div class="dijitProgressBarTile" role="presentation"></div
|
||||
><span style="visibility:hidden"> </span
|
||||
></div
|
||||
><div data-dojo-attach-point="labelNode" class="dijitProgressBarLabel" id="${id}_label"></div
|
||||
><span data-dojo-attach-point="indeterminateHighContrastImage"
|
||||
class="dijitInline dijitProgressBarIndeterminateHighContrastImage"></span
|
||||
></div>
|
17
lib/dijit/templates/TitlePane.html
Normal file
17
lib/dijit/templates/TitlePane.html
Normal file
@ -0,0 +1,17 @@
|
||||
<div>
|
||||
<div data-dojo-attach-event="ondijitclick:_onTitleClick, onkeydown:_onTitleKey"
|
||||
class="dijitTitlePaneTitle" data-dojo-attach-point="titleBarNode" id="${id}_titleBarNode">
|
||||
<div class="dijitTitlePaneTitleFocus" data-dojo-attach-point="focusNode">
|
||||
<span data-dojo-attach-point="arrowNode" class="dijitInline dijitArrowNode" role="presentation"></span
|
||||
><span data-dojo-attach-point="arrowNodeInner" class="dijitArrowNodeInner"></span
|
||||
><span data-dojo-attach-point="titleNode" class="dijitTitlePaneTextNode"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dijitTitlePaneContentOuter" data-dojo-attach-point="hideNode" role="presentation">
|
||||
<div class="dijitReset" data-dojo-attach-point="wipeNode" role="presentation">
|
||||
<div class="dijitTitlePaneContentInner" data-dojo-attach-point="containerNode" role="region" id="${id}_pane" aria-labelledby="${id}_titleBarNode">
|
||||
<!-- nested divs because wipeIn()/wipeOut() doesn't work right on node w/padding etc. Put padding on inner div. -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
4
lib/dijit/templates/Tooltip.html
Normal file
4
lib/dijit/templates/Tooltip.html
Normal file
@ -0,0 +1,4 @@
|
||||
<div class="dijitTooltip dijitTooltipLeft" id="dojoTooltip" data-dojo-attach-event="mouseenter:onMouseEnter,mouseleave:onMouseLeave"
|
||||
><div class="dijitTooltipConnector" data-dojo-attach-point="connectorNode"></div
|
||||
><div class="dijitTooltipContainer dijitTooltipContents" data-dojo-attach-point="containerNode" role='alert'></div
|
||||
></div>
|
9
lib/dijit/templates/TooltipDialog.html
Normal file
9
lib/dijit/templates/TooltipDialog.html
Normal file
@ -0,0 +1,9 @@
|
||||
<div role="alertdialog" tabIndex="-1">
|
||||
<div class="dijitTooltipContainer" role="presentation">
|
||||
<div data-dojo-attach-point="contentsNode" class="dijitTooltipContents dijitTooltipFocusNode">
|
||||
<div data-dojo-attach-point="containerNode"></div>
|
||||
${!actionBarTemplate}
|
||||
</div>
|
||||
</div>
|
||||
<div class="dijitTooltipConnector" role="presentation" data-dojo-attach-point="connectorNode"></div>
|
||||
</div>
|
6
lib/dijit/templates/Tree.html
Normal file
6
lib/dijit/templates/Tree.html
Normal file
@ -0,0 +1,6 @@
|
||||
<div role="tree">
|
||||
<div class="dijitInline dijitTreeIndent" style="position: absolute; top: -9999px" data-dojo-attach-point="indentDetector"></div>
|
||||
<div class="dijitTreeExpando dijitTreeExpandoLoading" data-dojo-attach-point="rootLoadingIndicator"></div>
|
||||
<div data-dojo-attach-point="containerNode" class="dijitTreeContainer" role="presentation">
|
||||
</div>
|
||||
</div>
|
14
lib/dijit/templates/TreeNode.html
Normal file
14
lib/dijit/templates/TreeNode.html
Normal file
@ -0,0 +1,14 @@
|
||||
<div class="dijitTreeNode" role="presentation"
|
||||
><div data-dojo-attach-point="rowNode" class="dijitTreeRow" role="presentation"
|
||||
><span data-dojo-attach-point="expandoNode" class="dijitInline dijitTreeExpando" role="presentation"></span
|
||||
><span data-dojo-attach-point="expandoNodeText" class="dijitExpandoText" role="presentation"></span
|
||||
><span data-dojo-attach-point="contentNode"
|
||||
class="dijitTreeContent" role="presentation">
|
||||
<span role="presentation" class="dijitInline dijitIcon dijitTreeIcon" data-dojo-attach-point="iconNode"></span
|
||||
><span data-dojo-attach-point="labelNode,focusNode" class="dijitTreeLabel" role="treeitem"
|
||||
tabindex="-1" aria-selected="false" id="${id}_label"></span>
|
||||
</span
|
||||
></div>
|
||||
<div data-dojo-attach-point="containerNode" class="dijitTreeNodeContainer" role="presentation"
|
||||
style="display: none;" aria-labelledby="${id}_label"></div>
|
||||
</div>
|
5
lib/dijit/templates/actionBar.html
Normal file
5
lib/dijit/templates/actionBar.html
Normal file
@ -0,0 +1,5 @@
|
||||
<div class='dijitDialogPaneActionBar' data-dojo-attach-point="actionBarNode">
|
||||
<button data-dojo-type='dijit/form/Button' type='submit' data-dojo-attach-point="okButton"></button>
|
||||
<button data-dojo-type='dijit/form/Button' type='button'
|
||||
data-dojo-attach-point="cancelButton" data-dojo-attach-event='click:onCancel'></button>
|
||||
</div>
|
Reference in New Issue
Block a user