Skip to content

Commit 145b583

Browse files
committed
[skip ci] Updated licenses and gitignores
1 parent c986718 commit 145b583

20 files changed

+910
-52
lines changed

options/gitignore/Alteryx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ CASS.ini
2929
*.gzlc
3030

3131
## gitignore reference sites
32-
# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files
32+
# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring
3333
# https://git-scm.com/docs/gitignore
3434
# https://help.github.com/articles/ignoring-files/
3535

options/gitignore/ECU-TEST

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# gitignore template for ECU-TEST workspaces - by TraceTronic https://tracetronic.com
2+
# website: https://www.ecu-test.com
3+
# * all directories are related to the default directories, please adapt the .gitignore if you use customized
4+
# directories
5+
6+
# Dynamic workspace settings
7+
# * We don't recommend to ignore the .workspace directory, because of important project specific settings
8+
# local user settings
9+
.workspace/ETdrive.xml
10+
.workspace/favorites.xml
11+
.workspace/filters.xml
12+
.workspace/generators.xml
13+
.workspace/history.xml
14+
.workspace/parallelExecution.xml
15+
.workspace/signalviewer.xml
16+
.workspace/signalViewerHistory.json
17+
.workspace/signalviewer2layout.xml
18+
.workspace/testeditor.xml
19+
.workspace/tooladapter.xml
20+
.workspace/view.xml
21+
# optional, if your process depends on this file remove exclusion
22+
.workspace/interactiveexecution.xml
23+
.workspace/pythonlibrary.xml
24+
# deprecated, support for older versions
25+
.workspace/traceexplorer.xml
26+
27+
# Custom file formats and test dependencies
28+
# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
29+
*.arxml
30+
*.a2l
31+
*.dbc
32+
*.hex
33+
*.s19
34+
[tT]estdata
35+
[tT]estdaten
36+
37+
# Test results and test execution related content
38+
# * Git is not intended to store and provide test results for all iterations
39+
# * We recommend to use TEST-GUIDE (https://www.test-guide.info) for the test report management
40+
TestReports
41+
42+
# Report generators and templates
43+
# * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the
44+
# unnecessary subdirectories
45+
Templates
46+
47+
# Exclude large binary artifacts
48+
# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
49+
Offline-FIUs
50+
Offline-Models
51+
Offline-SGBDs
52+
*.exe
53+
*.msi
54+
*.zip
55+
*.7z
56+
57+
# Exclude default and custom temporary directories
58+
Backup_*
59+
60+
# Python bytecode and cache files
61+
__pycache__/
62+
*.py[cod]

options/gitignore/Kotlin

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@
2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
2424
replay_pid*
25+
26+
# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects
27+
.kotlin/

options/gitignore/Laravel

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,10 @@ Homestead.yaml
2121
Homestead.json
2222
/.vagrant
2323
.phpunit.result.cache
24+
25+
/public/build
26+
/storage/pail
27+
.env.backup
28+
.env.production
29+
.phpactor.json
30+
auth.json

options/gitignore/Move

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Generated by Move
2+
# will have compiled files
3+
build/
4+
5+
# Remove possibly saving credentials to the git repository
6+
.aptos/

