Bugs fixes

This commit is contained in:
dignajar 2015-08-22 13:33:33 -03:00
parent 9d3de43d9e
commit 8c0522e9c2
9 changed files with 199 additions and 153 deletions

View File

@ -190,6 +190,12 @@ function install($adminPassword, $email)
error_log($errorText, 0); error_log($errorText, 0);
} }
if(!mkdir(PATH_PLUGINS_DATABASES.'tinymce', $dirpermissions, true))
{
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES;
error_log($errorText, 0);
}
if(!mkdir(PATH_UPLOADS, $dirpermissions, true)) if(!mkdir(PATH_UPLOADS, $dirpermissions, true))
{ {
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS; $errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS;
@ -282,15 +288,24 @@ function install($adminPassword, $email)
file_put_contents(PATH_DATABASES.'security.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); file_put_contents(PATH_DATABASES.'security.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
// File plugins/pages/db.php // File plugins/pages/db.php
$data = array( $data = array(
'homeLink'=>true, 'homeLink'=>true,
'label'=>$Language->get('Pages') 'label'=>$Language->get('Pages'),
'position'=>'0'
); );
file_put_contents(PATH_PLUGINS_DATABASES.'pages'.DS.'db.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); file_put_contents(PATH_PLUGINS_DATABASES.'pages'.DS.'db.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
// File plugins/tinymce/db.php
$data = array(
'plugins'=>'autoresize, fullscreen, pagebreak, link, textcolor, code',
'toolbar'=>'bold italic underline strikethrough | alignleft aligncenter alignright | bullist numlist | styleselect | link forecolor backcolor removeformat | pagebreak code fullscreen',
'position'=>'0'
);
file_put_contents(PATH_PLUGINS_DATABASES.'tinymce'.DS.'db.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
// File index.txt for error page // File index.txt for error page
$data = 'Title: '.$Language->get('Error').' $data = 'Title: '.$Language->get('Error').'
Content: '.$Language->get('The page has not been found'); Content: '.$Language->get('The page has not been found');

View File

@ -64,8 +64,10 @@ function build_page($key)
$Page->setField('contentRaw', $Page->content(), true); $Page->setField('contentRaw', $Page->content(), true);
// Parse markdown content. // Parse markdown content.
$content = $Parsedown->text($contentRaw); // Parse Markdown. $content = Text::pre2htmlentities($contentRaw); // Parse pre code with htmlentities
$content = $Parsedown->text($content); // Parse Markdown.
$content = Text::imgRel2Abs($content, HTML_PATH_UPLOADS); // Parse img src relative to absolute. $content = Text::imgRel2Abs($content, HTML_PATH_UPLOADS); // Parse img src relative to absolute.
$content = Text::pre2htmlentities($content); // Parse pre code with htmlentities
$Page->setField('content', $content, true); $Page->setField('content', $content, true);
// Parse username for the page. // Parse username for the page.

View File

@ -53,7 +53,8 @@ function buildPost($key)
$Post->setField('contentRaw', $contentRaw, true); $Post->setField('contentRaw', $contentRaw, true);
// Parse the content // Parse the content
$content = $Parsedown->text($contentRaw); // Parse Markdown. $content = Text::pre2htmlentities($contentRaw); // Parse pre code with htmlentities
$content = $Parsedown->text($content); // Parse Markdown.
$content = Text::imgRel2Abs($content, HTML_PATH_UPLOADS); // Parse img src relative to absolute. $content = Text::imgRel2Abs($content, HTML_PATH_UPLOADS); // Parse img src relative to absolute.
$Post->setField('content', $content, true); $Post->setField('content', $content, true);

View File

@ -110,8 +110,14 @@ class dbPages extends dbJSON
} }
// Unix time created and modified. // Unix time created and modified.
// If the page is a draft then the time created is now.
if( $this->db[$args['key']]['status']=='draft' ) {
$args['unixTimeCreated'] = Date::unixTime();
}
else {
$args['unixTimeCreated'] = $this->db[$args['key']]['unixTimeCreated']; $args['unixTimeCreated'] = $this->db[$args['key']]['unixTimeCreated'];
$args['unixTimeModified'] = Date::unixTime(); $args['unixTimeModified'] = Date::unixTime();
}
// Verify arguments with the database fields. // Verify arguments with the database fields.
foreach($this->dbFields as $field=>$options) foreach($this->dbFields as $field=>$options)

View File

@ -11,7 +11,7 @@ class dbPosts extends dbJSON
'tags'=> array('inFile'=>false, 'value'=>''), 'tags'=> array('inFile'=>false, 'value'=>''),
'allowComments'=> array('inFile'=>false, 'value'=>false), 'allowComments'=> array('inFile'=>false, 'value'=>false),
'unixTimeCreated'=> array('inFile'=>false, 'value'=>0), 'unixTimeCreated'=> array('inFile'=>false, 'value'=>0),
'unixTimeModified'=>array('inFile'=>false, 'value'=>0) 'unixTimeModified'=> array('inFile'=>false, 'value'=>0)
); );
private $numberPosts = array( private $numberPosts = array(
@ -157,8 +157,14 @@ class dbPosts extends dbJSON
public function edit($args) public function edit($args)
{ {
// Unix time created and modified. // Unix time created and modified.
// If the page is a draft then the time created is now.
if( $this->db[$args['key']]['status']=='draft' ) {
$args['unixTimeCreated'] = Date::unixTime();
}
else {
$args['unixTimeCreated'] = $this->db[$args['key']]['unixTimeCreated']; $args['unixTimeCreated'] = $this->db[$args['key']]['unixTimeCreated'];
$args['unixTimeModified'] = Date::unixTime(); $args['unixTimeModified'] = Date::unixTime();
}
if( $this->delete($args['key']) ) { if( $this->delete($args['key']) ) {
return $this->add($args); return $this->add($args);

View File

@ -171,7 +171,15 @@ class Text {
public static function imgRel2Abs($string, $base) public static function imgRel2Abs($string, $base)
{ {
return preg_replace('/(src)="([^:"]*)(?:")/', "$1=\"$base$2\"", $string); return preg_replace('/(?!code).(src)="([^:"]*)(?:")/', "$1=\"$base$2\"", $string);
}
public static function pre2htmlentities($string)
{
return preg_replace_callback('/<pre.*?><code(.*?)>(.*?)<\/code><\/pre>/imsu',
create_function('$input', 'return "<pre><code $input[1]>".htmlentities($input[2])."</code></pre>";'),
$string);
} }
} }

View File

@ -1,3 +1,7 @@
/* ------------------------
Default tags
------------------------ */
* { * {
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
@ -50,8 +54,16 @@ pre, code {
white-space: pre-wrap !important; white-space: pre-wrap !important;
} }
code {
font-size: 13px !important; /* ------------------------
Content / Main
------------------------ */
#layout {
padding: 0;
}
.content {
padding: 2em 1em 0;
} }
.subhead { .subhead {
@ -64,17 +76,7 @@ code {
letter-spacing: 0.1em; letter-spacing: 0.1em;
} }
.content { .footer {
padding-top: 3em;
margin-right: 30px;
margin-left: 30px;
}
#layout {
padding: 0;
}
div.footer {
font-size: 0.9em; font-size: 0.9em;
color: #999; color: #999;
text-align: center; text-align: center;
@ -85,37 +87,37 @@ div.footer {
Paginator Paginator
------------------------ */ ------------------------ */
#paginator { #paginator {
margin: 20px 0; margin: 20px 0;
} }
#paginator a { #paginator a {
color: #2672ec; color: #2672ec;
} }
#paginator ul { #paginator ul {
clear: both; clear: both;
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
overflow: auto; overflow: auto;
padding: 0; padding: 0;
} }
#paginator li { #paginator li {
display: block; display: block;
} }
#paginator li.left { #paginator li.left {
float: left !important; float: left !important;
} }
#paginator li.list { #paginator li.list {
background: #e0e0e0; background: #e0e0e0;
color: #747474; color: #747474;
padding: 2px 11px; padding: 2px 11px;
} }
#paginator li.right { #paginator li.right {
float: right !important; float: right !important;
} }
/* ------------------------ /* ------------------------
@ -123,99 +125,102 @@ Pages and Posts
------------------------ */ ------------------------ */
.page, .page,
.post { .post {
margin: 0 0 70px 0; margin: 0 0 70px 0;
} }
.page-title, .page-title,
.post-title .post-title
{ {
font-size: 2.4em; font-size: 2.4em;
margin: 0; margin: 0;
} }
.page-title a, .page-title a,
.post-title a .post-title a
{ {
color: #555; color: #555;
border-bottom: 5px solid #ccc; border-bottom: 5px solid #ccc;
display: inline-block; display: inline-block;
} }
.page a.read-more, .page a.read-more,
.post a.read-more{ .post a.read-more{
display: block; display: block;
text-align: center; text-align: center;
padding: 2px 5px; padding: 2px 5px;
} }
.page-content, .page-content,
.post-content { .post-content {
color: #444; color: #444;
line-height: 1.7em; line-height: 1.7em;
margin-top: 22px; margin-top: 22px;
} }
.page-content hr, .page-content hr,
.post-content hr { .post-content hr {
display: block; display: block;
height: 1px; height: 1px;
border: 0; border: 0;
border-top: 1px solid #ccc; border-top: 1px solid #ccc;
margin: 30px 0; margin: 30px 0;
padding: 0; padding: 0;
} }
.page-content h2, .page-content h2,
.post-content h2 .post-content h2
{ {
color: #555; color: #555;
margin: 30px 0 30px 0; margin: 30px 0 30px 0;
font-size: 2em; font-size: 2em;
font-weight: normal; font-weight: normal;
} }
.page-content h3, .page-content h3,
.post-content h3 .post-content h3
{ {
color: #555; color: #555;
margin: 35px 0 25px 0; margin: 35px 0 25px 0;
font-size: 1.5em; font-size: 1.5em;
font-weight: normal; font-weight: normal;
} }
.page-content h4, .page-content h4,
.post-content h4 .post-content h4
{ {
color: #555; color: #555;
margin: 25px 0 15px 0; margin: 25px 0 15px 0;
font-size: 1.2em; font-size: 1.2em;
font-weight: lighter; font-weight: lighter;
} }
.post-meta, .post-meta,
.page-meta { .page-meta {
font-size: 90%; font-size: 90%;
margin: 0; margin: 0;
} }
.post-meta span.date, .post-meta span.date,
.page-meta span.date { .page-meta span.date {
color: #999; color: #999;
margin-right: 10px; margin-right: 10px;
} }
.post-meta span.author, .post-meta span.author,
.page-meta span.author { .page-meta span.author {
color: #ccc; color: #ccc;
} }
/* ------------------------ /* ------------------------
Sidebar Sidebar
------------------------ */ ------------------------ */
.sidebar { .sidebar {
margin: 60px 30px 0; background: #f1f1f1;
}
.sidebar-content {
padding: 30px 10px 0 30px;
} }
.sidebar a { .sidebar a {

View File

@ -5,7 +5,7 @@
* @version 1.0.4 * @version 1.0.4
*/ */
pre { pre {
border: 1px solid #ccc; border: 1px solid #E7E9EE;
word-wrap: break-word; word-wrap: break-word;
padding: 6px 10px; padding: 6px 10px;
line-height: 19px; line-height: 19px;
@ -13,10 +13,9 @@ pre {
} }
code { code {
border: 1px solid #eaeaea; border: 1px solid #E7E9EE;
margin: 0px 2px; margin: 0px 2px;
padding: 0px 5px; padding: 0px 5px;
font-size: 12px;
} }
pre code { pre code {
@ -30,8 +29,8 @@ pre code {
pre, code { pre, code {
font-family: Consolas, 'Liberation Mono', Courier, monospace; font-family: Consolas, 'Liberation Mono', Courier, monospace;
color: #333; background: #f8faff none repeat scroll 0 0;
background: #f8f8f8; color: #211fab;
-moz-border-radius: 3px; -moz-border-radius: 3px;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
border-radius: 3px; border-radius: 3px;

View File

@ -1,5 +1,9 @@
<div class="sidebar-content">
<h1 class="title"><?php echo $Site->title() ?></h1> <h1 class="title"><?php echo $Site->title() ?></h1>
<h2 class="slogan"><?php echo $Site->slogan() ?></h2> <h2 class="slogan"><?php echo $Site->slogan() ?></h2>
<!-- Plugins Sidebar --> <!-- Plugins Sidebar -->
<?php Theme::plugins('siteSidebar') ?> <?php Theme::plugins('siteSidebar') ?>
</div>