aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorickc <ickc@users.noreply.github.com>2017-08-23 13:48:10 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-08-23 13:48:10 -0700
commit5c1d844e40b146dd16e88a662368fe1824c46888 (patch)
tree1df69a45aa73700b6f9c7683a0691c16755c2f7d
parentf297659d508fcb2ba68ff3b071b2a6e85b2f7e4c (diff)
downloadpandoc-5c1d844e40b146dd16e88a662368fe1824c46888.tar.gz
Name change OSX -> macOS (#3869)
* Name change OSX -> macOS fix commit c96b64e This commit finishes remaining osx to macOS change, as well as replacing MacOS with macOS. The reason for the later one is because the "correct" casing of macOS is like that. Apple styles it to looks like iOS, watchOS, tvOS, etc. And unfortunately they all start with a lowercase letter, making propercasing (or even title-casing) odd. * fix casing of Linux, UNIX, and Windows
-rw-r--r--INSTALL.md8
-rw-r--r--MANUAL.txt8
-rw-r--r--RELEASE-CHECKLIST4
-rw-r--r--RELEASE-CHECKLIST.md4
-rwxr-xr-xmacos/make_macos_package.sh6
-rwxr-xr-xmacos/uninstall-pandoc.pl2
-rw-r--r--man/pandoc.16
-rw-r--r--stack.full.yaml2
-rw-r--r--windows/Pandoc-en-us.wxl2
9 files changed, 21 insertions, 21 deletions
diff --git a/INSTALL.md b/INSTALL.md
index e0f7eb344..bbe16fbe3 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -19,7 +19,7 @@
copy /y "%TEMP%\pandoc\pandoc-citeproc.exe" C:\Utils\Console\
rmdir /s /q "%TEMP%\pandoc\"
-## MacOS
+## macOS
- There is a package installer at pandoc's [download page].
If you later want to uninstall the package, you can do so
@@ -27,12 +27,12 @@
and running it with `perl uninstall-pandoc.pl`.
- It is possible to extract the pandoc and pandoc-citeproc
- executables from the MacOS pkg file, if you'd rather not run
+ executables from the macOS pkg file, if you'd rather not run
the installer. To do this (for the version 1.19.1 package):
mkdir pandoc-extract
cd pandoc-extract
- xar -x ../pandoc-1.19.1-osx.pkg
+ xar -x ../pandoc-2.0-macOS.pkg
cat pandoc.pkg/Payload | gunzip -dc | cpio -i
# executables are now in ./usr/bin/, man pages in ./usr/share/man
@@ -180,7 +180,7 @@ The easiest way to build pandoc from source is to use [stack]:
Note that this requires the `text-icu` library, which in turn
depends on the C library `icu4c`. Installation directions
- vary by platform. Here is how it might work on MacOS with homebrew:
+ vary by platform. Here is how it might work on macOS with homebrew:
brew install icu4c
cabal install --extra-lib-dirs=/usr/local/Cellar/icu4c/51.1/lib \
diff --git a/MANUAL.txt b/MANUAL.txt
index 7e0bdfcdd..902f131f2 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -336,7 +336,7 @@ General options
: Specify the user data directory to search for pandoc data files.
If this option is not specified, the default user data directory
- will be used. This is, in Unix:
+ will be used. This is, in UNIX:
$HOME/.pandoc
@@ -608,7 +608,7 @@ General writer options
`--eol=crlf`|`lf`|`native`
: Manually specify line endings: `crlf` (Windows), `lf`
- (MacOS/linux/unix), or `native` (line endings appropriate
+ (macOS/Linux/UNIX), or `native` (line endings appropriate
to the OS on which pandoc is being run). The default is
`native`.
@@ -706,8 +706,8 @@ General writer options
`--resource-path=`*SEARCHPATH*
: List of paths to search for images and other resources.
- The paths should be separated by `:` on linux, unix, and
- MacOS systems, and by `;` on Windows. If `--resource-path`
+ The paths should be separated by `:` on Linux, UNIX, and
+ macOS systems, and by `;` on Windows. If `--resource-path`
is not specified, the default resource path is the working
directory. Note that, if `--resource-path` is specified,
the working directory must be explicitly listed or it
diff --git a/RELEASE-CHECKLIST b/RELEASE-CHECKLIST
index b566cc4d8..07d8da4d9 100644
--- a/RELEASE-CHECKLIST
+++ b/RELEASE-CHECKLIST
@@ -1,4 +1,4 @@
-_ Test, on linux, windows, mac (inc. website demos)
+_ Test, on Linux, Windows, macOS (inc. website demos)
_ Finalize changelog
git log --pretty='format:%n%n* %s (%an)%n%b%n%h%n' --reverse --name-only 1.17.0.3..HEAD > LOG
@@ -12,7 +12,7 @@ _ Push templates:
_ Generate Windows package (make winpkg)
-_ Generate MacOS package (make macospkg)
+_ Generate macOS package (make macospkg)
_ Generate Ubuntu/Debian deb package (make debpkg)
diff --git a/RELEASE-CHECKLIST.md b/RELEASE-CHECKLIST.md
index d3fd70f23..07fbcb8bb 100644
--- a/RELEASE-CHECKLIST.md
+++ b/RELEASE-CHECKLIST.md
@@ -1,4 +1,4 @@
-- [ ] Test, on linux, windows, mac (inc. website demos)
+- [ ] Test, on Linux, Windows, macOS (inc. website demos)
- [ ] Finalize changelog:
`git log --pretty='format:%n%n* %s (%an)%n%b%n%h%n' --reverse --name-only 1.17.0.3..HEAD > LOG`
@@ -11,7 +11,7 @@
- [ ] Generate Windows package (`make winpkg`)
-- [ ] Generate Mac OSX package (`make osxpkg`)
+- [ ] Generate macOS package (`make macospkg`)
- [ ] Generate Ubuntu/Debian deb package (`make debpkg`)
diff --git a/macos/make_macos_package.sh b/macos/make_macos_package.sh
index f5262e1d5..5b66afd25 100755
--- a/macos/make_macos_package.sh
+++ b/macos/make_macos_package.sh
@@ -59,15 +59,15 @@ $PANDOC --data data -t html5 -s COPYING.md -Vpagetitle="License" -o $RESOURCES/l
# make sure it's valid... returns nonzero exit code if it isn't:
#spctl --assess --type execute $DEST/bin/pandoc
-echo Creating MacOS package...
+echo Creating macOS package...
sed -e "s/PANDOCVERSION/$VERSION/" $MACOS/distribution.xml.in > $MACOS/distribution.xml
pkgbuild --root $ROOT --identifier net.johnmacfarlane.pandoc --version $VERSION --ownership recommended $DIST/pandoc.pkg
-productbuild --distribution $MACOS/distribution.xml --resources $DIST/Resources --package-path $DIST --version $VERSION --sign "${DEVELOPER_ID_INSTALLER}" $BASE-MacOS.pkg
+productbuild --distribution $MACOS/distribution.xml --resources $DIST/Resources --package-path $DIST --version $VERSION --sign "${DEVELOPER_ID_INSTALLER}" $BASE-macOS.pkg
# verify signature
-spctl --assess --type install $BASE-MacOS.pkg
+spctl --assess --type install $BASE-macOS.pkg
# cleanup
rm -r $DIST
diff --git a/macos/uninstall-pandoc.pl b/macos/uninstall-pandoc.pl
index a5194d9bd..c853727d9 100755
--- a/macos/uninstall-pandoc.pl
+++ b/macos/uninstall-pandoc.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# Script to remove all files installed by the OSX pandoc installer
+# Script to remove all files installed by the macOS pandoc installer
# and unregister the package. Modified from a script contributed
# by Daniel T. Staal.
diff --git a/man/pandoc.1 b/man/pandoc.1
index 574fc3b8e..6f870d784 100644
--- a/man/pandoc.1
+++ b/man/pandoc.1
@@ -304,7 +304,7 @@ If \f[I]FILE\f[] is \f[C]\-\f[], output will go to \f[I]stdout\f[].
Specify the user data directory to search for pandoc data files.
If this option is not specified, the default user data directory will be
used.
-This is, in Unix:
+This is, in UNIX:
.RS
.IP
.nf
@@ -638,7 +638,7 @@ Files in the user data directory are ignored.
.TP
.B \f[C]\-\-eol=crlf\f[]|\f[C]lf\f[]|\f[C]native\f[]
Manually specify line endings: \f[C]crlf\f[] (Windows), \f[C]lf\f[]
-(MacOS/linux/unix), or \f[C]native\f[] (line endings appropriate to the
+(macOS/Linux/UNIX), or \f[C]native\f[] (line endings appropriate to the
OS on which pandoc is being run).
The default is \f[C]native\f[].
.RS
@@ -760,7 +760,7 @@ Implies \f[C]\-\-standalone\f[].
.TP
.B \f[C]\-\-resource\-path=\f[]\f[I]SEARCHPATH\f[]
List of paths to search for images and other resources.
-The paths should be separated by \f[C]:\f[] on linux, unix, and MacOS
+The paths should be separated by \f[C]:\f[] on Linux, UNIX, and macOS
systems, and by \f[C];\f[] on Windows.
If \f[C]\-\-resource\-path\f[] is not specified, the default resource
path is the working directory.
diff --git a/stack.full.yaml b/stack.full.yaml
index b331a9870..71bbbcb0f 100644
--- a/stack.full.yaml
+++ b/stack.full.yaml
@@ -9,7 +9,7 @@ flags:
pandoc-citeproc:
bibutils: true
embed_data_files: true
-# if you are on OSX, stack install cpphs and
+# if you are on macOS, stack install cpphs and
# uncomment the following three lines:
ghc-options:
pandoc-citeproc: '-pgmP cpphs -optP--cpp'
diff --git a/windows/Pandoc-en-us.wxl b/windows/Pandoc-en-us.wxl
index 1981f24e8..f1acbb00e 100644
--- a/windows/Pandoc-en-us.wxl
+++ b/windows/Pandoc-en-us.wxl
@@ -9,6 +9,6 @@
[APPLICATIONFOLDER].
-You may need to restart Cmd/Powershell windows before using it.</String>
+You may need to restart Cmd/Powershell Windows before using it.</String>
</WixLocalization> \ No newline at end of file