58 lines
1.8 KiB
XML
58 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/feeds/feedhandler.css"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://browser/locale/feeds/feedhandler.dtd">
|
|
|
|
<window id="feedHandler"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="FeedHandler.init();">
|
|
|
|
<script type="application/x-javascript"
|
|
src="chrome://browser/content/feeds/feedhandler.js"/>
|
|
|
|
<vbox id="infoBox" class="contentBox header">
|
|
<hbox>
|
|
<image id="feedIcon"/>
|
|
<label id="introTitle" flex="1" crop="right"/>
|
|
<image id="feedLogo"/>
|
|
</hbox>
|
|
|
|
<description class="introText">&feedIntro1.label;</description>
|
|
<description class="introText">&feedIntro2.label;</description>
|
|
|
|
<hbox id="showSubscribeOptionsButtonBox">
|
|
<button id="showSubscribeOptionsButton"
|
|
class="noLMargin introText"
|
|
label="&feedSubscribe.label;"
|
|
onclick="FeedHandler.openSubscribe();"/>
|
|
</hbox>
|
|
<vbox id="subscribeOptions" collapsed="true">
|
|
<label class="noLMargin introText">&subscribeInfo.label;</label>
|
|
|
|
<hbox>
|
|
<menulist id="webServiceOptions" class="noLMargin introText">
|
|
<menupopup id="webServiceOptionsPopup"
|
|
onpopupshowing="FeedHandler.populateServiceOptions(this);"/>
|
|
</menulist>
|
|
</hbox>
|
|
<hbox>
|
|
<checkbox id="autoHandle" class="noLMargin introText"
|
|
label="&autoHandle.label;" accesskey="&autoHandle.accesskey;"/>
|
|
</hbox>
|
|
|
|
<hbox>
|
|
<button id="subscribeButton" label="&feedSubscribe.label;"
|
|
class="noLMargin introText"
|
|
oncommand="FeedHandler.subscribe();"/>
|
|
</hbox>
|
|
</vbox>
|
|
</vbox>
|
|
<vbox id="feedContent" class="contentBox">
|
|
|
|
</vbox>
|
|
</window>
|
|
|
|
|