summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-18 11:22:30 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-18 11:23:00 +0200
commitc5537fcecc1e79647846324db52498ecedddb87a (patch)
tree9b0b42bb8f9cc61dd7dd41360866194bd3f00d80
parentd1ef5aab3c11610d5cdfa4bc8bf41f32365e9a1a (diff)
remove em, b and i tags from title fix #88
-rw-r--r--templates/part.items.php4
-rw-r--r--utility/feedfetcher.php3
2 files changed, 3 insertions, 4 deletions
diff --git a/templates/part.items.php b/templates/part.items.php
index ac70e0658..18a052e6b 100644
--- a/templates/part.items.php
+++ b/templates/part.items.php
@@ -21,7 +21,9 @@
<h1 class="item_title">
<a ng-click="itemBusinessLayer.setRead(item.id)"
- target="_blank" href="{{ item.url }}">{{ item.title }}</a>
+ target="_blank" href="{{ item.url }}">
+ {{ item.title|ocRemoveTags:['em'] }}
+ </a>
</h1>
<h2 class="item_author">
diff --git a/utility/feedfetcher.php b/utility/feedfetcher.php
index c4ac638f7..1113877d0 100644
--- a/utility/feedfetcher.php
+++ b/utility/feedfetcher.php
@@ -74,10 +74,7 @@ class FeedFetcher implements IFeedFetcher {
throw new FetcherException('Could not initialize simple pie');
}
- // temporary try-catch to bypass SimplePie bugs
try {
- $simplePie->handle_content_type();
-
$items = array();
if ($feedItems = $simplePie->get_items()) {
foreach($feedItems as $feedItem) {
L is hardcoded into ./MacOS/GetHTTPS.src/GetHTTPS.cpp, lines 40 to 42, change appropriately. (**) If you use SUNtar, then it might have already unbinhexed the files in question. (***) The project file was saved with CW Pro 5.3. If you have an earlier version and it refuses to open it, then download http://www.openssl.org/~appro/OpenSSL.mcp.xml and import it overwriting the original OpenSSL.mcp. (****) Other targets are works in progress. If you feel like giving 'em a shot, then you should know that OpenSSL* and Lib* targets are supposed to be built with the GUSI, MacOS library which mimics BSD sockets and some other POSIX APIs. The GUSI distribution is expected to be found in the same directory as the openssl source tree, i.e., in the parent directory to the one where this very file, namely INSTALL.MacOS, resides. For more information about GUSI, see http://www.iis.ee.ethz.ch/~neeri/macintosh/gusi-qa.html Finally some essential comments from our generous contributor:-) "I've gotten OpenSSL working on the Macintosh. It's probably a bit of a hack, but it works for what I'm doing. If you don't like the way I've done it, then feel free to change what I've done. I freely admit that I've done some less-than-ideal things in my port, and if you don't like the way I've done something, then feel free to change it-- I won't be offended! ... I've tweaked "bss_sock.c" a little to call routines in a "MacSocket" library I wrote. My MacSocket library is a wrapper around OpenTransport, handling stuff like endpoint creation, reading, writing, etc. It is not designed as a high-performance package such as you'd use in a webserver, but is fine for lots of other applications. MacSocket also uses some other code libraries I've written to deal with string manipulations and error handling. Feel free to use these things in your own code, but give me credit and/or send me free stuff in appreciation! :-) ... If you have any questions, feel free to email me as the following: roy@centricsystems.ca -Roy Wood"