Searched full:stale (Results 1 – 25 of 67) sorted by relevance
123
| /plugin/stale/ |
| D | admin.php | 32 /** @var helper_plugin_stale $stale */ 33 $stale = plugin_load('helper', 'stale'); 34 return $stale->getIcon(); 41 /** @var helper_plugin_stale $stale */ 42 $stale = plugin_load('helper', 'stale'); 45 $reason = $stale->canTouch(); 47 msg('Plugin stale: You can\'t touch the file for the following reason: ' . $reason, -1); 51 $this->msg = $stale->stale();
|
| D | action.php | 4 use dokuwiki\plugin\stale\StaleMenuItem; 44 /** @var helper_plugin_stale $stale */ 45 $stale = plugin_load('helper', 'stale'); 47 if ($stale->canTouch() !== true) { 52 $message = $stale->stale(); 73 /** @var helper_plugin_stale $stale */ 74 $stale = plugin_load('helper', 'stale'); 75 if ($stale->canTouch()===true){
|
| D | README.md | 1 # Stale Plugin - Making your Dokuwiki Cache Stale 5 Stale is a [DokuWiki Plugin](https://www.dokuwiki.org/plugin:stale) that aims to delete or make all… 8 …e only the modified date, not the content) in order to make the rendering cache stale (ie HTML,...) 21 …are using the cache system, must make the cache dependent of their info file to get the cache stale 25 ## How to stale ? 27 You can stale the cache: 38 …* As [per request 2](https://github.com/ComboStrap/stale/issues/2), Make the cache stale, reload t… 42 * The stale menu item is now a website item
|
| D | Menuitem.php | 3 namespace dokuwiki\plugin\stale; 11 * Implements the stale button 61 $stale = plugin_load('helper', helper_plugin_stale::PLUGIN_NAME); 62 return $stale->getLang('menu'); 67 $stale = plugin_load('helper', helper_plugin_stale::PLUGIN_NAME); 68 return $stale->getLang("menuItemLabel"); 74 /** @var helper_plugin_stale $stale */ 75 $stale = plugin_load('helper', helper_plugin_stale::PLUGIN_NAME); 76 return $stale->getIcon();
|
| D | plugin.info.txt | 1 base stale 5 name Stale plugin 6 desc Make the cache stale by touching configuration files 7 url https://www.dokuwiki.org/plugin:stale
|
| D | helper.php | 9 const PLUGIN_NAME = 'stale'; 38 * $stale->canTouch()!==true 72 public function stale() function in helper_plugin_stale 82 $message .= "<br>The cache is now stale.";
|
| D | stale.js | 7 const queryParameterKey = "stale"; 35 …dialogElement.html(`<h3>Stale</h3><p>${message}</p><p>The page was reloaded.</p><p>Note: This wind… 50 dialogClass: "stale-dialog",
|
| D | style.css | 1 .stale-dialog > .ui-dialog-titlebar {
|
| D | script.js | 8 /* DOKUWIKI:include stale.js */
|
| /plugin/siteexport/.github/ |
| D | style.yml | 1 # Number of days of inactivity before an issue becomes stale 3 # Number of days of inactivity before a stale issue is closed 5 # Issues with these labels will never be considered stale 10 # Label to use when marking an issue as stale 12 # Comment to post when marking an issue as stale. Set to `false` to disable 14 This issue has been automatically marked as stale because it has not had 17 # Comment to post when closing a stale issue. Set to `false` to disable
|
| /plugin/stale/lang/en/ |
| D | lang.php | 3 $lang['h1'] = 'Stale'; 4 $lang['menuItemLinkTitle'] = 'Stale - make the cache stale'; 5 $lang['menuItemLabel'] = 'Stale the cache';
|
| D | settings.php | 3 $lang[helper_plugin_stale::CONF_ADMIN_ONLY] = 'Allow stale plugin only for admins (superusers)';
|
| /plugin/stale/_test/ |
| D | baseTest.php | 61 /** @var helper_plugin_stale $stale */ 62 $stale = plugin_load('helper', 'stale'); 64 $result = $stale->deleteSitemap();
|
| /plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Encoder/ |
| H A D | DigestMD5Encoder.php | 37 'stale', 164 case 'stale': 237 case 'stale':
|
| /plugin/cleanup/lang/en/ |
| D | settings.php | 17 $lang['lockage'] = 'Delete stale lock files after this time (seconds).';
|
| /plugin/cleanup/lang/fr/ |
| D | settings.php | 17 $lang['lockage'] = 'Effacer les fichiers stale lock après cette durée (en secondes).';
|
| /plugin/fedauth/Auth/Yadis/ |
| D | Manager.php | 231 'stale'); 300 // Stale flag for cleanup if PHP lib has trouble. 301 $this->stale = false;
|
| /plugin/openid/Auth/Yadis/ |
| D | Manager.php | 246 'stale', 335 // Stale flag for cleanup if PHP lib has trouble. 336 $this->stale = false;
|
| /plugin/drawio/ |
| D | README.md | 39 …hat I would like to be implemented by somebody else. The un-labeled issues became stale or removed.
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/Resource/ |
| D | ProjectsLocationsSecuritySettings.php | 64 * Retrieves the specified SecuritySettings. The returned settings may be stale
|
| /plugin/cronojob/jobs/ |
| D | clearcache.php | 78 * remove stale lock files
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastore/Resource/ |
| D | ProjectsIndexes.php | 92 * return stale results. (indexes.listProjectsIndexes)
|
| /plugin/autolink3/ |
| D | ajax.php | 95 // looks like a stale lock - remove it
|
| /plugin/doxycode/helper/ |
| D | buildmanager.php | 383 * of the doxygen task runner. We then assume that the lock is stale and remove it. 385 * If a lock is present and not stale locking fails. 397 // looks like a stale lock - remove it
|
| /plugin/solr/ |
| D | helper.php | 200 // looks like a stale lock - remove it 202 print "solr_indexer: stale lock removed".NL;
|
123