Skip to content

Commit

Permalink
fix function name media_isexternal()
Browse files Browse the repository at this point in the history
remove empty rev from ml()
rename getProperRevision() to getLastRevisionAt()
make getLastRevisionAt() a method of ChangeLog
  • Loading branch information
lisps committed Nov 22, 2013
1 parent ac6dc64 commit 78b874e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
3 changes: 2 additions & 1 deletion doku.php
Expand Up @@ -49,7 +49,8 @@
$SUM = $INPUT->post->str('summary');

if($DATE_AT) {
$rev_t = getProperRevision($ID,$DATE_AT);
$pagelog = new PageChangeLog($ID);
$rev_t = $pagelog->getLastRevisionAt($DATE_AT);
if($rev_t === '') {
$REV = '';
} else if ($rev_t === false) {
Expand Down
41 changes: 19 additions & 22 deletions inc/changelog.php
Expand Up @@ -771,6 +771,25 @@ protected function getNewlinepointer($fp, $finger) {
public function isCurrentRevision($rev) {
return $rev == @filemtime($this->getFilename());
}

/**
* Return an existing revision for a specific date which is
* the current one or younger or equal then the date
*
* @param string $id
* @param number $date_at timestamp
* @return string revision ('' for current)
*/
function getLastRevisionAt($date_at){
//requested date_at(timestamp) younger or equal then modified_time($this->id) => load current
if($date_at >= @filemtime($this->getFilename())) {
return '';
} else if ($rev = $this->getRelativeRevision($date_at+1, -1)) { //+1 to get also the requested date revision
return $rev;
} else {
return false;
}
}
}

class PageChangelog extends ChangeLog {
Expand Down Expand Up @@ -870,25 +889,3 @@ function getRevisions($id, $first, $num, $chunk_size=8192, $media=false) {
return $changelog->getRevisions($first, $num);
}

/**
* Return an existing revision for a specific date which is
* the current one or less or equal then the date
*
* @param string $id
* @param number $date_at
* @param boolean $media
* @return string revision ('' for current)
*/
function getProperRevision($id,$date_at,$media = false){
$modified_time = @filemtime($media?mediaFN($id):wikiFN($id));
if(((int)$date_at) >= $modified_time) { //requestet REV younger or equal then time($id) => load current
return '';
} else {
$log = new PageRevisionLog($id);
if($rev = $log->getRelativeRevision($date_at+1, -1,$media)) {
return $rev;
} else {
return false;
}
}
}
1 change: 1 addition & 0 deletions inc/common.php
Expand Up @@ -484,6 +484,7 @@ function ml($id = '', $more = '', $direct = true, $sep = '&', $abs = false)
if(empty($more['w'])) unset($more['w']);
if(empty($more['h'])) unset($more['h']);
if(isset($more['id']) && $direct) unset($more['id']);
if(isset($more['rev']) && !$more['rev']) unset($more['rev']);
$more = buildURLparams($more, $sep);
} else {
$matches = array();
Expand Down
5 changes: 3 additions & 2 deletions inc/parser/xhtml.php
Expand Up @@ -1060,7 +1060,7 @@ function _media ($src, $title=null, $align=null, $width=null,
$height=null, $cache=null, $render = true) {

$ret = '';
$intern = !is_externalmedia($src);
$intern = !media_isexternal($src);
list($ext,$mime,$dl) = mimetype($src);
if(substr($mime,0,5) == 'image'){
// first get the $title
Expand Down Expand Up @@ -1248,7 +1248,8 @@ function _getMediaLinkConf($src, $title, $align, $width, $height, $cache, $rende
* @return string revision ('' for current)
*/
function _getProperMediaRevision($media_id){
return getProperRevision($media_id,$this->date_at,true);
$pagelog = new MediaChangeLog($media_id);
return $pagelog->getLastRevisionAt($this->date_at);
}


Expand Down

0 comments on commit 78b874e

Please sign in to comment.