browser/components/feeds/content/subscribe.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/components/feeds/content/subscribe.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,65 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.8 +
     1.9 +
    1.10 +<!DOCTYPE html [
    1.11 +  <!ENTITY % htmlDTD
    1.12 +    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    1.13 +    "DTD/xhtml1-strict.dtd">
    1.14 +  %htmlDTD;
    1.15 +  <!ENTITY % globalDTD
    1.16 +    SYSTEM "chrome://global/locale/global.dtd">
    1.17 +  %globalDTD;
    1.18 +  <!ENTITY % feedDTD
    1.19 +    SYSTEM "chrome://browser/locale/feeds/subscribe.dtd">
    1.20 +  %feedDTD;
    1.21 +]>
    1.22 +
    1.23 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
    1.24 +
    1.25 +<html id="feedHandler"
    1.26 +      xmlns="http://www.w3.org/1999/xhtml">
    1.27 +  <head>
    1.28 +    <title>&feedPage.title;</title>
    1.29 +    <link rel="stylesheet"
    1.30 +          href="chrome://browser/skin/feeds/subscribe.css"
    1.31 +          type="text/css"
    1.32 +          media="all"/>
    1.33 +    <link rel="stylesheet"
    1.34 +          href="chrome://browser/content/feeds/subscribe.css"
    1.35 +          type="text/css"
    1.36 +          media="all"/>
    1.37 +    <script type="application/javascript"
    1.38 +            src="chrome://browser/content/feeds/subscribe.js"/>
    1.39 +  </head>
    1.40 +  <body onload="SubscribeHandler.writeContent();" onunload="SubscribeHandler.uninit();">
    1.41 +    <div id="feedHeaderContainer">
    1.42 +      <div id="feedHeader" dir="&locale.dir;">
    1.43 +        <div id="feedIntroText">
    1.44 +          <p id="feedSubscriptionInfo1" />
    1.45 +          <p id="feedSubscriptionInfo2" />
    1.46 +        </div>
    1.47 +        <div id="feedSubscribeLine"></div>
    1.48 +      </div>
    1.49 +    </div>
    1.50 +
    1.51 +    <script type="application/javascript">
    1.52 +      SubscribeHandler.init();
    1.53 +    </script>
    1.54 +
    1.55 +    <div id="feedBody">
    1.56 +      <div id="feedTitle">
    1.57 +        <a id="feedTitleLink">
    1.58 +          <img id="feedTitleImage"/>
    1.59 +        </a>
    1.60 +        <div id="feedTitleContainer">
    1.61 +          <h1 id="feedTitleText"/>
    1.62 +          <h2 id="feedSubtitleText"/>
    1.63 +        </div>
    1.64 +      </div>
    1.65 +      <div id="feedContent"/>
    1.66 +    </div>
    1.67 +  </body>
    1.68 +</html>

mercurial