X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=cms.php;h=961a1f5ce7265b3cbb59a973151c14be1197df30;hb=7c68050a90dac5eec6b27f895deb9aeabf49cd47;hp=f3902b336c22cb47e922adf794bf86b80cabcba5;hpb=8b7b8fa879010e1418c4c68aee73fe00c5ae43a7;p=dylansserver.git diff --git a/cms.php b/cms.php index f3902b3..961a1f5 100644 --- a/cms.php +++ b/cms.php @@ -6,7 +6,6 @@ abstract class cms { protected $db; protected $recaptcha_publickey; protected $recaptcha_privatekey; - protected $scripts; public $title; public $home_link; @@ -164,24 +163,6 @@ class page extends cms { public function __construct() { parent::__construct(); $this->page_offset(); - $this->scripts = " - - - - - - "; } private function page_offset() { @@ -345,84 +326,17 @@ class note extends cms { $author = $entry['author']; $text = htmlspecialchars($entry['text']); $head = "

" . htmlspecialchars($author) . "

"; - echo << - $head - $text - -END_OF_COMMENT; + echo "
"; + echo $head; + echo $text; + echo "
"; } echo ""; } private function display_comment_form() { $publickey = $this->recaptcha_publickey; - echo << -Recaptcha.create("$publickey", - "recaptcha_div", - { - theme : 'custom', - custom_theme_widget: 'recaptcha_widget', - callback: Recaptcha.focus_response_field - }); - -END_CAPTCHA_STYLE; - require_once('includes/recaptchalib.php'); - $url = $this->url . "verify"; - echo "
"; - echo << -

comment:

- -

name:

- - - -
-
-

what's this say?

-
-
-


-


- -

-

enter the numbers you hear:

- - another? / - audio? / - image?help? - -
-END_OF_FORM; - echo recaptcha_get_html($this->recaptcha_publickey); - if ($this->failed_captcha) { - echo << - reCAPTCHA said you're not human,
- try again? - - - - -END_OF_ERRORS; - } else { - echo << - reCAPTCHA said you're not human,
- try again? - -
- but you didn't write anything!
-
-END_OF_ERRORS; - } - echo << - - -END_OF_FORM; + require_once("view/comment-form.php"); } } @@ -506,18 +420,15 @@ class archive extends cms { class rss extends cms { + public function display() { + require_once("view/rss.php"); + } + + public function display_items() { $result = $this->db->query("SELECT date_posted, title, text, url FROM notes ORDER BY date_posted DESC LIMIT 5"); - echo << - - dylansserver.com/notes/rss - http://dylansserver.com/notes - dylansserver.com/notes/rss - -END_OF_ENTRY; while ($entry = $result->fetch_object()) { $title = $entry->title; $date_posted = $entry->date_posted; @@ -533,18 +444,13 @@ END_OF_ENTRY; $description = substr($text, '0', ($end_of_first_sentence + 1)); } } - echo << - $title - $url - $url - $description - -END_OF_ENTRY; + echo ""; + echo " $title"; + echo " $url"; + echo " $url"; + echo " $description"; + echo ""; } - echo ""; - echo ""; - } }