Skip to content

Commit

Permalink
Homepage|Build Repository: Use source.dengine.net instead of code.iki.fi
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Nov 7, 2015
1 parent ccc3f0a commit 9b97b56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions web/plugins/buildrepository/buildrepository.php
Expand Up @@ -60,8 +60,8 @@ class BuildRepositoryPlugin extends Plugin implements Actioner, RequestInterpret
public static $name = 'buildrepository';

/// Feed URIs:
const XML_FEED_URI = 'http://code.iki.fi/builds/events.xml';
const RSS_FEED_URI = 'http://code.iki.fi/builds/events.rss';
const XML_FEED_URI = 'http://source.dengine.net/builds/events.xml';
const RSS_FEED_URI = 'http://source.dengine.net/builds/events.rss';

/**
* Plaform (Record):
Expand Down
4 changes: 2 additions & 2 deletions web/plugins/buildrepository/commitutils.php
Expand Up @@ -138,7 +138,7 @@ function outputCommitHTML(&$commit)
if(is_array($value) && isset($value['guessed']) && $value['guessed'] !== 0) continue;

$cleanTag = htmlspecialchars($tag);
$tagList .= '<a href="http://code.iki.fi/codex/find_tag.php?tag='. $tag .'" class="tag" title="Find commits tagged \''.$cleanTag.'\' in the Codex">'.$cleanTag.'</a>';
$tagList .= '<a href="http://source.dengine.net/codex/find_tag.php?tag='. $tag .'" class="tag" title="Find commits tagged \''.$cleanTag.'\' in the Codex">'.$cleanTag.'</a>';
}
}
$tagList .= '</div>';
Expand Down Expand Up @@ -241,7 +241,7 @@ function outputCommitLogHTML(&$build)

if($groupCount > 1)
{
?><strong><a href="http://code.iki.fi/codex/find_tag.php?tag=<?php echo $groupName; ?>" title="<?php echo htmlspecialchars("Find commits with primary tag '$groupName' in the Codex"); ?>" class="tag"><?php echo htmlspecialchars($groupName); ?></a></strong><a name="<?php echo htmlspecialchars($groupName); ?>"></a><a class="jump" href="#commitindex" title="Back to Commits index">index</a><br /><ol><?php
?><strong><a href="http://source.dengine.net/codex/find_tag.php?tag=<?php echo $groupName; ?>" title="<?php echo htmlspecialchars("Find commits with primary tag '$groupName' in the Codex"); ?>" class="tag"><?php echo htmlspecialchars($groupName); ?></a></strong><a name="<?php echo htmlspecialchars($groupName); ?>"></a><a class="jump" href="#commitindex" title="Back to Commits index">index</a><br /><ol><?php
}

foreach($group as &$commit)
Expand Down

0 comments on commit 9b97b56

Please sign in to comment.