Searched refs:loc_url (Results 1 – 3 of 3) sorted by relevance
/plugin/pycode/ |
D | syntax.php | 242 $loc_url = $this->mpp->_get_loc_url($name_host, $name_repo, $name_brch, $name_file); 247 if ((file_exists($loc_url) == false)) { 250 elseif (file_exists($loc_url) == true and 272 $this->mpp->_save_code($loc_url, $code_raw); 283 $tmp_raw_loc_url = $loc_url . ".tmp"; 287 … list($code_loc, $sl_loc, $el_loc) = $this->mpp->_get_code($loc_url, $flag, $name, $subname); 300 $this->_print_tree($renderer, $loc_url, $tree_loc, $docstr); 308 $this->_print_note($renderer, $loc_url, $code_raw, $sl_loc, $el_loc); 320 … $tree_dif = $this->mpp->_get_tree_dif($tmp_raw_loc_url, $loc_url, $tree_raw, $tree_loc); 321 $this->_print_note($renderer, $loc_url, $code_raw, $sl_loc, $el_loc); [all …]
|
D | action.php | 64 $loc_url = $INPUT->post->str("url"); 68 list($code_all_old, $flag, $name, $subname) = $this->mpp->_get_code($loc_url); 74 $this->mpp->_save_code($loc_url, $code_all_old);
|
D | method.php | 437 * @param (str) $loc_url the url to the raw code of the copy of <file> in 491 public function _get_tree_dif ($raw_url, $loc_url, $tree_new, $tree_old) { argument 507 list($code_cls_old, $sl, $el) = $this->_get_code($loc_url, "c", $name); 549 list($code_def_old, $sl, $el) = $this->_get_code($loc_url, "f", $val, $name); 807 $loc_url = $dir . "/" . $var. "/" . $name_file; 809 return $loc_url;
|