X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=cms.php;h=961a1f5ce7265b3cbb59a973151c14be1197df30;hb=7c68050a90dac5eec6b27f895deb9aeabf49cd47;hp=b4790b2f0e8ef9b9ae62b5d71c26f2c0b49515ec;hpb=bc92e5a9bf480ef176836b84adb8768400adcbba;p=dylansserver.git diff --git a/cms.php b/cms.php index b4790b2..961a1f5 100644 --- a/cms.php +++ b/cms.php @@ -326,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"); } } @@ -487,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; @@ -514,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 ""; - } }