Home
last modified time | relevance | path

Searched +full:move +(+path:plugin +path:move) -(+path:plugin +path:move +path:lang) (Results 1 – 25 of 36) sorted by relevance

12

/plugin/move/
H A DREADME1 move Plugin for DokuWiki
3 Move and rename pages and media files while maintaining the links.
6 http://www.dokuwiki.org/plugin:move
9 lib/plugins/move/ - if the folder is called different it
H A DMenuItem.php2 namespace dokuwiki\plugin\move;
9 * @package dokuwiki\plugin\move
H A Dplugin.info.txt1 base move
5 name Move plugin
6 desc Move and rename pages and media files whilst maintaining the links.
7 url http://www.dokuwiki.org/plugin:move
H A Dscript.js2 * includes all needed JavaScript for the move plugin
H A Ddeleted.files15 script/move.js
/plugin/move/helper/
H A Dfile.php3 * Move Plugin File Mover
21 * Move the meta files of a page
25 * @param string $dst_ns The namespace after the move
37 * Move the old revisions of a page
41 * @param string $dst_ns The namespace after the move
53 * Move the meta files of the page that is specified in the options.
57 * @param string $dst_ns The namespace after the move
69 * Move the old revisions of the media file that is specified in the options
73 * @param string $dst_ns The namespace after the move
112 * Executes the move op
[all …]
H A Dplan.php3 * Move Plugin Operation Planner
18 …* Please note: this has not a complex move resolver. Move operations may not depend on each other …
38 * @var array the options for this move plan
299 foreach($this->plan as $move) {
302 $this->addToDocumentList($move['src'], $move['dst'], $move['type']);
315 if($move['src'] !== '') {
320 if($move['dst']) $move['dst'] .= ':';
334 $this->addToDocumentList($move['src'], $move['dst'], self::CLASS_NS);
336 $this->findMissingDocuments($move['src'] . ':', $move['dst'],$move['type']);
339 $this->findAffectedPages($move['src'], $move['dst'], $move['class'], $move['type']);
[all …]
H A Dop.php3 * Move Plugin Operation Execution
16 * @var string symbol to make move operations easily recognizable in change log
33 // Check we have rights to move this document
81 // Check we have rights to move this document
113 * Execute a page move/rename
128 // remember what this page was called before the move in meta data
201 // Move the old revisions
226 * Execute a media file move/rename
230 * @return bool true if the move was successfully executed
281 // move it FIXME this does not create a changelog entry!
[all …]
H A Drewrite.php3 * Move Plugin Page Rewriter
24 * Under what key is move data to be saved in metadata
34 * @var string symbol to make move operations easily recognizable in change log
39 …* This function loads and returns the persistent metadata for the move plugin. If there is metadat…
40 …* pagemove plugin (not the old one but the version that immediately preceeded the move plugin) it …
48 /* todo migrate old move data
75 * Remove any existing move meta data for the given page
121 * Store info about the move of a page in its own meta data
123 * This has to be called before the move is executed
H A Dhandler.php3 * Move Plugin Rewriting Handler
13 * Handler class for move. It does the actual rewriting of the content.
38 * Initialize the move handler.
84 foreach($moves as $move) {
85 if($move[0] == $old) {
86 $old = $move[1];
/plugin/move/script/
H A Drename.js20 LANG.plugins.move.inprogress
49 '<label>' + LANG.plugins.move.newname + '<br>' +
60 title: LANG.plugins.move.rename+' '+JSINFO.id,
67 text: LANG.plugins.move.cancel,
73 text: LANG.plugins.move.rename,
H A Dtree.js149 .find('img.rename').attr('title', LANG.plugins.move.renameitem)
151 .find('img.add').attr('title', LANG.plugins.move.add);
154 …ass="idx_dir">%s</a><img class="rename" src="' + DOKU_BASE + 'lib/plugins/move/images/rename.png">…
199 var newname = window.prompt(LANG.plugins.move.renameitem, $li.data('name'));
207 alert(LANG.plugins.move.duplicate.replace('%s', newname));
211 var newname = window.prompt(LANG.plugins.move.add);
220 alert(LANG.plugins.move.duplicate.replace('%s', newname));
H A Dprogress.js59 alert(LANG.plugins.move.complete);
75 // move in progress, no more preview
88 // hide preview list on namespace move
/plugin/siteexport/action/
H A Dmove.php3 * Site Export Plugin page move support for the move plugin
21 * Register the handler for the move plugin.
28 * Handle rewrites for the move plugin. Currently only the link/toc syntax is handled.
/plugin/move/_test/
H A Dmediamove.test.php7 * Test cases for the move plugin
15 $this->pluginsEnabled[] = 'move';
32 /** @var helper_plugin_move_op $move */
33 $move = plugin_load('helper', 'move_op');
34 $this->assertTrue($move->movePage($src, $dst));
55 /** @var helper_plugin_move_op $move */
56 $move = plugin_load('helper', 'move_op');
83 /** @var helper_plugin_move_op $move */
84 $move = plugin_load('helper', 'move_op');
116 /** @var helper_plugin_move_op $move */
[all …]
H A Dcache_handling.test.php7 * Test cases for the move plugin
16 $this->pluginsEnabled[] = 'move';
38 /** @var helper_plugin_move_op $move */
39 $move = plugin_load('helper', 'move_op');
40 $this->assertTrue($move->movePage('wiki:foo:start', 'wiki:foo2:start'));
H A Dhandler.test.php8 * Test cases for the move plugin
16 $this->pluginsEnabled[] = 'move';
63 ':bang' => 'bang', // absolute link that did not move
64 'foo' => 'used:to:be:foo', // relative link that did not move
65 'this1' => 'used:to:be:that1', // relative link that did not move but is in move list
H A Dpagemove.test.php7 * Test cases for the move plugin
21 // @todo Move page to an ID which already exists
26 $this->pluginsEnabled[] = 'move';
541 /** @var helper_plugin_move_op $move */
542 $move = plugin_load('helper', 'move_op');
558 /** @var helper_plugin_move_op $move */
559 $move = plugin_load('helper', 'move_op');
576 /** @var helper_plugin_move_op $move */
594 //$this->move->_pm_move_recursive($opts);
605 /** @var helper_plugin_move_op $move */
[all …]
H A Dnamespace_move.test.php7 * Test cases for namespace move functionality of the move plugin
15 $this->pluginsEnabled[] = 'move';
35 * This is an integration test, which checks the correct working of an entire namespace move.
71 * This is an integration test, which checks the correct working of an entire namespace move.
122 * This is an integration test, which checks the correct working of an entire namespace move.
182 $conf['plugin']['move']['autorewrite'] = 0;
193 $lockfile = $conf['lockdir'] . 'move.lock';
226 * This is an integration test, which checks the correct working of an entire namespace move.
271 * This is an integration test, which checks the correct working of an entire namespace move.
309 * This is an integration test, which checks the correct working of an entire namespace move.
[all …]
H A Dplan.test.php8 * Test cases for the move plugin
64 * Move a page out of a namespace and then move the namespace elsewhere
/plugin/move/admin/
H A Dmain.php3 * Plugin : Move
14 * Admin component of the move plugin. Provides the user interface.
94 * Get input variables and create a move plan from them
160 * Display the simple move form
165 echo $this->locale_xhtml('move');
193 * Display the GUI while the move progresses
238 * Display a move workflow button
241 * abort - abort the whole move
/plugin/move/action/
H A Drename.php3 * Move Plugin Page Rename Functionality
78 array_splice($event->data['items'], -1, 0, array(new \dokuwiki\plugin\move\MenuItem()));
135 * Use this in your template to add a simple "move this page" link
138 * trigger the page move dialog.
H A Dprogress.php3 * Move Plugin AJAX handler to step through a move plan
/plugin/ireadit/action/
H A Dmove.php23 * @param bool $ispage is this a page move operation?
38 //move revision history
/plugin/approve/action/
H A Dmove.php23 * @param bool $ispage is this a page move operation?
39 //move revision history

12