Copy.php

From Organic Design wiki
Legacy.svg Legacy: This article describes a concept that has been superseded in the course of ongoing development on the Organic Design wiki. Please do not develop this any further or base work on this concept, this is only useful for a historic record of work done. You may find a link to the currently used concept or function in this article, if not you can contact the author to find out what has taken the place of this legacy item.

<php><? global $wgContLang,$wgArticlePath,$xwAnonymous; $xwIsAdmin = true;

  1. Get copy-target and summary-text from form

xwGetProperty($properties, 'copy/target', $target); xwGetProperty($properties, 'copy/summary', $summary); xwGetProperty($properties, 'copy/xml', $xml); # move/copy properties too? xwGetProperty($properties, 'copy/talk', $talk); # move/copy talk too? xwGetProperty($properties, 'copy/action', $action);

if ($summary) $summary = " : $summary"; if (!$xwIsAdmin) $action = 'copy'; $target = ucfirst(str_replace(' ', '_', $target)); $ot = Title::newFromText($title); $nt = Title::newFromText($target); $ns = $ot->getNamespace(); if ($nstxt = $wgContLang->getNsText($ns)) $nstxt .= ':'; $err = $msg = ; $link = str_replace('$1',,$wgArticlePath); $olink = $action == 'rename' ? ' class="new"' : ; $olink = "<a$olink href=\"$link$title\">$title</a>"; $nlink = "<a href=\"$link$target\">$target</a>";

if ($target && !$xwAnonymous) { # Create list of articles to apply the process to (main, talk, xml) $list = array($nstxt); if ($xml) ereg('^Xml:',$title)

? $msg .= "

  • Properties not copied, $olink is already a properties article!
  • "

    : array_push($list,"Xml:$nstxt"); if ($talk) $ns & 1

    ? $msg .= "

  • Talk page not copied, $olink is already a talk page!
  • "

    : array_push($list,$wgContLang->getNsText($ns|1).':');

    # Loop through the list and apply the requested action to each $title = $ot->getText(); $target = $nt->getText(); foreach ($list as $i => $nstxt) { $ot = Title::newFromText($nstxt.$title); $nt = Title::newFromText($nstxt.$target); $olink = $action == 'rename' ? ' class="new"' : ; $olink = "<a$olink href=\"$link$nstxt$title\">$nstxt$title</a>"; $nlink = "<a href=\"$link$nstxt$target\">$nstxt$target</a>";

    if ($ot->getArticleID() == 0) $msg .= $err = "

  • $nstxt"."Article does't exist
  • "; else if ($nt->getArticleID()) $msg .= $err = "

  • Could not $action to $nlink because it already exists!
  • ";

    else { $oa = new Article($ot); $na = new Article($nt); if ($action == 'copy') { $text = xwArticleContent($nstxt.$title); $na->insertNewArticle($text, "Copied from $nstxt$title$summary", false, false);

    $msg .= "

  • New copy of $olink successfully created as $nlink
  • ";

    } else {

    if (($err = $ot->moveTo($nt)) != 1) $msg .= $err = "

  • Move from $olink to $nlink failed: $err
  • ";

    else { $err = ;

    $msg .= "

  • $olink successfully moved to $nlink
  • ";

    if ($action == 'rename') { $dbw =& wfGetDB(DB_MASTER); $okey = $ot->getDBkey(); $dbw->delete('cur', array('cur_namespace' => $ns, 'cur_title' => $okey)); $dbw->delete('old', array('old_namespace' => $ns, 'old_title' => $okey)); $dbw->delete('recentchanges', array('rc_namespace' => $ns, 'rc_title' => $okey)); } } } } if (($i == 0) && $err) { $msg = $err; break; } # bail if problem moving the main article }

    $article = preg_replace('/(?<=)(.+)(?=)/s',"

      $msg



    $1",$article);

    } else { # Replace article content with form (called on view event bu xpath-query in button-url)

    $msg = "

    Rename/copy article:

    <form action=\"/wiki/index.php\" method=\"GET\">

    <input type=hidden name=title value=\"$title\"> <input type=hidden name=\"xpath:/properties:view\" value=\"$tTitle\"> <input type=hidden name=\"xpath:/properties:copy\">

    New title:<input type=text name=\"xpath:/properties/copy:target\">
    Reason:<input type=text name=\"xpath:/properties/copy:summary\">
    Action: ".($xwIsAdmin?"<input type=radio name=\"xpath:/properties/copy:action\" value=rename checked>Rename

      <input type=radio name=\"xpath:/properties/copy:action\" value=redir>Redirect   ":)."<input type=radio name=\"xpath:/properties/copy:action\" value=copy".($xwIsAdmin?' ':' checked').">Copy

    <input type=checkbox checked=checked value=1 name=\"xpath:/properties/copy:xml\">

    Also apply to properties

    <input type=checkbox checked=checked value=1 name=\"xpath:/properties/copy:talk\">

    Also apply to discussion

    <input type=submit value=\" Commit \">



    Bugs

    • Rename's not showing up in changes
    • $ in name not working

    Help

    For information and discussion about this form, see <a href=\"".$link."talk:copy.php\">talk:copy.php</a>

    Rename (admin only)
    Changes the title of the article applying to current content and all the history.
    The original title becomes unused and all links to that title will become red creation links.

    Redirect (admin only)
    Changes the title of the article applying to current content and all the history.
    Any links referring to the original title are automatically redirected to the new title
    (unless redir=no is included in the query-string).
    This is the action MediaWiki takes when \"move\" is applied to an article.

    Copy
    Creates a new article with the same content as the original, but exhibiting no history.
    The original title is left unaffected by this operation.

    </form>";

    $article = preg_replace('/(?<=).+(?=)/s',$msg,$article); } ?></php>