options/gitignore/OpenTofu

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Local .terraform directories
2+
**/.terraform/*
3+
4+
# .tfstate files
5+
*.tfstate
6+
*.tfstate.*
7+
8+
# Crash log files
9+
crash.log
10+
crash.*.log
11+
12+
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
13+
# password, private keys, and other secrets. These should not be part of version
14+
# control as they are data points which are potentially sensitive and subject
15+
# to change depending on the environment.
16+
*.tfvars
17+
*.tfvars.json
18+
19+
# Ignore override files as they are usually used to override resources locally and so
20+
# are not checked in
21+
override.tf
22+
override.tofu
23+
override.tf.json
24+
override.tofu.json
25+
*_override.tf
26+
*_override.tofu
27+
*_override.tf.json
28+
*_override.tofu.json
29+
30+
# Ignore transient lock info files created by tofu apply
31+
.terraform.tfstate.lock.info
32+
33+
# Include override files you do wish to add to version control using negated pattern
34+
# !example_override.tf
35+
# !example_override.tofu
36+
37+
# Include tfplan files to ignore the plan output of command: tofu plan -out=tfplan
38+
# example: *tfplan*
39+
40+
# Ignore CLI configuration files
41+
.terraformrc
42+
terraform.rc

options/gitignore/Python

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,12 @@ ipython_config.py
9494
# install all needed dependencies.
9595
#Pipfile.lock
9696

97+
# UV
98+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
#uv.lock
102+
97103
# poetry
98104
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99105
# This is especially recommended for binary packages to ensure reproducibility, and is more

options/gitignore/Unity

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ sysinfo.txt
5959
*.apk
6060
*.aab
6161
*.unitypackage
62+
*.unitypackage.meta
6263
*.app
6364

6465
# Crashlytics generated file

options/gitignore/VisualStudio

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ StyleCopReport.xml
8282
*.pgc
8383
*.pgd
8484
*.rsp
85+
# but not Directory.Build.rsp, as it configures directory-level build defaults
86+
!Directory.Build.rsp
8587
*.sbr
8688
*.tlb
8789
*.tli

options/license/CC-PDM-1.0

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
No Copyright
2+
3+
This work has been identified as being free of known restrictions under
4+
copyright law, including all related and neighboring rights.
5+
6+
7+
You can copy, modify, distribute and perform the work, even for commercial
8+
purposes, all without asking permission. See Other Information below.
9+
10+
Other Information
11+
12+
The work may not be free of known copyright restrictions in all jurisdictions .
13+
14+
Persons may have other rights in or related to the work, such as patent or
15+
trademark rights, and others may have rights in how the work is used, such as
16+
publicity or privacy rights.
17+
18+
In some jurisdictions moral rights of the author may persist beyond the term of
19+
copyright. These rights may include the right to be identified as the author
20+
and the right to object to derogatory treatments.
21+
22+
Unless expressly stated otherwise, the person who identified the work makes no
23+
warranties about the work, and disclaims liability for all uses of the work, to
24+
the fullest extent permitted by applicable law.
25+
26+
When using or citing the work, you should not imply endorsement by the author
27+
or the person who identified the work.

options/license/CC-SA-1.0

Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
Creative Commons Legal Code
2+
3+
ShareAlike 1.0
4+
5+
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL
6+
SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT
7+
RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS.
8+
CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND
9+
DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.
10+
11+
License
12+
13+
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
14+
COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
15+
COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
16+
AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.
17+
18+
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE
19+
BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS
20+
CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
21+
CONDITIONS.
22+
23+
1. Definitions
24+
25+
a. "Collective Work" means a work, such as a periodical issue, anthology or
26+
encyclopedia, in which the Work in its entirety in unmodified form, along
27+
with a number of other contributions, constituting separate and independent
28+
works in themselves, are assembled into a collective whole. A work that
29+
constitutes a Collective Work will not be considered a Derivative Work (as
30+
defined below) for the purposes of this License.
31+
b. "Derivative Work" means a work based upon the Work or upon the Work and
32+
other pre-existing works, such as a translation, musical arrangement,
33+
dramatization, fictionalization, motion picture version, sound recording,
34+
art reproduction, abridgment, condensation, or any other form in which the
35+
Work may be recast, transformed, or adapted, except that a work that
36+
constitutes a Collective Work will not be considered a Derivative Work for
37+
the purpose of this License.
38+
c. "Licensor" means the individual or entity that offers the Work under the
39+
terms of this License.
40+
d. "Original Author" means the individual or entity who created the Work.
41+
e. "Work" means the copyrightable work of authorship offered under the terms
42+
of this License.
43+
f. "You" means an individual or entity exercising rights under this License
44+
who has not previously violated the terms of this License with respect to
45+
the Work, or who has received express permission from the Licensor to
46+
exercise rights under this License despite a previous violation.
47+
48+
2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or
49+
restrict any rights arising from fair use, first sale or other limitations on
50+
the exclusive rights of the copyright owner under copyright law or other
51+
applicable laws.
52+
53+
3. License Grant. Subject to the terms and conditions of this License, Licensor
54+
hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the
55+
duration of the applicable copyright) license to exercise the rights in the
56+
Work as stated below:
57+
58+
a. to reproduce the Work, to incorporate the Work into one or more Collective
59+
Works, and to reproduce the Work as incorporated in the Collective Works;
60+
b. to create and reproduce Derivative Works;
61+
c. to distribute copies or phonorecords of, display publicly, perform
62+
publicly, and perform publicly by means of a digital audio transmission the
63+
Work including as incorporated in Collective Works;
64+
d. to distribute copies or phonorecords of, display publicly, perform
65+
publicly, and perform publicly by means of a digital audio transmission
66+
Derivative Works;
67+
68+
The above rights may be exercised in all media and formats whether now known or
69+
hereafter devised. The above rights include the right to make such
70+
modifications as are technically necessary to exercise the rights in other
71+
media and formats. All rights not expressly granted by Licensor are hereby
72+
reserved.
73+
74+
4. Restrictions. The license granted in Section 3 above is expressly made
75+
subject to and limited by the following restrictions:
76+
77+
a. You may distribute, publicly display, publicly perform, or publicly
78+
digitally perform the Work only under the terms of this License, and You
79+
must include a copy of, or the Uniform Resource Identifier for, this
80+
License with every copy or phonorecord of the Work You distribute, publicly
81+
display, publicly perform, or publicly digitally perform. You may not offer
82+
or impose any terms on the Work that alter or restrict the terms of this
83+
License or the recipients' exercise of the rights granted hereunder. You
84+
may not sublicense the Work. You must keep intact all notices that refer to
85+
this License and to the disclaimer of warranties. You may not distribute,
86+
publicly display, publicly perform, or publicly digitally perform the Work
87+
with any technological measures that control access or use of the Work in a
88+
manner inconsistent with the terms of this License Agreement. The above
89+
applies to the Work as incorporated in a Collective Work, but this does not
90+
require the Collective Work apart from the Work itself to be made subject
91+
to the terms of this License. If You create a Collective Work, upon notice
92+
from any Licensor You must, to the extent practicable, remove from the
93+
Collective Work any reference to such Licensor or the Original Author, as
94+
requested. If You create a Derivative Work, upon notice from any Licensor
95+
You must, to the extent practicable, remove from the Derivative Work any
96+
reference to such Licensor or the Original Author, as requested.
97+
b. You may distribute, publicly display, publicly perform, or publicly
98+
digitally perform a Derivative Work only under the terms of this License,
99+
and You must include a copy of, or the Uniform Resource Identifier for,
100+
this License with every copy or phonorecord of each Derivative Work You
101+
distribute, publicly display, publicly perform, or publicly digitally
102+
perform. You may not offer or impose any terms on the Derivative Works that
103+
alter or restrict the terms of this License or the recipients' exercise of
104+
the rights granted hereunder, and You must keep intact all notices that
105+
refer to this License and to the disclaimer of warranties. You may not
106+
distribute, publicly display, publicly perform, or publicly digitally
107+
perform the Derivative Work with any technological measures that control
108+
access or use of the Work in a manner inconsistent with the terms of this
109+
License Agreement. The above applies to the Derivative Work as incorporated
110+
in a Collective Work, but this does not require the Collective Work apart
111+
from the Derivative Work itself to be made subject to the terms of this
112+
License.
113+
114+
5. Representations, Warranties and Disclaimer
115+
116+
a. By offering the Work for public release under this License, Licensor
117+
represents and warrants that, to the best of Licensor's knowledge after
118+
reasonable inquiry:
119+
i. Licensor has secured all rights in the Work necessary to grant the
120+
license rights hereunder and to permit the lawful exercise of the
121+
rights granted hereunder without You having any obligation to pay any
122+
royalties, compulsory license fees, residuals or any other payments;
123+
ii. The Work does not infringe the copyright, trademark, publicity rights,
124+
common law rights or any other right of any third party or constitute
125+
defamation, invasion of privacy or other tortious injury to any third
126+
party.
127+
b. EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING
128+
OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS,
129+
WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
130+
WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF
131+
THE WORK.
132+
133+
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
134+
AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM
135+
BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO
136+
YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR
137+
EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF
138+
LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
139+
140+
7. Termination
141+
142+
a. This License and the rights granted hereunder will terminate automatically
143+
upon any breach by You of the terms of this License. Individuals or
144+
entities who have received Derivative Works or Collective Works from You
145+
under this License, however, will not have their licenses terminated
146+
provided such individuals or entities remain in full compliance with those
147+
licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of
148+
this License.
149+
b. Subject to the above terms and conditions, the license granted here is
150+
perpetual (for the duration of the applicable copyright in the Work).
151+
Notwithstanding the above, Licensor reserves the right to release the Work
152+
under different license terms or to stop distributing the Work at any time;
153+
provided, however that any such election will not serve to withdraw this
154+
License (or any other license that has been, or is required to be, granted
155+
under the terms of this License), and this License will continue in full
156+
force and effect unless terminated as stated above.
157+
158+
8. Miscellaneous
159+
160+
a. Each time You distribute or publicly digitally perform the Work or a
161+
Collective Work, the Licensor offers to the recipient a license to the Work
162+
on the same terms and conditions as the license granted to You under this
163+
License.
164+
b. Each time You distribute or publicly digitally perform a Derivative Work,
165+
Licensor offers to the recipient a license to the original Work on the same
166+
terms and conditions as the license granted to You under this License.
167+
c. If any provision of this License is invalid or unenforceable under
168+
applicable law, it shall not affect the validity or enforceability of the
169+
remainder of the terms of this License, and without further action by the
170+
parties to this agreement, such provision shall be reformed to the minimum
171+
extent necessary to make such provision valid and enforceable.
172+
d. No term or provision of this License shall be deemed waived and no breach
173+
consented to unless such waiver or consent shall be in writing and signed
174+
by the party to be charged with such waiver or consent.
175+
e. This License constitutes the entire agreement between the parties with
176+
respect to the Work licensed here. There are no understandings, agreements
177+
or representations with respect to the Work not specified here. Licensor
178+
shall not be bound by any additional provisions that may appear in any
179+
communication from You. This License may not be modified without the mutual
180+
written agreement of the Licensor and You.
181+
182+
Creative Commons is not a party to this License, and makes no warranty
183+
whatsoever in connection with the Work. Creative Commons will not be liable to
184+
You or any party on any legal theory for any damages whatsoever, including
185+
without limitation any general, special, incidental or consequential damages
186+
arising in connection to this license. Notwithstanding the foregoing two (2)
187+
sentences, if Creative Commons has expressly identified itself as the Licensor
188+
hereunder, it shall have all rights and obligations of Licensor.
189+
190+
Except for the limited purpose of indicating to the public that the Work is
191+
licensed under the CCPL, neither party will use the trademark "Creative
192+
Commons" or any related trademark or logo of Creative Commons without the prior
193+
written consent of Creative Commons. Any permitted use will be in compliance
194+
with Creative Commons' then-current trademark usage guidelines, as may be
195+
published on its website or otherwise made available upon request from time to
196+
time.
197+
198+
Creative Commons may be contacted at http://creativecommons.org/.

0 commit comments

Comments
 (0)