if (c) {
c.style.bottom = "0px";
+
+ var ioa = document.getElementById("inline_orig_article");
+
+ if (ioa) {
+ ioa.height = c.offsetHeight;
+ }
+
} else {
var h = document.getElementById("headlines-frame");
if (!$zoom_mode) {
print "$tags_str
<a title=\"".__('Edit tags for this article')."\"
- href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a>
- <img src=\"images/art-zoom.png\" class='tagsPic'
+ href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a>";
+
+ if (defined('_ENABLE_INLINE_VIEW')) {
+
+ print "<img src=\"images/art-inline.png\" class='tagsPic'
+ onclick=\"showOriginalArticleInline($id)\"
+ alt='Inline' title='".__('Display original article content')."'>";
+
+ }
+
+ print "<img src=\"images/art-zoom.png\" class='tagsPic'
+ style=\"cursor : pointer\"
style=\"cursor : pointer\"
onclick=\"zoomToArticle($id)\"
alt='Zoom' title='".__('Show article summary in new window')."'>";
margin : 15px;
}
-iframe {
- border : 0px solid white;
-}
-
-iframe.feedsFrameWithActions {
- width : 100%;
- height : 90%;
- margin : 0px;
- padding : 0px;
-}
-
-iframe.feedsFrame {
- width : 100%;
- height : 100%;
- margin : 0px;
- padding : 0px;
-}
-
-iframe.contentFrame, iframe.headlinesFrame {
- width : 100%;
- padding : 0px;
- margin : 0px;
- height : 100%;
-}
-
/*.button {
border : 1px solid #d0d0d0;
background-image : url("images/button.png");
}
}
+function showOriginalArticleInline(id) {
+ try {
+
+ var query = "backend.php?op=rpc&subop=getArticleLink&id=" + id;
+
+ notify_progress("Loading, please wait...", true);
+
+ new Ajax.Request(query, {
+ onComplete: function(transport) {
+
+ if (transport.responseXML) {
+
+ var link = transport.responseXML.getElementsByTagName("link")[0];
+ var id = transport.responseXML.getElementsByTagName("id")[0];
+
+ notify("");
+
+ if (link && id) {
+ link = link.firstChild.nodeValue;
+
+ var ci = document.getElementById("content-insert");
+
+ var tmp = "<iframe id=\"inline_orig_article\" width=\""+ci.offsetWidth+"\" height=\""+ci.offsetHeight+"\" style=\"border-width : 0px;\" src=\""+link+"\"></iframe>";
+
+ render_article(tmp);
+
+ }
+ }
+ } });
+
+ } catch (e) {
+ exception_error("showOriginalArticleInline", e);
+ }
+}
+
+
function scrollArticle(offset) {
try {
if (!isCdmMode()) {