Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
2,902 additions
and 443 deletions.
- +1 −1 .travis.yml
- +1 −0 AUTHORS.txt
- +25 −0 CHANGES.txt
- +1 −1 appveyor.yml
- +5 −5 bower_components/jquery/.bower.json
- +26 −37 bower_components/jquery/dist/jquery.js
- +5 −5 bower_components/jquery/dist/jquery.min.js
- +1 −1 bower_components/jquery/dist/jquery.min.map
- +36 −0 bower_components/jquery/sizzle/LICENSE.txt
- +2,143 −0 bower_components/jquery/sizzle/dist/sizzle.js
- +3 −0 bower_components/jquery/sizzle/dist/sizzle.min.js
- +1 −0 bower_components/jquery/sizzle/dist/sizzle.min.map
- +1 −1 bower_components/jquery/src/ajax/load.js
- +0 −7 bower_components/jquery/src/ajax/script.js
- +15 −2 bower_components/jquery/src/attributes/prop.js
- +6 −3 bower_components/jquery/src/attributes/val.js
- +3 −11 bower_components/jquery/src/core/parseHTML.js
- +3 −6 bower_components/jquery/src/core/support.js
- +1 −1 bower_components/jquery/src/css/var/getStyles.js
- +61 −20 bower_components/jquery/src/data/Data.js
- +2 −2 bower_components/jquery/src/event/trigger.js
- +65 −27 docs/extending.txt
- BIN docs/man/nikola.1.gz
- +1 −1 docs/man/nikola.rst
- +24 −6 docs/manual.txt
- +1 −1 docs/social_buttons.txt
- +2 −2 docs/sphinx/conf.py
- +1 −1 docs/theming.txt
- +1 −1 nikola/__init__.py
- +2 −1 nikola/conf.py.in
- +3 −0 nikola/data/symlinked.txt
- +1 −1 nikola/data/themes/base/assets/css/rst.css
- +0 −1 nikola/data/themes/base/assets/js/jquery.min.map
- +4 −4 nikola/data/themes/base/messages/messages_ar.py
- +43 −0 nikola/data/themes/base/messages/messages_lt.py
- +1 −0 nikola/data/themes/bootstrap3-jinja/assets/js/jquery.slim.js
- +1 −0 nikola/data/themes/bootstrap3-jinja/assets/js/jquery.slim.min.js
- +1 −0 nikola/data/themes/bootstrap3-jinja/assets/js/jquery.slim.min.map
- +1 −1 nikola/data/themes/bootstrap3-jinja/templates/base_helper.tmpl
- +1 −1 nikola/data/themes/bootstrap3/templates/base_helper.tmpl
- +42 −17 nikola/nikola.py
- +3 −3 nikola/plugins/command/auto/__init__.py
- +2 −3 nikola/plugins/command/deploy.py
- +3 −7 nikola/plugins/command/github_deploy.py
- +8 −2 nikola/plugins/command/import_wordpress.py
- +3 −0 nikola/plugins/command/new_post.py
- +1 −1 nikola/plugins/command/serve.py
- +38 −13 nikola/plugins/command/status.py
- +21 −134 nikola/plugins/compile/markdown/mdx_gist.py
- +8 −0 nikola/plugins/compile/rest/__init__.py
- +12 −5 nikola/plugins/compile/rest/soundcloud.py
- +9 −1 nikola/plugins/compile/rest/vimeo.py
- +10 −4 nikola/plugins/compile/rest/youtube.py
- +1 −1 nikola/plugins/task/py3_switch.py
- +5 −1 nikola/state.py
- +1 −1 requirements-tests.txt
- +4 −0 setup.cfg
- +1 −1 setup.py
- +0 −43 tests/test_compile_markdown.py
- +2 −1 tests/test_rss_feeds.py
- +0 −50 tests/test_rst_compiler.py
- +86 −0 tests/test_template_shortcodes.py
- +4 −4 translations/nikola.messages/ar.po
- +145 −0 translations/nikola.messages/lt.po
@@ -0,0 +1,36 @@ | ||
Copyright jQuery Foundation and other contributors, https://jquery.org/ | ||
|
||
This software consists of voluntary contributions made by many | ||
individuals. For exact contribution history, see the revision history | ||
available at https://github.com/jquery/sizzle | ||
|
||
The following license applies to all parts of this software except as | ||
documented below: | ||
|
||
==== | ||
|
||
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. | ||
|
||
==== | ||
|
||
All files located in the node_modules and external directories are | ||
externally maintained libraries used by this software which have their | ||
own licenses; we recommend you read them, as their terms may differ from | ||
the terms above. |
Oops, something went wrong.