2017-05-27 19:43:27 +02:00
|
|
|
|
//
|
|
|
|
|
// ArticleRenderer.swift
|
|
|
|
|
// Evergreen
|
|
|
|
|
//
|
|
|
|
|
// Created by Brent Simmons on 9/8/15.
|
|
|
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
import RSCore
|
2017-09-17 21:22:15 +02:00
|
|
|
|
import Data
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
var cachedStyleString = ""
|
|
|
|
|
var cachedTemplate = ""
|
|
|
|
|
|
2017-12-30 04:03:52 +01:00
|
|
|
|
// NOTE: THIS CODE IS A TOTAL MESS RIGHT NOW WHILE WE’RE EXPERIMENTING WITH DIFFERENT LAYOUTS. DON’T JUDGE, YOU!
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
class ArticleRenderer {
|
|
|
|
|
|
|
|
|
|
let article: Article
|
|
|
|
|
let articleStyle: ArticleStyle
|
2017-12-30 05:04:43 +01:00
|
|
|
|
static var faviconImgTagCache = [Feed: String]()
|
2017-12-30 05:41:41 +01:00
|
|
|
|
static var feedIconImgTagCache = [Feed: String]()
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
lazy var longDateFormatter: DateFormatter = {
|
|
|
|
|
let dateFormatter = DateFormatter()
|
|
|
|
|
dateFormatter.dateStyle = .long
|
|
|
|
|
dateFormatter.timeStyle = .medium
|
|
|
|
|
return dateFormatter
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
lazy var mediumDateFormatter: DateFormatter = {
|
|
|
|
|
let dateFormatter = DateFormatter()
|
|
|
|
|
dateFormatter.dateStyle = .medium
|
|
|
|
|
dateFormatter.timeStyle = .short
|
|
|
|
|
return dateFormatter
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
lazy var shortDateFormatter: DateFormatter = {
|
|
|
|
|
let dateFormatter = DateFormatter()
|
|
|
|
|
dateFormatter.dateStyle = .short
|
|
|
|
|
dateFormatter.timeStyle = .short
|
|
|
|
|
return dateFormatter
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
lazy var title: String = {
|
|
|
|
|
if let articleTitle = self.article.title {
|
|
|
|
|
return articleTitle
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
lazy var baseURL: URL? = {
|
|
|
|
|
|
2017-10-02 09:53:58 +02:00
|
|
|
|
var s = self.article.url
|
2017-05-27 19:43:27 +02:00
|
|
|
|
if s == nil {
|
|
|
|
|
s = self.article.feed?.homePageURL
|
|
|
|
|
}
|
|
|
|
|
if s == nil {
|
|
|
|
|
s = self.article.feed?.url
|
|
|
|
|
}
|
|
|
|
|
if s == nil {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-29 21:49:32 +02:00
|
|
|
|
var urlComponents = URLComponents(string: s!)
|
|
|
|
|
if urlComponents == nil {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Can’t use url-with-fragment as base URL. The webview won’t load. See scripting.com/rss.xml for example.
|
|
|
|
|
urlComponents!.fragment = nil
|
|
|
|
|
|
|
|
|
|
if let url = urlComponents!.url {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
if url.scheme == "http" || url.scheme == "https" {
|
|
|
|
|
return url
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
var html: String {
|
|
|
|
|
|
|
|
|
|
return renderedHTML()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
init(article: Article, style: ArticleStyle) {
|
|
|
|
|
|
|
|
|
|
self.article = article
|
|
|
|
|
self.articleStyle = style
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: Private
|
|
|
|
|
|
|
|
|
|
private func textInsideTag(_ text: String, _ tag: String) -> String {
|
|
|
|
|
|
|
|
|
|
return "<\(tag)>\(text)</\(tag)>"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func styleString() -> String {
|
|
|
|
|
|
|
|
|
|
if let s = articleStyle.css {
|
|
|
|
|
return s
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if cachedStyleString.isEmpty {
|
|
|
|
|
|
|
|
|
|
let path = Bundle.main.path(forResource: "styleSheet", ofType: "css")!
|
|
|
|
|
let s = try! NSString(contentsOfFile: path, encoding: String.Encoding.utf8.rawValue)
|
|
|
|
|
cachedStyleString = "\n\(s)\n"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return cachedStyleString
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func template() -> String {
|
|
|
|
|
|
|
|
|
|
if let s = articleStyle.template {
|
|
|
|
|
return s
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if cachedTemplate.isEmpty {
|
|
|
|
|
let path = Bundle.main.path(forResource: "template", ofType: "html")!
|
|
|
|
|
let s = try! NSString(contentsOfFile: path, encoding: String.Encoding.utf8.rawValue)
|
|
|
|
|
cachedTemplate = s as String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return cachedTemplate
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func linkWithTextAndClass(_ text: String, _ href: String, _ className: String) -> String {
|
|
|
|
|
|
|
|
|
|
return "<a class=\"\(className)\" href=\"\(href)\">\(text)</a>"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func linkWithText(_ text: String, _ href: String) -> String {
|
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
return ArticleRenderer.linkWithText(text, href)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static func linkWithText(_ text: String, _ href: String) -> String {
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return "<a href=\"\(href)\">\(text)</a>"
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-29 20:31:47 +01:00
|
|
|
|
private func linkWithLink(_ href: String) -> String {
|
|
|
|
|
|
|
|
|
|
return linkWithText(href, href)
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
private func titleOrTitleLink() -> String {
|
|
|
|
|
|
2017-09-18 01:30:45 +02:00
|
|
|
|
if let link = article.preferredLink {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return linkWithText(title, link)
|
|
|
|
|
}
|
|
|
|
|
return title
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func substitutions() -> [String: String] {
|
|
|
|
|
|
|
|
|
|
var d = [String: String]()
|
|
|
|
|
|
|
|
|
|
let title = titleOrTitleLink()
|
|
|
|
|
d["newsitem_title"] = title
|
|
|
|
|
d["article_title"] = title
|
|
|
|
|
|
|
|
|
|
let body = article.body == nil ? "" : article.body
|
|
|
|
|
d["article_description"] = body
|
|
|
|
|
d["newsitem_description"] = body
|
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
d["avatars"] = ""
|
2017-12-30 05:04:43 +01:00
|
|
|
|
var didAddAvatar = false
|
2017-12-30 05:41:41 +01:00
|
|
|
|
if let avatarHTML = avatarImgTag() {
|
2018-01-03 22:14:14 +01:00
|
|
|
|
// d["avatars"] = avatarHTML
|
|
|
|
|
d["avatars"] = "<td class=\"header rightAlign avatar\">\(avatarHTML)</td>";
|
2017-12-30 05:04:43 +01:00
|
|
|
|
didAddAvatar = true
|
2017-12-30 02:10:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
var feedLink = ""
|
|
|
|
|
if let feedTitle = article.feed?.nameForDisplay {
|
|
|
|
|
feedLink = feedTitle
|
|
|
|
|
if let feedURL = article.feed?.homePageURL {
|
|
|
|
|
feedLink = linkWithTextAndClass(feedTitle, feedURL, "feedLink")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
d["feedlink"] = feedLink
|
|
|
|
|
d["feedlink_withfavicon"] = feedLink
|
|
|
|
|
|
2018-01-03 22:14:14 +01:00
|
|
|
|
// d["favicon"] = ""
|
2017-12-30 05:04:43 +01:00
|
|
|
|
if !didAddAvatar, let feed = article.feed {
|
|
|
|
|
if let favicon = faviconImgTag(forFeed: feed) {
|
2018-01-03 22:14:14 +01:00
|
|
|
|
d["avatars"] = "<td class=\"header rightAlign\">\(favicon)</td>";
|
|
|
|
|
// d["favicon"] = favicon
|
2017-12-30 05:04:43 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
let longDate = longDateFormatter.string(from: article.logicalDatePublished)
|
|
|
|
|
let mediumDate = mediumDateFormatter.string(from: article.logicalDatePublished)
|
|
|
|
|
let shortDate = shortDateFormatter.string(from: article.logicalDatePublished)
|
2017-12-30 03:59:04 +01:00
|
|
|
|
if let permalink = article.url {
|
|
|
|
|
d["date_long"] = linkWithText(longDate, permalink)
|
|
|
|
|
d["date_medium"] = linkWithText(mediumDate, permalink)
|
|
|
|
|
d["date_short"] = linkWithText(shortDate, permalink)
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
d["date_long"] = longDate
|
|
|
|
|
d["date_medium"] = mediumDate
|
|
|
|
|
d["date_short"] = shortDate
|
|
|
|
|
}
|
2017-12-29 20:31:47 +01:00
|
|
|
|
|
|
|
|
|
d["byline"] = byline()
|
2017-12-30 03:59:04 +01:00
|
|
|
|
// d["author_avatar"] = authorAvatar()
|
2017-12-29 20:31:47 +01:00
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return d
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
struct Avatar {
|
|
|
|
|
let imageURL: String
|
|
|
|
|
let url: String?
|
2017-12-29 21:21:19 +01:00
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
func html(dimension: Int) -> String {
|
|
|
|
|
|
2018-02-26 07:46:25 +01:00
|
|
|
|
let imageTag = "<img src=\"\(imageURL)\" width=\(dimension) height=\(dimension) />"
|
2017-12-30 02:10:50 +01:00
|
|
|
|
if let url = url {
|
|
|
|
|
return linkWithText(imageTag, url)
|
|
|
|
|
}
|
|
|
|
|
return imageTag
|
2017-12-29 21:21:19 +01:00
|
|
|
|
}
|
2017-12-30 02:10:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-30 05:04:43 +01:00
|
|
|
|
private func faviconImgTag(forFeed feed: Feed) -> String? {
|
|
|
|
|
|
|
|
|
|
if let cachedImgTag = ArticleRenderer.faviconImgTagCache[feed] {
|
|
|
|
|
return cachedImgTag
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let favicon = appDelegate.faviconDownloader.favicon(for: feed) {
|
|
|
|
|
if let s = base64String(forImage: favicon) {
|
2018-02-26 07:58:08 +01:00
|
|
|
|
var dimension = min(favicon.size.height, CGFloat(avatarDimension)) // Assuming square images.
|
2018-02-26 07:46:25 +01:00
|
|
|
|
dimension = max(dimension, 16) // Some favicons say they’re < 16. Force them larger.
|
2018-02-26 07:58:08 +01:00
|
|
|
|
if dimension >= CGFloat(avatarDimension) * 0.8 { //Close enough to scale up.
|
|
|
|
|
dimension = CGFloat(avatarDimension)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let imgTag: String
|
|
|
|
|
if dimension >= CGFloat(avatarDimension) {
|
|
|
|
|
// Use rounded corners.
|
|
|
|
|
imgTag = "<img src=\"data:image/tiff;base64, " + s + "\" height=\(Int(dimension)) width=\(Int(dimension)) style=\"border-radius:4px\" />"
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
imgTag = "<img src=\"data:image/tiff;base64, " + s + "\" height=\(Int(dimension)) width=\(Int(dimension)) />"
|
|
|
|
|
}
|
2017-12-30 05:04:43 +01:00
|
|
|
|
ArticleRenderer.faviconImgTagCache[feed] = imgTag
|
|
|
|
|
return imgTag
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-30 05:41:41 +01:00
|
|
|
|
private func feedIconImgTag(forFeed feed: Feed) -> String? {
|
|
|
|
|
|
|
|
|
|
if let cachedImgTag = ArticleRenderer.feedIconImgTagCache[feed] {
|
|
|
|
|
return cachedImgTag
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let icon = appDelegate.feedIconDownloader.icon(for: feed) {
|
|
|
|
|
if let s = base64String(forImage: icon) {
|
|
|
|
|
let imgTag = "<img src=\"data:image/tiff;base64, " + s + "\" height=48 width=48 />"
|
|
|
|
|
ArticleRenderer.feedIconImgTagCache[feed] = imgTag
|
|
|
|
|
return imgTag
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-30 05:04:43 +01:00
|
|
|
|
private func base64String(forImage image: NSImage) -> String? {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let d = image.tiffRepresentation
|
|
|
|
|
return d?.base64EncodedString()
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
private func singleArticleSpecifiedAuthor() -> Author? {
|
|
|
|
|
|
|
|
|
|
// The author of this article, if just one.
|
|
|
|
|
|
|
|
|
|
if let authors = article.authors, authors.count == 1 {
|
|
|
|
|
return authors.first!
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func singleFeedSpecifiedAuthor() -> Author? {
|
|
|
|
|
|
|
|
|
|
if let authors = article.feed?.authors, authors.count == 1 {
|
|
|
|
|
return authors.first!
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func feedAvatar() -> Avatar? {
|
|
|
|
|
|
|
|
|
|
guard let feedIconURL = article.feed?.iconURL else {
|
|
|
|
|
return nil
|
2017-12-29 21:21:19 +01:00
|
|
|
|
}
|
2017-12-30 02:10:50 +01:00
|
|
|
|
return Avatar(imageURL: feedIconURL, url: article.feed?.homePageURL ?? article.feed?.url)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func authorAvatar() -> Avatar? {
|
2017-12-29 21:21:19 +01:00
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
if let author = singleArticleSpecifiedAuthor(), let imageURL = author.avatarURL {
|
|
|
|
|
return Avatar(imageURL: imageURL, url: author.url)
|
2017-12-29 21:21:19 +01:00
|
|
|
|
}
|
2017-12-30 02:10:50 +01:00
|
|
|
|
if let author = singleFeedSpecifiedAuthor(), let imageURL = author.avatarURL {
|
|
|
|
|
return Avatar(imageURL: imageURL, url: author.url)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
2017-12-29 21:21:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
private func avatarsToShow() -> [Avatar]? {
|
|
|
|
|
|
|
|
|
|
var avatars = [Avatar]()
|
|
|
|
|
if let avatar = feedAvatar() {
|
|
|
|
|
avatars.append(avatar)
|
|
|
|
|
}
|
|
|
|
|
if let avatar = authorAvatar() {
|
|
|
|
|
avatars.append(avatar)
|
|
|
|
|
}
|
|
|
|
|
return avatars.isEmpty ? nil : avatars
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private func avatarToUse() -> Avatar? {
|
|
|
|
|
|
|
|
|
|
// Use author if article specifies an author, otherwise use feed icon.
|
|
|
|
|
// If no feed icon, use feed-specified author.
|
|
|
|
|
|
|
|
|
|
if let author = singleArticleSpecifiedAuthor(), let imageURL = author.avatarURL {
|
|
|
|
|
return Avatar(imageURL: imageURL, url: author.url)
|
|
|
|
|
}
|
|
|
|
|
if let feedIconURL = article.feed?.iconURL {
|
|
|
|
|
return Avatar(imageURL: feedIconURL, url: article.feed?.homePageURL ?? article.feed?.url)
|
|
|
|
|
}
|
|
|
|
|
if let author = singleFeedSpecifiedAuthor(), let imageURL = author.avatarURL {
|
|
|
|
|
return Avatar(imageURL: imageURL, url: author.url)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-30 05:41:41 +01:00
|
|
|
|
private let avatarDimension = 48
|
|
|
|
|
|
|
|
|
|
private func avatarImgTag() -> String? {
|
|
|
|
|
|
|
|
|
|
if let author = singleArticleSpecifiedAuthor(), let imageURL = author.avatarURL {
|
|
|
|
|
return Avatar(imageURL: imageURL, url: author.url).html(dimension: avatarDimension)
|
|
|
|
|
}
|
|
|
|
|
if let feed = article.feed, let imgTag = feedIconImgTag(forFeed: feed) {
|
|
|
|
|
return imgTag
|
|
|
|
|
}
|
|
|
|
|
if let feedIconURL = article.feed?.iconURL {
|
|
|
|
|
return Avatar(imageURL: feedIconURL, url: article.feed?.homePageURL ?? article.feed?.url).html(dimension: avatarDimension)
|
|
|
|
|
}
|
|
|
|
|
if let author = singleFeedSpecifiedAuthor(), let imageURL = author.avatarURL {
|
|
|
|
|
return Avatar(imageURL: imageURL, url: author.url).html(dimension: avatarDimension)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
// private func authorAvatar() -> String {
|
|
|
|
|
//
|
|
|
|
|
// guard let authors = article.authors, authors.count == 1, let author = authors.first else {
|
|
|
|
|
// return ""
|
|
|
|
|
// }
|
|
|
|
|
// guard let avatarURL = author.avatarURL else {
|
|
|
|
|
// return ""
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// var imageTag = "<img src=\"\(avatarURL)\" height=64 width=64 />"
|
|
|
|
|
// if let authorURL = author.url {
|
|
|
|
|
// imageTag = linkWithText(imageTag, authorURL)
|
|
|
|
|
// }
|
|
|
|
|
// return "<div id=authorAvatar>\(imageTag)</div>"
|
|
|
|
|
// }
|
|
|
|
|
|
2017-12-29 20:31:47 +01:00
|
|
|
|
private func byline() -> String {
|
|
|
|
|
|
|
|
|
|
guard let authors = article.authors ?? article.feed?.authors, !authors.isEmpty else {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var byline = ""
|
|
|
|
|
var isFirstAuthor = true
|
|
|
|
|
|
|
|
|
|
for author in authors {
|
|
|
|
|
if !isFirstAuthor {
|
|
|
|
|
byline += ", "
|
|
|
|
|
}
|
|
|
|
|
isFirstAuthor = false
|
|
|
|
|
|
|
|
|
|
if let emailAddress = author.emailAddress, emailAddress.contains(" ") {
|
|
|
|
|
byline += emailAddress // probably name plus email address
|
|
|
|
|
}
|
|
|
|
|
else if let name = author.name, let url = author.url {
|
|
|
|
|
byline += linkWithText(name, url)
|
|
|
|
|
}
|
|
|
|
|
else if let name = author.name, let emailAddress = author.emailAddress {
|
|
|
|
|
byline += "\(name) <\(emailAddress)≶"
|
|
|
|
|
// byline += linkWithText(name, "mailto:\(emailAddress)") //TODO
|
|
|
|
|
}
|
|
|
|
|
else if let name = author.name {
|
|
|
|
|
byline += name
|
|
|
|
|
}
|
|
|
|
|
else if let emailAddress = author.emailAddress {
|
|
|
|
|
byline += "<\(emailAddress)>" // TODO: mailto link
|
|
|
|
|
}
|
|
|
|
|
else if let url = author.url {
|
|
|
|
|
byline += linkWithLink(url)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-12-30 02:10:50 +01:00
|
|
|
|
return byline
|
2017-12-29 20:31:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
private func renderedHTML() -> String {
|
|
|
|
|
|
2017-11-06 05:31:50 +01:00
|
|
|
|
var s = "<!DOCTYPE html><html><head>\n\n"
|
2017-05-27 19:43:27 +02:00
|
|
|
|
s += textInsideTag(title, "title")
|
|
|
|
|
s += textInsideTag(styleString(), "style")
|
2017-11-06 05:31:50 +01:00
|
|
|
|
|
|
|
|
|
s += """
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
function startup() {
|
|
|
|
|
var anchors = document.getElementsByTagName("a");
|
|
|
|
|
for (var i = 0; i < anchors.length; i++) {
|
|
|
|
|
anchors[i].addEventListener("mouseenter", function() { mouseDidEnterLink(this) });
|
|
|
|
|
anchors[i].addEventListener("mouseleave", function() { mouseDidExitLink(this) });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function mouseDidEnterLink(anchor) {
|
|
|
|
|
window.webkit.messageHandlers.mouseDidEnter.postMessage(anchor.href);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function mouseDidExitLink(anchor) {
|
|
|
|
|
window.webkit.messageHandlers.mouseDidExit.postMessage(anchor.href);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
s += "\n\n</head><body onload='startup()'>\n\n"
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
s += RSMacroProcessor.renderedText(withTemplate: template(), substitutions: substitutions(), macroStart: "[[", macroEnd: "]]")
|
|
|
|
|
|
2017-11-06 05:31:50 +01:00
|
|
|
|
s += "\n\n</body></html>"
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
// print(s)
|
|
|
|
|
|
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|