Home
last modified time | relevance | path

Searched refs:history (Results 1 – 25 of 141) sorted by relevance

123456

/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Drouter.js477 history: {
498 history: {
518 history: {
549 history: {
564 history: {
583 history: {
598 history: {
621 history: {
638 history: {
723 history: {
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/setup/
H A Denvironment.js7 var history = window.history; variable
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/aichat/
H A Dhelper.php163 * Ask a question with a chat history
166 * @param array[] $history The chat history [[user, ai], [user, ai], ...]
170 public function askChatQuestion($question, $history = [])
172 if ($history && $this->getConf('rephraseHistory') > 0) {
173 $contextQuestion = $this->rephraseChatQuestion($question, $history);
175 // Only use the rephrased question if it has more history than the chat history provides
182 return $this->askQuestion($question, $history, $contextQuestion);
189 * @param array $history [use
88 askChatQuestion($question, $history = []) global() argument
145 rephraseChatQuestion($question, $history) global() argument
[all...]
H A Dcli.php231 $history = [];
236 $result = $this->helper->askChatQuestion($q, $history);
238 $history[] = [$result['question'], $result['answer']];
H A Daction.php44 $history = json_decode((string)$INPUT->post->str('history'), null, 512, JSON_THROW_ON_ERROR);
57 $result = $helper->askChatQuestion($question, $history);
/plugin/gtime/gtlib/asn1/gt/
H A DGTTimeSignature.php49 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;
H A DGTCertToken.php44 private $history; variable in GTCertToken
77 $this->history = $object->getObjectAt(1)->getValue();
112 return $this->history;
/plugin/aichat/script/
H A DAIChatChat.js7 #history = []; field in AIChatChat
18 <button type="button" class="delete-history" title="restart">
35 const restart = this.#root.querySelector('.delete-history');
106 .controls button.delete-history {
183 * Save history to session storage
186 sessionStorage.setItem('ai-chat-history', JSON.stringify(this.#history));
190 * Load the history from session storage and display it
193 const history = sessionStorage.getItem('ai-chat-history');
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Gmail/
H A DListHistoryResponse.php37 public function setHistory($history) argument
39 $this->history = $history;
46 return $this->history;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php62 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)…
268 array_shift($this->history);
445 $this->history = array_merge($this->history, [array_shift($this->screen)]);
452 array_shift($this->history);
566 for ($i = 0; $i < count($this->history); $i++) {
[all …]
/plugin/database2/
H A Dadmin.php153 $history[] = '<option value="' . $q . '">' . $qesc . '&nbsp;&nbsp;</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/timetrack/vendor/pnotify/
H A Djquery.pnotify.default.css56 .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/vendor/pnotify/
H A Djquery.pnotify.default.css56 .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/
H A Dstyle.css56 .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/
H A Dopera.js52 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 in CodePress.actions
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;
H A Dgecko.js57 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 in CodePress.actions
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;
H A Dmsie.js67 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 in CodePress.actions
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;
/plugin/timetrack/
H A Dstyle.css126 .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/clearhistory/
H A Dplugin.info.txt5 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/
H A Dbacklink.js15 if (! window.history) return;
16 if (window.history.length == 0)return;
/plugin/firenews/HTMLTemplates/editnews/
H A DeditnewsTemplate.js19 window.history.pushState({}, '', window.location.href.replace("&submitted=saved", ""));
29 window.history.pushState({}, '', window.location.href.replace("&submitted=deleted", ""));
/plugin/statistics/inc/
H A DStatisticsGraph.class.php91 * Create a history graph for the given info type
95 protected function history($info) { function in StatisticsGraph
106 $result = $this->hlp->Query()->history($this->tlimit, $info, $interval);
251 $this->history('page_count');
255 $this->history('page_size');
259 $this->history('media_count');
263 $this->history('media_size');
/plugin/photogallery/lightGallery/js/
H A Dlg-hash.js77 if (history.pushState) {
78history.pushState('', document.title, window.location.pathname + window.location.search);
H A Dlg-hash.min.js4 …xOf("lg="+this.core.s.galleryId)<0?b.location.hash=this.oldHash:history.pushState?history.pushStat…
/plugin/firenews/HTMLTemplates/author/
H A Dauthor.js47 window.history.pushState({}, '', window.location.href.replace("&fileexists=false", ""));
60 window.history.pushState({}, '', window.location.href.replace("&submitted=true", ""));

123456