diff --git a/content/ja/.readthedocs.yml b/content/ja/.readthedocs.yml new file mode 100644 index 0000000..70c0baf --- /dev/null +++ b/content/ja/.readthedocs.yml @@ -0,0 +1,16 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-24.04 + commands: + - gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys 409b6b1796c275462a1703113804bb82d39dc0e3 7d2baf1cf37b13e2069d6956105bd0e739499bdb && curl -sSL https://get.rvm.io | bash -s stable + - ~/.rvm/bin/rvm autolibs disable && ~/.rvm/bin/rvm install ruby 3.4.3 + - PATH="$HOME/.rvm/rubies/ruby-3.4.3/bin:$PATH" gem install bundler + - PATH="$HOME/.rvm/rubies/ruby-3.4.3/bin:$PATH" bundle install + - PATH="$HOME/.rvm/rubies/ruby-3.4.3/bin:$PATH" bundle exec jekyll build --destination _readthedocs/html --baseurl $(echo -n "$READTHEDOCS_CANONICAL_URL" | cut -d '/' -f 4-) diff --git a/content/ja/404.html b/content/ja/404.html new file mode 100644 index 0000000..a041c86 --- /dev/null +++ b/content/ja/404.html @@ -0,0 +1,25 @@ +--- +layout: default +--- + + + + +
Page not found :(
+The requested page could not be found.
+💡 If you're using Zarr in any way and would like to be added on this page, please drop your logo and blurb here.
+ +Thanks to the amazing community, Zarr is widely adopted and used by these groups. Here are the logos (in alphabetical order):
+ +We’re hosting office hours on Wednesdays every two weeks. Please join us if you have questions about Zarr and want to learn more about the storage format. We’ll discuss the specification, the implementations, what’s new in the Zarr ecosystem, how you can get involved in the community and much more.
+ +Office hours are a great place to go if you want to start using Zarr and have questions about whether it suits your data storage needs. We’ll have a few items on the agenda to kickstart the meeting, but the overall agenda and structure of the office hours will be shaped according to the attendees’ and community’s needs.
+ +Please see the Zarr community calendar for exact timings:
+ + + +Download the .ics file and add it to your calendar so won't miss any of our meetings! diff --git a/content/ja/safari-pinned-tab.svg b/content/ja/safari-pinned-tab.svg new file mode 100644 index 0000000..91471d2 --- /dev/null +++ b/content/ja/safari-pinned-tab.svg @@ -0,0 +1,373 @@ + + + diff --git a/content/ja/site.webmanifest b/content/ja/site.webmanifest new file mode 100644 index 0000000..296b9d3 --- /dev/null +++ b/content/ja/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "Zarr", + "short_name": "Zarr", + "icons": [ + { + "src": "/android-chrome-192x192.png?v=5", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png?v=5", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/content/ja/slides.md b/content/ja/slides.md new file mode 100644 index 0000000..906e5cf --- /dev/null +++ b/content/ja/slides.md @@ -0,0 +1,12 @@ +--- +layout: home +author_profile: false +title: Slides +permalink: /slides/ +sidebar: + title: Content + nav: sidebar +--- + +- [SciPy 2019](scipy-2019.html) ([PDF](scipy-2019.pdf)) +- [Zarr protocol spec v3 design update, 19 June 2019](v3-update-20190619.html) diff --git a/content/ja/slides/.travis.yml b/content/ja/slides/.travis.yml new file mode 100644 index 0000000..e65e0df --- /dev/null +++ b/content/ja/slides/.travis.yml @@ -0,0 +1,5 @@ +language: node_js +node_js: + - 11 +after_script: + - npm run build -- retire diff --git a/content/ja/slides/CONTRIBUTING.md b/content/ja/slides/CONTRIBUTING.md new file mode 100644 index 0000000..c2091e8 --- /dev/null +++ b/content/ja/slides/CONTRIBUTING.md @@ -0,0 +1,23 @@ +## Contributing + +Please keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**. + + +### Personal Support +If you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js). + + +### Bug Reports +When reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested. + + +### Pull Requests +- Should follow the coding style of the file you work in, most importantly: + - Tabs to indent + - Single-quoted strings +- Should be made towards the **dev branch** +- Should be submitted from a feature/topic branch (not your master) + + +### Plugins +Please do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines diff --git a/content/ja/slides/LICENSE b/content/ja/slides/LICENSE new file mode 100644 index 0000000..697d156 --- /dev/null +++ b/content/ja/slides/LICENSE @@ -0,0 +1,19 @@ +Copyright (C) 2019 Hakim El Hattab, http://hakim.se, and reveal.js contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/content/ja/slides/README.md b/content/ja/slides/README.md new file mode 100644 index 0000000..33956e9 --- /dev/null +++ b/content/ja/slides/README.md @@ -0,0 +1,1438 @@ +# reveal.js [](https://travis-ci.org/hakimel/reveal.js)