1e28ed531de701e988af3ede0a3c7e59683c6ef3
Author: AD7six
Date: 2009-02-27 22:55:30 +0100
diff --git a/controllers/components/unique_url.php b/controllers/components/unique_url.php
index 7d74eac..cc2411e 100644
--- a/controllers/components/unique_url.php
+++ b/controllers/components/unique_url.php
@@ -21,6 +21,13 @@
*/
class UniqueUrlComponent extends Object {
/**
+ * components property
+ *
+ * @var array
+ * @access public
+ */
+ var $components = array('RequestHandler');
+/**
* here property
*
* @var mixed null
@@ -50,7 +57,7 @@ class UniqueUrlComponent extends Object {
*/
function check () {
if (isset($this->controller->params['requested']) || isset($this->controller->params['admin']) ||
- isset($this->controller->params['isAjax']) || $this->controller->data) {
+ $this->RequestHandler->isAjax() || $this->controller->data) {
return;
}
$this->here = $here = '/' . trim($this->controller->params['url']['url'], '/');
diff --git a/controllers/nodes_controller.php b/controllers/nodes_controller.php
index 5f7e8d7..b14a726 100644
--- a/controllers/nodes_controller.php
+++ b/controllers/nodes_controller.php
@@ -98,7 +98,6 @@ class NodesController extends AppController {
if (isset($this->passedArgs[0])) {
$this->Node->id = $this->currentNode = $this->passedArgs[0];
}
- $this->UniqueUrl->check();
$fields = array ('Node.id', 'Node.depth', 'Node.id', 'Node.lft', 'Node.rght', 'Node.comment_level', 'Node.edit_level', 'Revision.id', 'Revision.slug', 'Revision.title', 'Revision.content');
if (!isset($this->currentNode)) {
$topNode = $this->Node->find(array('Node.depth' => '0'), array('Node.id'), null, 0);
@@ -973,6 +972,7 @@ class NodesController extends AppController {
$this->paginate['order'] = 'Revision.created desc';
$this->paginate['fields'] = array(
'Revision.id',
+ 'Revision.slug',
'Revision.user_id',
'Revision.lang',
'Revision.status',
diff --git a/views/attachments/admin_index.ctp b/views/attachments/admin_index.ctp
index d440773..a9c774b 100755
--- a/views/attachments/admin_index.ctp
+++ b/views/attachments/admin_index.ctp
@@ -13,7 +13,6 @@ $th = array(
);
echo $html->tableHeaders($th);
foreach ($data as $row) {
- extract($row['Attachment']);
if (isset($row[$class])) {
$other = $row['Attachment']['class'];
$otherController = Inflector::pluralize($other);
diff --git a/views/attachments/admin_view.ctp b/views/attachments/admin_view.ctp
index 8cfde87..945ed46 100755
--- a/views/attachments/admin_view.ctp
+++ b/views/attachments/admin_view.ctp
@@ -1,23 +1,22 @@
<h2>Image</h2>
<table>
<?php
- extract($data);
- echo $html->tableCells(array('id',$Image['id']));
- echo $html->tableCells(array('User',$User?$html->link($User['first_name'], array('controller' => 'users', 'action' => 'view', $Image['user_id'])):''));
- echo $html->tableCells(array('class',$Image['class']));
- echo $html->tableCells(array('foreign_id',$Image['foreign_id']));
- echo $html->tableCells(array('original',$Image['original']));
- echo $html->tableCells(array('filename',$Image['filename']));
- echo $html->tableCells(array('dir',$Image['dir']));
- echo $html->tableCells(array('mimetype',$Image['mimetype']));
- echo $html->tableCells(array('filesize',$Image['filesize']));
- echo $html->tableCells(array('height',$Image['height']));
- echo $html->tableCells(array('width',$Image['width']));
- echo $html->tableCells(array('thumb',$Image['thumb']));
- echo $html->tableCells(array('description',$Image['description']));
- echo $html->tableCells(array('slug',$Image['slug']));
- echo $html->tableCells(array('status',$Image['status']));
- echo $html->tableCells(array('created',$Image['created']));
- echo $html->tableCells(array('modified',$Image['modified']));
+ echo $html->tableCells(array('id',$data['Image']['id']));
+ echo $html->tableCells(array('User',$data['User']?$html->link($data['User']['first_name'], array('controller' => 'users', 'action' => 'view', $data['Image']['user_id'])):''));
+ echo $html->tableCells(array('class',$data['Image']['class']));
+ echo $html->tableCells(array('foreign_id',$data['Image']['foreign_id']));
+ echo $html->tableCells(array('original',$data['Image']['original']));
+ echo $html->tableCells(array('filename',$data['Image']['filename']));
+ echo $html->tableCells(array('dir',$data['Image']['dir']));
+ echo $html->tableCells(array('mimetype',$data['Image']['mimetype']));
+ echo $html->tableCells(array('filesize',$data['Image']['filesize']));
+ echo $html->tableCells(array('height',$data['Image']['height']));
+ echo $html->tableCells(array('width',$data['Image']['width']));
+ echo $html->tableCells(array('thumb',$data['Image']['thumb']));
+ echo $html->tableCells(array('description',$data['Image']['description']));
+ echo $html->tableCells(array('slug',$data['Image']['slug']));
+ echo $html->tableCells(array('status',$data['Image']['status']));
+ echo $html->tableCells(array('created',$data['Image']['created']));
+ echo $html->tableCells(array('modified',$data['Image']['modified']));
?>
</table>
\ No newline at end of file
diff --git a/views/changes/index.ctp b/views/changes/index.ctp
index 64418cc..2e0c7a6 100644
--- a/views/changes/index.ctp
+++ b/views/changes/index.ctp
@@ -5,20 +5,19 @@
$pass = $this->passedArgs;
$paginator->options(array('url' => $pass));
foreach ($data as $row) {
- extract($row);
echo '<li>';
- if (in_array($Revision['status'], array('current', 'previous'))) {
- echo '<h3>' . $html->link($Revision['title'], array('controller' => 'revisions', 'action' => 'view', $Revision['id'])) . '</h3>';
+ if (in_array($row['Revision']['status'], array('current', 'previous'))) {
+ echo '<h3>' . $html->link($row['Revision']['title'], array('controller' => 'revisions', 'action' => 'view', $row['Revision']['id'])) . '</h3>';
} else {
- echo '<h3>' . $Revision['title'] . '</h3>';
+ echo '<h3>' . $row['Revision']['title'] . '</h3>';
}
echo '<ul>';
- if ($Change['status_from'] == 'new') {
+ if ($row['Change']['status_from'] == 'new') {
echo '<li>' . sprintf(__('change submitted by %s, %s', true),
- isset($User['username'])?$User['username']:'unknown',
- $time->niceShort($Change['created'])) . '</li>';
+ isset($row['User']['username'])?$row['User']['username']:'unknown',
+ $time->niceShort($row['Change']['created'])) . '</li>';
} else {
- switch ($Change['status_to']) {
+ switch ($row['Change']['status_to']) {
case 'accepted';
$to = __('accepted', true);
break;
@@ -29,17 +28,17 @@ foreach ($data as $row) {
$to = __('pending', true);
break;
default:
- $to = __($Change['status_to'], true);
+ $to = __($row['Change']['status_to'], true);
}
echo '<li>' . sprintf(__('changed from %s to %s by %s, %s', true),
- $Change['status_from'],
+ $row['Change']['status_from'],
$to,
- isset($User['username'])?$User['username']:'unknown',
- $time->niceShort($Change['created'])) . '</li>';
- $author = isset($Author['username'])?$Author['username']:'unknown';
+ isset($row['User']['username'])?$row['User']['username']:'unknown',
+ $time->niceShort($row['Change']['created'])) . '</li>';
+ $author = isset($row['Author']['username'])?$row['Author']['username']:'unknown';
echo '<li>' . sprintf(__('submitted by %s', true), $author) . '</li>';
}
- echo '<li>' . $html->clean($Change['comment']) . '</li>';
+ echo '<li>' . $html->clean($row['Change']['comment']) . '</li>';
echo '</ul></li>';
}
?>
diff --git a/views/changes/rss/index.ctp b/views/changes/rss/index.ctp
index 714e982..59fb5ee 100755
--- a/views/changes/rss/index.ctp
+++ b/views/changes/rss/index.ctp
@@ -8,8 +8,7 @@
$html = $_html;
return;
}
- extract($row);
- switch ($Change['status_to']) {
+ switch ($row['Change']['status_to']) {
case 'accepted';
$to = __('accepted', true);
break;
@@ -20,25 +19,25 @@
$to = __('pending', true);
break;
default:
- $to = __($Change['status_to'], true);
+ $to = __($row['Change']['status_to'], true);
}
$desc = '<ul>';
- $author = isset($Author['username'])?$Author['username']:'unknown';
+ $author = isset($row['Author']['username'])?$row['Author']['username']:'unknown';
$desc .= '<li>' . sprintf(__('Submitted by: %s', true), $author) . '</li>';
- if ($Change['status_to'] != 'pending'){
- $desc .= '<li>' . sprintf(__('Changed by: %s', true), $User['username']) . '</li>';
+ if ($row['Change']['status_to'] != 'pending'){
+ $desc .= '<li>' . sprintf(__('Changed by: %s', true), $row['User']['username']) . '</li>';
}
- $comment = $html->clean(trim($Change['comment']));
+ $comment = $html->clean(trim($row['Change']['comment']));
if ($comment) {
$desc .= '<li>' . $comment . '</li>';
}
$desc .= '</ul>';
return array(
- 'title' => $to . ' - ' . $Revision['title'],
- 'link' => array('controller' => 'revisions', 'action' => 'view', $Revision['id'], $Revision['slug']),
+ 'title' => $to . ' - ' . $row['Revision']['title'],
+ 'link' => array('controller' => 'revisions', 'action' => 'view', $row['Revision']['id'], $row['Revision']['slug']),
'description' => $desc,
- 'pubDate' => date('r', strtotime($Change['created'])),
+ 'pubDate' => date('r', strtotime($row['Change']['created'])),
);
}
?>
\ No newline at end of file
diff --git a/views/comments/admin_index.ctp b/views/comments/admin_index.ctp
index 51e1ade..10d444c 100644
--- a/views/comments/admin_index.ctp
+++ b/views/comments/admin_index.ctp
@@ -26,29 +26,28 @@ $th = array(
);
echo $html->tableHeaders($th);
foreach ($data as $row) {
- extract($row);
$collection = $book = '-';
foreach ($collections as $c) {
- if ($c['Node']['lft'] <= $Node['lft'] && $c['Node']['rght'] >= $Node['rght']) {
+ if ($c['Node']['lft'] <= $row['Node']['lft'] && $c['Node']['rght'] >= $row['Node']['rght']) {
$collection = $html->link($c['Revision']['title'], am($pass, array('restrict_to' => $c['Node']['id'])));
$collection = $html->link($c['Revision']['title'], array('restrict_to' => $c['Node']['id']));
break;
}
}
foreach ($books as $b) {
- if ($b['Node']['lft'] <= $Node['lft'] && $b['Node']['rght'] >= $Node['rght']) {
+ if ($b['Node']['lft'] <= $row['Node']['lft'] && $b['Node']['rght'] >= $row['Node']['rght']) {
$book = $html->link($b['Revision']['title'], am($pass, array('restrict_to' => $b['Node']['id'])));
break;
}
}
$tr = array(
$book . ' (' . $collection . ')',
- $Node?$html->link($Node['sequence'] . ' ' . $Revision['title'], am($pass, array('page' => 1, 'node_id' => $Comment['node_id']))):'',
- $html->link($Comment['title'], array('action' => 'view', $Comment['id'])),
- $User?$html->link($User['username'], am($pass, array('page' => 1, 'user_id' => $Comment['user_id']))):'',
- $html->link($Comment['email'], am($pass, array('page' => 1, 'email' => $Comment['email']))),
- $html->link($Comment['published'], am($pass, array('page' => 1, 'published' => $Comment['published']))),
- $html->link($Comment['created'], am($pass, array('page' => 1, 'created' => $Comment['created']))),
+ $row['Node']?$html->link($row['Node']['sequence'] . ' ' . $row['Revision']['title'], am($pass, array('page' => 1, 'node_id' => $row['Comment']['node_id']))):'',
+ $html->link($row['Comment']['title'], array('action' => 'view', $row['Comment']['id'])),
+ $User?$html->link($User['username'], am($pass, array('page' => 1, 'user_id' => $row['Comment']['user_id']))):'',
+ $html->link($row['Comment']['email'], am($pass, array('page' => 1, 'email' => $row['Comment']['email']))),
+ $html->link($row['Comment']['published'], am($pass, array('page' => 1, 'published' => $row['Comment']['published']))),
+ $html->link($row['Comment']['created'], am($pass, array('page' => 1, 'created' => $row['Comment']['created']))),
);
echo $html->tableCells($tr, array('class' => 'odd'), array('class' => 'even'));
}
diff --git a/views/comments/admin_view.ctp b/views/comments/admin_view.ctp
index f245aca..37d2432 100644
--- a/views/comments/admin_view.ctp
+++ b/views/comments/admin_view.ctp
@@ -1,19 +1,18 @@
<h2>Comment</h2>
<table>
<?php
- extract($data);
- echo $html->tableCells(array('id',$Comment['id']));
- echo $html->tableCells(array('Node', $Node?$html->link($Node['sequence'], array('controller' => 'nodes', 'action' => 'view', $Comment['node_id'])):''));
- echo $html->tableCells(array('User', $User?$html->link($User['username'], array('controller' => 'users', 'action' => 'view', $Comment['user_id'])):''));
- echo $html->tableCells(array('class',$Comment['class']));
- echo $html->tableCells(array('lang',$Comment['lang']));
- echo $html->tableCells(array('title',$Comment['title']));
- echo $html->tableCells(array('author',$Comment['author']));
- echo $html->tableCells(array('email',$Comment['email']));
- echo $html->tableCells(array('url',$Comment['url']));
- echo $html->tableCells(array('body',$Comment['body']));
- echo $html->tableCells(array('published',$Comment['published']));
- echo $html->tableCells(array('created',$Comment['created']));
- echo $html->tableCells(array('modified',$Comment['modified']));
+ echo $html->tableCells(array('id',$data['Comment']['id']));
+ echo $html->tableCells(array('Node', $data['Node']?$html->link($data['Node']['sequence'], array('controller' => 'nodes', 'action' => 'view', $data['Comment']['node_id'])):''));
+ echo $html->tableCells(array('User', $data['User']?$html->link($data['User']['username'], array('controller' => 'users', 'action' => 'view', $data['Comment']['user_id'])):''));
+ echo $html->tableCells(array('class',$data['Comment']['class']));
+ echo $html->tableCells(array('lang',$data['Comment']['lang']));
+ echo $html->tableCells(array('title',$data['Comment']['title']));
+ echo $html->tableCells(array('author',$data['Comment']['author']));
+ echo $html->tableCells(array('email',$data['Comment']['email']));
+ echo $html->tableCells(array('url',$data['Comment']['url']));
+ echo $html->tableCells(array('body',$data['Comment']['body']));
+ echo $html->tableCells(array('published',$data['Comment']['published']));
+ echo $html->tableCells(array('created',$data['Comment']['created']));
+ echo $html->tableCells(array('modified',$data['Comment']['modified']));
?>
</table>
\ No newline at end of file
diff --git a/views/comments/rss/index.ctp b/views/comments/rss/index.ctp
index 9cd2dcd..50d874d 100755
--- a/views/comments/rss/index.ctp
+++ b/views/comments/rss/index.ctp
@@ -10,13 +10,12 @@
$_this = $_view;
return;
}
- extract($row);
return array(
- 'title' => $Node['sequence'] . ' ' . $Revision['title'] . ' - ' . $html->clean(htmlspecialchars($Comment['title'])),
- 'link' => array('controller' => 'comments', 'action' => 'index', $Comment['node_id'], 'lang' => $Comment['lang'], '#'
- => "comment_{$Comment['id']}"),
+ 'title' => $row['Node']['sequence'] . ' ' . $row['Revision']['title'] . ' - ' . $html->clean(htmlspecialchars($row['Comment']['title'])),
+ 'link' => array('controller' => 'comments', 'action' => 'index', $row['Comment']['node_id'], 'lang' => $row['Comment']['lang'], '#'
+ => "comment_{$row['Comment']['id']}"),
'description' => $_this->element('comment', array('data' => $row, 'fixedDates' => true)),
- 'pubDate' => date('r', strtotime($Comment['created'])),
+ 'pubDate' => date('r', strtotime($row['Comment']['created'])),
);
}
?>
\ No newline at end of file
diff --git a/views/comments/rss/recent.ctp b/views/comments/rss/recent.ctp
index b974396..aa70487 100755
--- a/views/comments/rss/recent.ctp
+++ b/views/comments/rss/recent.ctp
@@ -10,12 +10,11 @@
$_this = $_view;
return;
}
- extract($row);
return array(
- 'title' => $Comment['title'],
- 'link' => array('controller' => 'comments', 'action' => 'view', $Comment['id']),
+ 'title' => $row['Comment']['title'],
+ 'link' => array('controller' => 'comments', 'action' => 'view', $row['Comment']['id']),
'description' => $_this->element('comment', array('data' => $row['Comment'], 'fixedDates' => true)),
- 'pubDate' => date('r', strtotime($Comment['created'])),
+ 'pubDate' => date('r', strtotime($row['Comment']['created'])),
);
}
?>
\ No newline at end of file
diff --git a/views/elements/collections.ctp b/views/elements/collections.ctp
index 004f137..b7f4443 100644
--- a/views/elements/collections.ctp
+++ b/views/elements/collections.ctp
@@ -13,14 +13,13 @@ if ($collections) {
}
$currentCollection = isset($currentPath[1])?$currentPath[1]:array('Node' => array('id' => false));
foreach ($collections as $row) {
- extract($row);
- if ($currentCollection['Node']['id'] == $Node['id']) {
+ if ($currentCollection['Node']['id'] == $row['Node']['id']) {
$options = array('class' => 'active');
} else {
$options = array();
}
- $links[] = $html->link($Revision['title'],
- array('prefix' => null, 'plugin' => null, 'controller' => 'nodes', 'action' => 'view', $Node['id'], $Revision['slug']),
+ $links[] = $html->link($row['Revision']['title'],
+ array('prefix' => null, 'plugin' => null, 'controller' => 'nodes', 'action' => 'view', $row['Node']['id'], $row['Revision']['slug']),
$options
);
}
diff --git a/views/elements/comment.ctp b/views/elements/comment.ctp
index 4439205..da1d6f6 100755
--- a/views/elements/comment.ctp
+++ b/views/elements/comment.ctp
@@ -4,8 +4,7 @@ if (1==2 && $data['user_id']==$data['Revision']['user_id']) {
} else {
$class = "";
}
-extract($data);
-extract($Comment);
+extract($data['Comment']);
$name = __('unknown', true);
if (isset($commenters[$user_id])) {
$name = $commenters[$user_id];
@@ -20,13 +19,13 @@ if (!empty($fixedDates)) {
echo "</p>";
echo "<p class=\"commenttitle\">";
if ($this->action == 'recent') {
- echo $html->link('#', array('action' => 'index', $Node['id'], $Revision['slug'], '#' => "comment_{$id}")) . ' - ';
+ echo $html->link('#', array('action' => 'index', $data['Node']['id'], $data['Revision']['slug'], '#' => "comment_{$id}")) . ' - ';
} elseif(!empty($count)) {
echo $html->link($count, "#comment_{$id}") . ' - ';
}
if ($this->action == 'recent') {
- echo $html->link($Node['sequence'] . ' ' . $Revision['title'], array('controller' => 'nodes', 'action' => 'view', $Node['id'],
- $Revision['slug'], 'lang' => $lang)) . ' - ';
+ echo $html->link($data['Node']['sequence'] . ' ' . $data['Revision']['title'], array('controller' => 'nodes', 'action' => 'view', $data['Node']['id'],
+ $data['Revision']['slug'], 'lang' => $lang)) . ' - ';
}
echo htmlspecialchars($title);
echo "</p>";
diff --git a/views/elements/node_options.ctp b/views/elements/node_options.ctp
index ef0f092..2a248b6 100644
--- a/views/elements/node_options.ctp
+++ b/views/elements/node_options.ctp
@@ -2,30 +2,29 @@
if (isset($this->params['admin'])) {
return;
}
-extract($data);
$options = array();
-if ($Node['edit_level'] <= $auth['User']['Level']) {
- if (!$Revision['id']) {
- $out[] = $html->link(__('Translate', true), array('action'=>'edit',$Node['id'], $Revision['slug']), array('title' =>
+if ($data['Node']['edit_level'] <= $auth['User']['Level']) {
+ if (!$data['Revision']['id']) {
+ $out[] = $html->link(__('Translate', true), array('action'=>'edit',$data['Node']['id'], $data['Revision']['slug']), array('title' =>
__('There is no translation for this section please submit one', true), 'class' => 'contribute'));
} else {
- $out[] = $html->link(__('Edit', true), array('action'=>'edit',$Node['id'], $Revision['slug']), array('title' =>
+ $out[] = $html->link(__('Edit', true), array('action'=>'edit',$data['Node']['id'], $data['Revision']['slug']), array('title' =>
__('Don\'t like this text? Submit your thoughts', true), 'class' => 'contribute'));
}
}
-if ($Node['depth'] >= $viewAllLevel) {
- $out[] = $html->link(__('View just this section', true), array('action'=>'view',$Node['id'], $Revision['slug']));
+if ($data['Node']['depth'] >= $viewAllLevel) {
+ $out[] = $html->link(__('View just this section', true), array('action'=>'view',$data['Node']['id'], $data['Revision']['slug']));
}
-if ($Node['comment_level'] <= $auth['User']['Level'] && $this->layout == 'default') {
- $out[] = $html->link(sprintf(__('Comments (%s)', true), count($Comment)), '#comments-' . $Node['id'], array('class' => 'show-comment'));
+if ($data['Node']['comment_level'] <= $auth['User']['Level'] && $this->layout == 'default') {
+ $out[] = $html->link(sprintf(__('Comments (%s)', true), count($data['Comment'])), '#comments-' . $data['Node']['id'], array('class' => 'show-comment'));
}
-$flags = explode(',', trim($Revision['flags']));
+$flags = explode(',', trim($data['Revision']['flags']));
$flagLis = '';
-if (in_array($Node['id'], $pendingUpdates)) {
+if (in_array($data['Node']['id'], $pendingUpdates)) {
$flagLis .= '<li class="flag pending">' . $html->link(__('there is a pending change for this section', true),
- array('controller' => 'changes', 'action' => 'index', $Node['id'])) . '</li>';
+ array('controller' => 'changes', 'action' => 'index', $data['Node']['id'])) . '</li>';
} {
- $out[] = $html->link(__('History', true), array('action' => 'history', $Node['id'], $Revision['slug']));
+ $out[] = $html->link(__('History', true), array('action' => 'history', $data['Node']['id'], $data['Revision']['slug']));
}
$compare = true;
foreach($flags as $flag) {
@@ -36,13 +35,13 @@ foreach($flags as $flag) {
$compare = false;
$flagLis .= '<li class="flag englishChanged">' .
$html->link(__('This text may be out of sync with the English version', true),
- array('action' => 'compare', $Node['id'], $Revision['slug'])) . '</li>';
+ array('action' => 'compare', $data['Node']['id'], $data['Revision']['slug'])) . '</li>';
} else {
$flagLis .= '<li class="flag warning">' . __($flag, true) . '</li>';
}
}
-if ($this->params['lang'] != $defaultLang && $Revision['id'] && $compare) {
- $out[] = $html->link(__('Compare to original content', true), array('action' => 'compare', $Node['id'], $Revision['slug']));
+if ($this->params['lang'] != $defaultLang && $data['Revision']['id'] && $compare) {
+ $out[] = $html->link(__('Compare to original content', true), array('action' => 'compare', $data['Node']['id'], $data['Revision']['slug']));
}
if ($out) {
diff --git a/views/elements/toc/public_item.ctp b/views/elements/toc/public_item.ctp
index 5655d8a..c24f612 100644
--- a/views/elements/toc/public_item.ctp
+++ b/views/elements/toc/public_item.ctp
@@ -1,29 +1,20 @@
<?php
$params = array();
-extract($data);
if (!isset($pathIds) && isset ($currentPath)) {
$pathIds = Set::extract($currentPath, '{n}.Node.id');
$this->set('pathIds', $pathIds);
}
-$params['id'] = 'toc-' . $Revision['slug'] . '-' . $Node['id'];
+$params['id'] = 'toc-' . $data['Revision']['slug'] . '-' . $data['Node']['id'];
if (isset($pathIds)) {
- if ($Node['id'] == $pathIds[count($pathIds) - 1]) {
- //$tree->addItemAttribute('class', 'selected');
+ if ($data['Node']['id'] == $pathIds[count($pathIds) - 1]) {
$params['class'] = 'selected';
}
}
-if ($this->action == 'complete' && $Node['lft'] >= $currentNode['lft'] && $Node['rght'] <= $currentNode['rght']) {
- echo $html->link($Node['sequence'] . ' ' . $Revision['title'], '#' . $Revision['slug'] . '-' . $Node['id'],
+if ($this->action == 'complete' && $data['Node']['lft'] >= $currentNode['lft'] && $data['Node']['rght'] <= $currentNode['rght']) {
+ echo $html->link($data['Node']['sequence'] . ' ' . $data['Revision']['title'], '#' . $data['Revision']['slug'] . '-' . $data['Node']['id'],
$params);
return;
}
-//if ($Node['depth'] < $viewAllLevel || !isset($lastNode)) {
- echo $html->link($Node['sequence'] . ' ' . $Revision['title'],
- array('action'=>'view', $Node['id'], $Revision['slug']), $params);
-/* $this->set('lastNode', $data);
-} else {
- echo $html->link($Node['sequence'] . ' ' . $Revision['title'],
- array('action'=>'view', $lastNode['Node']['id'], $lastNode['Revision']['slug'], '#' => $Revision['slug'] . '-' . $Node['id']), $params);
-}
- */
+echo $html->link($data['Node']['sequence'] . ' ' . $data['Revision']['title'],
+ array('action'=>'view', $data['Node']['id'], $data['Revision']['slug']), $params);
?>
\ No newline at end of file
diff --git a/views/nodes/admin_index.ctp b/views/nodes/admin_index.ctp
index bd1438a..70d63fb 100755
--- a/views/nodes/admin_index.ctp
+++ b/views/nodes/admin_index.ctp
@@ -17,33 +17,32 @@ $th = array(
);
echo $html->tableHeaders($th);
foreach ($data as $row) {
- extract($row);
$collection = $book = '-';
foreach ($collections as $c) {
- if ($c['Node']['lft'] <= $Node['lft'] && $c['Node']['rght'] >= $Node['rght']) {
+ if ($c['Node']['lft'] <= $row['Node']['lft'] && $c['Node']['rght'] >= $row['Node']['rght']) {
$collection = $html->link($c['Revision']['title'], am($pass, array('restrict_to' => $c['Node']['id'])));
$collection = $html->link($c['Revision']['title'], array('restrict_to' => $c['Node']['id']));
break;
}
}
foreach ($books as $b) {
- if ($b['Node']['lft'] <= $Node['lft'] && $b['Node']['rght'] >= $Node['rght']) {
+ if ($b['Node']['lft'] <= $row['Node']['lft'] && $b['Node']['rght'] >= $row['Node']['rght']) {
$book = $html->link($b['Revision']['title'], am($pass, array('restrict_to' => $b['Node']['id'])));
break;
}
}
- $author = isset($users[$Revision['user_id']])?$html->link($users[$Revision['user_id']], am($pass, array('Revision.user_id' => $Revision['user_id']))):'';
+ $author = isset($users[$row['Revision']['user_id']])?$html->link($users[$row['Revision']['user_id']], am($pass, array('Revision.user_id' => $row['Revision']['user_id']))):'';
$status = array();
- if (in_array($Node['id'], $pendingUpdates)) {
- $status[] = $html->link('change pending', array('controller' => 'revisions', 'action' => 'history', $Node['id'], 'status' =>
+ if (in_array($row['Node']['id'], $pendingUpdates)) {
+ $status[] = $html->link('change pending', array('controller' => 'revisions', 'action' => 'history', $row['Node']['id'], 'status' =>
'pending'));
}
$status = implode ($status, ' ');
$tr = array(
- $html->link($Node['id'], array('action' => 'view', $Node['id'])),
+ $html->link($row['Node']['id'], array('action' => 'view', $row['Node']['id'])),
$book . ' (' . $collection . ')',
- $html->link($Node['sequence'], am($pass, array('restrict_to' => $Node['id']))),
- $html->link($Revision['title'], array('action' => 'view', $Node['id'])),
+ $html->link($row['Node']['sequence'], am($pass, array('restrict_to' => $row['Node']['id']))),
+ $html->link($row['Revision']['title'], array('action' => 'view', $row['Node']['id'])),
$author,
$status,
);
diff --git a/views/nodes/compare.ctp b/views/nodes/compare.ctp
index 5e3c84f..0fe25ca 100644
--- a/views/nodes/compare.ctp
+++ b/views/nodes/compare.ctp
@@ -2,11 +2,10 @@
<?php
$compare = array();
foreach ($data as $key => $row) {
- extract ($row);
- echo '<h2>{' . up($Revision['lang']) . '} - ' . $Node['sequence'] . ' ' . htmlspecialchars($Revision['title']) . '</h2>';
+ echo '<h2>{' . up($row['Revision']['lang']) . '} - ' . $row['Node']['sequence'] . ' ' . htmlspecialchars($row['Revision']['title']) . '</h2>';
//echo $html->clean($currentNode['Revision']['content']);
- echo '<div class="summary">' . $Revision['content'] . '</div>';
- $compare[$key] = '<title>' . $Revision['title'] . "</title>\r\n" . $Revision['content'];
+ echo '<div class="summary">' . $row['Revision']['content'] . '</div>';
+ $compare[$key] = '<title>' . $row['Revision']['title'] . "</title>\r\n" . $row['Revision']['content'];
}
echo '<h2>' . __('Differences', true) . '</h2>';
echo $diff->compare(htmlspecialchars($compare['compare']), htmlspecialchars($compare['original']));
diff --git a/views/nodes/edit.ctp b/views/nodes/edit.ctp
index 5a4e376..60d58c7 100755
--- a/views/nodes/edit.ctp
+++ b/views/nodes/edit.ctp
@@ -52,23 +52,26 @@ echo $form->end();
<?php
$menu->settings(__('Resources', true), array('class' => 'dialogs'));
$lang = Configure::read('Languages.default');
-if ($data['Revision']['lang'] == $lang) {
+$menu->add(array(
+ array('section' => __('Resources', true), 'title' => __('Current Version', true), 'url' => array('action' => 'view',
+ $this->data['Node']['id'], $contentSlugs[$this->data['Revision']['lang']]))
+));
+$menu->add(array(
+ array('title' => __('History', true), 'url' => array('action' => 'history',
+ $this->data['Node']['id'], $contentSlugs[$this->data['Revision']['lang']]))
+));
+if ($data['Revision']['lang'] != $lang) {
$menu->add(array(
- array('section' => __('Resources', true), 'title' => __('Current Version', true), 'url' => array('action' => 'view',
- $this->data['Node']['id'], $contentSlugs[$this->data['Revision']['lang']]))
+ array('title' => __('English Version', true), 'url' => array('action' => 'view',
+ 'lang' => $lang, $this->data['Node']['id'], $contentSlugs[$lang]))
));
$menu->add(array(
- array('title' => __('History', true), 'url' => array('action' => 'history',
- $this->data['Node']['id'], $contentSlugs[$this->data['Revision']['lang']]))
- ));
-} else {
- $menu->add(array(
- array('section' => __('Resources', true), 'title' => 'Original', 'url' => array('action' => 'view',
+ array('title' => __('Compare to English', true), 'url' => array('action' => 'compare',
$this->data['Node']['id'], $contentSlugs[$lang]))
));
$menu->add(array(
- array('title' => 'History', 'url' => array('action' => 'history',
- $this->data['Node']['id'], $contentSlugs[$lang]))
+ array('title' => __('English History', true), 'url' => array('action' => 'history',
+ 'lang' => $lang, $this->data['Node']['id'], $contentSlugs[$lang]))
));
}
diff --git a/views/nodes/english_todo.ctp b/views/nodes/english_todo.ctp
index 08b6ca6..844fd16 100644
--- a/views/nodes/english_todo.ctp
+++ b/views/nodes/english_todo.ctp
@@ -4,11 +4,10 @@
</div>
<?php
foreach ($data as $id => $row) {
- extract ($row);
- $sequence = $Node['sequence'];
+ $sequence = $row['Node']['sequence'];
$sequence = $sequence?$sequence:'#';
- echo "<h2 id=\"{$Revision['slug']}-{$Node['id']}\">" .
- $html->link($sequence, array('action' => 'view', $Node['id'], $Revision['slug'])) . ' ' . htmlspecialchars($Revision['title']) . "</h2>";
+ echo "<h2 id=\"{$row['Revision']['slug']}-{$row['Node']['id']}\">" .
+ $html->link($sequence, array('action' => 'view', $row['Node']['id'], $row['Revision']['slug'])) . ' ' . htmlspecialchars($row['Revision']['title']) . "</h2>";
echo '<div class="options">';
echo $this->element('node_options', array('data' => $row));
diff --git a/views/nodes/history.ctp b/views/nodes/history.ctp
index 02a21aa..3d42ef4 100644
--- a/views/nodes/history.ctp
+++ b/views/nodes/history.ctp
@@ -20,23 +20,23 @@ $th = array(
$firstTranslation = true;
echo $html->tableHeaders($th);
foreach ($data as $row) {
- extract($row);
$defaultReason = 'edit';
- if ($Revision['lang'] != $defaultLang) {
+ if ($row['Revision']['lang'] != $defaultLang) {
$defaultReason = 'edit/translation';
}
- if ($Revision['status'] == 'pending') {
- $link = $Revision['id'];
+ if ($row['Revision']['status'] == 'pending') {
+ $link = $row['Revision']['id'];
} else {
- $link = $html->link($Revision['id'], array('controller' => 'revisions', 'action' => 'view', $Revision['id']));
+ $link = $html->link($row['Revision']['id'], array('controller' => 'revisions', 'action' => 'view',
+ $row['Revision']['id'], $row['Revision']['slug']));
}
$tr = array(
$link,
- $Revision['lang'],
- isset($users[$Revision['user_id']])?$users[$Revision['user_id']]:'-',
- $Revision['reason']?$Revision['reason']:$defaultReason,
- $Revision['status'],
- $time->niceShort($Revision['created'])
+ $row['Revision']['lang'],
+ isset($users[$row['Revision']['user_id']])?$users[$row['Revision']['user_id']]:'-',
+ $row['Revision']['reason']?$row['Revision']['reason']:$defaultReason,
+ $row['Revision']['status'],
+ $time->niceShort($row['Revision']['created'])
);
echo $html->tableCells($tr, array('class' => 'odd'), array('class' => 'even'));
}
diff --git a/views/nodes/todo.ctp b/views/nodes/todo.ctp
index 151927d..935bb4e 100644
--- a/views/nodes/todo.ctp
+++ b/views/nodes/todo.ctp
@@ -16,11 +16,10 @@ echo '</p><p>' . __('These sections either do not have a translation, or the Eng
</div>
<?php
foreach ($data as $id => $row) {
- extract ($row);
- $sequence = $Node['sequence'];
+ $sequence = $row['Node']['sequence'];
$sequence = $sequence?$sequence:'#';
- echo "<h2 id=\"{$Revision['slug']}-{$Node['id']}\">" .
- $html->link($sequence, array('action' => 'view', $Node['id'], $Revision['slug'])) . ' ' . htmlspecialchars($Revision['title']) . "</h2>";
+ echo "<h2 id=\"{$row['Revision']['slug']}-{$row['Node']['id']}\">" .
+ $html->link($sequence, array('action' => 'view', $row['Node']['id'], $row['Revision']['slug'])) . ' ' . htmlspecialchars($row['Revision']['title']) . "</h2>";
echo '<div class="options">';
echo $this->element('node_options', array('data' => $row));
diff --git a/views/nodes/view_all.ctp b/views/nodes/view_all.ctp
index 8c90922..385f9f9 100644
--- a/views/nodes/view_all.ctp
+++ b/views/nodes/view_all.ctp
@@ -43,34 +43,32 @@ if ($this->params['isAjax']) {
array_shift ($data);
foreach ($data as $id => $row) {
- extract ($row);
- $level = 2 - $currentNode['Node']['depth'] + $Node['depth'];
+ $level = 2 - $currentNode['Node']['depth'] + $row['Node']['depth'];
$level = min ($level, 6);
- $sequence = $Node['sequence'];
+ $sequence = $row['Node']['sequence'];
$sequence = $sequence?$sequence:'#';
- echo "<h$level id=\"{$Revision['slug']}-{$Node['id']}\">" .
- $html->link($sequence, '#' . $Revision['slug'] . '-' . $Node['id']) . ' ' . htmlspecialchars($Revision['title']) . "</h$level>";
+ echo "<h$level id=\"{$row['Revision']['slug']}-{$row['Node']['id']}\">" .
+ $html->link($sequence, '#' . $row['Revision']['slug'] . '-' . $row['Node']['id']) . ' ' . htmlspecialchars($row['Revision']['title']) . "</h$level>";
echo '<div class="options">';
echo $this->element('node_options', array('data' => $row));
echo '</div>';
- if (trim(html_entity_decode(strip_tags(str_replace(' ', '', $Revision['content'])))) != '') {
+ if (trim(html_entity_decode(strip_tags(str_replace(' ', '', $row['Revision']['content'])))) != '') {
echo '<div class="body">';
- echo $theme->out($Revision['content']);
+ echo $theme->out($row['Revision']['content']);
echo '</div>';
}
- echo '<div class="comments" id="comments-' . $Node['id'] . '">';
+ echo '<div class="comments" id="comments-' . $row['Node']['id'] . '">';
echo '<div class="comment">';
- echo $html->link(__('See comments for this section', true), array('controller' => 'comments', 'action' => 'index', $Node['id']));
+ echo $html->link(__('See comments for this section', true), array('controller' => 'comments', 'action' => 'index', $row['Node']['id']));
echo '</div></div>';
}
?>
</div>
<?php echo $this->element('node_navigation');
if (isset($this->params['admin'])) {
- extract($currentPath[count($currentPath)-1]);
$menu->add(array(
'section' => 'Options',
'title' => 'History',
@@ -102,27 +100,29 @@ if ($currentNode['Node']['edit_level'] <= $auth['User']['Level']) {
'url' => array('admin' => false, 'action' => 'add', $currentNode['Node']['id'], $currentNode['Revision']['slug'])
));
}
-extract($this->data);
$html->meta(
'rss',
- array('theme' => 'default', 'plugin' => null, 'controller' => 'comments', 'action' => 'index', $Node['id'], $Revision['slug'], 'ext' => 'rss'),
- array('title' => sprintf(__('Comments for %s', true), $Revision['title']))
+ array('theme' => 'default', 'plugin' => null, 'controller' => 'comments', 'action' => 'index',
+ $this->data['Node']['id'], $this->data['Revision']['slug'], 'ext' => 'rss'),
+ array('title' => sprintf(__('Comments for %s', true), $this->data['Revision']['title']))
, false);
$html->meta('rss',
- array('theme' => 'default', 'plugin' => null, 'controller' => 'changes', 'action' => 'index', $Node['id'], 'ext' => 'rss'),
- array('title' => sprintf(__('Change history for %s', true), $Revision['title']))
+ array('theme' => 'default', 'plugin' => null, 'controller' => 'changes', 'action' => 'index',
+ $this->data['Node']['id'], 'ext' => 'rss'),
+ array('title' => sprintf(__('Change history for %s', true), $this->data['Revision']['title']))
, false);
?><cake:nocache> <?php
-extract($this->data);
$menu->add(array(
'section' => 'Feeds',
- 'title' => sprintf(__('Comments for %s', true), $Revision['title']),
- 'url' => array('theme' => 'default', 'plugin' => null, 'controller' => 'comments', 'action' => 'index', $Node['id'], $Revision['slug'], 'ext' => 'rss'),
+ 'title' => sprintf(__('Comments for %s', true), $this->data['Revision']['title']),
+ 'url' => array('theme' => 'default', 'plugin' => null, 'controller' => 'comments', 'action' => 'index',
+ $this->data['Node']['id'], $this->data['Revision']['slug'], 'ext' => 'rss'),
));
$menu->add(array(
'section' => 'Feeds',
- 'title' => sprintf(__('Change history for %s', true), $Revision['title']),
- 'url' => array('theme' => 'default', 'plugin' => null, 'controller' => 'changes', 'action' => 'index', $Node['id'], 'ext' => 'rss'),
+ 'title' => sprintf(__('Change history for %s', true), $this->data['Revision']['title']),
+ 'url' => array('theme' => 'default', 'plugin' => null, 'controller' => 'changes', 'action' => 'index',
+ $this->data['Node']['id'], 'ext' => 'rss'),
));
?></cake:nocache>
\ No newline at end of file
diff --git a/views/revisions/admin_index.ctp b/views/revisions/admin_index.ctp
index eae521d..dd8b28c 100755
--- a/views/revisions/admin_index.ctp
+++ b/views/revisions/admin_index.ctp
@@ -21,33 +21,30 @@ $th = array(
);
echo $html->tableHeaders($th);
foreach ($data as $row) {
- extract($row);
$collection = $book = '-';
foreach ($collections as $c) {
- if ($c['Node']['lft'] <= $Node['lft'] && $c['Node']['rght'] >= $Node['rght']) {
+ if ($c['Node']['lft'] <= $row['Node']['lft'] && $c['Node']['rght'] >= $row['Node']['rght']) {
$collection = $html->link($c['Revision']['title'], am($pass, array('restrict_to' => $c['Node']['id'])));
$collection = $html->link($c['Revision']['title'], array('restrict_to' => $c['Node']['id']));
break;
}
}
foreach ($books as $b) {
- if ($b['Node']['lft'] <= $Node['lft'] && $b['Node']['rght'] >= $Node['rght']) {
+ if ($b['Node']['lft'] <= $row['Node']['lft'] && $b['Node']['rght'] >= $row['Node']['rght']) {
$book = $html->link($b['Revision']['title'], am($pass, array('restrict_to' => $b['Node']['id'])));
break;
}
}
$tr = array(
- $html->link($Revision['id'], array('action' => 'view', $Revision['id'])),
+ $html->link($row['Revision']['id'], array('action' => 'view', $row['Revision']['id'])),
$book . ' (' . $collection . ')',
- $Node?$html->link($Node['sequence'], am($pass, array('page' => 1, 'node_id' => $Revision['node_id']))):'',
- //$html->link($Revision['under_node_id'], am($pass, array('page' => 1, 'under_node_id' => $Revision['under_node_id']))),
- //$html->link($Revision['after_node_id'], am($pass, array('page' => 1, 'after_node_id' => $Revision['after_node_id']))),
- $html->link($Revision['title'], array('action' => 'view', $Revision['id'])),
- $html->link($Revision['lang'], am($pass, array('page' => 1, 'lang:' . $Revision['lang']))),
- $User?$html->link($User['username'], am($pass, array('page' => 1, 'user_id' => $Revision['user_id']))):'',
+ $row['Node']?$html->link($row['Node']['sequence'], am($pass, array('page' => 1, 'node_id' => $row['Revision']['node_id']))):'',
+ $html->link($row['Revision']['title'], array('action' => 'view', $row['Revision']['id'])),
+ $html->link($row['Revision']['lang'], am($pass, array('page' => 1, 'lang:' . $row['Revision']['lang']))),
+ $User?$html->link($User['username'], am($pass, array('page' => 1, 'user_id' => $row['Revision']['user_id']))):'',
$User?'<a href="mailto:' . $User['email'] . '">' . $User['email'] . '</a>':'',
- $html->link($Revision['status'], am($pass, array('page' => 1, 'status' => $Revision['status']))),
- $html->link($Revision['created'], am($pass, array('page' => 1, 'created' => $Revision['created']))),
+ $html->link($row['Revision']['status'], am($pass, array('page' => 1, 'status' => $row['Revision']['status']))),
+ $html->link($row['Revision']['created'], am($pass, array('page' => 1, 'created' => $row['Revision']['created']))),
);
echo $html->tableCells($tr, array('class' => 'odd'), array('class' => 'even'));
}
diff --git a/views/revisions/admin_pending.ctp b/views/revisions/admin_pending.ctp
index 0e09eaf..de7bfa7 100755
--- a/views/revisions/admin_pending.ctp
+++ b/views/revisions/admin_pending.ctp
@@ -28,34 +28,33 @@ $th = array(
echo $html->tableHeaders($th);
foreach ($data as $row) {
- extract($row);
$collection = $book = '-';
foreach ($collections as $c) {
- if ($c['Node']['lft'] <= $Node['lft'] && $c['Node']['rght'] >= $Node['rght']) {
+ if ($c['Node']['lft'] <= $row['Node']['lft'] && $c['Node']['rght'] >= $row['Node']['rght']) {
$collection = $html->link($c['Revision']['title'], am($pass, array('restrict_to' => $c['Node']['id'])));
$collection = $html->link($c['Revision']['title'], array('restrict_to' => $c['Node']['id']));
break;
}
}
foreach ($books as $b) {
- if ($b['Node']['lft'] <= $Node['lft'] && $b['Node']['rght'] >= $Node['rght']) {
+ if ($b['Node']['lft'] <= $row['Node']['lft'] && $b['Node']['rght'] >= $row['Node']['rght']) {
$book = $html->link($b['Revision']['title'], am($pass, array('restrict_to' => $b['Node']['id'])));
break;
}
}
- if(empty($Revision['node_id']) && !empty($UnderNode['sequence']) ){
+ if(empty($row['Revision']['node_id']) && !empty($UnderNode['sequence']) ){
$sequence = $html->link('{'.$UnderNode['sequence'].'}', am($pass, array('page' => 1, 'node_id' => $UnderNode['id'])), array('title' => 'New Section: under - '.$UnderNode['sequence'].' after: '.$AfterNode['sequence'] ));
} else {
- $sequence = $html->link($Node['sequence'], am($pass, array('page' => 1, 'node_id' => $Node['id'])));
+ $sequence = $html->link($row['Node']['sequence'], am($pass, array('page' => 1, 'node_id' => $row['Node']['id'])));
}
$tr = array (
- $html->link($Revision['id'], array('action' => 'view', $Revision['id'])),
+ $html->link($row['Revision']['id'], array('action' => 'view', $row['Revision']['id'])),
$book . ' (' . $collection . ')',
$sequence,
- $html->link($Revision['title'],array('action'=>'view',$Revision['id'])),
- $User?$html->link($User['username'], am($pass, array('page' => 1, 'user_id' => $Revision['user_id']))):'',
+ $html->link($row['Revision']['title'],array('action'=>'view',$row['Revision']['id'])),
+ $User?$html->link($User['username'], am($pass, array('page' => 1, 'user_id' => $row['Revision']['user_id']))):'',
$User?'<a href="mailto:' . $User['email'] . '">' . $User['email'] . '</a>':'',
- $html->link($Revision['created'], am($pass, array('page' => 1, 'created' => $Revision['created']))),
+ $html->link($row['Revision']['created'], am($pass, array('page' => 1, 'created' => $row['Revision']['created']))),
);
echo $html->tableCells($tr);
}
diff --git a/views/revisions/rss/index.ctp b/views/revisions/rss/index.ctp
index 504399c..65e088d 100755
--- a/views/revisions/rss/index.ctp
+++ b/views/revisions/rss/index.ctp
@@ -8,25 +8,24 @@
$html = $_html;
return;
}
- extract($row);
$desc = '<ul>';
- $author = isset($User['username'])?$User['username']:'unknown';
+ $author = isset($row['User']['username'])?$row['User']['username']:'unknown';
$desc .= '<li>' . sprintf(__('Submitted by: %s', true), $author) . '</li>';
- $comment = $html->clean(trim($Revision['reason']));
+ $comment = $html->clean(trim($row['Revision']['reason']));
if ($comment) {
$desc .= '<li>' . $comment . '</li>';
}
$desc .= '</ul>';
- if ($Node['sequence']) {
- $title = $Node['sequence'] . ' - ' . $Revision['title'];
+ if ($row['Node']['sequence']) {
+ $title = $row['Node']['sequence'] . ' - ' . $row['Revision']['title'];
} else {
- $title = $Revision['title'];
+ $title = $row['Revision']['title'];
}
return array(
'title' => $title,
- 'link' => array('controller' => 'revisions', 'action' => 'view', $Revision['id'], $Revision['slug']),
+ 'link' => array('controller' => 'revisions', 'action' => 'view', $row['Revision']['id'], $row['Revision']['slug']),
'description' => $desc,
- 'pubDate' => date('r', strtotime($Revision['created'])),
+ 'pubDate' => date('r', strtotime($row['Revision']['created'])),
);
}
?>
\ No newline at end of file
diff --git a/views/revisions/view.ctp b/views/revisions/view.ctp
index 6784421..3c001d5 100644
--- a/views/revisions/view.ctp
+++ b/views/revisions/view.ctp
@@ -2,11 +2,10 @@
<?php
$compare = array();
foreach ($data as $key => $row) {
- extract($row);
- echo '<h2>{' . up($Revision['id']) . '} - ' . $Node['sequence'] . ' ' . htmlspecialchars($Revision['title']) . '</h2>';
+ echo '<h2>{' . up($row['Revision']['id']) . '} - ' . $row['Node']['sequence'] . ' ' . htmlspecialchars($row['Revision']['title']) . '</h2>';
//echo $html->clean($currentNode['Revision']['content']);
- echo '<div class="summary">' . $Revision['content'] . '</div>';
- $compare[] = '<title>' . $Revision['title'] . "</title>\r\n" . $Revision['content'];
+ echo '<div class="summary">' . $row['Revision']['content'] . '</div>';
+ $compare[] = '<title>' . $row['Revision']['title'] . "</title>\r\n" . $row['Revision']['content'];
}
if (count($compare) > 1) {
echo '<h2>' . __('Differences', true) . '</h2>';
diff --git a/views/tmp/logs/configure.log b/views/tmp/logs/configure.log
new file mode 100644
index 0000000..59bebd6
--- /dev/null
+++ b/views/tmp/logs/configure.log
@@ -0,0 +1,395 @@
+2009-02-25 22:40:49 Configure: Looking for :i18n.php
+2009-02-25 22:40:49 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/i18n.php
+2009-02-25 22:40:49 Configure: Looking for :l10n.php
+2009-02-25 22:40:49 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/l10n.php
+2009-02-25 22:40:49 Configure: DIRECT FIND :/home/andy/dev/cakes/cake/cake/libs/l10n.php
+2009-02-25 22:40:49 Configure: DIRECT FIND :/home/andy/dev/cakes/cake/cake/libs/i18n.php
+2009-02-25 22:40:49 Configure: Looking for :i18n.php
+2009-02-25 22:40:49 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/i18n.php
+2009-02-25 22:40:49 Configure: DIRECT FIND :/home/andy/dev/cakes/cake/cake/libs/i18n.php
+2009-02-25 22:40:49 Configure: Looking for :mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/behaviors/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/datasources/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/datasources/dbo/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/helpers/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/pages/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/scaffolds/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/html/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/text/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/errors/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/xml/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/html/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/text/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/rss/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/js/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/controller/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/controller/components/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/cache/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/behaviors/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/datasources/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/datasources/dbo/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/behaviors/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/controller/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/controller/components/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/controller/components/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/helpers/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/pages/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/scaffolds/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/html/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/text/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/errors/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/xml/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/html/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/text/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/rss/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/js/mi.php
+2009-02-25 22:40:49 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/config/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/config/unicode/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/config/unicode/casefolding/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/console/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/console/libs/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/model/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/model/behaviors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/model/datasources/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/model/datasources/dbo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/view/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/view/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/controller/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/controller/components/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/cases/libs/cache/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/fixtures/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/locale/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/locale/po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/models/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/views/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/views/tests/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/views/themed/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/tests/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/layouts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/views/layouts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/controllers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/controllers/components/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/vendors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/vendors/css/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/vendors/sample/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/vendors/img/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/vendors/shells/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin_two/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin_two/vendors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/config/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_6_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_10_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_0_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_10_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_1_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_11_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_14_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_4_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_7_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_13_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_6_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_5_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_9_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_2_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_12_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_1_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_7_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_2_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_12_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_5_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_8_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_9_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_3_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_4_po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_8_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_13_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_11_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_0_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/po/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/po/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_14_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_3_mo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/models/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/models/behaviors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/models/datasources/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/tests_apps/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/pages/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/scaffolds/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/themed/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/themed/test_theme/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/themed/test_theme/posts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/themed/test_theme/layouts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/elements/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/elements/email/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/elements/email/html/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/elements/email/text/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/elements/nocache/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/errors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/posts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/layouts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/layouts/xml/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/layouts/email/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/layouts/email/html/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/layouts/email/text/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/layouts/rss/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/views/layouts/js/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/controllers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/controllers/components/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/tmp/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/Test/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/css/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/sample/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/img/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/somename/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/shells/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/shells/tasks/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/test_app/vendors/shells/templates/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/groups/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/tests/lib/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/tasks/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/plugins/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/config/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/config/sql/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/locale/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/locale/eng/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/models/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/models/behaviors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/models/datasources/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/pages/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/scaffolds/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/elements/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/elements/email/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/elements/email/html/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/elements/email/text/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/errors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/xml/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/email/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/email/html/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/email/text/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/rss/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/js/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/models/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/controllers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/behaviors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/components/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/fixtures/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/groups/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/controllers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/controllers/components/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/logs/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/cache/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/cache/persistent/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/cache/models/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/cache/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/tests/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/sessions/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/webroot/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/webroot/css/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/webroot/img/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/webroot/js/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/vendors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/vendors/shells/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/vendors/shells/tasks/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/vendors/shells/templates/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/behaviors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/datasources/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/model/datasources/dbo/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/pages/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/scaffolds/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/html/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/elements/email/text/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/errors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/xml/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/html/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/email/text/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/rss/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/view/layouts/js/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/controller/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/controller/components/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/libs/cache/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/vendors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/tasks/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/plugins/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/config/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/config/sql/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/locale/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/locale/eng/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/models/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/models/behaviors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/models/datasources/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/pages/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/scaffolds/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/elements/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/elements/email/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/elements/email/html/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/elements/email/text/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/errors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/xml/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/email/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/email/html/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/email/text/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/rss/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/views/layouts/js/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/helpers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/models/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/controllers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/behaviors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/cases/components/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/fixtures/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tests/groups/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/controllers/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/controllers/components/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/logs/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/cache/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/cache/persistent/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/cache/models/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/cache/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/tests/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/tmp/sessions/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/webroot/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/webroot/css/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/webroot/img/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/webroot/js/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/vendors/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/vendors/shells/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/vendors/shells/tasks/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/skel/vendors/shells/templates/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/cake/console/libs/templates/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/config/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/views/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/views/svn/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/views/cake/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/views/git/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/views/snippets/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/views/snippets/php/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/tmp/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/tmp/logs/mi.php
+2009-02-25 22:40:50 Configure: Checking :/home/andy/dev/cakes/cake/plugins/cakemate/vendors/mi.php
+2009-02-25 22:40:50 Configure: FOUND :/home/andy/dev/cakes/cake/plugins/cakemate/vendors/mi.php
+2009-02-25 22:40:50 Configure: Looking for :controller.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/controller.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/model/controller.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/model/behaviors/controller.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/controller/controller.php
+2009-02-25 22:40:50 Configure: Looking for :component.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/component.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/model/component.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/model/behaviors/component.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/controller/component.php
+2009-02-25 22:40:50 Configure: DIRECT FIND :/home/andy/dev/cakes/cake/cake/libs/controller/component.php
+2009-02-25 22:40:50 Configure: Looking for :view.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/view.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/model/view.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/model/behaviors/view.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/controller/view.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/controller/components/view.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/view/view.php
+2009-02-25 22:40:50 Configure: Looking for :helper.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/helper.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/model/helper.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/model/behaviors/helper.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/controller/helper.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/controller/components/helper.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/view/helper.php
+2009-02-25 22:40:50 Configure: Looking for :overloadable.php
+2009-02-25 22:40:50 Configure: DIRECT CHECK :/home/andy/dev/cakes/cake/cake/libs/overloadable.php
+2009-02-25 22:40:50 Configure: DIRECT FIND :/home/andy/dev/cakes/cake/cake/libs/overloadable.php
+2009-02-25 22:40:50 Configure: DIRECT FIND :/home/andy/dev/cakes/cake/cake/libs/view/helper.php
+2009-02-25 22:40:50 Configure: DIRECT FIND :/home/andy/dev/cakes/cake/cake/libs/view/view.php
+2009-02-25 22:40:50 Configure: DIRECT FIND :/home/andy/dev/cakes/cake/cake/libs/controller/controller.php
diff --git a/webroot/js/scripts.js b/webroot/js/scripts.js
index 239aabf..b91d294 100644
--- a/webroot/js/scripts.js
+++ b/webroot/js/scripts.js
@@ -67,7 +67,7 @@ $(document).ready(function() {
$('<div class="dialog" style="display;none">Loading...</div>')
.attr('title', $(this).text())
.appendTo('body')
- .load($(this).attr('href') + '?ajax', function(){
+ .load($(this).attr('href') + '/.ajax', function(){
containLinks(this);
}).dialog({
autoOpen: false,
@@ -81,7 +81,7 @@ $(document).ready(function() {
function containLinks (base) {
var base = $(base);
$('a', base).click(function() {
- base.load($(this).attr('href') + '?ajax', function() {
+ base.load($(this).attr('href') + '/.ajax', function() {
containLinks(base);
});
return false;
