* Support for table name prefixes throughout the code. No support yet for converting...
[lhc/web/wiklou.git] / maintenance / refreshLinks.inc
1 <?php
2
3 define( "REPORTING_INTERVAL", 50 );
4 define( "PAUSE_INTERVAL", 50 );
5
6 function refreshLinks( $start ) {
7 global $wgUser, $wgTitle, $wgArticle, $wgEnablePersistentLC, $wgLinkCache, $wgOut;
8
9 $dbw =& wfGetDB( DB_MASTER );
10
11 $end = $dbw->selectField( 'cur_id', 'max(cur_id)', false );
12
13 print("Refreshing link table. Starting from cur_id $start of $end.\n");
14
15 # Don't generate TeX PNGs (lack of a sensible current directory causes errors anyway)
16 $wgUser->setOption("math", 3);
17
18 for ($id = $start; $id <= $end; $id++) {
19 if ( !($id % REPORTING_INTERVAL) ) {
20 print "$id\n";
21 }
22
23 if ( !($id % PAUSE_INTERVAL) ) {
24 sleep(1);
25 }
26
27 $wgTitle = Title::newFromID( $id );
28 if ( is_null( $wgTitle ) ) {
29 continue;
30 }
31
32 $wgArticle = new Article( $wgTitle );
33 $text = $wgArticle->getContent( true );
34 $wgLinkCache = new LinkCache;
35 $wgLinkCache->forUpdate( true );
36 $wgOut->addWikiText( $text );
37
38 if ( $wgEnablePersistentLC ) {
39 $wgLinkCache->saveToLinkscc( $id, $dbw->strencode( $wgTitle->getPrefixedDBkey() ) );
40 }
41
42 $linksUpdate = new LinksUpdate( $id, $wgTitle->getPrefixedDBkey() );
43 $linksUpdate->doDumbUpdate();
44 $linksUpdate->fixBrokenLinks();
45 }
46 }
47 ?>