You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2019/03/21 22:00:28 UTC

[whimsy] branch master updated: too much time coding in JS lately...

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 bad0535  too much time coding in JS lately...
bad0535 is described below

commit bad053500a1fdbe526f4cf96509c9c24bfa8e79c
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Thu Mar 21 18:00:11 2019 -0400

    too much time coding in JS lately...
---
 www/board/agenda/routes.rb | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/www/board/agenda/routes.rb b/www/board/agenda/routes.rb
index bbf20b4..abaa3c4 100755
--- a/www/board/agenda/routes.rb
+++ b/www/board/agenda/routes.rb
@@ -56,13 +56,13 @@ get '/missing' do
   agenda = dir('board_agenda_*.txt').sort.last
   pass unless agenda # this will result in a 404
 
-  // Support for sending out reminders before the agenda is created.
-  // Useful in cases where the agenda creation is delayed due to
-  // a board election.
+  # Support for sending out reminders before the agenda is created.
+  # Useful in cases where the agenda creation is delayed due to
+  # a board election.
   if agenda < Date.today.strftime('board_agenda_%Y_%m_%d.txt')
-    // update in memory cache with a dummy agenda.  The only relevant
-    // part of the agenda that matters for this operation is the list
-    // of pmcs (@pmcs).
+    # update in memory cache with a dummy agenda.  The only relevant
+    # part of the agenda that matters for this operation is the list
+    # of pmcs (@pmcs).
     template = File.read('templates/agenda.erb')
     @meeting = ASF::Board.nextMeeting
     agenda = @meeting.strftime('board_agenda_%Y_%m_%d.txt')