add micar whitepaper - #1241
Open
dajohi wants to merge 1 commit into
Open
Conversation
dajohi
force-pushed
the
micar
branch
2 times, most recently
from
September 2, 2026 15:02
044bb26 to
918aa73
Compare
jholdstock
requested changes
Sep 3, 2026
Member
There was a problem hiding this comment.
I don't like to see the file without an extension, I'd ask for the .html extension to be added, and then:
- The page will be viewable at https://decred.org/micar-whitepaper.html with no nginx changes necessary
- If the page is also needed at a URL without the extension (https://decred.org/micar-whitepaper), the following nginx conf can be added:
location = /micar-whitepaper { alias /usr/share/nginx/html/micar-whitepaper.html; default_type text/html; }
jholdstock
requested changes
Sep 8, 2026
Member
There was a problem hiding this comment.
I always forget this repo has tests, here you go: run-tests.patch
diff --git a/test/run-test.sh b/test/run-test.sh
index 1aeadbb9..6f04a2cb 100755
--- a/test/run-test.sh
+++ b/test/run-test.sh
@@ -11,7 +11,14 @@ fi
echo
echo "Validating pages "
-FILES=$(find $CONTENT_DIR -name \*.html | grep -v google)
+# Find HTML files to validate, skipping files which are known to fail validation
+# but should not be altered:
+# - google858b8c931adb8fff.html - verifies site ownership for Google Search.
+# - micar-whitepaper.html - handcrafted by a third party.
+FILES=$(find $CONTENT_DIR -name \*.html | \
+ grep -v google858b8c931adb8fff | \
+ grep -v micar-whitepaper)
+
PATH=node_modules/.bin:$PATH
exit_code=0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.