| /plugin/pgn4web/pgn4web/live/ |
| D | live-simulation.sh | 307 move=0 308 while [ $move -le $upto ] 310 echo ${game1_moves[$move]} >> $pgn_file_tmp 311 move=$(($move + 1)) 319 move=0 320 while [ $move -le $upto ] 322 echo ${game2_moves[$move]} >> $pgn_file_tmp 323 move=$(($move + 1)) 337 move=0 338 while [ $move -le $upto ] [all …]
|
| /plugin/include/_test/ |
| H A D | pagemove_support.test.php | 19 $move = plugin_load('helper', 'move_op'); 20 if (!$move) { 26 $this->assertTrue($move->movePage('editx', 'test:editx')); 32 $move = plugin_load('helper', 'move_op'); 33 if (!$move) { 42 $this->assertTrue($move->movePage('editx', 'test:edit')); 48 $move = plugin_load('helper', 'move_op'); 49 if (!$move) { 71 $this->assertTrue($move->movePage('old:namespace:main', 'new:namespace:main')); 72 $this->assertTrue($move->movePage('old:namespace:1:page_1', 'new:namespace:1:page_1')); [all …]
|
| /plugin/move/_test/ |
| D | mediamove.test.php | 33 $move = plugin_load('helper', 'move_op'); 34 $this->assertTrue($move->movePage($src, $dst)); 56 $move = plugin_load('helper', 'move_op'); 57 $this->assertTrue($move->moveMedia($src, $dst)); 84 $move = plugin_load('helper', 'move_op'); 85 $this->assertTrue($move->moveMedia($src, $dst)); 91 $this->assertTrue($move->moveMedia($dst, 'logo_2.png')); 117 $move = plugin_load('helper', 'move_op'); 118 $this->assertTrue($move->moveMedia($src, $dst));
|
| D | pagemove.test.php | 543 $move = plugin_load('helper', 'move_op'); 544 $this->assertTrue($move->movePage('wiki:foo:start', 'wiki:foo2:start')); 560 $move = plugin_load('helper', 'move_op'); 562 $this->assertTrue($move->movePage('wiki:foo:start', 'wiki:foo:bar:start')); 578 $move = plugin_load('helper', 'move_op'); 580 $this->assertTrue($move->movePage('bar:start', 'wiki:foo:start')); 607 $move = plugin_load('helper', 'move_op'); 609 $this->assertTrue($move->movePage('bugs:start', 'bugs')); 612 $this->assertTrue($move->movePage('bugs', 'start')); 623 $move = plugin_load('helper', 'move_op'); [all …]
|
| /plugin/move/helper/ |
| D | plan.php | 299 foreach($this->plan as $move) { 300 if($move['class'] == self::CLASS_DOC) { 302 $this->addToDocumentList($move['src'], $move['dst'], $move['type']); 306 $path = utf8_encodeFN(str_replace(':', '/', $move['src'])); 308 if($move['type'] == self::TYPE_PAGES) { 315 if($move['src'] !== '') { 316 $strip = strlen($move['src']) + 1; 320 if($move['dst']) $move['dst'] .= ':'; 325 $to = $move['dst'] . substr($doc['id'], $strip); 326 $this->addToDocumentList($from, $to, $move['type']); [all …]
|
| /plugin/move/script/ |
| D | rename.js | 14 '<label>' + LANG.plugins.move.newname + '<br>' + 32 LANG.plugins.move.inprogress 62 title: LANG.plugins.move.rename + ' ' + JSINFO.id, 69 text: LANG.plugins.move.cancel, 75 text: LANG.plugins.move.rename,
|
| D | MoveMediaManager.js | 44 moveButton.innerText = LANG.plugins.move.moveButton; 66 title: LANG.plugins.move.moveButton, 90 intro.innerText = LANG.plugins.move.dialogIntro; 124 button.innerText = LANG.plugins.move.moveButton;
|
| /plugin/siteexport/_test/ |
| D | plugin_siteexport_move.test.php | 17 $move = plugin_load('helper', 'move_op'); 18 if (!$move) return; // disable the test when move is not installed 26 $this->assertTrue($move->movePage('pagetomove', 'test:movedpage'));
|
| /plugin/pagemove/lang/en/ |
| D | pagemove.txt | 3 This plugin allows you to move and/or rename the current document or move and/or rename the current… 5 * You cannot move the start page. 9 * You cannot move the document to a namespace where a document with the same name already exists.
|
| /plugin/pgn4web/pgn4web/ |
| D | template.css | 94 .move, 101 .move, 107 a.move, 113 .move, 118 a.move:hover, a.variation:hover { 122 .move {
|
| D | live-compact.css | 123 .move, 130 .move, 136 a.move, 142 .move, 153 .move,
|
| D | inputform.css | 119 .move, 125 a.move, 131 .move { 134 a.move {
|
| /plugin/move/lang/en/ |
| D | tree.txt | 5 In order to move many namespaces, pages or media files to the same destination, you can use the che… 6 * check the namespaces, pages or media files you want to move; 7 …* move one of the checked items to the desired destination, all selected items will be moved to th…
|
| D | move.txt | 3 This plugin allows you to move and/or rename the current page or move and/or rename the current nam… 8 * You cannot move a page to a namespace where a page with the same name already exists.
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/DriveActivity/ |
| D | ActionDetail.php | 118 public function setMove(Move $move) argument 120 $this->move = $move; 127 return $this->move;
|
| /plugin/pgn4web/pgn4web/libs/garbochess/ |
| D | garbochess.js | 76 function GetMoveSAN(move, validMoves) { argument 77 var from = move & 0xFF; 78 var to = (move >> 8) & 0xFF; 80 if (move & moveflagCastleKing) return "O-O"; 81 if (move & moveflagCastleQueen) return "O-O-O"; 114 } else if (pieceType == piecePawn && (g_board[to] != 0 || (move & moveflagEPC))) { 118 if (g_board[to] != 0 || (move & moveflagEPC)) { 124 if (move & moveflagPromotion) { 125 if (move & moveflagPromoteBishop) result += "=B"; 126 else if (move & moveflagPromoteKnight) result += "=N"; [all …]
|
| /plugin/include/ |
| H A D | requirements.txt | 2 https://github.com/michitux/dokuwiki-plugin-move.git lib/plugins/move
|
| /plugin/accscounter/lang/en/ |
| D | movedirection.txt | 7 **Be careful, once you click one of following links, the system will __start to move or delete the … 10 * [[?do=accscounter_datatransfer&mode=move|Move the files to the new destination]] 12 * [[?do=accscounter_datatransfer&mode=delete|Don't move the files, just delete them]]
|
| /plugin/siteexport/ |
| D | req-travis.txt | 2 https://github.com/michitux/dokuwiki-plugin-move.git lib/plugins/move
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/ |
| H A D | ObjectTreeTest.php | 68 $this->tree->move('file.txt','file2.txt'); 80 $this->tree->move('file.txt','subdir/file2.txt'); 92 $this->tree->move('subdir','subdir2');
|
| /plugin/refnotes/ |
| D | script.js | 56 move(event, dx, dy) { method 75 preview.move(event, 2, 2); 100 preview.move(event, 10, 12);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
| D | SASPortalTesting.php | 181 ],'move' => [ 182 'path' => 'v1alpha1/{+name}:move', 329 ],'move' => [ 330 'path' => 'v1alpha1/{+name}:move', 435 ],'move' => [ 436 'path' => 'v1alpha1/{+name}:move', 645 ],'move' => [ 646 'path' => 'v1alpha1/{+name}:move', 779 ],'move' => [ 780 'path' => 'v1alpha1/{+name}:move', [all …]
|
| D | Sasportal.php | 181 ],'move' => [ 182 'path' => 'v1alpha1/{+name}:move', 329 ],'move' => [ 330 'path' => 'v1alpha1/{+name}:move', 435 ],'move' => [ 436 'path' => 'v1alpha1/{+name}:move', 645 ],'move' => [ 646 'path' => 'v1alpha1/{+name}:move', 779 ],'move' => [ 780 'path' => 'v1alpha1/{+name}:move', [all …]
|
| /plugin/move/ |
| D | plugin.info.txt | 1 base move 7 url https://www.dokuwiki.org/plugin:move
|
| /plugin/freechat/phpfreechat/lib/csstidy-1.2/ |
| D | class.csstidy_print.php | 220 * @param integer $move move this far 225 function _seeknocomment($key, $move) { argument 226 $go = ($move > 0) ? 1 : -1; 227 for ($i = $key + 1; abs($key-$i)-1 < abs($move); $i += $go) { 232 $move += 1;
|