Skip to content

Commit

Permalink
Make IOCCC status text consistent with JSON status
Browse files Browse the repository at this point in the history
The status showed 'The IOCCC is not yet open' to indicate it is in
pending status. But it would be better to match the actual status
itself especially as the status.html file explains pending status, not
'not yet open'. At a quick glance it is easy to miss especially for
those of us who have worked on the repo for a long time and in
particular those who worked on the status.html file a lot.

This updated files in inc/, bin/ and next/ but I cheated and used sgit
to do this. I then rebuilt the html files. A previous minor grammar
problem in rules was fixed as well.
  • Loading branch information
xexyl committed Dec 31, 2024
1 parent 94a3682 commit 8197b62
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions bin/status2html.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ shopt -s globstar # enable ** to match all files and zero or more directories an

# set variables referenced in the usage message
#
export VERSION="1.4.4 2024-12-29"
export VERSION="1.4.5 2024-12-31"
NAME=$(basename "$0")
export NAME
export V_FLAG=0
Expand Down Expand Up @@ -440,7 +440,7 @@ esac
# write status of the contest
#
case "$CONTEST_STATUS" in
pending) echo "# The IOCCC is not yet open"
pending) echo "# The IOCCC is pending"
echo
echo "While the IOCCC is not open now, there is a tentative opening date for the next IOCCC."
echo
Expand Down
4 changes: 2 additions & 2 deletions inc/guidelines.pending.hdr
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ about these guidelines. You might also find the FAQ in general useful, especiall
FAQ on "[how to enter the IOCCC](../faq.html#enter)".


# The IOCCC is not yet open
# The IOCCC is pending

While the IOCCC is not open now, there is a tentative opening date for the next IOCCC.
While the IOCCC is not open yet, there is a tentative opening date for the next IOCCC.

Comments and suggestions on these preliminary guidelines are welcome. See the
[FAQ](../faq.html#feedback) for how to suggest, correct or provide feedback
Expand Down
2 changes: 1 addition & 1 deletion inc/rules.pending.hdr
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ about these rules. You might also find the FAQ in general useful, especially the
FAQ on "[how to enter the IOCCC](../faq.html#enter)".


# The IOCCC is not yet open
# The IOCCC is pending

While the IOCCC is not open now, there is a tentative opening date for the next IOCCC.

Expand Down
4 changes: 2 additions & 2 deletions next/guidelines.html
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,8 @@ <h1 id="warning-these-guidelines-are-tentative">WARNING: These guidelines are TE
FAQ on “<a href="../faq.html#question">about asking questions</a>
about these guidelines. You might also find the FAQ in general useful, especially the
FAQ on “<a href="../faq.html#enter">how to enter the IOCCC</a>”.</p>
<h1 id="the-ioccc-is-not-yet-open">The IOCCC is not yet open</h1>
<p>While the IOCCC is not open now, there is a tentative opening date for the next IOCCC.</p>
<h1 id="the-ioccc-is-pending">The IOCCC is pending</h1>
<p>While the IOCCC is not open yet, there is a tentative opening date for the next IOCCC.</p>
<p>Comments and suggestions on these preliminary guidelines are welcome. See the
<a href="../faq.html#feedback">FAQ</a> for how to suggest, correct or provide feedback
about thse guidelines.</p>
Expand Down
4 changes: 2 additions & 2 deletions next/guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ about these guidelines. You might also find the FAQ in general useful, especiall
FAQ on "[how to enter the IOCCC](../faq.html#enter)".


# The IOCCC is not yet open
# The IOCCC is pending

While the IOCCC is not open now, there is a tentative opening date for the next IOCCC.
While the IOCCC is not open yet, there is a tentative opening date for the next IOCCC.

Comments and suggestions on these preliminary guidelines are welcome. See the
[FAQ](../faq.html#feedback) for how to suggest, correct or provide feedback
Expand Down
4 changes: 2 additions & 2 deletions next/rules.html
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ <h1 id="warning-these-rules-are-tentative">WARNING: These rules are TENTATIVE</h
FAQ on “<a href="../faq.html#question">about asking questions</a>
about these rules. You might also find the FAQ in general useful, especially the
FAQ on “<a href="../faq.html#enter">how to enter the IOCCC</a>”.</p>
<h1 id="the-ioccc-is-not-yet-open">The IOCCC is not yet open</h1>
<h1 id="the-ioccc-is-pending">The IOCCC is pending</h1>
<p>While the IOCCC is not open now, there is a tentative opening date for the next IOCCC.</p>
<p>Comments and suggestions on these preliminary rules are welcome. See the
<a href="../faq.html#feedback">FAQ</a> for how to suggest, correct or provide feedback
Expand Down Expand Up @@ -942,7 +942,7 @@ <h3 id="tldr-rule-17---use-mkiocccentry1">TL;DR Rule 17 - Use <code>mkiocccentry
conforms to <a href="#rule17">Rule 17</a>.
</p>
<p class="leftbar">
Each above mentioned tools has a <code>-h</code> option that provides command
Each above mentioned tool has a <code>-h</code> option that provides command
line help. For additional details, see the tools’ man pages and the
<a href="guidelines.html">guidelines</a>.
</p>
Expand Down
4 changes: 2 additions & 2 deletions next/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ about these rules. You might also find the FAQ in general useful, especially the
FAQ on "[how to enter the IOCCC](../faq.html#enter)".


# The IOCCC is not yet open
# The IOCCC is pending

While the IOCCC is not open now, there is a tentative opening date for the next IOCCC.

Expand Down Expand Up @@ -711,7 +711,7 @@ conforms to [Rule 17](#rule17).
</p>

<p class="leftbar">
Each above mentioned tools has a `-h` option that provides command
Each above mentioned tool has a `-h` option that provides command
line help. For additional details, see the tools' man pages and the
[guidelines](guidelines.html).
</p>
Expand Down

0 comments on commit 8197b62

Please sign in to comment.