fix: adjust about page to reflect move to GitHub. Normalize information level on page. (#3629)
This commit is contained in:
parent
9ffb74c4c3
commit
85d4ce748b
|
@ -10,7 +10,7 @@ from ietf.utils.urls import url
|
|||
urlpatterns = [
|
||||
url(r'^$', views.release),
|
||||
url(r'^(?P<version>[0-9.]+.*)/$', views.release),
|
||||
url(r'^about/?$', TemplateView.as_view(template_name='release/about.html')),
|
||||
url(r'^about/?$', TemplateView.as_view(template_name='release/about.html'), name='releaseabout'),
|
||||
url(r'^stats/?$', views.stats),
|
||||
]
|
||||
|
||||
|
|
|
@ -22,11 +22,10 @@
|
|||
</p>
|
||||
<p>
|
||||
|
||||
All the Datatracker code is publicly avaliable from the
|
||||
<a href="https://github.com/ietf-tools/datatracker">IETF tools GitHub repository</a>.
|
||||
Bug tickets should be reported as <a href="https://github.com/ietf-tools/datatracker/issues">issues</a> at GitHub.
|
||||
There are also <a href="/release">release notes</a> available since version 2.00.
|
||||
|
||||
The Datatracker is an open-source project, using <a href="https://github.com/ietf-tools/datatracker">GitHub</a>.
|
||||
</p>
|
||||
<p>
|
||||
There are <a href="{% url 'releaseabout' %}">release notes</a> available since version 2.00.
|
||||
</p>
|
||||
<p>
|
||||
|
||||
|
@ -36,25 +35,14 @@
|
|||
|
||||
</p>
|
||||
|
||||
<h2>Version 6.x Work</h2>
|
||||
<p>
|
||||
|
||||
Between the release of 6.0.0 in April 2015 and the <a href="/release/">latest release</a>
|
||||
there has been numerous releases (75, as of 11 Feb 2017) which has extended the
|
||||
functionality of the datatracker substantially. The <a href="/release/#release-list">release list</a>
|
||||
gives more information.
|
||||
|
||||
</p>
|
||||
|
||||
<h2>Version 6.0.0: Facelift using Bootstrap</h2>
|
||||
<h2>Version 7.0.0: Django 2</h2>
|
||||
|
||||
<h2>Version 6.0.0: Facelift using Bootstrap 3</h2>
|
||||
<p>
|
||||
|
||||
During more than a year, from July 2013 to late 2014, <i>Lars Eggert</i> worked intensively
|
||||
on a major facelift to the datatracker, porting the GUI to Bootstrap. The work
|
||||
took
|
||||
<a href="https://trac.ietf.org/trac/ietfdb/log/personal/lars?rev=8652&stop_rev=5871&limit=500">
|
||||
287 separate commits
|
||||
</a>, and comprised changes to 1016 different files.
|
||||
took 287 separate commits, and comprised changes to 1016 different files.
|
||||
|
||||
</p>
|
||||
<p>
|
||||
|
@ -74,13 +62,8 @@
|
|||
</p>
|
||||
<p>
|
||||
|
||||
Additional
|
||||
<a href="https://trac.ietf.org/trac/ietfdb/log/branch/iola?rev=9116&stop_rev=8520&limit=200">
|
||||
page conversion work
|
||||
</a> has been done by <i>Ole Laursen</i>, with
|
||||
<a href="https://trac.ietf.org/trac/ietfdb/log/personal/henrik/facelift-r9116">
|
||||
final style tweaks, bug-fixes and adaptations
|
||||
</a>
|
||||
Additional page conversion work was performed by <i>Ole Laursen</i>, with
|
||||
final style tweaks, bug-fixes and adaptations
|
||||
by <i>Henrik Levkowetz</i>, giving it a distinct
|
||||
<a href="http://www.colourlovers.com/palette/3702908/Key_West_Sunset">colour palette</a>
|
||||
(with the addition of complementing green and red colours for success and error indications),
|
||||
|
@ -94,37 +77,21 @@
|
|||
optical size</a> font to go with PT Sans, it works well for headers when paired with PT Serif.)
|
||||
|
||||
</p>
|
||||
<h2>Version 5.x Work</h2>
|
||||
<p>
|
||||
|
||||
Between the release of 5.0.0 in January 2014 and the last release in the 5.x series in
|
||||
April 2015, there were 42 releases containing bug fixes and features. Worth mentioning
|
||||
were 4 code sprint releases, added support for the secretariat's agenda scheduling work,
|
||||
the addition of pages for <a href="/rg/">Research Groups</a> and <a
|
||||
href="/group/edu">Teams</a>, a <a href="/api/v1/?format=json">JSON interface</a> to the
|
||||
database for tool builders, improved <a href="/ipr/">IPR support</a>, a move to Django 1.7,
|
||||
and many <a href="https://trac.ietf.org/trac/ietfdb/wiki/Testing?version=13">
|
||||
improvements in testing support</a>.
|
||||
|
||||
</p>
|
||||
|
||||
|
||||
<h2>Version 5.0.0: Shim Removal</h2>
|
||||
|
||||
<div class="alert-info">
|
||||
To be written.
|
||||
</div>
|
||||
<p> At this point, the views and templates were completely adapted to the new models introduced at 4.0.0 </p>
|
||||
|
||||
<h2>Version 4.00: New Database Schema</h2>
|
||||
|
||||
<div class="alert-info">
|
||||
To be written.
|
||||
</div>
|
||||
<p> This release was a complete redesign of the underlying Django models. It introduced a set of facades, referred to as a "Shim Layer",
|
||||
which allowed the refactor to focus only on the models, leaving the views and templates for later adaptation.
|
||||
</p>
|
||||
|
||||
<h2>Version 3.00: Django Port of the IESG Datatracker Pages</h2>
|
||||
|
||||
<div class="alert-info">
|
||||
To be written.
|
||||
</div>
|
||||
<p> This release added the IESG only portions of the previous IESG tracker to the public Datatracker.
|
||||
</p>
|
||||
|
||||
<h2>Version 2.00: Django Port of the Public Datatracker Pages</h2>
|
||||
|
||||
|
|
Loading…
Reference in a new issue