From 100aa3f35d8c9d1bdcb6a61ac8aa79472430d304 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Thu, 5 Sep 2019 23:02:23 +0000 Subject: [PATCH] Removed OBE page 'todo' under 'release'. - Legacy-Id: 16711 --- ietf/release/tests.py | 5 -- ietf/release/urls.py | 1 - ietf/templates/release/todo.html | 92 -------------------------------- 3 files changed, 98 deletions(-) delete mode 100644 ietf/templates/release/todo.html diff --git a/ietf/release/tests.py b/ietf/release/tests.py index 4f9fdded2..3a4ac01a2 100644 --- a/ietf/release/tests.py +++ b/ietf/release/tests.py @@ -33,11 +33,6 @@ class ReleasePagesTest(TestCase): self.assertIn(word, text) self.assertGreater(len(q('#content a')), 16) - def test_todo(self): - url = reverse('ietf.release.views.release')+"todo" - r = self.client.get(url) - self.assertEqual(r.status_code, 200) - def test_stats(self): url = reverse('ietf.release.views.stats') diff --git a/ietf/release/urls.py b/ietf/release/urls.py index 34cb023e5..34d8605c7 100644 --- a/ietf/release/urls.py +++ b/ietf/release/urls.py @@ -14,6 +14,5 @@ urlpatterns = [ url(r'^(?P[0-9.]+.*)/$', views.release), url(r'^about/?$', TemplateView.as_view(template_name='release/about.html')), url(r'^stats/?$', views.stats), - url(r'^todo/?$', TemplateView.as_view(template_name='release/todo.html')), ] diff --git a/ietf/templates/release/todo.html b/ietf/templates/release/todo.html deleted file mode 100644 index 97e4c4d50..000000000 --- a/ietf/templates/release/todo.html +++ /dev/null @@ -1,92 +0,0 @@ -{% extends "base.html" %} -{# Copyright The IETF Trust 2015, All Rights Reserved #} -{% load origin %} - -{% block title %}About the Datatracker{% endblock %} - -{% block content %} - {% origin %} -
-
-

Facelift ToDo

- -
-

Pre-Release

- -
    - -
  • DONE   Initial merge with trunk (on separate branch)
  • -
  • DONE   Re-style to make people recognise that they are at the datatracker
  • -
  • DONE   Use a designed colour palette rather than arbitrary element colours
  • -
  • DONE   The extra FontAwesome add-in seems to add glyphs already bundled in - glyphicons, which adds page load time and update complexity; see if we - can reduce to only the bundled glyphs. Conclusion: not feasible
  • -
  • DONE   Have a look at using slightly more readable fonts than the current - one, and change font families if it looks reasonable
  • -
  • DONE   Align the use of info and warning background colours with the info and - warning button colours
  • -
  • DONE   Add an 'About' page which gives credit to those working on the facelift.
  • -
  • DONE   Fix style consistency in WG metadata table vs. document - metadata table (DONE for drafts)
  • -
  • DONE   Rename the base template back to 'base.html' from 'ietf.html' now that - all templates using the old base have been fixed
  • -
  • DONE   On tablets, the ballot grids has a 'click to show more' which has a - z-value larger than the pop-up. This only matters because it doesn't go - away on click on tablets. Fix.
  • -
  • DONE   Fix the missing IPR values on search and group pages.
  • -
  • DONE   The ballot grids don't use the position colours used in the pop-up (the - colours in the pop-up is based on the palette colours). Mabye align grid - position colours with pop-up position colours?
  • -
  • DONE   The Responsible AD Column is also lacking values in the active WGs page. Fix.
  • -
  • DONE   Darken the background of the 'updated [date]' on the agenda page.
  • -
  • DONE   Final merge to trunk
  • -
  • DONE   Fix the area popups so you don't need to scroll to see all WGs
  • -
    - - -
- -
-
-

Can be done before or after release

-
    -
  • Fix style consistency in WG doc list vs. release list, and more
  • -
  • The header colours on the meeting requests page have inverted colour - logic compared to other list pages (info background for warnings, warning - background for sub-headers). Empty warning panes are shown. Fix.
  • -
  • The agenda page uses warning colours for day headers. Fix.
  • -
  • Replace buttons which are links with something which is recognisable - as links, preferably in submenu form.
  • -
  • The colouring of table rows for logged-in ADs, showing their own position, - on /iesg/agenda/documents/, has been lost. Fix.
  • -
  • Fix the misplaced horizontal line on the ballot popup on /iesg/agenda/.
  • -
  • When the viewport becomes very narrow, the WG popups don't come up any more. - There used to be a 'jump to wg' field to let you go to a WG, but that's lost - now. Bring it back.
  • -
  • Grep for 'XXX' in the code to find places that still need attention.
  • -
- - -
-
-

Post-Release

- -
    -
  • Maybe change alert, warning, etc. fonts to sans?
  • -
  • Fix input fields to have appropriate type setting, in order to provide - the appropriate keyboard on mobile devices (email address keyboard, - url keyboard, and possibly others). Set autocorrect and autocaptitalise - attributes correctly, also to make things easier on mobile devices.
  • -
  • The materials page has very different column width for the different - areas. Consider normalising. Check IPR list page for possible approach.
  • -
  • Remove general uglyness (like the overly large section descriptions on - http://zin.tools.ietf.org:31415/sync/discrepancies/)
  • -
  • Change the room map links on the agenda to use pop-overs instead of - pointing off to the room maps on tools.ietf.org
  • -
- -
-
- -
-{% endblock %}