browser/components/feeds/content/subscribe.xhtml

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <?xml version="1.0" encoding="utf-8"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6
michael@0 7 <!DOCTYPE html [
michael@0 8 <!ENTITY % htmlDTD
michael@0 9 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
michael@0 10 "DTD/xhtml1-strict.dtd">
michael@0 11 %htmlDTD;
michael@0 12 <!ENTITY % globalDTD
michael@0 13 SYSTEM "chrome://global/locale/global.dtd">
michael@0 14 %globalDTD;
michael@0 15 <!ENTITY % feedDTD
michael@0 16 SYSTEM "chrome://browser/locale/feeds/subscribe.dtd">
michael@0 17 %feedDTD;
michael@0 18 ]>
michael@0 19
michael@0 20 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
michael@0 21
michael@0 22 <html id="feedHandler"
michael@0 23 xmlns="http://www.w3.org/1999/xhtml">
michael@0 24 <head>
michael@0 25 <title>&feedPage.title;</title>
michael@0 26 <link rel="stylesheet"
michael@0 27 href="chrome://browser/skin/feeds/subscribe.css"
michael@0 28 type="text/css"
michael@0 29 media="all"/>
michael@0 30 <link rel="stylesheet"
michael@0 31 href="chrome://browser/content/feeds/subscribe.css"
michael@0 32 type="text/css"
michael@0 33 media="all"/>
michael@0 34 <script type="application/javascript"
michael@0 35 src="chrome://browser/content/feeds/subscribe.js"/>
michael@0 36 </head>
michael@0 37 <body onload="SubscribeHandler.writeContent();" onunload="SubscribeHandler.uninit();">
michael@0 38 <div id="feedHeaderContainer">
michael@0 39 <div id="feedHeader" dir="&locale.dir;">
michael@0 40 <div id="feedIntroText">
michael@0 41 <p id="feedSubscriptionInfo1" />
michael@0 42 <p id="feedSubscriptionInfo2" />
michael@0 43 </div>
michael@0 44 <div id="feedSubscribeLine"></div>
michael@0 45 </div>
michael@0 46 </div>
michael@0 47
michael@0 48 <script type="application/javascript">
michael@0 49 SubscribeHandler.init();
michael@0 50 </script>
michael@0 51
michael@0 52 <div id="feedBody">
michael@0 53 <div id="feedTitle">
michael@0 54 <a id="feedTitleLink">
michael@0 55 <img id="feedTitleImage"/>
michael@0 56 </a>
michael@0 57 <div id="feedTitleContainer">
michael@0 58 <h1 id="feedTitleText"/>
michael@0 59 <h2 id="feedSubtitleText"/>
michael@0 60 </div>
michael@0 61 </div>
michael@0 62 <div id="feedContent"/>
michael@0 63 </div>
michael@0 64 </body>
michael@0 65 </html>

mercurial