Home
last modified time | relevance | path

Searched refs:revisions (Results 1 – 20 of 20) sorted by relevance

/dokuwiki/inc/lang/en/
H A Dnorev.txt3 The specified revision doesn't exist. Click on "Old revisions" for a list of old revisions of this document.
H A Donceexisted.txt3 You've followed a link to a page that no longer exists. You can check the list of **Old revisions** to see when and why it was deleted, access old revisions or restore it.
/dokuwiki/inc/Ui/
H A DRevisions.php11 * Note: navigation starts from -1, not 0. This is because our Revision management starts old revisions at 0 and
12 * will return the current revision only if the revisions starting at -1 are requested.
41 * Get revisions, and set correct pagination parameters (first, hasNext)
45 * @return array revisions to be shown in a paginated list
53 $revisions = [];
56 if (!$currentRevInfo) return $revisions;
78 // append each revision info array to the revisions
80 $revisions[] = $changelog->getRevisionInfo($rev);
82 return $revisions;
H A DMediaRevisions.php55 // get revisions, and set correct pagination parameters (first, hasNext)
58 $revisions = $this->getRevisions($first, $hasNext);
66 $form->setHiddenField('mediado', 'diff'); // required for media revisions
71 foreach ($revisions as $info) {
H A DPageRevisions.php38 * Display list of old revisions of the page
53 // get revisions, and set correct pagination parameters (first, hasNext)
56 $revisions = $this->getRevisions($first, $hasNext);
59 echo p_locale_xhtml('revisions');
70 foreach ($revisions as $info) {
114 echo $this->navigation($first, $hasNext, static fn($n) => ['do' => 'revisions', 'first' => $n]);
/dokuwiki/inc/lang/el/
H A Donceexisted.txt2 Ακολουθήσατε έναν σύνδεσμο σε μια σελίδα που δεν υπάρχει πια. Μπορείτε να ελέγξετε την λίστα στο **old revisions** για να δείτε αν και γιατί αφαιρέθηκε, να πάτε σε παλαιότερους ελέγχους ή να την ανανεώσετε.
/dokuwiki/inc/lang/ca/
H A Donceexisted.txt3 Heu seguit un enllaç a una pàgina que ja no existeix. Podeu consultar la llista de **old revisions** per veure quan i per què es va suprimir, accedir a les revisions antigues o restaurar-la.
H A Dnorev.txt3 La revisió especificada no existeix. Utilitzeu el botó ''Revisions anteriors'' per obtenir una llista de revisions d'aquest document.
H A Drevisions.txt3 Heus ací les revisions anteriors del document actual. Per restaurar una revisió anterior, seleccioneu-la de la llista, feu clic en ''Edita aquesta pàgina'' i deseu-la.
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_recent.css3 * old revisions (?do=revisions).
6 /*____________ list of revisions / recent changes ____________*/
8 /* select type of revisions (media/pages) */
H A D_media_fullscreen.css438 /* file revisions form */
/dokuwiki/inc/lang/sr/
H A Donceexisted.txt3 Pratili ste sled do stranice koja više ne postoji. U dnevniku **old revisions** možete pronaći kada i zašto je stranica obrisana, otvoriti njenu staru verziju i povratiti je.
/dokuwiki/inc/lang/cs/
H A Donceexisted.txt3 Sledovali jste odkaz na stránku, která již neexistuje. Můžete zkontrolovat seznam **old revisions** a zjistit, kdy a proč byl odstraněn, přistoupit ke starým revizím nebo jej obnovit.
/dokuwiki/inc/lang/hu/
H A Donceexisted.txt3 Egy már nem létező oldal linkjére kattintottál. A **old revisions** ben visszakeresheted, hogy mikor és miért szűnt meg az oldal, megnézheted vagy vissza is állíthatsz verzióelőzményeket.
/dokuwiki/inc/lang/pl/
H A Donceexisted.txt3 Wybrałeś odnośnik do strony która już nie instnieję, Możesz sprawdzić listę **old revisions** aby sprawdzić kiedy i dlaczego strona została usunięta. Masz również możliwość dostępu do starej wersji strony i przywrócenia jej
/dokuwiki/inc/lang/fr/
H A Donceexisted.txt3 Vous avez suivi un lien vers une page qui n'existe plus. Vous pouvez afficher la liste des **anciennes revisions** pour voir quand et pourquoi la page a été supprimée, pour accéder à ses anciennes révisions ou pour la restaurer.
/dokuwiki/inc/lang/sv/
H A Donceexisted.txt3 Du har följt en länk till en sida som inte längre existerar. Du kan kontrollera följande lista **old revisions** för att se när och varför den togs bort, gå till en äldre version för att återställa den.
/dokuwiki/lib/plugins/revert/lang/ca/
H A Dintro.txt3 Aquesta pàgina us ajuda a revertir automàticament els canvis que siguin producte d'un atac amb brossa. Per trobar la llista de pàgines atacades, cerqueu una cadena adequada (p. ex. un URL de propaganda), confirmeu que les pàgines trobades contenen realment brossa i llavors revertiu-les a revisions anteriors
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php92 $revisions = $pagelog->getRevisions($n++, 1);
93 $rev = ($revisions !== []) ? $pagelog->getRevisionInfo($revisions[0]) : null;
/dokuwiki/inc/Remote/
H A DApiCore.php109 * server's time when working with last modified timestamps (revisions).
273 0, // we're searching current revisions only
464 * Returns a list of available revisions of a given wiki page
466 * The number of returned pages is set by `$conf['recent']`, but non accessible revisions pages
485 // old revisions are counted from 0, so we need to subtract 1 for the current one
486 $revisions = $pagelog->getRevisions($first - 1, $conf['recent']);
489 foreach ($revisions as $rev) {
490 if (!page_exists($page, $rev)) continue; // skip non-existing revisions
771 0, // we're searching current revisions only