├── .gitignore ├── .travis.yml ├── BUILD.md ├── LICENSE ├── README.md ├── find-bindist ├── hptool ├── hptool.cabal ├── os-extras │ ├── osx │ │ ├── bin │ │ │ ├── activate-hs │ │ │ ├── cabal.wrap │ │ │ ├── ghc-clang-wrapper │ │ │ └── uninstall-hs.hs │ │ ├── doc │ │ │ └── start.html.mu │ │ ├── installer-resources │ │ │ ├── logo-color.png │ │ │ └── welcome.rtf │ │ ├── installer-scripts │ │ │ └── postinstall.mu │ │ └── installer.dist.mu │ ├── posix │ │ ├── bin │ │ │ └── activate-hs │ │ └── installer │ │ │ └── install-haskell-platform.sh.mu │ └── win │ │ ├── CreateInternetShortcut.nsh │ │ ├── EnvVarUpdate.nsh │ │ ├── LICENSE │ │ ├── fixGHC7.8.3.sh │ │ ├── fixHP2014.2.0.0_RC1.sh │ │ ├── icons │ │ ├── hackage.ico │ │ ├── hsicon.ico │ │ └── installer.ico │ │ ├── templates │ │ ├── Extralibs.nsi.mu │ │ ├── GHC.nsi.mu │ │ ├── MSys.nsi.mu │ │ ├── Nsisfile.nsi.mu │ │ ├── inst.dat.mu │ │ └── uninst.dat.mu │ │ ├── test │ │ ├── glut.hs │ │ └── regex.hs │ │ └── welcome.bmp ├── src │ ├── Config.hs │ ├── Dirs.hs │ ├── GhcDist.hs │ ├── HaddockMaster.hs │ ├── LocalCommand.hs │ ├── Main.hs │ ├── OS.hs │ ├── OS │ │ ├── Internal.hs │ │ ├── Mac.hs │ │ ├── Posix.hs │ │ ├── Win.hs │ │ └── Win │ │ │ ├── WinNsis.hs │ │ │ ├── WinPaths.hs │ │ │ ├── WinRules.hs │ │ │ └── WinUtils.hs │ ├── Package.hs │ ├── Paths.hs │ ├── PlatformDB.hs │ ├── ReleaseFiles.hs │ ├── Releases.hs │ ├── Releases2012.hs │ ├── Releases2013.hs │ ├── Releases2014.hs │ ├── Releases2015.hs │ ├── Releases2016.hs │ ├── Releases2017.hs │ ├── Releases2018.hs │ ├── Releases2019.hs │ ├── SourceTarball.hs │ ├── Target.hs │ ├── Templates.hs │ ├── Types.hs │ ├── Utils.hs │ └── Website.hs └── templates │ └── haskell-platform.cabal.mu ├── new-platform.sh ├── notes ├── BUILD-NEW ├── NOTES-2010.1.0.0 ├── NOTES-2010.2.0.0 ├── NOTES-2012.2.0.0 ├── NOTES-2012.4.0.0 ├── NOTES-2013.2 ├── NOTES-2014 ├── NOTES-2015 ├── RELEASE ├── building-ghc-docker ├── building-ghc-os-x ├── cabal-layouts └── cabal.conf.1.18.0.4.default ├── platform-init ├── platform.sh ├── server ├── travis-setup.sh ├── website ├── README.md ├── new-site │ ├── contents.html.mu │ ├── download.html.mu │ ├── img │ │ ├── distro-debian.svg │ │ ├── distro-fedora.svg │ │ ├── distro-gentoo.svg │ │ ├── distro-homebrew.png │ │ ├── distro-macports.png │ │ ├── distro-mint.svg │ │ ├── distro-redhat.svg │ │ ├── distro-ubuntu.svg │ │ ├── expand-piece.svg │ │ ├── favicon.png │ │ ├── haskell-logo.svg │ │ ├── logo.png │ │ ├── os-linux.svg │ │ ├── os-osx.svg │ │ ├── os-windows.svg │ │ └── rackspace.svg │ ├── js │ │ ├── contents.js │ │ ├── download.js │ │ └── jquery-1.11.1.min.js │ ├── linux.html.mu │ ├── mac.html.mu │ ├── platform-freeze-config.mu │ ├── prior.html.mu │ ├── stylesheets │ │ ├── contents.css │ │ ├── custom.css │ │ ├── download.css │ │ ├── fonts │ │ │ ├── Haskell │ │ │ │ ├── Read Me.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── Haskell.eot │ │ │ │ │ ├── Haskell.svg │ │ │ │ │ ├── Haskell.ttf │ │ │ │ │ ├── Haskell.woff │ │ │ │ │ ├── Read Me.txt │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── Haskell.eot │ │ │ │ │ │ ├── Haskell.svg │ │ │ │ │ │ ├── Haskell.ttf │ │ │ │ │ │ └── Haskell.woff │ │ │ │ │ ├── selection.json │ │ │ │ │ └── style.css │ │ │ │ ├── selection.json │ │ │ │ └── style.css │ │ │ └── Open_Sans │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ │ └── OpenSans-Regular.ttf │ │ ├── hl.css │ │ └── new-hl.min.css │ └── windows.html.mu ├── plan-a │ ├── contents.html.mu │ ├── download.html.mu │ ├── img │ │ ├── distro-debian.svg │ │ ├── distro-fedora.svg │ │ ├── distro-gentoo.svg │ │ ├── distro-homebrew.png │ │ ├── distro-macports.png │ │ ├── distro-mint.svg │ │ ├── distro-redhat.svg │ │ ├── distro-ubuntu.svg │ │ ├── expand-piece.svg │ │ ├── favicon.png │ │ ├── logo.png │ │ ├── os-linux.svg │ │ ├── os-osx.svg │ │ ├── os-windows.svg │ │ └── rackspace.svg │ ├── js │ │ ├── contents.js │ │ ├── download.js │ │ └── jquery-1.11.1.min.js │ ├── linux.html.mu │ ├── mac.html.mu │ ├── platform-freeze-config.mu │ ├── prior.html.mu │ ├── stylesheets │ │ ├── contents.css │ │ ├── download.css │ │ ├── fonts │ │ │ ├── Haskell │ │ │ │ ├── Read Me.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── Haskell.eot │ │ │ │ │ ├── Haskell.svg │ │ │ │ │ ├── Haskell.ttf │ │ │ │ │ ├── Haskell.woff │ │ │ │ │ ├── Read Me.txt │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── Haskell.eot │ │ │ │ │ │ ├── Haskell.svg │ │ │ │ │ │ ├── Haskell.ttf │ │ │ │ │ │ └── Haskell.woff │ │ │ │ │ ├── selection.json │ │ │ │ │ └── style.css │ │ │ │ ├── selection.json │ │ │ │ └── style.css │ │ │ └── Open_Sans │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ │ └── OpenSans-Regular.ttf │ │ └── hl.css │ └── windows.html.mu └── templates │ ├── downloads-root.mu │ ├── haskell-org-root.mu │ ├── new-site │ ├── download-banner.html.mu │ ├── download-options.html.mu │ ├── download-os-sections.html.mu │ ├── footer.mu │ ├── head.mu │ └── navbar.mu │ └── plan-a │ ├── download-banner.html.mu │ ├── download-options.html.mu │ ├── download-os-sections.html.mu │ ├── footer.mu │ ├── head.mu │ └── navbar.mu └── windows-platform.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/README.md -------------------------------------------------------------------------------- /find-bindist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/find-bindist -------------------------------------------------------------------------------- /hptool/hptool.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/hptool.cabal -------------------------------------------------------------------------------- /hptool/os-extras/osx/bin/activate-hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/bin/activate-hs -------------------------------------------------------------------------------- /hptool/os-extras/osx/bin/cabal.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/bin/cabal.wrap -------------------------------------------------------------------------------- /hptool/os-extras/osx/bin/ghc-clang-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/bin/ghc-clang-wrapper -------------------------------------------------------------------------------- /hptool/os-extras/osx/bin/uninstall-hs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/bin/uninstall-hs.hs -------------------------------------------------------------------------------- /hptool/os-extras/osx/doc/start.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/doc/start.html.mu -------------------------------------------------------------------------------- /hptool/os-extras/osx/installer-resources/logo-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/installer-resources/logo-color.png -------------------------------------------------------------------------------- /hptool/os-extras/osx/installer-resources/welcome.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/installer-resources/welcome.rtf -------------------------------------------------------------------------------- /hptool/os-extras/osx/installer-scripts/postinstall.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/installer-scripts/postinstall.mu -------------------------------------------------------------------------------- /hptool/os-extras/osx/installer.dist.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/osx/installer.dist.mu -------------------------------------------------------------------------------- /hptool/os-extras/posix/bin/activate-hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/posix/bin/activate-hs -------------------------------------------------------------------------------- /hptool/os-extras/posix/installer/install-haskell-platform.sh.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/posix/installer/install-haskell-platform.sh.mu -------------------------------------------------------------------------------- /hptool/os-extras/win/CreateInternetShortcut.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/CreateInternetShortcut.nsh -------------------------------------------------------------------------------- /hptool/os-extras/win/EnvVarUpdate.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/EnvVarUpdate.nsh -------------------------------------------------------------------------------- /hptool/os-extras/win/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/LICENSE -------------------------------------------------------------------------------- /hptool/os-extras/win/fixGHC7.8.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/fixGHC7.8.3.sh -------------------------------------------------------------------------------- /hptool/os-extras/win/fixHP2014.2.0.0_RC1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/fixHP2014.2.0.0_RC1.sh -------------------------------------------------------------------------------- /hptool/os-extras/win/icons/hackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/icons/hackage.ico -------------------------------------------------------------------------------- /hptool/os-extras/win/icons/hsicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/icons/hsicon.ico -------------------------------------------------------------------------------- /hptool/os-extras/win/icons/installer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/icons/installer.ico -------------------------------------------------------------------------------- /hptool/os-extras/win/templates/Extralibs.nsi.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/templates/Extralibs.nsi.mu -------------------------------------------------------------------------------- /hptool/os-extras/win/templates/GHC.nsi.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/templates/GHC.nsi.mu -------------------------------------------------------------------------------- /hptool/os-extras/win/templates/MSys.nsi.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/templates/MSys.nsi.mu -------------------------------------------------------------------------------- /hptool/os-extras/win/templates/Nsisfile.nsi.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/templates/Nsisfile.nsi.mu -------------------------------------------------------------------------------- /hptool/os-extras/win/templates/inst.dat.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/templates/inst.dat.mu -------------------------------------------------------------------------------- /hptool/os-extras/win/templates/uninst.dat.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/templates/uninst.dat.mu -------------------------------------------------------------------------------- /hptool/os-extras/win/test/glut.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/test/glut.hs -------------------------------------------------------------------------------- /hptool/os-extras/win/test/regex.hs: -------------------------------------------------------------------------------- 1 | import Text.Regex.Posix 2 | 3 | main = print $ ("bar" =~ "(foo|bar)" :: Bool) -------------------------------------------------------------------------------- /hptool/os-extras/win/welcome.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/os-extras/win/welcome.bmp -------------------------------------------------------------------------------- /hptool/src/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Config.hs -------------------------------------------------------------------------------- /hptool/src/Dirs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Dirs.hs -------------------------------------------------------------------------------- /hptool/src/GhcDist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/GhcDist.hs -------------------------------------------------------------------------------- /hptool/src/HaddockMaster.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/HaddockMaster.hs -------------------------------------------------------------------------------- /hptool/src/LocalCommand.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/LocalCommand.hs -------------------------------------------------------------------------------- /hptool/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Main.hs -------------------------------------------------------------------------------- /hptool/src/OS.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS.hs -------------------------------------------------------------------------------- /hptool/src/OS/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS/Internal.hs -------------------------------------------------------------------------------- /hptool/src/OS/Mac.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS/Mac.hs -------------------------------------------------------------------------------- /hptool/src/OS/Posix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS/Posix.hs -------------------------------------------------------------------------------- /hptool/src/OS/Win.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS/Win.hs -------------------------------------------------------------------------------- /hptool/src/OS/Win/WinNsis.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS/Win/WinNsis.hs -------------------------------------------------------------------------------- /hptool/src/OS/Win/WinPaths.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS/Win/WinPaths.hs -------------------------------------------------------------------------------- /hptool/src/OS/Win/WinRules.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS/Win/WinRules.hs -------------------------------------------------------------------------------- /hptool/src/OS/Win/WinUtils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/OS/Win/WinUtils.hs -------------------------------------------------------------------------------- /hptool/src/Package.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Package.hs -------------------------------------------------------------------------------- /hptool/src/Paths.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Paths.hs -------------------------------------------------------------------------------- /hptool/src/PlatformDB.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/PlatformDB.hs -------------------------------------------------------------------------------- /hptool/src/ReleaseFiles.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/ReleaseFiles.hs -------------------------------------------------------------------------------- /hptool/src/Releases.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases.hs -------------------------------------------------------------------------------- /hptool/src/Releases2012.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases2012.hs -------------------------------------------------------------------------------- /hptool/src/Releases2013.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases2013.hs -------------------------------------------------------------------------------- /hptool/src/Releases2014.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases2014.hs -------------------------------------------------------------------------------- /hptool/src/Releases2015.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases2015.hs -------------------------------------------------------------------------------- /hptool/src/Releases2016.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases2016.hs -------------------------------------------------------------------------------- /hptool/src/Releases2017.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases2017.hs -------------------------------------------------------------------------------- /hptool/src/Releases2018.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases2018.hs -------------------------------------------------------------------------------- /hptool/src/Releases2019.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Releases2019.hs -------------------------------------------------------------------------------- /hptool/src/SourceTarball.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/SourceTarball.hs -------------------------------------------------------------------------------- /hptool/src/Target.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Target.hs -------------------------------------------------------------------------------- /hptool/src/Templates.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Templates.hs -------------------------------------------------------------------------------- /hptool/src/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Types.hs -------------------------------------------------------------------------------- /hptool/src/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Utils.hs -------------------------------------------------------------------------------- /hptool/src/Website.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/src/Website.hs -------------------------------------------------------------------------------- /hptool/templates/haskell-platform.cabal.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/hptool/templates/haskell-platform.cabal.mu -------------------------------------------------------------------------------- /new-platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/new-platform.sh -------------------------------------------------------------------------------- /notes/BUILD-NEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/BUILD-NEW -------------------------------------------------------------------------------- /notes/NOTES-2010.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/NOTES-2010.1.0.0 -------------------------------------------------------------------------------- /notes/NOTES-2010.2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/NOTES-2010.2.0.0 -------------------------------------------------------------------------------- /notes/NOTES-2012.2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/NOTES-2012.2.0.0 -------------------------------------------------------------------------------- /notes/NOTES-2012.4.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/NOTES-2012.4.0.0 -------------------------------------------------------------------------------- /notes/NOTES-2013.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/NOTES-2013.2 -------------------------------------------------------------------------------- /notes/NOTES-2014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/NOTES-2014 -------------------------------------------------------------------------------- /notes/NOTES-2015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/NOTES-2015 -------------------------------------------------------------------------------- /notes/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/RELEASE -------------------------------------------------------------------------------- /notes/building-ghc-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/building-ghc-docker -------------------------------------------------------------------------------- /notes/building-ghc-os-x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/building-ghc-os-x -------------------------------------------------------------------------------- /notes/cabal-layouts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/cabal-layouts -------------------------------------------------------------------------------- /notes/cabal.conf.1.18.0.4.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/notes/cabal.conf.1.18.0.4.default -------------------------------------------------------------------------------- /platform-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/platform-init -------------------------------------------------------------------------------- /platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/platform.sh -------------------------------------------------------------------------------- /server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/server -------------------------------------------------------------------------------- /travis-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/travis-setup.sh -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/README.md -------------------------------------------------------------------------------- /website/new-site/contents.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/contents.html.mu -------------------------------------------------------------------------------- /website/new-site/download.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/download.html.mu -------------------------------------------------------------------------------- /website/new-site/img/distro-debian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/distro-debian.svg -------------------------------------------------------------------------------- /website/new-site/img/distro-fedora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/distro-fedora.svg -------------------------------------------------------------------------------- /website/new-site/img/distro-gentoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/distro-gentoo.svg -------------------------------------------------------------------------------- /website/new-site/img/distro-homebrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/distro-homebrew.png -------------------------------------------------------------------------------- /website/new-site/img/distro-macports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/distro-macports.png -------------------------------------------------------------------------------- /website/new-site/img/distro-mint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/distro-mint.svg -------------------------------------------------------------------------------- /website/new-site/img/distro-redhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/distro-redhat.svg -------------------------------------------------------------------------------- /website/new-site/img/distro-ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/distro-ubuntu.svg -------------------------------------------------------------------------------- /website/new-site/img/expand-piece.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/expand-piece.svg -------------------------------------------------------------------------------- /website/new-site/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/favicon.png -------------------------------------------------------------------------------- /website/new-site/img/haskell-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/haskell-logo.svg -------------------------------------------------------------------------------- /website/new-site/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/logo.png -------------------------------------------------------------------------------- /website/new-site/img/os-linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/os-linux.svg -------------------------------------------------------------------------------- /website/new-site/img/os-osx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/os-osx.svg -------------------------------------------------------------------------------- /website/new-site/img/os-windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/os-windows.svg -------------------------------------------------------------------------------- /website/new-site/img/rackspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/img/rackspace.svg -------------------------------------------------------------------------------- /website/new-site/js/contents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/js/contents.js -------------------------------------------------------------------------------- /website/new-site/js/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/js/download.js -------------------------------------------------------------------------------- /website/new-site/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /website/new-site/linux.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/linux.html.mu -------------------------------------------------------------------------------- /website/new-site/mac.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/mac.html.mu -------------------------------------------------------------------------------- /website/new-site/platform-freeze-config.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/platform-freeze-config.mu -------------------------------------------------------------------------------- /website/new-site/prior.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/prior.html.mu -------------------------------------------------------------------------------- /website/new-site/stylesheets/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/contents.css -------------------------------------------------------------------------------- /website/new-site/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/custom.css -------------------------------------------------------------------------------- /website/new-site/stylesheets/download.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/download.css -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/Read Me.txt -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/Haskell.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/Haskell.eot -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/Haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/Haskell.svg -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/Haskell.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/Haskell.ttf -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/Haskell.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/Haskell.woff -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/Read Me.txt -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/fonts/Haskell.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/fonts/Haskell.eot -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/fonts/Haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/fonts/Haskell.svg -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/fonts/Haskell.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/fonts/Haskell.ttf -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/fonts/Haskell.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/fonts/Haskell.woff -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/selection.json -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/fonts/style.css -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/selection.json -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Haskell/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Haskell/style.css -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Open_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Open_Sans/LICENSE.txt -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Open_Sans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Open_Sans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /website/new-site/stylesheets/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /website/new-site/stylesheets/hl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/hl.css -------------------------------------------------------------------------------- /website/new-site/stylesheets/new-hl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/stylesheets/new-hl.min.css -------------------------------------------------------------------------------- /website/new-site/windows.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/new-site/windows.html.mu -------------------------------------------------------------------------------- /website/plan-a/contents.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/contents.html.mu -------------------------------------------------------------------------------- /website/plan-a/download.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/download.html.mu -------------------------------------------------------------------------------- /website/plan-a/img/distro-debian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/distro-debian.svg -------------------------------------------------------------------------------- /website/plan-a/img/distro-fedora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/distro-fedora.svg -------------------------------------------------------------------------------- /website/plan-a/img/distro-gentoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/distro-gentoo.svg -------------------------------------------------------------------------------- /website/plan-a/img/distro-homebrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/distro-homebrew.png -------------------------------------------------------------------------------- /website/plan-a/img/distro-macports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/distro-macports.png -------------------------------------------------------------------------------- /website/plan-a/img/distro-mint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/distro-mint.svg -------------------------------------------------------------------------------- /website/plan-a/img/distro-redhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/distro-redhat.svg -------------------------------------------------------------------------------- /website/plan-a/img/distro-ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/distro-ubuntu.svg -------------------------------------------------------------------------------- /website/plan-a/img/expand-piece.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/expand-piece.svg -------------------------------------------------------------------------------- /website/plan-a/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/favicon.png -------------------------------------------------------------------------------- /website/plan-a/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/logo.png -------------------------------------------------------------------------------- /website/plan-a/img/os-linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/os-linux.svg -------------------------------------------------------------------------------- /website/plan-a/img/os-osx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/os-osx.svg -------------------------------------------------------------------------------- /website/plan-a/img/os-windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/os-windows.svg -------------------------------------------------------------------------------- /website/plan-a/img/rackspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/img/rackspace.svg -------------------------------------------------------------------------------- /website/plan-a/js/contents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/js/contents.js -------------------------------------------------------------------------------- /website/plan-a/js/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/js/download.js -------------------------------------------------------------------------------- /website/plan-a/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /website/plan-a/linux.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/linux.html.mu -------------------------------------------------------------------------------- /website/plan-a/mac.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/mac.html.mu -------------------------------------------------------------------------------- /website/plan-a/platform-freeze-config.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/platform-freeze-config.mu -------------------------------------------------------------------------------- /website/plan-a/prior.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/prior.html.mu -------------------------------------------------------------------------------- /website/plan-a/stylesheets/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/contents.css -------------------------------------------------------------------------------- /website/plan-a/stylesheets/download.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/download.css -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/Read Me.txt -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/Haskell.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/Haskell.eot -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/Haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/Haskell.svg -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/Haskell.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/Haskell.ttf -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/Haskell.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/Haskell.woff -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/Read Me.txt -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/fonts/Haskell.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/fonts/Haskell.eot -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/fonts/Haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/fonts/Haskell.svg -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/fonts/Haskell.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/fonts/Haskell.ttf -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/fonts/Haskell.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/fonts/Haskell.woff -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/selection.json -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/fonts/style.css -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/selection.json -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Haskell/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Haskell/style.css -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Open_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Open_Sans/LICENSE.txt -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Open_Sans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Open_Sans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /website/plan-a/stylesheets/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /website/plan-a/stylesheets/hl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/stylesheets/hl.css -------------------------------------------------------------------------------- /website/plan-a/windows.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/plan-a/windows.html.mu -------------------------------------------------------------------------------- /website/templates/downloads-root.mu: -------------------------------------------------------------------------------- 1 | //haskell.org/platform/ -------------------------------------------------------------------------------- /website/templates/haskell-org-root.mu: -------------------------------------------------------------------------------- 1 | //haskell.org/ -------------------------------------------------------------------------------- /website/templates/new-site/download-banner.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/new-site/download-banner.html.mu -------------------------------------------------------------------------------- /website/templates/new-site/download-options.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/new-site/download-options.html.mu -------------------------------------------------------------------------------- /website/templates/new-site/download-os-sections.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/new-site/download-os-sections.html.mu -------------------------------------------------------------------------------- /website/templates/new-site/footer.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/new-site/footer.mu -------------------------------------------------------------------------------- /website/templates/new-site/head.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/new-site/head.mu -------------------------------------------------------------------------------- /website/templates/new-site/navbar.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/new-site/navbar.mu -------------------------------------------------------------------------------- /website/templates/plan-a/download-banner.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/plan-a/download-banner.html.mu -------------------------------------------------------------------------------- /website/templates/plan-a/download-options.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/plan-a/download-options.html.mu -------------------------------------------------------------------------------- /website/templates/plan-a/download-os-sections.html.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/plan-a/download-os-sections.html.mu -------------------------------------------------------------------------------- /website/templates/plan-a/footer.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/plan-a/footer.mu -------------------------------------------------------------------------------- /website/templates/plan-a/head.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/plan-a/head.mu -------------------------------------------------------------------------------- /website/templates/plan-a/navbar.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/website/templates/plan-a/navbar.mu -------------------------------------------------------------------------------- /windows-platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/haskell-platform/HEAD/windows-platform.sh --------------------------------------------------------------------------------