diff options
author | Daniel Silverstone <dsilvers@digital-scurf.org> | 2016-06-16 14:57:09 +0100 |
---|---|---|
committer | Daniel Silverstone <dsilvers@digital-scurf.org> | 2016-06-16 15:01:15 +0100 |
commit | 43777ce42c346f45989461b6015a0ee94fc355c5 (patch) | |
tree | 5897c94326ab2cfd94d3f736c4f152e1a8bdc48c | |
download | tongue-43777ce42c346f45989461b6015a0ee94fc355c5.tar.bz2 |
Initial licence, CoC, and README for Tongue
-rw-r--r-- | CODE_OF_CONDUCT.mdwn | 20 | ||||
-rw-r--r-- | COPYING | 53 | ||||
-rw-r--r-- | README | 15 |
3 files changed, 88 insertions, 0 deletions
diff --git a/CODE_OF_CONDUCT.mdwn b/CODE_OF_CONDUCT.mdwn new file mode 100644 index 0000000..a340fb0 --- /dev/null +++ b/CODE_OF_CONDUCT.mdwn @@ -0,0 +1,20 @@ +_The Gitano Community_ is dedicated to providing a harassment-free experience +for everyone, regardless of gender, gender identity and expression, sexual +orientation, disability, physical appearance, body size, age, race, or +religion. We do not tolerate harassment of participants in any form. + +This code of conduct applies to all _The Gitano Community_ spaces, including +our mailing lists such as `gitano-dev@gitano.org.uk`, our IRC channels such as +`#gitano` on Freenode, and at any in-person event at which members of the +community attend, both online and off. Anyone who violates this code of conduct +may be sanctioned or expelled from these spaces at the discretion of the Gitano +Community Managers. + +Some _The Gitano Community_ spaces may have additional rules in place, which +will be made clearly available to participants. Participants are responsible +for knowing and abiding by these rules. + +The full text of the code of conduct / contributor covenant / anti-harassment +policy can be found at: <https://www.gitano.org.uk/covenant/>. Should the text +of that page differ from the content of this file then the newer content on the +website takes precedence. @@ -0,0 +1,53 @@ +Copyright 2016 Daniel Silverstone <dsilvers@digital-scurf.org> +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the author nor the names of their contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +Portions of this codebase are derived from an earlier i18n library also called +Tongue which was under the following licence: + +-- tongue.lua +-- This file is part of Tongue, an i18n library +-- +-- Copyright 2008 Rob Kendrick <rjek@rjek.com> +-- +-- 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, 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. + @@ -0,0 +1,15 @@ +# Tongue -- An I18N library for Lua written as part of the Gitano project + +## Development tracked on Trello: + +https://trello.com/b/0joDU0Gh/tongue + +## Website + +Gitano has a website at http://www.gitano.org.uk/ and a gitweb at +http://git.gitano.org.uk/ -- Enjoy them. + +## Dependencies + +Tongue at this time does not have any dependencies outside of stock Lua and +should work with Lua 5.1, 5.2, and 5.3 |