Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F12241807
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/infographics/_documents.xml b/infographics/_documents.xml
index 11eac80..fadd442 100644
--- a/infographics/_documents.xml
+++ b/infographics/_documents.xml
@@ -1,44 +1,49 @@
<documents topic="infographics">
<document>
<article>parlement-fr</article>
<title>Le parlement Français, une gérontocratie ?</title>
<description>Distribution par âge des sénateurs & députés.</description>
<head><![CDATA[
<link href="/includes/kendo/styles/kendo.dataviz.min.css" rel="stylesheet">
<script src="/includes/kendo/js/jquery.min.js"></script>
<script src="/includes/kendo/js/kendo.dataviz.min.js"></script>
<style>
/* Tooltip styling */
.xlarger {
width: 600px;
}
.larger {
width: 400px;
}
.tooltipList {
margin-left: 1em !important;
margin-top: 0.5em;
margin-bottom: 0;
}
.tooltipList li {
font-size: 0.75em;
list-style: none;
}
.block-grid {
margin-top: 0.5em !important;
}
.block-grid li {
padding-bottom: 0 !important;
}
#svg {
margin-left: 2em;
}
</style>
]]></head>
</document>
+ <document>
+ <article>releases</article>
+ <title>Software releases</title>
+ <description>How often a software is released?</description>
+ </document>
</documents>
diff --git a/infographics/releases.html b/infographics/releases.html
new file mode 100644
index 0000000..b5e739e
--- /dev/null
+++ b/infographics/releases.html
@@ -0,0 +1,44 @@
+ <div class="row">
+ <div class="two mobile-one columns">
+ <h3>Software</h3>
+ <ul class="menu">
+ <li>Openfire</li>
+ </ul>
+ </div>
+ <div class="ten mobile-three columns">
+ <h3>Releases</h3>
+ <div id="releases-graph"></div>
+ <p><strong>Source:</strong> <a href="http://download.igniterealtime.org/openfire/docs/latest/changelog.html">Openfire Changelog</a></p>
+ </div>
+ </div>
+
+ <style>
+ #releases-graph {
+ font-size: 1.5em;
+ }
+ </style>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/2.8.1/d3.v2.min.js" integrity="sha256-HU95Gc4ycxJJmm+LrtAsSwFS5MF/Zk3X5ccSw8+c1C8=" crossorigin="anonymous"></script>
+ <script src="https://assets.nasqueron.org/lib/timeknots/timeknots-min.js"></script>
+ <script>
+ let data;
+
+ $.getJSON("https://api.nasqueron.org/datasources/dev/openfire/changelog", function(response) {
+ data = response
+ .map(function (entry) {
+ return {
+ name: entry.version,
+ date: new Date(entry.date * 1000).toISOString(),
+ }
+ });
+
+ TimeKnots.draw("#releases-graph", data, {
+ dateFormat: "%Y-%m-%d",
+ width: 320,
+ height: 1024,
+ color: "703030",
+ showLabels: true,
+ labelFormat: "%Y-%m",
+ horizontalLayout: false,
+ });
+ });
+ </script>
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sun, Oct 12, 06:33 (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3065121
Default Alt Text
(3 KB)
Attached To
Mode
rTOOLS Nasqueron Tools
Attached
Detach File
Event Timeline
Log In to Comment