Files
openlayers/master/examples/test_FeedViewer_local_declarative.html
Éric Lemoine 5d14b9e2d4 Updated
2013-02-20 10:38:25 +01:00

46 lines
1.4 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test the Feed Viewer (using ATOM)</title>
<style type="text/css">
@import "../../widget/templates/css/EntryHeader.css";
@import "../../widget/templates/css/HtmlFeedViewer.css";
@import "../../widget/templates/css/HtmlFeedViewerGrouping.css";
@import "../../widget/templates/css/HtmlFeedViewerEntry.css";
@import "../../widget/templates/css/HtmlFeedEntryViewer.css";
</style>
<script type="text/javascript">
var djConfig = {isDebug: true, parseOnLoad: true};
</script>
<script type="text/javascript" src="../../../../dojo/dojo.js"></script>
<script language="JavaScript" type="text/javascript">
dojo.require("dojox.atom.widget.FeedViewer");
dojo.require("dojox.atom.widget.FeedEntryViewer");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit.layout.SplitContainer");
</script>
</head>
<body>
<div>
<div dojoType="dojox.atom.widget.FeedViewer"
widgetId="fv1"
url="samplefeed.xml"
entrySelectionTopic="atomfeed/entry/topic">
</div>
</div>
<div dojoType="dojox.atom.widget.FeedEntryViewer"
widgetId="feedEditor"
enableMenu="true"
enableMenuFade="true"
enableEdit="true"
displayEntrySections="title,authors,summary"
entrySelectionTopic="atomfeed/entry/topic">
</div>
</body>
</html>