Searched +full:edit -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 97) sorted by relevance
1234
/dokuwiki/inc/Menu/Item/ |
H A D | Edit.php | 6 * Class Edit 8 * Most complex item. Shows the edit button but mutates to show, draft and create based on 11 class Edit extends AbstractItem class 52 * change the icon according to what type the edit button has 57 'edit' => '01-edit_pencil.svg',
|
/dokuwiki/lib/tpl/dokuwiki/css/ |
H A D | _edit.css | 2 * This file provides styles for the edit view (?do=edit), preview 3 * and section edit buttons. 6 /* edit view 55 /*____________ edit textarea ____________*/ 57 .dokuwiki textarea.edit { 81 /* edit buttons */ 122 /* section edit buttons
|
H A D | _forms.css | 39 .dokuwiki label.block input.edit { 56 .dokuwiki input.edit, 57 .dokuwiki select.edit { 60 .dokuwiki select.edit {
|
/dokuwiki/inc/Ui/ |
H A D | Editor.php | 17 * Display the Edit Window 18 * preprocess edit form data 53 // intro locale text (edit, rditrev, or read) 55 $intro = ($REV) ? 'editrev' : 'edit'; 84 // Only emit event if page is writable, section edit data is valid and 85 // edit target is not section. 106 // add edit buttons: save, preview, cancel 118 // add a textbox for edit summary 122 ->id('edit__summary')->addClass('edit') 156 // print intro locale text (edit, rditre [all...] |
H A D | UserRegister.php | 41 $input = $form->addTextInput('login', $lang['user'])->attrs($base_attrs)->addClass('edit') 47 $input = $form->addPasswordInput('pass', $lang['pass'])->attrs($base_attrs)->addClass('edit'); 50 $input = $form->addPasswordInput('passchk', $lang['passchk'])->attrs($base_attrs)->addClass('edit'); 55 $input = $form->addTextInput('fullname', $lang['fullname'])->attrs($base_attrs)->addClass('edit') 60 $input = $form->addTextInput('email', $lang['email'])->attrs($email_attrs)->addClass('edit')
|
H A D | UserProfile.php | 64 ->addClass('edit'); 89 ->addClass('edit') 98 ->addClass('edit') 107 ->addClass('edit') 114 $input = $form->addPasswordInput('newpass', $lang['newpass'])->attrs($attr)->addClass('edit'); 118 $input = $form->addPasswordInput('passchk', $lang['passchk'])->attrs($attr)->addClass('edit');
|
H A D | UserResendPwd.php | 61 $input = $form->addPasswordInput('pass', $lang['pass'])->attr('size', '50')->addClass('edit'); 64 $input = $form->addPasswordInput('passchk', $lang['passchk'])->attr('size', '50')->addClass('edit'); 90 $input = $form->addTextInput('login', $lang['user'])->addClass('edit');
|
H A D | Login.php | 53 $input = $form->addTextInput('u', $lang['user'])->id('focus__this')->addClass('edit') 58 $input = $form->addPasswordInput('p', $lang['pass'])->addClass('block edit');
|
/dokuwiki/lib/scripts/ |
H A D | locktimer.js | 24 * @param {string} edid Optional; ID of an edit object which has to be present 27 var $edit; 31 $edit = jQuery('#' + edid); 32 if($edit.length === 0 || $edit.attr('readonly')) { 47 $edit.keypress(dw_locktimer.refresh); 62 * If the user types into the edit-area, then dw_locktimer will regularly send a post request to the DokuWiki server 101 * Called on keypresses in the edit area
|
/dokuwiki/inc/ |
H A D | DifferenceEngine.php | 177 // Compute the edit operations. 551 foreach ($this->edits as $edit) { 552 $rev->edits[] = $edit->reverse(); 563 foreach ($this->edits as $edit) { 564 if ($edit->type != 'copy') 579 foreach ($this->edits as $edit) { 580 if ($edit->type == 'copy') 581 $lcs += count($edit->orig); 597 foreach ($this->edits as $edit) { 598 if ($edit [all...] |
/dokuwiki/inc/Action/ |
H A D | Edit.php | 10 * Class Edit 16 class Edit extends AbstractAction 37 // no edit permission? view source 79 // Use the date of the newest revision, not of the revision we edit 15 class Edit extends AbstractAction global() class
|
H A D | Save.php | 11 * Save at the end of an edit session 46 throw new ActionException('edit');
|
H A D | Recover.php | 22 throw new ActionAbort('edit');
|
H A D | Draft.php | 35 if (!isset($INFO['draft']) || !file_exists($INFO['draft'])) throw new ActionException('edit');
|
H A D | Preview.php | 17 class Preview extends Edit
|
H A D | Logout.php | 42 // when logging out during an edit session, unlock the page
|
H A D | Revert.php | 51 throw new ActionException('edit');
|
/dokuwiki/lib/plugins/config/ |
H A D | style.css | 95 #config__manager td input.edit { 101 #config__manager td select.edit { } 102 #config__manager td textarea.edit { 107 #config__manager td textarea.edit:focus {
|
/dokuwiki/lib/plugins/styling/ |
H A D | plugin.info.txt | 6 desc Allows to edit style.ini replacements
|
H A D | README | 3 Allows to edit style.ini replacements
|
/dokuwiki/inc/Menu/ |
H A D | PageMenu.php | 14 protected $types = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top'];
|
/dokuwiki/lib/styles/ |
H A D | print.css | 10 .secedit, /* section edit button */
|
/dokuwiki/conf/ |
H A D | acl.auth.php.dist | 16 # edit 2
|
/dokuwiki/lib/plugins/config/core/Setting/ |
H A D | SettingString.php | 29 ']" type="text" class="edit" value="' . $value . '" ' . $disable . '/>';
|
H A D | SettingPassword.php | 38 ']" autocomplete="new-password" type="password" class="edit" value="" ' . $disable . ' />';
|
1234