From fefef8286e7c6421d663f2970b8cd0e68276e41a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 May 2007 08:32:54 +0100 Subject: parse dc:subject tags into tags --- functions.php | 58 +++++++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 43 insertions(+), 15 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 9bd79629e..42a986165 100644 --- a/functions.php +++ b/functions.php @@ -618,15 +618,39 @@ if (!$num_comments) $num_comments = 0; -/* $dc_subject = $item['dc']['subject']; + // parse entries into tags - $subject_tags = false; + $t_ctr = $item['category#']; - if (is_array($dc_subject)) { - $subject_tags = $dc_subject; - } else if ($dc_subject) { - $subject_tags = array($dc_subject); - } */ + $additional_tags = false; + + if ($t_ctr == 0) { + $additional_tags = false; + } else if ($t_ctr == 1) { + $additional_tags = array($item['category']); + } else { + $additional_tags = array(); + for ($i = 0; $i <= $t_ctr; $i++ ) { + if ($item["category#$i"]) { + array_push($additional_tags, $item["category#$i"]); + } + } + } + + // parse elements + + $t_ctr = $item['dc']['subject#']; + + if ($t_ctr == 1) { + $additional_tags = array($item['dc']['subject']); + } else if ($t_ctr > 1) { + $additional_tags = array(); + for ($i = 0; $i <= $t_ctr; $i++ ) { + if ($item['dc']["subject#$i"]) { + array_push($additional_tags, $item['dc']["subject#$i"]); + } + } + } # sanitize content @@ -830,9 +854,9 @@ preg_match_all("/([^<]+)<\/a>/i", $entry_content_unescaped, $entry_tags); -// print "
$entry_title : $entry_content_unescaped
"; -// print_r($entry_tags); -// print "
"; +/* print "


$entry_title : $entry_content_unescaped
"; + print_r($entry_tags); + print "

"; */ $entry_tags = $entry_tags[1]; @@ -851,13 +875,15 @@ } } -/* if ($subject_tags) { - foreach ($subject_tags as $tag) { + if ($additional_tags && is_array($additional_tags)) { + foreach ($additional_tags as $tag) { if (tag_is_valid($tag)) { array_push($entry_tags, $tag); } } - } */ + } + + print "

TAGS: "; print_r($entry_tags); print "

"; if (count($entry_tags) > 0) { @@ -875,7 +901,9 @@ $entry_int_id = db_fetch_result($result, 0, "int_id"); foreach ($entry_tags as $tag) { - $tag = db_escape_string(mb_strtolower(strip_tags($tag))); + + $tag = mb_strtolower($tag, 'utf-8'); + $tag = db_escape_string($tag); $tag = str_replace("+", " ", $tag); $tag = str_replace("technorati tag: ", "", $tag); @@ -2831,7 +2859,7 @@ function make_guid_from_title($title) { return preg_replace("/[ \"\',.:;]/", "-", - mb_strtolower(strip_tags($title))); + mb_strtolower(strip_tags($title), 'utf-8')); } function print_headline_subtoolbar($link, $feed_site_url, $feed_title, -- cgit v1.2.3