User:Fl/scripts/achewoodscriptb.php

<?php
/*********************************************************************\
* Achewood script b, converts references in [[Achewood]] from 
* [website some-description] to some-description<ref>reference</ref>
* form. [^>] in regex avoids detecting normal references.
*
* This file is part of a collection of scripts, created by Foxy Loxy
* <http://en.wikipedia.org/wiki/User:Foxy_Loxy> and stored at
* <http://en.wikipedia.org/wiki/User:Foxy_Loxy/scripts>.
*
* These scripts are free software: you can redistribute it and/or modify
* them under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* 
* These scripts are distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with these scripts.  If not, see <http://www.gnu.org/licenses/>.
\*********************************************************************/

require_once 		"pwiki.class.php";
$pw			= new PWiki;

$page = $pw->getPage('Achewood');
preg_match_all('/(?<!>)\[(http:\/\/(www\.a|a)chewood\.com\/(index.php\?|\?)date=([0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9])) (.*?)\]/i', $page, $matches);
$i = 0;
foreach($matches[0] as $match) {
  $matchold = $matches[1][$i];
  $date = $matches[4][$i];
 $fixeddate = substr($date, 4)."-".substr($date, 0,2)."-".substr($date, 2, 2);
 $linktext = $matches[5][$i];
$matchnew = "$linktext<ref>[$matchold $fixeddate]. ''Achewood''</ref>";
 $find[$i] = $match;
 $replace[$i] = $matchnew;
 $i++;
}

$newpage = str_replace($find, $replace, $page);


echo $newpage;
$pw->_exit("End of script.");
?>

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.