Annotation of kupuMPIWG/default/toolboxes.kupu, revision 1.1

1.1     ! dwinter     1: <?xml version="1.0" ?>
        !             2: <kupu:feature
        !             3:     name="toolboxes"
        !             4:     implementation="default"
        !             5:     xmlns:kupu="http://kupu.oscom.org/namespaces/dist"
        !             6:     xmlns:i18n="http://xml.zope.org/namespaces/i18n"
        !             7:     xmlns="http://www.w3.org/1999/xhtml"
        !             8:     i18n:domain="kupu"
        !             9:     >
        !            10:   <kupu:id>$Id: toolboxes.kupu 13098 2005-06-06 12:11:48Z mihxil $</kupu:id>
        !            11: 
        !            12:   <kupu:part name="toolboxes">
        !            13:     <div class="kupu-toolboxes">
        !            14:       <kupu:define-slot name="toolboxes" />
        !            15:     </div>
        !            16:   </kupu:part>
        !            17: 
        !            18:   <kupu:part name="properties">
        !            19:     <div class="kupu-toolbox" id="kupu-toolbox-properties">
        !            20:       <h1 i18n:translate="">Properties</h1>
        !            21: 
        !            22:       <div class="kupu-toolbox-label" i18n:translate="">Title:</div>
        !            23:       <input class="wide" id="kupu-properties-title" />
        !            24:       <div class="kupu-toolbox-label" i18n:translate="">Description:</div>
        !            25:       <textarea class="wide" id="kupu-properties-description"> </textarea>
        !            26:     </div>
        !            27:   </kupu:part>
        !            28: 
        !            29:   <kupu:part name="links">
        !            30:     <div class="kupu-toolbox" id="kupu-toolbox-links">
        !            31:       <h1 i18n:translate="">Links</h1>
        !            32: 
        !            33:       <div id="kupu-toolbox-addlink">
        !            34:         <div class="kupu-toolbox-label">
        !            35:           <!-- Link to items matching the keyword  -->
        !            36:           <span i18n:translate="">
        !            37:             Link the highlighted text to this URL:
        !            38:           </span>
        !            39:         </div>
        !            40: 
        !            41:         <input id="kupu-link-input"
        !            42:                class="wide" 
        !            43:                type="text" 
        !            44:                />
        !            45:         <div class="kupu-toolbox-buttons">
        !            46:           <button type="button" id="kupu-link-button"
        !            47:                   class="kupu-toolbox-action" 
        !            48:                   i18n:translate="">Make Link</button>
        !            49:         </div>
        !            50: 
        !            51:       </div>
        !            52:     </div>
        !            53:   </kupu:part>
        !            54: 
        !            55:   <kupu:part name="images">
        !            56:     <div class="kupu-toolbox" id="kupu-toolbox-images">
        !            57:             <h1 i18n:translate="">Images</h1>
        !            58: 
        !            59:             <div class="kupu-toolbox-label">
        !            60:               <span i18n:translate="">Image class:</span>
        !            61:             </div>
        !            62:             <select class="wide" id="kupu-image-float-select">
        !            63:               <option value="image-inline" i18n:translate="">Inline</option>
        !            64:               <option value="image-left" i18n:translate="">Left</option>
        !            65:               <option value="image-right" i18n:translate="">Right</option>
        !            66:             </select>
        !            67: 
        !            68:             <div class="kupu-toolbox-label">
        !            69:               <span i18n:translate="">Insert image at the following URL:</span>
        !            70:             </div>
        !            71:             <input id="kupu-image-input"
        !            72:                    value="kupuimages/kupu_icon.gif"
        !            73:                    class="wide" 
        !            74:                    type="text" />
        !            75: 
        !            76:             <div class="kupu-toolbox-buttons">
        !            77:               <button type="button" id="kupu-image-addbutton"
        !            78:                       class="kupu-toolbox-action" i18n:translate=""
        !            79:                       >Insert Image</button>
        !            80:             </div>
        !            81:     </div>
        !            82:   </kupu:part>
        !            83: 
        !            84:   <kupu:part name="tables">
        !            85:     <div class="kupu-toolbox" id="kupu-toolbox-tables">
        !            86:       <h1 i18n:translate="">Tables</h1>
        !            87: 
        !            88:       <div class="kupu-toolbox-label">
        !            89:         <span i18n:translate="">Table Class:</span>
        !            90:         <select class="wide" id="kupu-table-classchooser"> </select>
        !            91:       </div>
        !            92: 
        !            93:       <div id="kupu-toolbox-addtable" class="kupu-toolbox-addtable">
        !            94:         <div class="kupu-toolbox-label" i18n:translate="">Rows:</div>
        !            95:         <input class="wide" type="text" id="kupu-table-newrows" />
        !            96: 
        !            97:         <div class="kupu-toolbox-label" i18n:translate="">Columns:</div>
        !            98:         <input class="wide" type="text" id="kupu-table-newcols" />
        !            99: 
        !           100:         <div class="kupu-toolbox-label">
        !           101:           <span i18n:translate="">Headings:</span>
        !           102:           <input name="kupu-table-makeheader"
        !           103:                  id="kupu-table-makeheader"
        !           104:                  type="checkbox"
        !           105:                  />
        !           106:           <label for="kupu-table-makeheader" i18n:translate="">Create</label>
        !           107:         </div>
        !           108: 
        !           109:         <div class="kupu-toolbox-buttons">
        !           110:           <button type="button" id="kupu-table-fixall-button" i18n:translate="">Fix Table</button> 
        !           111:           <button type="button" id="kupu-table-addtable-button" i18n:translate="">Add Table</button> 
        !           112:         </div>
        !           113: 
        !           114:       </div>
        !           115: 
        !           116:       <div id="kupu-toolbox-edittable" class="kupu-toolbox-edittable">
        !           117:       
        !           118:           <div class="kupu-toolbox-label">
        !           119:             <span i18n:translate="">Col Align:</span>
        !           120:             <select class="wide" id="kupu-table-alignchooser">
        !           121:               <option value="left" i18n:translate="">Left</option>
        !           122:               <option value="center" i18n:translate="">Center</option>
        !           123:               <option value="right" i18n:translate="">Right</option>
        !           124:             </select>
        !           125:           </div>
        !           126:       
        !           127:           <div class="kupu-toolbox-buttons">
        !           128:             <br />
        !           129:             <button type="button" id="kupu-table-addcolumn-button" i18n:translate="">Add Column</button>
        !           130:             <button type="button" id="kupu-table-delcolumn-button" i18n:translate="">Remove Column</button>
        !           131:             
        !           132:             <br />
        !           133:             <button type="button" id="kupu-table-addrow-button" i18n:translate="">Add Row</button>
        !           134:             <button type="button" id="kupu-table-delrow-button" i18n:translate="">Remove Row</button>
        !           135:           
        !           136:             <button type="button" id="kupu-table-fix-button" i18n:translate="">Fix</button>
        !           137:           </div>
        !           138:           
        !           139:       </div>
        !           140: 
        !           141:     </div>
        !           142:   </kupu:part>
        !           143: 
        !           144:   <kupu:part name="debug">
        !           145:     <div class="kupu-toolbox" id="kupu-toolbox-debug">
        !           146:       <h1 i18n:translate="">Debug Log</h1>
        !           147:       <div id="kupu-toolbox-debuglog"
        !           148:            class="kupu-toolbox-label">
        !           149:       </div>
        !           150:     </div>
        !           151:   </kupu:part>
        !           152: 
        !           153:   <kupu:part name="cleanupexpressions">
        !           154:     <div class="kupu-toolbox" id="kupu-toolbox-cleanupexpressions">
        !           155:             <h1 i18n:translate="">Cleanup expressions</h1>
        !           156: 
        !           157:             <div class="kupu-toolbox-label">
        !           158:               <span i18n:translate="">
        !           159:                 Select a cleanup action:
        !           160:               </span>
        !           161:             </div>
        !           162: 
        !           163:             <select id="kupucleanupexpressionselect" class="kupu-toolbox-st">
        !           164:             </select>
        !           165:             <div style="text-align: center">
        !           166:               <button type="button" id="kupucleanupexpressionbutton"
        !           167:                       class="kupu-toolbox-action">Perform action</button>
        !           168:             </div>
        !           169:     </div>
        !           170:   </kupu:part>
        !           171: 
        !           172: </kupu:feature>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>