Lines Matching +full:pycode +(+path:plugin +path:pycode) -(+path:plugin +path:pycode +path:lang)
3 * PyCode plugin: it embeds a Python script hosted in a remote repository.
5 * action.php: it defines all the methods used by PyCode plugin
15 require_once "method.php"; // common methods used by PyCode plugin
18 * This class defines all the methods used by the PyCode plugin to interact
93 $log = DOKU_PLUGIN . "pycode/tmp/logfile";
128 $tmp = DOKU_PLUGIN . "pycode/tmp/";
129 $log_old = DOKU_PLUGIN . "pycode/tmp/logfile";
130 $log_new = DOKU_PLUGIN . "pycode/tmp/logfile.tmp";
178 unlink(DOKU_PLUGIN . "pycode/tmp/" . $file_del);
190 unlink(DOKU_PLUGIN . "pycode/tmp/" . $file_del);
197 unlink(DOKU_PLUGIN . "pycode/tmp/logfile");
202 file_put_contents(DOKU_PLUGIN . "pycode/tmp/logfile", $str);
211 $tree_dir = $this->mpp->_get_tree_dir(DOKU_PLUGIN . "pycode/tmp/");
215 if (file_exists(DOKU_PLUGIN . "pycode/tmp/logfile.tmp") == true) {
216 unlink(DOKU_PLUGIN . "pycode/tmp/logfile.tmp");
223 * It inserts the PyCode's buttons in the toolbar.
233 'type' => "PyCode",
234 'title' => "PyCode Plugin",
235 'icon' => "../../plugins/pycode/images/picker.png"