| /plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/ |
| D | router.js | 48 Backbone.history = _.extend(new Backbone.History, {location: location}); 50 Backbone.history.interval = 9; 51 Backbone.history.start({pushState: false}); 54 Backbone.history.on('route', onRoute); 58 Backbone.history.stop(); 59 Backbone.history.off('route', onRoute); 197 Backbone.history.checkUrl(); 207 Backbone.history.checkUrl(); 217 Backbone.history.checkUrl(); 224 Backbone.history.navigate('search/manhattan/p20', {trigger: true}); [all …]
|
| /plugin/aichat/ |
| D | helper.php | 166 * @param array[] $history The chat history [[user, ai], [user, ai], ...] 170 public function askChatQuestion($question, $history = [], $sourcePage = '') argument 172 if ($history && $this->getConf('rephraseHistory') > 0) { 173 $contextQuestion = $this->rephraseChatQuestion($question, $history); 182 return $this->askQuestion($question, $history, $contextQuestion, $sourcePage); 189 * @param array $history [user, ai] of the previous question 195 public function askQuestion($question, $history = [], $contextQuestion = '', $sourcePage = '') argument 229 $history = []; 235 $history, 252 * @param array[] $history The chat history [[user, ai], [user, ai], ...] [all …]
|
| /plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/setup/ |
| D | environment.js | 7 var history = window.history; 8 var pushState = history.pushState; 9 var replaceState = history.replaceState; 17 history.pushState = history.replaceState = function() {}; 41 history.pushState = pushState; 42 history.replaceState = replaceState;
|
| /plugin/asciidocjs/node_modules/character-parser/ |
| D | index.js | 86 var lastChar = state.history ? state.history[0] : ''; 161 state.history = state.history.substr(1); 165 state.history = state.history.substr(1); 167 } else if (character === '/' && isRegexp(state.history)) { 182 state.history = character + state.history; 197 this.history = '' 281 function isRegexp(history) { argument 284 history = history.replace(/^\s*/, ''); 287 if (history[0] === ')') return false; 289 if (history[0] === '}') return true; [all …]
|
| /plugin/gtime/gtlib/asn1/gt/ |
| D | GTTimeSignature.php | 49 private $history; variable in GTTimeSignature 84 $history = $object->getObjectAt(1); 90 if (!$history instanceof ASN1OctetString) { 95 $this->history = $history->getValue(); 156 $sequence->add(new ASN1OctetString($this->history)); 251 return $this->history; 260 public function setHistory($history) { argument 261 $this->history = $history;
|
| D | GTCertToken.php | 44 private $history; variable in GTCertToken 77 $this->history = $object->getObjectAt(1)->getValue(); 112 return $this->history;
|
| /plugin/aichat/script/ |
| D | AIChatChat.js | 8 #history = []; field in AIChatChat 218 sessionStorage.setItem('ai-chat-history', JSON.stringify(this.#history)); 225 const history = sessionStorage.getItem('ai-chat-history'); 226 if (history) { 227 this.#history = JSON.parse(history); 228 this.#history.forEach(row => { 240 this.#history = []; 271 this.#history.push([response.question, response.answer, response.sources]); 363 formData.append('history', JSON.stringify(this.#history));
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/ |
| D | ANSI.php | 62 private $history; variable in phpseclib3\\File\\ANSI 196 $this->history = $this->history_attrs = []; 206 * @param int $history 209 public function setHistory($history) argument 211 $this->max_history = $history; 261 …$this->history = array_merge($this->history, array_slice(array_splice($this->screen, $this->y + 1)… 267 if (count($this->history) == $this->max_history) { 268 array_shift($this->history); 445 $this->history = array_merge($this->history, [array_shift($this->screen)]); 451 if (count($this->history) >= $this->max_history) { [all …]
|
| /plugin/database2/ |
| D | admin.php | 153 $history[] = '<option value="' . $q . '">' . $qesc . ' </option>'; 156 $history = implode( "\n", $history ); 157 $history = <<<EOT 160 …<select name="history" onchange="return db2_console_load(this.options[this.selectedIndex].value);"> 161 $history 215 $history
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Gmail/ |
| D | ListHistoryResponse.php | 37 public function setHistory($history) argument 39 $this->history = $history; 46 return $this->history;
|
| /plugin/ajaxedit/vendor/pnotify/ |
| D | jquery.pnotify.default.css | 56 .ui-pnotify-history-container { 69 /* Ensures history container is above notices. */ 72 .ui-pnotify-history-container .ui-pnotify-history-header { 75 .ui-pnotify-history-container button { 80 .ui-pnotify-history-container .ui-pnotify-history-pulldown {
|
| /plugin/ajaxedit/ |
| D | style.css | 56 .ui-pnotify-history-container { 69 /* Ensures history container is above notices. */ 72 .ui-pnotify-history-container .ui-pnotify-history-header { 75 .ui-pnotify-history-container button { 80 .ui-pnotify-history-container .ui-pnotify-history-pulldown {
|
| /plugin/timetrack/vendor/pnotify/ |
| D | jquery.pnotify.default.css | 56 .ui-pnotify-history-container { 69 /* Ensures history container is above notices. */ 72 .ui-pnotify-history-container .ui-pnotify-history-header { 75 .ui-pnotify-history-container button { 80 .ui-pnotify-history-container .ui-pnotify-history-pulldown {
|
| /plugin/codehighlight/cp/engines/ |
| D | opera.js | 52 CodePress.actions.history[CodePress.actions.next()] = editor.innerHTML; 120 …editor.innerHTML = this.actions.history[this.actions.next()] = (flag=='scroll') ? x : o.split(z).j… 232 history : [], // history vector property 237 this.history[this.pos] = editor.innerHTML; 240 if(typeof(this.history[this.pos])=='undefined') this.pos++; 241 editor.innerHTML = this.history[this.pos]; 247 if(typeof(this.history[this.pos])=='undefined') this.pos--; 248 editor.innerHTML = this.history[this.pos]; 253 if(this.pos>20) this.history[this.pos-21] = undefined;
|
| D | msie.js | 67 CodePress.actions.history[CodePress.actions.next()] = editor.innerHTML; 137 …editor.innerHTML = this.actions.history[this.actions.next()] = (flag=='scroll') ? x : o.replace(z,… 276 history : [], // history vector property 281 this.history[this.pos] = editor.innerHTML; 284 if(typeof(this.history[this.pos])=='undefined') this.pos++; 285 editor.innerHTML = this.history[this.pos]; 291 if(typeof(this.history[this.pos])=='undefined') this.pos--; 292 editor.innerHTML = this.history[this.pos]; 297 if(this.pos>20) this.history[this.pos-21] = undefined;
|
| D | gecko.js | 57 CodePress.actions.history[CodePress.actions.next()] = editor.innerHTML; 121 …editor.innerHTML = this.actions.history[this.actions.next()] = (flag=='scroll') ? x : o.split(z).j… 261 history : [], // history vector property 268 this.history[this.pos] = editor.innerHTML; 271 if(typeof(this.history[this.pos])=='undefined') this.pos ++; 272 editor.innerHTML = this.history[this.pos]; 280 if(typeof(this.history[this.pos])=='undefined') this.pos--; 281 editor.innerHTML = this.history[this.pos]; 286 if(this.pos>20) this.history[this.pos-21] = undefined;
|
| /plugin/timetrack/ |
| D | style.css | 126 .ui-pnotify-history-container { 139 /* Ensures history container is above notices. */ 142 .ui-pnotify-history-container .ui-pnotify-history-header { 145 .ui-pnotify-history-container button { 150 .ui-pnotify-history-container .ui-pnotify-history-pulldown {
|
| /plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/tests/ |
| D | BaseTestCase.php | 36 $history = Middleware::history($container); 38 $handler->push($history);
|
| /plugin/statistics/ |
| D | StatisticsGraph.php | 93 protected function history($info) function in dokuwiki\\plugin\\statistics\\StatisticsGraph 105 $result = $this->hlp->getQuery()->history($info, $interval); 232 $this->history('page_count'); 237 $this->history('page_size'); 242 $this->history('media_count'); 247 $this->history('media_size');
|
| /plugin/clearhistory/ |
| D | plugin.info.txt | 5 name Remove irrelevant entries from the change history 6 desc This plugin deletes consecutive history entrys that were made by the same user user within …
|
| /plugin/anewssystem/ |
| D | backlink.js | 15 if (! window.history) return; 16 if (window.history.length == 0)return;
|
| /plugin/firenews/HTMLTemplates/editnews/ |
| D | editnewsTemplate.js | 19 window.history.pushState({}, '', window.location.href.replace("&submitted=saved", "")); 29 window.history.pushState({}, '', window.location.href.replace("&submitted=deleted", ""));
|
| /plugin/aichat/cli/ |
| D | simulate.php | 76 $history = []; 84 $result = $this->helper->askChatQuestion($q, $history); 85 $history[] = [$result['question'], $result['answer']];
|
| /plugin/photogallery/lightGallery/js/ |
| D | lg-hash.min.js | 4 …xOf("lg="+this.core.s.galleryId)<0?b.location.hash=this.oldHash:history.pushState?history.pushStat…
|
| D | lg-hash.js | 77 if (history.pushState) { 78 … history.pushState('', document.title, window.location.pathname + window.location.search);
|