This is an automated email from the ASF dual-hosted git repository.
rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 206f803 explain action item date link and improve secrets formatting
206f803 is described below
commit 206f803bfea315cd2a09db2fe2fab926edb18f20
Author: Sam Ruby <[email protected]>
AuthorDate: Sun Oct 20 12:43:58 2019 -0400
explain action item date link and improve secrets formatting
---
www/board/agenda/public/stylesheets/app.css | 4 +++
www/board/agenda/views/pages/secrets.js.rb | 45 +++++++++++++++++++----------
2 files changed, 34 insertions(+), 15 deletions(-)
diff --git a/www/board/agenda/public/stylesheets/app.css
b/www/board/agenda/public/stylesheets/app.css
index 1221552..6410b47 100644
--- a/www/board/agenda/public/stylesheets/app.css
+++ b/www/board/agenda/public/stylesheets/app.css
@@ -571,3 +571,7 @@ input[type=file]#upload {
margin-left: 0.5em;
margin-bottom: 0em;
}
+
+.secrets li {
+ margin-right: 5em;
+}
diff --git a/www/board/agenda/views/pages/secrets.js.rb
b/www/board/agenda/views/pages/secrets.js.rb
index e2b14c8..50f8ed6 100644
--- a/www/board/agenda/views/pages/secrets.js.rb
+++ b/www/board/agenda/views/pages/secrets.js.rb
@@ -5,7 +5,7 @@ class InsiderSecrets < Vue
prominently highlighted by the UI, but you might find useful.
)
- _ul do
+ _ul.secrets do
_li { _p %q(
Want to reflow only part of a report so as to not mess with the
formatting of a table or other pre-formatted text? Select the
@@ -20,22 +20,37 @@ class InsiderSecrets < Vue
) }
_li { _p %q(
- Action items have both a status (which is either shown with a red
- background if no update has been made or a white background if
- a status has been provided), and a PMC name. The background of the
- later is either grey if this PMC is not reporting this month, or
- a link to the report itself, and the color of the link is the color
- associated with the report (green if preapproved, red if flagged,
- etc.). So generally if you see an action item to "pursue a report
- for..." and the link is green, you can confidently mark that action as
- complete.
+ Action items have a status (which is either shown with a red background
+ if no update has been made or a white background if a status has been
+ provided), a date, and a PMC name.
+ )
+
+ _p %q(
+ The background of the PMC name is either grey if this PMC is not
+ reporting this month, or a link to the report itself, and the color of
+ the link is the color associated with the report (green if preapproved,
+ red if flagged, etc.). So generally if you see an action item to
+ "pursue a report for..." and the link is green, you can confidently
+ mark that action as complete.
+ )
+
+ _p %q(
+ Not sure what the action item was for, and the provided text is not
+ enough to jog your memory? Click on the date link for this action item
+ to see the report for that month.
) }
- _li { _p %q(
- Need to see Whimsy server status, or get debugging info to help
- report a bug? Start with https://whimsy.apache.org/status/ or
- https://whimsy.apache.org/board/test.cgi
- ) }
+ _li { _p {
+ _ %q(
+ Need to see Whimsy server status, or get debugging info to help
+ report a bug? Start with
+ )
+
+ _a 'status', href: 'https://whimsy.apache.org/status/'
+ _ ' or '
+ _a 'test', href: 'https://whimsy.apache.org/test.cgi'
+ _ '.'
+ } }
end
end