Compare commits
12 Commits
main
...
add-metada
Author | SHA1 | Date | |
---|---|---|---|
|
133c57afa5 | ||
|
dc9c75a9f0 | ||
|
7603d71a56 | ||
|
de60b262fc | ||
|
9b955e4787 | ||
|
e734a55eb6 | ||
|
8c48d15ecb | ||
|
13293bc8ac | ||
|
22a63953fb | ||
|
3fe5f882ec | ||
|
677c7abacf | ||
|
74ba388528 |
3
.editorconfig
Normal file
3
.editorconfig
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
1
.github/PULL_REQUEST_TEMPLATE.md
vendored
1
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,5 +1,4 @@
|
|||||||
**Reasons for making this change:**
|
**Reasons for making this change:**
|
||||||
<!-- Include your relationship to the project and what you expect to get from this change. -->
|
|
||||||
|
|
||||||
_TODO_
|
_TODO_
|
||||||
|
|
||||||
|
22
AL.gitignore
22
AL.gitignore
@ -1,22 +0,0 @@
|
|||||||
### AL ###
|
|
||||||
#Template for AL projects for Dynamics 365 Business Central
|
|
||||||
#launch.json folder
|
|
||||||
.vscode/
|
|
||||||
#Cache folder
|
|
||||||
.alcache/
|
|
||||||
#Symbols folder
|
|
||||||
.alpackages/
|
|
||||||
#Snapshots folder
|
|
||||||
.snapshots/
|
|
||||||
#Testing Output folder
|
|
||||||
.output/
|
|
||||||
#Extension App-file
|
|
||||||
*.app
|
|
||||||
#Rapid Application Development File
|
|
||||||
rad.json
|
|
||||||
#Translation Base-file
|
|
||||||
*.g.xlf
|
|
||||||
#License-file
|
|
||||||
*.flf
|
|
||||||
#Test results file
|
|
||||||
TestResults.xml
|
|
@ -1,2 +1 @@
|
|||||||
*.agdai
|
*.agdai
|
||||||
MAlonzo/**
|
|
||||||
|
@ -1,3 +1,18 @@
|
|||||||
|
# Built application files
|
||||||
|
*.apk
|
||||||
|
*.ap_
|
||||||
|
|
||||||
|
# Files for the ART/Dalvik VM
|
||||||
|
*.dex
|
||||||
|
|
||||||
|
# Java class files
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
bin/
|
||||||
|
gen/
|
||||||
|
out/
|
||||||
|
|
||||||
# Gradle files
|
# Gradle files
|
||||||
.gradle/
|
.gradle/
|
||||||
build/
|
build/
|
||||||
@ -5,29 +20,36 @@ build/
|
|||||||
# Local configuration file (sdk path, etc)
|
# Local configuration file (sdk path, etc)
|
||||||
local.properties
|
local.properties
|
||||||
|
|
||||||
# Log/OS Files
|
# Proguard folder generated by Eclipse
|
||||||
|
proguard/
|
||||||
|
|
||||||
|
# Log Files
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
# Android Studio generated files and folders
|
# Android Studio Navigation editor temp files
|
||||||
captures/
|
.navigation/
|
||||||
.externalNativeBuild/
|
|
||||||
.cxx/
|
|
||||||
*.apk
|
|
||||||
output.json
|
|
||||||
|
|
||||||
# IntelliJ
|
# Android Studio captures folder
|
||||||
*.iml
|
captures/
|
||||||
.idea/
|
|
||||||
misc.xml
|
|
||||||
deploymentTargetDropDown.xml
|
|
||||||
render.experimental.xml
|
|
||||||
|
|
||||||
# Keystore files
|
# Keystore files
|
||||||
*.jks
|
# Uncomment the following line if you do not want to check your keystore files in.
|
||||||
*.keystore
|
#*.jks
|
||||||
|
|
||||||
|
# External native build folder generated in Android Studio 2.2 and later
|
||||||
|
.externalNativeBuild
|
||||||
|
|
||||||
# Google Services (e.g. APIs or Firebase)
|
# Google Services (e.g. APIs or Firebase)
|
||||||
google-services.json
|
google-services.json
|
||||||
|
|
||||||
# Android Profiling
|
# Freeline
|
||||||
*.hprof
|
freeline.py
|
||||||
|
freeline/
|
||||||
|
freeline_project_description.json
|
||||||
|
|
||||||
|
# fastlane
|
||||||
|
fastlane/report.xml
|
||||||
|
fastlane/Preview.html
|
||||||
|
fastlane/screenshots
|
||||||
|
fastlane/test_output
|
||||||
|
fastlane/readme.md
|
||||||
|
2
Android.yml
Normal file
2
Android.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
editors:
|
||||||
|
- Global/JetBrains.gitignore
|
@ -6,21 +6,16 @@ Makefile.in
|
|||||||
/py-compile
|
/py-compile
|
||||||
/test-driver
|
/test-driver
|
||||||
/ylwrap
|
/ylwrap
|
||||||
.deps/
|
|
||||||
.dirstamp
|
|
||||||
|
|
||||||
# http://www.gnu.org/software/autoconf
|
# http://www.gnu.org/software/autoconf
|
||||||
|
|
||||||
autom4te.cache
|
/autom4te.cache
|
||||||
/autoscan.log
|
/autoscan.log
|
||||||
/autoscan-*.log
|
/autoscan-*.log
|
||||||
/aclocal.m4
|
/aclocal.m4
|
||||||
/compile
|
/compile
|
||||||
/config.cache
|
|
||||||
/config.guess
|
/config.guess
|
||||||
/config.h.in
|
/config.h.in
|
||||||
/config.log
|
|
||||||
/config.status
|
|
||||||
/config.sub
|
/config.sub
|
||||||
/configure
|
/configure
|
||||||
/configure.scan
|
/configure.scan
|
||||||
@ -44,9 +39,4 @@ m4/ltoptions.m4
|
|||||||
m4/ltsugar.m4
|
m4/ltsugar.m4
|
||||||
m4/ltversion.m4
|
m4/ltversion.m4
|
||||||
m4/lt~obsolete.m4
|
m4/lt~obsolete.m4
|
||||||
|
autom4te.cache
|
||||||
# Generated Makefile
|
|
||||||
# (meta build system like autotools,
|
|
||||||
# can automatically generate from config.status script
|
|
||||||
# (which is called by configure script))
|
|
||||||
Makefile
|
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
# generated files
|
|
||||||
target/
|
|
||||||
generated/
|
|
||||||
|
|
||||||
# dependencies
|
|
||||||
Dependencies.toml
|
|
||||||
|
|
||||||
# config files
|
|
||||||
Config.toml
|
|
||||||
# the config files used for testing, Uncomment the following line if you want to commit the test config files
|
|
||||||
#!**/tests/Config.toml
|
|
@ -1,4 +1,3 @@
|
|||||||
CMakeLists.txt.user
|
|
||||||
CMakeCache.txt
|
CMakeCache.txt
|
||||||
CMakeFiles
|
CMakeFiles
|
||||||
CMakeScripts
|
CMakeScripts
|
||||||
@ -8,5 +7,3 @@ cmake_install.cmake
|
|||||||
install_manifest.txt
|
install_manifest.txt
|
||||||
compile_commands.json
|
compile_commands.json
|
||||||
CTestTestfile.cmake
|
CTestTestfile.cmake
|
||||||
_deps
|
|
||||||
CMakeUserPresets.json
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Leiningen.gitignore
|
|
@ -2,7 +2,6 @@
|
|||||||
*/logs/log-*.php
|
*/logs/log-*.php
|
||||||
!*/logs/index.html
|
!*/logs/index.html
|
||||||
*/cache/*
|
*/cache/*
|
||||||
!system/cache/*
|
|
||||||
!*/cache/index.html
|
!*/cache/index.html
|
||||||
!*/cache/.htaccess
|
!*/cache/.htaccess
|
||||||
|
|
||||||
|
@ -1,21 +1,4 @@
|
|||||||
# ignore the error log and .htaccess and others
|
|
||||||
error_log
|
|
||||||
.htaccess
|
|
||||||
|
|
||||||
# concrete5 5.6 specific
|
|
||||||
|
|
||||||
config/site.php
|
config/site.php
|
||||||
files/cache/*
|
files/cache/*
|
||||||
files/tmp/*
|
files/tmp/*
|
||||||
|
.htaccess
|
||||||
# concrete5 5.7 specific
|
|
||||||
|
|
||||||
# ignore everything but the index.html
|
|
||||||
/application/files/*
|
|
||||||
!/application/files/index.html
|
|
||||||
|
|
||||||
# ignore updates folder
|
|
||||||
/updates/*
|
|
||||||
|
|
||||||
# ignore sitemap.xml
|
|
||||||
/sitemap.xml
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
.*.aux
|
.*.aux
|
||||||
.*.d
|
|
||||||
*.a
|
*.a
|
||||||
*.cma
|
*.cma
|
||||||
*.cmi
|
*.cmi
|
||||||
@ -10,7 +9,6 @@
|
|||||||
*.glob
|
*.glob
|
||||||
*.ml.d
|
*.ml.d
|
||||||
*.ml4.d
|
*.ml4.d
|
||||||
*.mlg.d
|
|
||||||
*.mli.d
|
*.mli.d
|
||||||
*.mllib.d
|
*.mllib.d
|
||||||
*.mlpack.d
|
*.mlpack.d
|
||||||
@ -19,9 +17,7 @@
|
|||||||
*.v.d
|
*.v.d
|
||||||
*.vio
|
*.vio
|
||||||
*.vo
|
*.vo
|
||||||
*.vok
|
.coq-native/
|
||||||
*.vos
|
|
||||||
.coq-native
|
|
||||||
.csdp.cache
|
.csdp.cache
|
||||||
.lia.cache
|
.lia.cache
|
||||||
.nia.cache
|
.nia.cache
|
||||||
@ -32,14 +28,3 @@ lia.cache
|
|||||||
nia.cache
|
nia.cache
|
||||||
nlia.cache
|
nlia.cache
|
||||||
nra.cache
|
nra.cache
|
||||||
native_compute_profile_*.data
|
|
||||||
|
|
||||||
# generated timing files
|
|
||||||
*.timing.diff
|
|
||||||
*.v.after-timing
|
|
||||||
*.v.before-timing
|
|
||||||
*.v.timing
|
|
||||||
time-of-build-after.log
|
|
||||||
time-of-build-before.log
|
|
||||||
time-of-build-both.log
|
|
||||||
time-of-build-pretty.log
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
# Craft 2 Storage (https://craftcms.com/support/craft-storage-gitignore)
|
# Craft Storage (cache) [http://buildwithcraft.com/help/craft-storage-gitignore]
|
||||||
# not necessary for Craft 3 (https://github.com/craftcms/craft/issues/26)
|
|
||||||
/craft/storage/*
|
/craft/storage/*
|
||||||
!/craft/storage/rebrand
|
!/craft/storage/logo/*
|
@ -11,9 +11,6 @@ pubspec.lock
|
|||||||
# If you don't generate documentation locally you can remove this line.
|
# If you don't generate documentation locally you can remove this line.
|
||||||
doc/api/
|
doc/api/
|
||||||
|
|
||||||
# dotenv environment variables file
|
|
||||||
.env*
|
|
||||||
|
|
||||||
# Avoid committing generated Javascript files:
|
# Avoid committing generated Javascript files:
|
||||||
*.dart.js
|
*.dart.js
|
||||||
*.info.json # Produced by the --dump-info flag.
|
*.info.json # Produced by the --dump-info flag.
|
||||||
@ -22,6 +19,3 @@ doc/api/
|
|||||||
*.js_
|
*.js_
|
||||||
*.js.deps
|
*.js.deps
|
||||||
*.js.map
|
*.js.map
|
||||||
|
|
||||||
.flutter-plugins
|
|
||||||
.flutter-plugins-dependencies
|
|
||||||
|
@ -26,18 +26,6 @@
|
|||||||
#*.obj
|
#*.obj
|
||||||
#
|
#
|
||||||
|
|
||||||
# Default Delphi compiler directories
|
|
||||||
# Content of this directories are generated with each Compile/Construct of a project.
|
|
||||||
# Most of the time, files here have not there place in a code repository.
|
|
||||||
#Win32/
|
|
||||||
#Win64/
|
|
||||||
#OSX64/
|
|
||||||
#OSXARM64/
|
|
||||||
#Android/
|
|
||||||
#Android64/
|
|
||||||
#iOSDevice64/
|
|
||||||
#Linux64/
|
|
||||||
|
|
||||||
# Delphi compiler-generated binaries (safe to delete)
|
# Delphi compiler-generated binaries (safe to delete)
|
||||||
*.exe
|
*.exe
|
||||||
*.dll
|
*.dll
|
||||||
@ -76,6 +64,3 @@ __recovery/
|
|||||||
|
|
||||||
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
|
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
|
||||||
*.stat
|
*.stat
|
||||||
|
|
||||||
# Boss dependency manager vendor folder https://github.com/HashLoad/boss
|
|
||||||
modules/
|
|
||||||
|
@ -1,62 +1,39 @@
|
|||||||
# gitignore template for Drupal 8 projects
|
# Ignore configuration files that may contain sensitive information.
|
||||||
#
|
sites/*/*settings*.php
|
||||||
# earlier versions of Drupal are tracked in `community/PHP/`
|
sites/example.sites.php
|
||||||
#
|
|
||||||
# follows official upstream conventions:
|
|
||||||
# https://www.drupal.org/docs/develop/using-composer
|
|
||||||
|
|
||||||
# Ignore configuration files that may contain sensitive information
|
# Ignore paths that contain generated content.
|
||||||
/web/sites/*/*settings*.php
|
files/
|
||||||
/web/sites/*/*services*.yml
|
sites/*/files
|
||||||
|
sites/*/private
|
||||||
|
sites/*/translations
|
||||||
|
|
||||||
# Ignore paths that may contain user-generated content
|
# Ignore default text files
|
||||||
/web/sites/*/files
|
robots.txt
|
||||||
/web/sites/*/public
|
/CHANGELOG.txt
|
||||||
/web/sites/*/private
|
/COPYRIGHT.txt
|
||||||
/web/sites/*/files-public
|
/INSTALL*.txt
|
||||||
/web/sites/*/files-private
|
/LICENSE.txt
|
||||||
|
/MAINTAINERS.txt
|
||||||
|
/UPGRADE.txt
|
||||||
|
/README.txt
|
||||||
|
sites/README.txt
|
||||||
|
sites/all/libraries/README.txt
|
||||||
|
sites/all/modules/README.txt
|
||||||
|
sites/all/themes/README.txt
|
||||||
|
|
||||||
# Ignore paths that may contain temporary files
|
# Ignore everything but the "sites" folder ( for non core developer )
|
||||||
/web/sites/*/translations
|
.htaccess
|
||||||
/web/sites/*/tmp
|
web.config
|
||||||
/web/sites/*/cache
|
authorize.php
|
||||||
|
cron.php
|
||||||
# Ignore drupal core (if not versioning drupal sources)
|
index.php
|
||||||
/web/vendor
|
install.php
|
||||||
/web/core
|
update.php
|
||||||
/web/modules/README.txt
|
xmlrpc.php
|
||||||
/web/profiles/README.txt
|
/includes
|
||||||
/web/sites/development.services.yml
|
/misc
|
||||||
/web/sites/example.settings.local.php
|
/modules
|
||||||
/web/sites/example.sites.php
|
/profiles
|
||||||
/web/sites/README.txt
|
/scripts
|
||||||
/web/themes/README.txt
|
/themes
|
||||||
/web/.csslintrc
|
|
||||||
/web/.editorconfig
|
|
||||||
/web/.eslintignore
|
|
||||||
/web/.eslintrc.json
|
|
||||||
/web/.gitattributes
|
|
||||||
/web/.htaccess
|
|
||||||
/web/.ht.router.php
|
|
||||||
/web/autoload.php
|
|
||||||
/web/composer.json
|
|
||||||
/web/composer.lock
|
|
||||||
/web/example.gitignore
|
|
||||||
/web/index.php
|
|
||||||
/web/INSTALL.txt
|
|
||||||
/web/LICENSE.txt
|
|
||||||
/web/README.txt
|
|
||||||
/web/robots.txt
|
|
||||||
/web/update.php
|
|
||||||
/web/web.config
|
|
||||||
|
|
||||||
# Ignore vendor dependencies and scripts
|
|
||||||
/vendor
|
|
||||||
/composer.phar
|
|
||||||
/composer
|
|
||||||
/robo.phar
|
|
||||||
/robo
|
|
||||||
/drush.phar
|
|
||||||
/drush
|
|
||||||
/drupal.phar
|
|
||||||
/drupal
|
|
||||||
|
@ -35,6 +35,7 @@ eagle.epf
|
|||||||
*.gpi
|
*.gpi
|
||||||
*.pls
|
*.pls
|
||||||
*.ger
|
*.ger
|
||||||
|
*.gpi
|
||||||
*.xln
|
*.xln
|
||||||
|
|
||||||
*.drd
|
*.drd
|
||||||
|
@ -7,4 +7,3 @@ erl_crash.dump
|
|||||||
*.ez
|
*.ez
|
||||||
*.beam
|
*.beam
|
||||||
/config/*.secret.exs
|
/config/*.secret.exs
|
||||||
.elixir_ls/
|
|
||||||
|
@ -1,17 +1,10 @@
|
|||||||
.eunit
|
.eunit
|
||||||
|
deps
|
||||||
*.o
|
*.o
|
||||||
*.beam
|
*.beam
|
||||||
*.plt
|
*.plt
|
||||||
erl_crash.dump
|
erl_crash.dump
|
||||||
.concrete/DEV_MODE
|
|
||||||
|
|
||||||
# rebar 2.x
|
|
||||||
.rebar
|
|
||||||
rel/example_project
|
|
||||||
ebin/*.beam
|
ebin/*.beam
|
||||||
deps
|
rel/example_project
|
||||||
|
.concrete/DEV_MODE
|
||||||
# rebar 3
|
.rebar
|
||||||
.rebar3
|
|
||||||
_build/
|
|
||||||
_checkouts/
|
|
||||||
|
@ -1,45 +0,0 @@
|
|||||||
# Ignore Flax project files
|
|
||||||
Binaries/
|
|
||||||
Cache/
|
|
||||||
Logs/
|
|
||||||
Output/
|
|
||||||
Screenshots/
|
|
||||||
*.HotReload.*
|
|
||||||
|
|
||||||
# Ignore Visual Studio project files (generated locally)
|
|
||||||
*.csproj
|
|
||||||
*.sln
|
|
||||||
|
|
||||||
# Ignore thumbnails created by Windows
|
|
||||||
Thumbs.db
|
|
||||||
|
|
||||||
# Ignore files built by Visual Studio
|
|
||||||
*.obj
|
|
||||||
*.exe
|
|
||||||
*.pdb
|
|
||||||
*.user
|
|
||||||
*.aps
|
|
||||||
*.pch
|
|
||||||
*.vspscc
|
|
||||||
*_i.c
|
|
||||||
*_p.c
|
|
||||||
*.ncb
|
|
||||||
*.suo
|
|
||||||
*.tlb
|
|
||||||
*.tlh
|
|
||||||
*.bak
|
|
||||||
*.cache
|
|
||||||
*.ilk
|
|
||||||
*.log
|
|
||||||
[Bb]in
|
|
||||||
[Dd]ebug*/
|
|
||||||
*.lib
|
|
||||||
*.sbr
|
|
||||||
obj/
|
|
||||||
[Rr]elease*/
|
|
||||||
_ReSharper*/
|
|
||||||
[Tt]est[Rr]esult*
|
|
||||||
.vs/
|
|
||||||
|
|
||||||
# Ignore Nuget packages folder
|
|
||||||
packages/
|
|
@ -1 +0,0 @@
|
|||||||
C++.gitignore
|
|
@ -18,6 +18,9 @@ war/WEB-INF/classes/
|
|||||||
#compilation logs
|
#compilation logs
|
||||||
.gwt/
|
.gwt/
|
||||||
|
|
||||||
|
#caching for already compiled files
|
||||||
|
gwt-unitCache/
|
||||||
|
|
||||||
#gwt junit compilation files
|
#gwt junit compilation files
|
||||||
www-test/
|
www-test/
|
||||||
|
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
# This .gitignore is appropriate for repositories deployed to GitHub Pages and using
|
|
||||||
# a Gemfile as specified at https://github.com/github/pages-gem#conventional
|
|
||||||
|
|
||||||
# Basic Jekyll gitignores (synchronize to Jekyll.gitignore)
|
|
||||||
_site/
|
|
||||||
.sass-cache/
|
|
||||||
.jekyll-cache/
|
|
||||||
.jekyll-metadata
|
|
||||||
|
|
||||||
# Additional Ruby/bundler ignore for when you run: bundle install
|
|
||||||
/vendor
|
|
||||||
|
|
||||||
# Specific ignore for GitHub Pages
|
|
||||||
# GitHub Pages will always use its own deployed version of pages-gem
|
|
||||||
# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is
|
|
||||||
# counterproductive to check this file into the repository.
|
|
||||||
# Details at https://github.com/github/pages-gem/issues/768
|
|
||||||
Gemfile.lock
|
|
@ -1,11 +0,0 @@
|
|||||||
.vscode/*
|
|
||||||
!.vscode/settings.json
|
|
||||||
!.vscode/tasks.json
|
|
||||||
!.vscode/launch.json
|
|
||||||
!.vscode/extensions.json
|
|
||||||
*.code-workspace
|
|
||||||
|
|
||||||
# Local History for Visual Studio Code
|
|
||||||
.history/
|
|
||||||
*.app
|
|
||||||
.snapshots/*
|
|
@ -5,17 +5,12 @@
|
|||||||
*.rar
|
*.rar
|
||||||
*.zip
|
*.zip
|
||||||
*.gz
|
*.gz
|
||||||
*.gzip
|
|
||||||
*.tgz
|
*.tgz
|
||||||
*.bzip
|
*.bzip
|
||||||
*.bzip2
|
|
||||||
*.bz2
|
*.bz2
|
||||||
*.xz
|
*.xz
|
||||||
*.lzma
|
*.lzma
|
||||||
*.cab
|
*.cab
|
||||||
*.xar
|
|
||||||
*.zst
|
|
||||||
*.tzst
|
|
||||||
|
|
||||||
# Packing-only formats
|
# Packing-only formats
|
||||||
*.iso
|
*.iso
|
||||||
@ -31,4 +26,3 @@
|
|||||||
*.msi
|
*.msi
|
||||||
*.msm
|
*.msm
|
||||||
*.msp
|
*.msp
|
||||||
*.txz
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
*.bak
|
*.bak
|
||||||
*.gho
|
*.gho
|
||||||
*.ori
|
*.ori
|
||||||
*.orig
|
|
||||||
*.tmp
|
*.tmp
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
# General CodeKit files to ignore
|
# General CodeKit files to ignore
|
||||||
config.codekit
|
config.codekit
|
||||||
config.codekit3
|
|
||||||
/min
|
/min
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
*.patch
|
|
||||||
*.diff
|
|
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
.metadata
|
.metadata
|
||||||
bin/
|
bin/
|
||||||
tmp/
|
tmp/
|
||||||
@ -48,13 +49,8 @@ local.properties
|
|||||||
|
|
||||||
# Annotation Processing
|
# Annotation Processing
|
||||||
.apt_generated/
|
.apt_generated/
|
||||||
.apt_generated_test/
|
|
||||||
|
|
||||||
# Scala IDE specific (Scala & Java development for Eclipse)
|
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||||
.cache-main
|
.cache-main
|
||||||
.scala_dependencies
|
.scala_dependencies
|
||||||
.worksheet
|
.worksheet
|
||||||
|
|
||||||
# Uncomment this line if you wish to ignore the project description file.
|
|
||||||
# Typically, this file would be tracked if it contains build/dependency configurations:
|
|
||||||
#.project
|
|
||||||
|
@ -43,7 +43,3 @@ flycheck_*.el
|
|||||||
|
|
||||||
# directory configuration
|
# directory configuration
|
||||||
.dir-locals.el
|
.dir-locals.el
|
||||||
|
|
||||||
# network security
|
|
||||||
/network-security.data
|
|
||||||
|
|
||||||
|
@ -1,63 +0,0 @@
|
|||||||
# JPEG
|
|
||||||
*.jpg
|
|
||||||
*.jpeg
|
|
||||||
*.jpe
|
|
||||||
*.jif
|
|
||||||
*.jfif
|
|
||||||
*.jfi
|
|
||||||
|
|
||||||
# JPEG 2000
|
|
||||||
*.jp2
|
|
||||||
*.j2k
|
|
||||||
*.jpf
|
|
||||||
*.jpx
|
|
||||||
*.jpm
|
|
||||||
*.mj2
|
|
||||||
|
|
||||||
# JPEG XR
|
|
||||||
*.jxr
|
|
||||||
*.hdp
|
|
||||||
*.wdp
|
|
||||||
|
|
||||||
# Graphics Interchange Format
|
|
||||||
*.gif
|
|
||||||
|
|
||||||
# RAW
|
|
||||||
*.raw
|
|
||||||
|
|
||||||
# Web P
|
|
||||||
*.webp
|
|
||||||
|
|
||||||
# Portable Network Graphics
|
|
||||||
*.png
|
|
||||||
|
|
||||||
# Animated Portable Network Graphics
|
|
||||||
*.apng
|
|
||||||
|
|
||||||
# Multiple-image Network Graphics
|
|
||||||
*.mng
|
|
||||||
|
|
||||||
# Tagged Image File Format
|
|
||||||
*.tiff
|
|
||||||
*.tif
|
|
||||||
|
|
||||||
# Scalable Vector Graphics
|
|
||||||
*.svg
|
|
||||||
*.svgz
|
|
||||||
|
|
||||||
# Portable Document Format
|
|
||||||
*.pdf
|
|
||||||
|
|
||||||
# X BitMap
|
|
||||||
*.xbm
|
|
||||||
|
|
||||||
# BMP
|
|
||||||
*.bmp
|
|
||||||
*.dib
|
|
||||||
|
|
||||||
# ICO
|
|
||||||
*.ico
|
|
||||||
|
|
||||||
# 3D Images
|
|
||||||
*.3dm
|
|
||||||
*.max
|
|
@ -1,6 +1,3 @@
|
|||||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
|
||||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
||||||
|
|
||||||
# User-specific stuff
|
# User-specific stuff
|
||||||
.idea/**/workspace.xml
|
.idea/**/workspace.xml
|
||||||
.idea/**/tasks.xml
|
.idea/**/tasks.xml
|
||||||
@ -8,12 +5,6 @@
|
|||||||
.idea/**/dictionaries
|
.idea/**/dictionaries
|
||||||
.idea/**/shelf
|
.idea/**/shelf
|
||||||
|
|
||||||
# AWS User-specific
|
|
||||||
.idea/**/aws.xml
|
|
||||||
|
|
||||||
# Generated files
|
|
||||||
.idea/**/contentModel.xml
|
|
||||||
|
|
||||||
# Sensitive or high-churn files
|
# Sensitive or high-churn files
|
||||||
.idea/**/dataSources/
|
.idea/**/dataSources/
|
||||||
.idea/**/dataSources.ids
|
.idea/**/dataSources.ids
|
||||||
@ -27,19 +18,6 @@
|
|||||||
.idea/**/gradle.xml
|
.idea/**/gradle.xml
|
||||||
.idea/**/libraries
|
.idea/**/libraries
|
||||||
|
|
||||||
# Gradle and Maven with auto-import
|
|
||||||
# When using Gradle or Maven with auto-import, you should exclude module files,
|
|
||||||
# since they will be recreated, and may cause churn. Uncomment if using
|
|
||||||
# auto-import.
|
|
||||||
# .idea/artifacts
|
|
||||||
# .idea/compiler.xml
|
|
||||||
# .idea/jarRepositories.xml
|
|
||||||
# .idea/modules.xml
|
|
||||||
# .idea/*.iml
|
|
||||||
# .idea/modules
|
|
||||||
# *.iml
|
|
||||||
# *.ipr
|
|
||||||
|
|
||||||
# CMake
|
# CMake
|
||||||
cmake-build-*/
|
cmake-build-*/
|
||||||
|
|
||||||
@ -61,9 +39,6 @@ atlassian-ide-plugin.xml
|
|||||||
# Cursive Clojure plugin
|
# Cursive Clojure plugin
|
||||||
.idea/replstate.xml
|
.idea/replstate.xml
|
||||||
|
|
||||||
# SonarLint plugin
|
|
||||||
.idea/sonarlint/
|
|
||||||
|
|
||||||
# Crashlytics plugin (for Android Studio and IntelliJ)
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
com_crashlytics_export_strings.xml
|
com_crashlytics_export_strings.xml
|
||||||
crashlytics.properties
|
crashlytics.properties
|
||||||
@ -73,5 +48,5 @@ fabric.properties
|
|||||||
# Editor-based Rest Client
|
# Editor-based Rest Client
|
||||||
.idea/httpRequests
|
.idea/httpRequests
|
||||||
|
|
||||||
# Android studio 3.1+ serialized cache file
|
# Rider-specific rules
|
||||||
.idea/caches/build_file_checksums.ser
|
*.sln.iml
|
||||||
|
11
Global/JetBrains.yml
Normal file
11
Global/JetBrains.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
aliases:
|
||||||
|
- IntelliJ
|
||||||
|
- RubyMine
|
||||||
|
- PhpStorm
|
||||||
|
- AppCode
|
||||||
|
- PyCharm
|
||||||
|
- CLion
|
||||||
|
- Android Studio
|
||||||
|
- WebStorm
|
||||||
|
- Rider
|
||||||
|
reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
@ -24,8 +24,5 @@ codegen/
|
|||||||
# Simulink autosave extension
|
# Simulink autosave extension
|
||||||
*.autosave
|
*.autosave
|
||||||
|
|
||||||
# Simulink cache files
|
|
||||||
*.slxc
|
|
||||||
|
|
||||||
# Octave session info
|
# Octave session info
|
||||||
octave-workspace
|
octave-workspace
|
@ -1,5 +0,0 @@
|
|||||||
# Generated Metals (Scala Language Server) files
|
|
||||||
# Reference: https://scalameta.org/metals/
|
|
||||||
.metals/
|
|
||||||
.bloop/
|
|
||||||
project/metals.sbt
|
|
@ -3,9 +3,6 @@
|
|||||||
# Word temporary
|
# Word temporary
|
||||||
~$*.doc*
|
~$*.doc*
|
||||||
|
|
||||||
# Word Auto Backup File
|
|
||||||
Backup of *.doc*
|
|
||||||
|
|
||||||
# Excel temporary
|
# Excel temporary
|
||||||
~$*.xls*
|
~$*.xls*
|
||||||
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
**/nbproject/private/
|
nbproject/private/
|
||||||
**/nbproject/Makefile-*.mk
|
|
||||||
**/nbproject/Package-*.bash
|
|
||||||
build/
|
build/
|
||||||
nbbuild/
|
nbbuild/
|
||||||
dist/
|
dist/
|
||||||
|
@ -1 +0,0 @@
|
|||||||
MATLAB.gitignore
|
|
@ -1,18 +0,0 @@
|
|||||||
# Project Settings
|
|
||||||
*.cywrk.*
|
|
||||||
*.cyprj.*
|
|
||||||
|
|
||||||
# Generated Assets and Resources
|
|
||||||
Debug/
|
|
||||||
Release/
|
|
||||||
Export/
|
|
||||||
*/codegentemp
|
|
||||||
*/Generated_Source
|
|
||||||
*_datasheet.pdf
|
|
||||||
*_timing.html
|
|
||||||
*.cycdx
|
|
||||||
*.cyfit
|
|
||||||
*.rpt
|
|
||||||
*.svd
|
|
||||||
*.log
|
|
||||||
*.zip
|
|
@ -1,2 +0,0 @@
|
|||||||
*.orig
|
|
||||||
*.rej
|
|
@ -1,2 +0,0 @@
|
|||||||
# Private key
|
|
||||||
*.ppk
|
|
@ -4,7 +4,7 @@ This directory contains globally useful gitignores,
|
|||||||
e.g. OS-specific and editor specific.
|
e.g. OS-specific and editor specific.
|
||||||
|
|
||||||
For more on global gitignores:
|
For more on global gitignores:
|
||||||
<https://help.github.com/en/github/using-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer>
|
<https://help.github.com/articles/ignoring-files/#create-a-global-gitignore>
|
||||||
|
|
||||||
And a good blog post about 'em:
|
And a good blog post about 'em:
|
||||||
<http://augustl.com/blog/2009/global_gitignores>
|
<http://augustl.com/blog/2009/global_gitignores>
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
|
|
||||||
# SFTP configuration file
|
# SFTP configuration file
|
||||||
sftp-config.json
|
sftp-config.json
|
||||||
sftp-config-alt*.json
|
|
||||||
|
|
||||||
# Package control specific files
|
# Package control specific files
|
||||||
Package Control.last-run
|
Package Control.last-run
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
# Syncthing caches
|
|
||||||
.stversions
|
|
@ -2,4 +2,4 @@
|
|||||||
.vagrant/
|
.vagrant/
|
||||||
|
|
||||||
# Log files (if you are creating logs in debug mode, uncomment this)
|
# Log files (if you are creating logs in debug mode, uncomment this)
|
||||||
# *.log
|
# *.logs
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
# Swap
|
# Swap
|
||||||
[._]*.s[a-v][a-z]
|
[._]*.s[a-v][a-z]
|
||||||
!*.svg # comment out if you don't need vector files
|
|
||||||
[._]*.sw[a-p]
|
[._]*.sw[a-p]
|
||||||
[._]s[a-rt-v][a-z]
|
[._]s[a-rt-v][a-z]
|
||||||
[._]ss[a-gi-z]
|
[._]ss[a-gi-z]
|
||||||
@ -8,7 +7,6 @@
|
|||||||
|
|
||||||
# Session
|
# Session
|
||||||
Session.vim
|
Session.vim
|
||||||
Sessionx.vim
|
|
||||||
|
|
||||||
# Temporary
|
# Temporary
|
||||||
.netrwhist
|
.netrwhist
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
# Gitignore for Cadence Virtuoso
|
|
||||||
################################################################
|
|
||||||
|
|
||||||
# Log files
|
|
||||||
*.log
|
|
||||||
panic*.log.*
|
|
||||||
|
|
||||||
# OpenAccess database lock files
|
|
||||||
*.cdslck*
|
|
||||||
|
|
||||||
# Run directories for layout vs. schematic and design rule check
|
|
||||||
lvsRunDir/*
|
|
||||||
drcRunDir/*
|
|
||||||
|
|
||||||
# Abstract generation tool
|
|
||||||
abstract.log*
|
|
||||||
abstract.record*
|
|
||||||
|
|
@ -3,10 +3,3 @@
|
|||||||
!.vscode/tasks.json
|
!.vscode/tasks.json
|
||||||
!.vscode/launch.json
|
!.vscode/launch.json
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
!.vscode/*.code-snippets
|
|
||||||
|
|
||||||
# Local History for Visual Studio Code
|
|
||||||
.history/
|
|
||||||
|
|
||||||
# Built Visual Studio Code Extensions
|
|
||||||
*.vsix
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
# Windows thumbnail cache files
|
# Windows thumbnail cache files
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
Thumbs.db:encryptable
|
|
||||||
ehthumbs.db
|
ehthumbs.db
|
||||||
ehthumbs_vista.db
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
@ -1,2 +1,19 @@
|
|||||||
## User settings
|
## User settings
|
||||||
xcuserdata/
|
xcuserdata/
|
||||||
|
|
||||||
|
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
|
||||||
|
*.xcscmblueprint
|
||||||
|
*.xccheckout
|
||||||
|
|
||||||
|
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
|
||||||
|
build/
|
||||||
|
DerivedData/
|
||||||
|
*.moved-aside
|
||||||
|
*.pbxuser
|
||||||
|
!default.pbxuser
|
||||||
|
*.mode1v3
|
||||||
|
!default.mode1v3
|
||||||
|
*.mode2v3
|
||||||
|
!default.mode2v3
|
||||||
|
*.perspectivev3
|
||||||
|
!default.perspectivev3
|
||||||
|
3
Global/Xcode.yml
Normal file
3
Global/Xcode.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
aliases:
|
||||||
|
- Objective-C
|
||||||
|
- Swift
|
15
Go.gitignore
15
Go.gitignore
@ -1,6 +1,3 @@
|
|||||||
# If you prefer the allow list template instead of the deny list, see community template:
|
|
||||||
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
|
||||||
#
|
|
||||||
# Binaries for programs and plugins
|
# Binaries for programs and plugins
|
||||||
*.exe
|
*.exe
|
||||||
*.exe~
|
*.exe~
|
||||||
@ -8,18 +5,8 @@
|
|||||||
*.so
|
*.so
|
||||||
*.dylib
|
*.dylib
|
||||||
|
|
||||||
# Test binary, built with `go test -c`
|
# Test binary, build with `go test -c`
|
||||||
*.test
|
*.test
|
||||||
|
|
||||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||||
*.out
|
*.out
|
||||||
|
|
||||||
# Dependency directories (remove the comment below to include it)
|
|
||||||
# vendor/
|
|
||||||
|
|
||||||
# Go workspace file
|
|
||||||
go.work
|
|
||||||
go.work.sum
|
|
||||||
|
|
||||||
# env file
|
|
||||||
.env
|
|
||||||
|
@ -1,15 +1,8 @@
|
|||||||
# Godot 4+ specific ignores
|
|
||||||
.godot/
|
|
||||||
|
|
||||||
# Godot-specific ignores
|
# Godot-specific ignores
|
||||||
.import/
|
.import/
|
||||||
export.cfg
|
export.cfg
|
||||||
export_presets.cfg
|
export_presets.cfg
|
||||||
|
|
||||||
# Imported translations (automatically generated from CSV files)
|
|
||||||
*.translation
|
|
||||||
|
|
||||||
# Mono-specific ignores
|
# Mono-specific ignores
|
||||||
.mono/
|
.mono/
|
||||||
data_*/
|
|
||||||
mono_crash.*.json
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
.gradle
|
.gradle
|
||||||
**/build/
|
/build/
|
||||||
!src/**/build/
|
|
||||||
|
|
||||||
# Ignore Gradle GUI config
|
# Ignore Gradle GUI config
|
||||||
gradle-app.setting
|
gradle-app.setting
|
||||||
@ -8,14 +7,8 @@ gradle-app.setting
|
|||||||
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
||||||
!gradle-wrapper.jar
|
!gradle-wrapper.jar
|
||||||
|
|
||||||
# Avoid ignore Gradle wrappper properties
|
|
||||||
!gradle-wrapper.properties
|
|
||||||
|
|
||||||
# Cache of project
|
# Cache of project
|
||||||
.gradletasknamecache
|
.gradletasknamecache
|
||||||
|
|
||||||
# Eclipse Gradle plugin generated files
|
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
|
||||||
# Eclipse Core
|
# gradle/wrapper/gradle-wrapper.properties
|
||||||
.project
|
|
||||||
# JDT-specific (Eclipse Java Development Tools)
|
|
||||||
.classpath
|
|
||||||
|
@ -3,7 +3,6 @@ dist-*
|
|||||||
cabal-dev
|
cabal-dev
|
||||||
*.o
|
*.o
|
||||||
*.hi
|
*.hi
|
||||||
*.hie
|
|
||||||
*.chi
|
*.chi
|
||||||
*.chs.h
|
*.chs.h
|
||||||
*.dyn_o
|
*.dyn_o
|
||||||
|
@ -1,47 +0,0 @@
|
|||||||
# Compiled binaries
|
|
||||||
*.o
|
|
||||||
*.bin
|
|
||||||
*.elf
|
|
||||||
*.hex
|
|
||||||
*.map
|
|
||||||
*.out
|
|
||||||
*.obj
|
|
||||||
|
|
||||||
# Trash
|
|
||||||
*.bak
|
|
||||||
thumbs.db
|
|
||||||
*.~*
|
|
||||||
|
|
||||||
# IAR Settings
|
|
||||||
**/settings/*.crun
|
|
||||||
**/settings/*.dbgdt
|
|
||||||
**/settings/*.cspy
|
|
||||||
**/settings/*.cspy.*
|
|
||||||
**/settings/*.xcl
|
|
||||||
**/settings/*.dni
|
|
||||||
**/settings/*.wsdt
|
|
||||||
**/settings/*.wspos
|
|
||||||
|
|
||||||
# IAR Debug Exe
|
|
||||||
**/Exe/*.sim
|
|
||||||
|
|
||||||
# IAR Debug Obj
|
|
||||||
**/Obj/*.pbd
|
|
||||||
**/Obj/*.pbd.*
|
|
||||||
**/Obj/*.pbi
|
|
||||||
**/Obj/*.pbi.*
|
|
||||||
|
|
||||||
# IAR project "Debug" directory
|
|
||||||
Debug/
|
|
||||||
|
|
||||||
# IAR project "Release" directory
|
|
||||||
Release/
|
|
||||||
|
|
||||||
# IAR project settings directory
|
|
||||||
settings/
|
|
||||||
|
|
||||||
# IAR backup files
|
|
||||||
Backup*
|
|
||||||
|
|
||||||
# IAR .dep files
|
|
||||||
*.dep
|
|
@ -1,7 +1,2 @@
|
|||||||
# Idris 2
|
|
||||||
*.ttc
|
|
||||||
*.ttm
|
|
||||||
|
|
||||||
# Idris 1
|
|
||||||
*.ibc
|
*.ibc
|
||||||
*.o
|
*.o
|
||||||
|
@ -1,50 +0,0 @@
|
|||||||
# Learn more about Jenkins and JENKINS_HOME directory for which this file is
|
|
||||||
# intended.
|
|
||||||
#
|
|
||||||
# http://jenkins-ci.org/
|
|
||||||
# https://wiki.jenkins-ci.org/display/JENKINS/Administering+Jenkins
|
|
||||||
#
|
|
||||||
# Note: secret.key is purposefully not tracked by git. This should be backed up
|
|
||||||
# separately because configs may contain secrets which were encrypted using the
|
|
||||||
# secret.key. To back up secrets use 'tar -czf /tmp/secrets.tgz secret*' and
|
|
||||||
# save the file separate from your repository. If you want secrets backed up
|
|
||||||
# with configuration, then see the bottom of this file for an example.
|
|
||||||
|
|
||||||
# Ignore all JENKINS_HOME except jobs directory, root xml config, and
|
|
||||||
# .gitignore file.
|
|
||||||
/*
|
|
||||||
!/jobs
|
|
||||||
!/.gitignore
|
|
||||||
!/*.xml
|
|
||||||
|
|
||||||
# Ignore all files in jobs subdirectories except for folders.
|
|
||||||
# Note: git doesn't track folders, only file content.
|
|
||||||
jobs/**
|
|
||||||
!jobs/**/
|
|
||||||
|
|
||||||
# Uncomment the following line to save next build numbers with config.
|
|
||||||
|
|
||||||
#!jobs/**/nextBuildNumber
|
|
||||||
|
|
||||||
# For performance reasons, we want to ignore builds in Jenkins jobs because it
|
|
||||||
# contains many tiny files on large installations. This can impact git
|
|
||||||
# performance when running even basic commands like 'git status'.
|
|
||||||
builds
|
|
||||||
indexing
|
|
||||||
|
|
||||||
# Exclude only config.xml files in repository subdirectories.
|
|
||||||
!config.xml
|
|
||||||
|
|
||||||
# Don't track workspaces (when users build on the master).
|
|
||||||
jobs/**/*workspace
|
|
||||||
|
|
||||||
# Security warning: If secrets are included with your configuration, then an
|
|
||||||
# adversary will be able to decrypt all encrypted secrets within Jenkins
|
|
||||||
# config. Including secrets is a bad practice, but the example is included in
|
|
||||||
# case someone still wants it for convenience. Uncomment the following line to
|
|
||||||
# include secrets for decryption with repository configuration in Git.
|
|
||||||
|
|
||||||
#!/secret*
|
|
||||||
|
|
||||||
# As a result, only Jenkins settings and job config.xml files in JENKINS_HOME
|
|
||||||
# will be tracked by git.
|
|
@ -21,4 +21,3 @@
|
|||||||
|
|
||||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
hs_err_pid*
|
hs_err_pid*
|
||||||
replay_pid*
|
|
||||||
|
@ -2,6 +2,3 @@ _site/
|
|||||||
.sass-cache/
|
.sass-cache/
|
||||||
.jekyll-cache/
|
.jekyll-cache/
|
||||||
.jekyll-metadata
|
.jekyll-metadata
|
||||||
# Ignore folders generated by Bundler
|
|
||||||
.bundle/
|
|
||||||
vendor/
|
|
||||||
|
389
Joomla.gitignore
389
Joomla.gitignore
@ -1,22 +1,21 @@
|
|||||||
/.htaccess
|
/.htaccess
|
||||||
/administrator/cache/*
|
/administrator/cache/*
|
||||||
/administrator/components/com_actionlogs/*
|
|
||||||
/administrator/components/com_admin/*
|
/administrator/components/com_admin/*
|
||||||
/administrator/components/com_ajax/*
|
/administrator/components/com_ajax/*
|
||||||
/administrator/components/com_associations/*
|
/administrator/components/com_tags/*
|
||||||
/administrator/components/com_banners/*
|
/administrator/components/com_banners/*
|
||||||
/administrator/components/com_cache/*
|
/administrator/components/com_cache/*
|
||||||
|
/administrator/components/com_postinstall/*
|
||||||
|
/administrator/components/com_joomlaupdate/*
|
||||||
|
/administrator/components/com_contenthistory/*
|
||||||
/administrator/components/com_categories/*
|
/administrator/components/com_categories/*
|
||||||
/administrator/components/com_checkin/*
|
/administrator/components/com_checkin/*
|
||||||
/administrator/components/com_config/*
|
/administrator/components/com_config/*
|
||||||
/administrator/components/com_contact/*
|
/administrator/components/com_contact/*
|
||||||
/administrator/components/com_content/*
|
/administrator/components/com_content/*
|
||||||
/administrator/components/com_contenthistory/*
|
|
||||||
/administrator/components/com_cpanel/*
|
/administrator/components/com_cpanel/*
|
||||||
/administrator/components/com_fields/*
|
|
||||||
/administrator/components/com_finder/*
|
/administrator/components/com_finder/*
|
||||||
/administrator/components/com_installer/*
|
/administrator/components/com_installer/*
|
||||||
/administrator/components/com_joomlaupdate/*
|
|
||||||
/administrator/components/com_languages/*
|
/administrator/components/com_languages/*
|
||||||
/administrator/components/com_login/*
|
/administrator/components/com_login/*
|
||||||
/administrator/components/com_media/*
|
/administrator/components/com_media/*
|
||||||
@ -25,24 +24,66 @@
|
|||||||
/administrator/components/com_modules/*
|
/administrator/components/com_modules/*
|
||||||
/administrator/components/com_newsfeeds/*
|
/administrator/components/com_newsfeeds/*
|
||||||
/administrator/components/com_plugins/*
|
/administrator/components/com_plugins/*
|
||||||
/administrator/components/com_postinstall/*
|
|
||||||
/administrator/components/com_privacy/*
|
|
||||||
/administrator/components/com_redirect/*
|
/administrator/components/com_redirect/*
|
||||||
/administrator/components/com_search/*
|
/administrator/components/com_search/*
|
||||||
/administrator/components/com_tags/*
|
|
||||||
/administrator/components/com_templates/*
|
/administrator/components/com_templates/*
|
||||||
/administrator/components/com_users/*
|
/administrator/components/com_users/*
|
||||||
/administrator/help/*
|
/administrator/help/*
|
||||||
/administrator/includes/*
|
/administrator/includes/*
|
||||||
/administrator/index.php
|
|
||||||
/administrator/language/en-GB/en-GB.com_actionlogs.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_actionlogs.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_admin.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_admin.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_ajax.ini
|
/administrator/language/en-GB/en-GB.com_ajax.ini
|
||||||
/administrator/language/en-GB/en-GB.com_ajax.sys.ini
|
/administrator/language/en-GB/en-GB.com_ajax.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_associations.ini
|
/administrator/language/en-GB/en-GB.com_contenthistory.ini
|
||||||
/administrator/language/en-GB/en-GB.com_associations.sys.ini
|
/administrator/language/en-GB/en-GB.com_contenthistory.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_joomlaupdate.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_postinstall.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_postinstall.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_tags.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_tags.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.mod_stats_admin.ini
|
||||||
|
/administrator/language/en-GB/en-GB.mod_stats_admin.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_authentication_cookie.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_authentication_cookie.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_content_contact.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_content_contact.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_content_finder.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_module*
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_categories.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_contacts.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_contacts.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_content.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_content.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_tags.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_weblinks.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_installer_folderinstaller*
|
||||||
|
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller*
|
||||||
|
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller
|
||||||
|
/administrator/language/en-GB/en-GB.plg_installer_urlinstaller*
|
||||||
|
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_search_tags.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_system_languagecode.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_system_stats*
|
||||||
|
/administrator/language/en-GB/en-GB.plg_system_updatenotification*
|
||||||
|
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.tpl_isis.ini
|
||||||
|
/administrator/language/en-GB/en-GB.tpl_isis.sys.ini
|
||||||
|
/administrator/language/en-GB/install.xml
|
||||||
|
/administrator/language/en-GB/en-GB.com_admin.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_admin.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_banners.ini
|
/administrator/language/en-GB/en-GB.com_banners.ini
|
||||||
/administrator/language/en-GB/en-GB.com_banners.sys.ini
|
/administrator/language/en-GB/en-GB.com_banners.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_cache.ini
|
/administrator/language/en-GB/en-GB.com_cache.ini
|
||||||
@ -57,18 +98,12 @@
|
|||||||
/administrator/language/en-GB/en-GB.com_contact.sys.ini
|
/administrator/language/en-GB/en-GB.com_contact.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_content.ini
|
/administrator/language/en-GB/en-GB.com_content.ini
|
||||||
/administrator/language/en-GB/en-GB.com_content.sys.ini
|
/administrator/language/en-GB/en-GB.com_content.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_contenthistory.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_contenthistory.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_cpanel.ini
|
/administrator/language/en-GB/en-GB.com_cpanel.ini
|
||||||
/administrator/language/en-GB/en-GB.com_cpanel.sys.ini
|
/administrator/language/en-GB/en-GB.com_cpanel.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_fields.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_fields.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_finder.ini
|
/administrator/language/en-GB/en-GB.com_finder.ini
|
||||||
/administrator/language/en-GB/en-GB.com_finder.sys.ini
|
/administrator/language/en-GB/en-GB.com_finder.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_installer.ini
|
/administrator/language/en-GB/en-GB.com_installer.ini
|
||||||
/administrator/language/en-GB/en-GB.com_installer.sys.ini
|
/administrator/language/en-GB/en-GB.com_installer.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_joomlaupdate.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_languages.ini
|
/administrator/language/en-GB/en-GB.com_languages.ini
|
||||||
/administrator/language/en-GB/en-GB.com_languages.sys.ini
|
/administrator/language/en-GB/en-GB.com_languages.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_login.ini
|
/administrator/language/en-GB/en-GB.com_login.ini
|
||||||
@ -86,16 +121,10 @@
|
|||||||
/administrator/language/en-GB/en-GB.com_newsfeeds.sys.ini
|
/administrator/language/en-GB/en-GB.com_newsfeeds.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_plugins.ini
|
/administrator/language/en-GB/en-GB.com_plugins.ini
|
||||||
/administrator/language/en-GB/en-GB.com_plugins.sys.ini
|
/administrator/language/en-GB/en-GB.com_plugins.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_postinstall.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_postinstall.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_privacy.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_privacy.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_redirect.ini
|
/administrator/language/en-GB/en-GB.com_redirect.ini
|
||||||
/administrator/language/en-GB/en-GB.com_redirect.sys.ini
|
/administrator/language/en-GB/en-GB.com_redirect.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_search.ini
|
/administrator/language/en-GB/en-GB.com_search.ini
|
||||||
/administrator/language/en-GB/en-GB.com_search.sys.ini
|
/administrator/language/en-GB/en-GB.com_search.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_tags.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_tags.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.com_templates.ini
|
/administrator/language/en-GB/en-GB.com_templates.ini
|
||||||
/administrator/language/en-GB/en-GB.com_templates.sys.ini
|
/administrator/language/en-GB/en-GB.com_templates.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_users.ini
|
/administrator/language/en-GB/en-GB.com_users.ini
|
||||||
@ -113,8 +142,6 @@
|
|||||||
/administrator/language/en-GB/en-GB.mod_feed.sys.ini
|
/administrator/language/en-GB/en-GB.mod_feed.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_latest.ini
|
/administrator/language/en-GB/en-GB.mod_latest.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_latest.sys.ini
|
/administrator/language/en-GB/en-GB.mod_latest.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_latestactions.ini
|
|
||||||
/administrator/language/en-GB/en-GB.mod_latestactions.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.mod_logged.ini
|
/administrator/language/en-GB/en-GB.mod_logged.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_logged.sys.ini
|
/administrator/language/en-GB/en-GB.mod_logged.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_login.ini
|
/administrator/language/en-GB/en-GB.mod_login.ini
|
||||||
@ -127,14 +154,8 @@
|
|||||||
/administrator/language/en-GB/en-GB.mod_online.sys.ini
|
/administrator/language/en-GB/en-GB.mod_online.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_popular.ini
|
/administrator/language/en-GB/en-GB.mod_popular.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_popular.sys.ini
|
/administrator/language/en-GB/en-GB.mod_popular.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_privacy_dashboard.ini
|
|
||||||
/administrator/language/en-GB/en-GB.mod_privacy_dashboard.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.mod_quickicon.ini
|
/administrator/language/en-GB/en-GB.mod_quickicon.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_quickicon.sys.ini
|
/administrator/language/en-GB/en-GB.mod_quickicon.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_sampledata.ini
|
|
||||||
/administrator/language/en-GB/en-GB.mod_sampledata.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.mod_stats_admin.ini
|
|
||||||
/administrator/language/en-GB/en-GB.mod_stats_admin.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.mod_status.ini
|
/administrator/language/en-GB/en-GB.mod_status.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_status.sys.ini
|
/administrator/language/en-GB/en-GB.mod_status.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_submenu.ini
|
/administrator/language/en-GB/en-GB.mod_submenu.ini
|
||||||
@ -147,10 +168,6 @@
|
|||||||
/administrator/language/en-GB/en-GB.mod_unread.sys.ini
|
/administrator/language/en-GB/en-GB.mod_unread.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_version.ini
|
/administrator/language/en-GB/en-GB.mod_version.ini
|
||||||
/administrator/language/en-GB/en-GB.mod_version.sys.ini
|
/administrator/language/en-GB/en-GB.mod_version.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_actionlog_joomla.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_actionlog_joomla.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_authentication_cookie.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_authentication_cookie.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_authentication_example.ini
|
/administrator/language/en-GB/en-GB.plg_authentication_example.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_authentication_example.sys.ini
|
/administrator/language/en-GB/en-GB.plg_authentication_example.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_authentication_gmail.ini
|
/administrator/language/en-GB/en-GB.plg_authentication_gmail.ini
|
||||||
@ -161,18 +178,8 @@
|
|||||||
/administrator/language/en-GB/en-GB.plg_authentication_ldap.sys.ini
|
/administrator/language/en-GB/en-GB.plg_authentication_ldap.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_captcha_recaptcha.ini
|
/administrator/language/en-GB/en-GB.plg_captcha_recaptcha.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_captcha_recaptcha.sys.ini
|
/administrator/language/en-GB/en-GB.plg_captcha_recaptcha.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_captcha_recaptcha_invisible.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_confirmconsent.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_confirmconsent.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_contact.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_contact.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_emailcloak.ini
|
/administrator/language/en-GB/en-GB.plg_content_emailcloak.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_content_emailcloak.sys.ini
|
/administrator/language/en-GB/en-GB.plg_content_emailcloak.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_content_fields.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_fields.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_finder.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_content_geshi.ini
|
/administrator/language/en-GB/en-GB.plg_content_geshi.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_content_geshi.sys.ini
|
/administrator/language/en-GB/en-GB.plg_content_geshi.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_content_joomla.ini
|
/administrator/language/en-GB/en-GB.plg_content_joomla.ini
|
||||||
@ -185,106 +192,24 @@
|
|||||||
/administrator/language/en-GB/en-GB.plg_content_pagenavigation.sys.ini
|
/administrator/language/en-GB/en-GB.plg_content_pagenavigation.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_content_vote.ini
|
/administrator/language/en-GB/en-GB.plg_content_vote.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_content_vote.sys.ini
|
/administrator/language/en-GB/en-GB.plg_content_vote.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_article.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_article.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_contact.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_contact.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_fields.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_fields.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_image.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_image.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_menu.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_menu.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_module.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_module.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_editors_codemirror.ini
|
/administrator/language/en-GB/en-GB.plg_editors_codemirror.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_editors_codemirror.sys.ini
|
/administrator/language/en-GB/en-GB.plg_editors_codemirror.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_editors_none.ini
|
/administrator/language/en-GB/en-GB.plg_editors_none.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_editors_none.sys.ini
|
/administrator/language/en-GB/en-GB.plg_editors_none.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_editors_tinymce.ini
|
/administrator/language/en-GB/en-GB.plg_editors_tinymce.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_editors_tinymce.sys.ini
|
/administrator/language/en-GB/en-GB.plg_editors_tinymce.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_article.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_article.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_image.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_image.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_extension_joomla.ini
|
/administrator/language/en-GB/en-GB.plg_extension_joomla.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_extension_joomla.sys.ini
|
/administrator/language/en-GB/en-GB.plg_extension_joomla.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_calendar.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_calendar.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_checkboxes.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_checkboxes.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_color.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_color.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_editor.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_editor.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_image.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_image.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_imagelist.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_imagelist.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_integer.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_integer.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_list.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_list.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_media.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_media.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_radio.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_radio.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_repeatable.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_repeatable.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_sql.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_sql.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_text.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_text.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_textarea.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_textarea.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_url.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_url.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_user.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_user.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_usergrouplist.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_fields_usergrouplist.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_categories.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_contacts.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_contacts.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_content.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_content.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_tags.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_weblinks.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_installer_folderinstaller.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_installer_folderinstaller.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_installer_urlinstaller.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_installer_urlinstaller.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_actionlogs.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_consents.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_consents.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_contact.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_contact.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_content.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_content.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_message.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_message.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_user.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_privacy_user.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.ini
|
/administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.sys.ini
|
/administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_quickicon_phpversioncheck.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_quickicon_phpversioncheck.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_quickicon_privacycheck.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_sampledata_blog.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_sampledata_blog.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_search_categories.ini
|
/administrator/language/en-GB/en-GB.plg_search_categories.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_search_categories.sys.ini
|
/administrator/language/en-GB/en-GB.plg_search_categories.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_search_contacts.ini
|
/administrator/language/en-GB/en-GB.plg_search_contacts.ini
|
||||||
@ -293,155 +218,124 @@
|
|||||||
/administrator/language/en-GB/en-GB.plg_search_content.sys.ini
|
/administrator/language/en-GB/en-GB.plg_search_content.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_search_newsfeeds.ini
|
/administrator/language/en-GB/en-GB.plg_search_newsfeeds.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_search_newsfeeds.sys.ini
|
/administrator/language/en-GB/en-GB.plg_search_newsfeeds.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_search_tags.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_search_weblinks.ini
|
/administrator/language/en-GB/en-GB.plg_search_weblinks.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_search_weblinks.sys.ini
|
/administrator/language/en-GB/en-GB.plg_search_weblinks.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_actionlogs.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_actionlogs.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_cache.ini
|
/administrator/language/en-GB/en-GB.plg_system_cache.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_cache.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_cache.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_debug.ini
|
/administrator/language/en-GB/en-GB.plg_system_debug.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_debug.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_debug.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_fields.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_fields.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_highlight.ini
|
/administrator/language/en-GB/en-GB.plg_system_highlight.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_highlight.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_highlight.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_languagecode.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_languagefilter.ini
|
/administrator/language/en-GB/en-GB.plg_system_languagefilter.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_languagefilter.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_languagefilter.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_log.ini
|
/administrator/language/en-GB/en-GB.plg_system_log.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_log.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_logout.ini
|
/administrator/language/en-GB/en-GB.plg_system_logout.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_logout.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_logout.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_logrotation.ini
|
/administrator/language/en-GB/en-GB.plg_system_log.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_logrotation.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_p3p.ini
|
/administrator/language/en-GB/en-GB.plg_system_p3p.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_p3p.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_p3p.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_privacyconsent.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_redirect.ini
|
/administrator/language/en-GB/en-GB.plg_system_redirect.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_redirect.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_redirect.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_remember.ini
|
/administrator/language/en-GB/en-GB.plg_system_remember.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_remember.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_remember.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_sef.ini
|
/administrator/language/en-GB/en-GB.plg_system_sef.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_sef.sys.ini
|
/administrator/language/en-GB/en-GB.plg_system_sef.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_system_sessiongc.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_sessiongc.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_stats.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_stats.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_updatenotification.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_system_updatenotification.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_user_contactcreator.ini
|
/administrator/language/en-GB/en-GB.plg_user_contactcreator.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_user_contactcreator.sys.ini
|
/administrator/language/en-GB/en-GB.plg_user_contactcreator.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_user_joomla.ini
|
/administrator/language/en-GB/en-GB.plg_user_joomla.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini
|
/administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_user_profile.ini
|
/administrator/language/en-GB/en-GB.plg_user_profile.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_user_profile.sys.ini
|
/administrator/language/en-GB/en-GB.plg_user_profile.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.plg_user_terms.ini
|
|
||||||
/administrator/language/en-GB/en-GB.plg_user_terms.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.tpl_hathor.ini
|
/administrator/language/en-GB/en-GB.tpl_hathor.ini
|
||||||
/administrator/language/en-GB/en-GB.tpl_hathor.sys.ini
|
/administrator/language/en-GB/en-GB.tpl_hathor.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.tpl_isis.ini
|
|
||||||
/administrator/language/en-GB/en-GB.tpl_isis.sys.ini
|
|
||||||
/administrator/language/en-GB/en-GB.xml
|
/administrator/language/en-GB/en-GB.xml
|
||||||
/administrator/language/en-GB/install.xml
|
|
||||||
/administrator/language/overrides/*
|
/administrator/language/overrides/*
|
||||||
/administrator/language/index.html
|
|
||||||
/administrator/logs/*
|
/administrator/logs/*
|
||||||
/administrator/manifests/files/joomla.xml
|
/administrator/manifests/*
|
||||||
/administrator/manifests/libraries/fof.xml
|
|
||||||
/administrator/manifests/libraries/idna_convert.xml
|
|
||||||
/administrator/manifests/libraries/joomla.xml
|
|
||||||
/administrator/manifests/libraries/phpass.xml
|
|
||||||
/administrator/manifests/libraries/phputf8.xml
|
|
||||||
/administrator/manifests/packages/pkg_en-GB.xml
|
|
||||||
/administrator/manifests/packages/index.html
|
|
||||||
/administrator/modules/mod_custom/*
|
/administrator/modules/mod_custom/*
|
||||||
/administrator/modules/mod_feed/*
|
/administrator/modules/mod_feed/*
|
||||||
/administrator/modules/mod_latest/*
|
/administrator/modules/mod_latest/*
|
||||||
/administrator/modules/mod_latestactions/*
|
|
||||||
/administrator/modules/mod_logged/*
|
/administrator/modules/mod_logged/*
|
||||||
/administrator/modules/mod_login/*
|
/administrator/modules/mod_login/*
|
||||||
/administrator/modules/mod_menu/*
|
/administrator/modules/mod_menu/*
|
||||||
/administrator/modules/mod_multilangstatus/*
|
/administrator/modules/mod_multilangstatus/*
|
||||||
/administrator/modules/mod_online/*
|
/administrator/modules/mod_online/*
|
||||||
/administrator/modules/mod_popular/*
|
/administrator/modules/mod_popular/*
|
||||||
/administrator/modules/mod_privacy_dashboard/*
|
|
||||||
/administrator/modules/mod_quickicon/*
|
/administrator/modules/mod_quickicon/*
|
||||||
/administrator/modules/mod_sampledata/*
|
|
||||||
/administrator/modules/mod_stats_admin/*
|
|
||||||
/administrator/modules/mod_status/*
|
/administrator/modules/mod_status/*
|
||||||
/administrator/modules/mod_submenu/*
|
/administrator/modules/mod_submenu/*
|
||||||
/administrator/modules/mod_title/*
|
/administrator/modules/mod_title/*
|
||||||
/administrator/modules/mod_toolbar/*
|
/administrator/modules/mod_toolbar/*
|
||||||
/administrator/modules/mod_unread/*
|
/administrator/modules/mod_unread/*
|
||||||
/administrator/modules/mod_version/*
|
/administrator/modules/mod_version/*
|
||||||
/administrator/templates/hathor/*
|
/administrator/modules/mod_stats_admin/*
|
||||||
/administrator/templates/isis/*
|
/administrator/templates/isis/*
|
||||||
|
/administrator/templates/hathor/*
|
||||||
/administrator/templates/system/*
|
/administrator/templates/system/*
|
||||||
/bin/*
|
/administrator/index.php
|
||||||
/cache/*
|
/cache/*
|
||||||
|
/bin/*
|
||||||
/cli/*
|
/cli/*
|
||||||
/components/com_ajax/*
|
|
||||||
/components/com_banners/*
|
/components/com_banners/*
|
||||||
|
/components/com_ajax/*
|
||||||
/components/com_config/*
|
/components/com_config/*
|
||||||
|
/components/com_contenthistory/*
|
||||||
|
/components/com_tags/*
|
||||||
/components/com_contact/*
|
/components/com_contact/*
|
||||||
/components/com_content/*
|
/components/com_content/*
|
||||||
/components/com_contenthistory/*
|
|
||||||
/components/com_fields/*
|
|
||||||
/components/com_finder/*
|
/components/com_finder/*
|
||||||
/components/com_mailto/*
|
/components/com_mailto/*
|
||||||
/components/com_media/*
|
/components/com_media/*
|
||||||
/components/com_menus/*
|
|
||||||
/components/com_modules/*
|
/components/com_modules/*
|
||||||
/components/com_newsfeeds/*
|
/components/com_newsfeeds/*
|
||||||
/components/com_privacy/*
|
|
||||||
/components/com_search/*
|
/components/com_search/*
|
||||||
/components/com_tags/*
|
|
||||||
/components/com_users/*
|
/components/com_users/*
|
||||||
/components/com_wrapper/*
|
/components/com_wrapper/*
|
||||||
/components/index.html
|
/components/index.html
|
||||||
/images/banners/*
|
/images/banners/*
|
||||||
/images/headers/*
|
/images/headers/*
|
||||||
/images/sampledata/*
|
/images/sampledata/*
|
||||||
/images/index.html
|
|
||||||
/images/joomla*
|
/images/joomla*
|
||||||
|
/images/index.html
|
||||||
/images/powered_by.png
|
/images/powered_by.png
|
||||||
/includes/*
|
/includes/*
|
||||||
/installation/*
|
/installation/*
|
||||||
/language/en-GB/en-GB.com_ajax.ini
|
/language/en-GB/en-GB.com_ajax.ini
|
||||||
/language/en-GB/en-GB.com_config.ini
|
/language/en-GB/en-GB.com_config.ini
|
||||||
/language/en-GB/en-GB.com_contact.ini
|
/language/en-GB/en-GB.com_contact.ini
|
||||||
/language/en-GB/en-GB.com_content.ini
|
|
||||||
/language/en-GB/en-GB.com_finder.ini
|
/language/en-GB/en-GB.com_finder.ini
|
||||||
/language/en-GB/en-GB.com_mailto.ini
|
|
||||||
/language/en-GB/en-GB.com_media.ini
|
|
||||||
/language/en-GB/en-GB.com_messages.ini
|
|
||||||
/language/en-GB/en-GB.com_newsfeeds.ini
|
|
||||||
/language/en-GB/en-GB.com_privacy.ini
|
|
||||||
/language/en-GB/en-GB.com_search.ini
|
|
||||||
/language/en-GB/en-GB.com_tags.ini
|
/language/en-GB/en-GB.com_tags.ini
|
||||||
/language/en-GB/en-GB.com_users.ini
|
|
||||||
/language/en-GB/en-GB.com_weblinks.ini
|
|
||||||
/language/en-GB/en-GB.com_wrapper.ini
|
|
||||||
/language/en-GB/en-GB.files_joomla.sys.ini
|
|
||||||
/language/en-GB/en-GB.finder_cli.ini
|
/language/en-GB/en-GB.finder_cli.ini
|
||||||
/language/en-GB/en-GB.ini
|
|
||||||
/language/en-GB/en-GB.lib_fof.ini
|
|
||||||
/language/en-GB/en-GB.lib_fof.sys.ini
|
/language/en-GB/en-GB.lib_fof.sys.ini
|
||||||
|
/language/en-GB/en-GB.lib_fof.ini
|
||||||
|
/language/en-GB/en-GB.com_content.ini
|
||||||
/language/en-GB/en-GB.lib_idna_convert.sys.ini
|
/language/en-GB/en-GB.lib_idna_convert.sys.ini
|
||||||
/language/en-GB/en-GB.lib_joomla.ini
|
/language/en-GB/en-GB.com_mailto.ini
|
||||||
/language/en-GB/en-GB.lib_joomla.sys.ini
|
/language/en-GB/en-GB.lib_joomla.sys.ini
|
||||||
/language/en-GB/en-GB.lib_phpass.sys.ini
|
/language/en-GB/en-GB.lib_phpass.sys.ini
|
||||||
/language/en-GB/en-GB.lib_phpmailer.sys.ini
|
/language/en-GB/en-GB.lib_phpmailer.sys.ini
|
||||||
/language/en-GB/en-GB.lib_phputf8.sys.ini
|
/language/en-GB/en-GB.lib_phputf8.sys.ini
|
||||||
/language/en-GB/en-GB.lib_simplepie.sys.ini
|
/language/en-GB/en-GB.lib_simplepie.sys.ini
|
||||||
|
/language/en-GB/en-GB.com_media.ini
|
||||||
|
/language/en-GB/en-GB.mod_finder.ini
|
||||||
|
/language/en-GB/en-GB.com_messages.ini
|
||||||
|
/language/en-GB/en-GB.mod_tags_popular.ini
|
||||||
|
/language/en-GB/en-GB.mod_tags_popular.sys.ini
|
||||||
|
/language/en-GB/en-GB.mod_tags_similar.ini
|
||||||
|
/language/en-GB/en-GB.mod_tags_similar.sys.ini
|
||||||
|
/language/en-GB/en-GB.mod_finder.sys.ini
|
||||||
|
/language/en-GB/en-GB.tpl_beez3.ini
|
||||||
|
/language/en-GB/en-GB.tpl_beez3.sys.ini
|
||||||
|
/language/en-GB/en-GB.com_newsfeeds.ini
|
||||||
|
/language/en-GB/en-GB.tpl_protostar.ini
|
||||||
|
/language/en-GB/en-GB.tpl_protostar.sys.ini
|
||||||
|
/language/en-GB/en-GB.com_search.ini
|
||||||
|
/language/en-GB/en-GB.com_users.ini
|
||||||
|
/language/en-GB/en-GB.com_weblinks.ini
|
||||||
|
/language/en-GB/en-GB.com_wrapper.ini
|
||||||
|
/language/en-GB/en-GB.files_joomla.sys.ini
|
||||||
|
/language/en-GB/en-GB.ini
|
||||||
|
/language/en-GB/en-GB.lib_joomla.ini
|
||||||
/language/en-GB/en-GB.localise.php
|
/language/en-GB/en-GB.localise.php
|
||||||
/language/en-GB/en-GB.mod_articles_archive.ini
|
/language/en-GB/en-GB.mod_articles_archive.ini
|
||||||
/language/en-GB/en-GB.mod_articles_archive.sys.ini
|
/language/en-GB/en-GB.mod_articles_archive.sys.ini
|
||||||
@ -463,8 +357,6 @@
|
|||||||
/language/en-GB/en-GB.mod_custom.sys.ini
|
/language/en-GB/en-GB.mod_custom.sys.ini
|
||||||
/language/en-GB/en-GB.mod_feed.ini
|
/language/en-GB/en-GB.mod_feed.ini
|
||||||
/language/en-GB/en-GB.mod_feed.sys.ini
|
/language/en-GB/en-GB.mod_feed.sys.ini
|
||||||
/language/en-GB/en-GB.mod_finder.ini
|
|
||||||
/language/en-GB/en-GB.mod_finder.sys.ini
|
|
||||||
/language/en-GB/en-GB.mod_footer.ini
|
/language/en-GB/en-GB.mod_footer.ini
|
||||||
/language/en-GB/en-GB.mod_footer.sys.ini
|
/language/en-GB/en-GB.mod_footer.sys.ini
|
||||||
/language/en-GB/en-GB.mod_languages.ini
|
/language/en-GB/en-GB.mod_languages.ini
|
||||||
@ -483,10 +375,6 @@
|
|||||||
/language/en-GB/en-GB.mod_stats.sys.ini
|
/language/en-GB/en-GB.mod_stats.sys.ini
|
||||||
/language/en-GB/en-GB.mod_syndicate.ini
|
/language/en-GB/en-GB.mod_syndicate.ini
|
||||||
/language/en-GB/en-GB.mod_syndicate.sys.ini
|
/language/en-GB/en-GB.mod_syndicate.sys.ini
|
||||||
/language/en-GB/en-GB.mod_tags_popular.ini
|
|
||||||
/language/en-GB/en-GB.mod_tags_popular.sys.ini
|
|
||||||
/language/en-GB/en-GB.mod_tags_similar.ini
|
|
||||||
/language/en-GB/en-GB.mod_tags_similar.sys.ini
|
|
||||||
/language/en-GB/en-GB.mod_users_latest.ini
|
/language/en-GB/en-GB.mod_users_latest.ini
|
||||||
/language/en-GB/en-GB.mod_users_latest.sys.ini
|
/language/en-GB/en-GB.mod_users_latest.sys.ini
|
||||||
/language/en-GB/en-GB.mod_weblinks.ini
|
/language/en-GB/en-GB.mod_weblinks.ini
|
||||||
@ -497,14 +385,10 @@
|
|||||||
/language/en-GB/en-GB.mod_wrapper.sys.ini
|
/language/en-GB/en-GB.mod_wrapper.sys.ini
|
||||||
/language/en-GB/en-GB.tpl_atomic.ini
|
/language/en-GB/en-GB.tpl_atomic.ini
|
||||||
/language/en-GB/en-GB.tpl_atomic.sys.ini
|
/language/en-GB/en-GB.tpl_atomic.sys.ini
|
||||||
/language/en-GB/en-GB.tpl_beez3.ini
|
|
||||||
/language/en-GB/en-GB.tpl_beez3.sys.ini
|
|
||||||
/language/en-GB/en-GB.tpl_beez5.ini
|
|
||||||
/language/en-GB/en-GB.tpl_beez5.sys.ini
|
|
||||||
/language/en-GB/en-GB.tpl_beez_20.ini
|
/language/en-GB/en-GB.tpl_beez_20.ini
|
||||||
/language/en-GB/en-GB.tpl_beez_20.sys.ini
|
/language/en-GB/en-GB.tpl_beez_20.sys.ini
|
||||||
/language/en-GB/en-GB.tpl_protostar.ini
|
/language/en-GB/en-GB.tpl_beez5.ini
|
||||||
/language/en-GB/en-GB.tpl_protostar.sys.ini
|
/language/en-GB/en-GB.tpl_beez5.sys.ini
|
||||||
/language/en-GB/en-GB.xml
|
/language/en-GB/en-GB.xml
|
||||||
/language/en-GB/install.xml
|
/language/en-GB/install.xml
|
||||||
/language/overrides/*
|
/language/overrides/*
|
||||||
@ -513,6 +397,7 @@
|
|||||||
/layouts/libraries/*
|
/layouts/libraries/*
|
||||||
/layouts/plugins/*
|
/layouts/plugins/*
|
||||||
/layouts/index.html
|
/layouts/index.html
|
||||||
|
/libraries/cms.php
|
||||||
/libraries/cms/*
|
/libraries/cms/*
|
||||||
/libraries/fof/*
|
/libraries/fof/*
|
||||||
/libraries/idna_convert/*
|
/libraries/idna_convert/*
|
||||||
@ -523,24 +408,16 @@
|
|||||||
/libraries/phpmailer/*
|
/libraries/phpmailer/*
|
||||||
/libraries/phputf8/*
|
/libraries/phputf8/*
|
||||||
/libraries/simplepie/*
|
/libraries/simplepie/*
|
||||||
/libraries/src/*
|
|
||||||
/libraries/vendor/*
|
/libraries/vendor/*
|
||||||
/libraries/classmap.php
|
/libraries/classmap.php
|
||||||
/libraries/cms.php
|
|
||||||
/libraries/import.legacy.php
|
/libraries/import.legacy.php
|
||||||
/libraries/import.php
|
|
||||||
/libraries/index.html
|
/libraries/index.html
|
||||||
|
/libraries/import.php
|
||||||
/libraries/loader.php
|
/libraries/loader.php
|
||||||
/media/cms/*
|
/media/cms/*
|
||||||
/media/com_associations/*
|
|
||||||
/media/com_contact/*
|
|
||||||
/media/com_content/*
|
|
||||||
/media/com_contenthistory/*
|
/media/com_contenthistory/*
|
||||||
/media/com_fields/*
|
|
||||||
/media/com_finder/*
|
/media/com_finder/*
|
||||||
/media/com_joomlaupdate/*
|
/media/com_joomlaupdate/*
|
||||||
/media/com_menus/*
|
|
||||||
/media/com_modules/*
|
|
||||||
/media/com_wrapper/*
|
/media/com_wrapper/*
|
||||||
/media/contacts/*
|
/media/contacts/*
|
||||||
/media/editors/*
|
/media/editors/*
|
||||||
@ -548,16 +425,12 @@
|
|||||||
/media/mailto/*
|
/media/mailto/*
|
||||||
/media/media/*
|
/media/media/*
|
||||||
/media/mod_languages/*
|
/media/mod_languages/*
|
||||||
/media/mod_sampledata/*
|
|
||||||
/media/overrider/*
|
/media/overrider/*
|
||||||
/media/plg_captcha_recaptcha/*
|
/media/plg_captcha_recaptcha/*
|
||||||
/media/plg_captcha_recaptcha_invisible/*
|
|
||||||
/media/plg_quickicon_extensionupdate/*
|
/media/plg_quickicon_extensionupdate/*
|
||||||
/media/plg_quickicon_joomlaupdate/*
|
/media/plg_quickicon_joomlaupdate/*
|
||||||
/media/plg_quickicon_privacycheck/*
|
|
||||||
/media/plg_system_highlight/*
|
/media/plg_system_highlight/*
|
||||||
/media/plg_system_stats/*
|
/media/plg_system_stats/*
|
||||||
/media/plg_twofactorauth_totp/*
|
|
||||||
/media/system/*
|
/media/system/*
|
||||||
/media/index.html
|
/media/index.html
|
||||||
/modules/mod_articles_archive/*
|
/modules/mod_articles_archive/*
|
||||||
@ -586,19 +459,14 @@
|
|||||||
/modules/mod_whosonline/*
|
/modules/mod_whosonline/*
|
||||||
/modules/mod_wrapper/*
|
/modules/mod_wrapper/*
|
||||||
/modules/index.html
|
/modules/index.html
|
||||||
/plugins/actionlog/joomla/*
|
|
||||||
/plugins/authentication/cookie/*
|
|
||||||
/plugins/authentication/example/*
|
/plugins/authentication/example/*
|
||||||
/plugins/authentication/gmail/*
|
/plugins/authentication/gmail/*
|
||||||
/plugins/authentication/joomla/*
|
/plugins/authentication/joomla/*
|
||||||
/plugins/authentication/ldap/*
|
/plugins/authentication/ldap/*
|
||||||
|
/plugins/authentication/cookie/*
|
||||||
/plugins/captcha/recaptcha/*
|
/plugins/captcha/recaptcha/*
|
||||||
/plugins/captcha/recaptcha_invisible/*
|
|
||||||
/plugins/content/confirmconsent/*
|
|
||||||
/plugins/content/contact/*
|
|
||||||
/plugins/content/emailcloak/*
|
/plugins/content/emailcloak/*
|
||||||
/plugins/content/example/*
|
/plugins/content/example/*
|
||||||
/plugins/content/fields/*
|
|
||||||
/plugins/content/finder/*
|
/plugins/content/finder/*
|
||||||
/plugins/content/geshi/*
|
/plugins/content/geshi/*
|
||||||
/plugins/content/joomla/*
|
/plugins/content/joomla/*
|
||||||
@ -606,88 +474,52 @@
|
|||||||
/plugins/content/pagebreak/*
|
/plugins/content/pagebreak/*
|
||||||
/plugins/content/pagenavigation/*
|
/plugins/content/pagenavigation/*
|
||||||
/plugins/content/vote/*
|
/plugins/content/vote/*
|
||||||
|
/plugins/content/contact/*
|
||||||
/plugins/editors/codemirror/*
|
/plugins/editors/codemirror/*
|
||||||
/plugins/editors/none/*
|
/plugins/editors/none/*
|
||||||
/plugins/editors/tinymce/*
|
/plugins/editors/tinymce/*
|
||||||
/plugins/editors-xtd/article/*
|
|
||||||
/plugins/editors-xtd/contact/*
|
|
||||||
/plugins/editors-xtd/fields/*
|
|
||||||
/plugins/editors-xtd/image/*
|
|
||||||
/plugins/editors-xtd/menu/*
|
|
||||||
/plugins/editors-xtd/module/*
|
/plugins/editors-xtd/module/*
|
||||||
|
/plugins/editors-xtd/article/*
|
||||||
|
/plugins/editors-xtd/image/*
|
||||||
/plugins/editors-xtd/pagebreak/*
|
/plugins/editors-xtd/pagebreak/*
|
||||||
/plugins/editors-xtd/readmore/*
|
/plugins/editors-xtd/readmore/*
|
||||||
/plugins/extension/example/*
|
/plugins/extension/example/*
|
||||||
/plugins/extension/joomla/*
|
/plugins/extension/joomla/*
|
||||||
/plugins/fields/calendar/*
|
|
||||||
/plugins/fields/checkboxes/*
|
|
||||||
/plugins/fields/color/*
|
|
||||||
/plugins/fields/editor/*
|
|
||||||
/plugins/fields/imagelist/*
|
|
||||||
/plugins/fields/integer/*
|
|
||||||
/plugins/fields/list/*
|
|
||||||
/plugins/fields/media/*
|
|
||||||
/plugins/fields/radio/*
|
|
||||||
/plugins/fields/repeatable/*
|
|
||||||
/plugins/fields/sql/*
|
|
||||||
/plugins/fields/text/*
|
|
||||||
/plugins/fields/textarea/*
|
|
||||||
/plugins/fields/url/*
|
|
||||||
/plugins/fields/user/*
|
|
||||||
/plugins/fields/usergrouplist/*
|
|
||||||
/plugins/finder/categories/*
|
/plugins/finder/categories/*
|
||||||
/plugins/finder/contacts/*
|
/plugins/finder/contacts/*
|
||||||
/plugins/finder/content/*
|
/plugins/finder/content/*
|
||||||
/plugins/finder/newsfeeds/*
|
/plugins/finder/newsfeeds/*
|
||||||
/plugins/finder/tags/*
|
/plugins/finder/tags/*
|
||||||
/plugins/installer/folderinstaller/*
|
/plugins/installer/*
|
||||||
/plugins/installer/packageinstaller/*
|
|
||||||
/plugins/installer/urlinstaller/*
|
|
||||||
/plugins/privacy/actionlogs/*
|
|
||||||
/plugins/privacy/consents/*
|
|
||||||
/plugins/privacy/contact/*
|
|
||||||
/plugins/privacy/content/*
|
|
||||||
/plugins/privacy/message/*
|
|
||||||
/plugins/privacy/user/*
|
|
||||||
/plugins/quickicon/extensionupdate/*
|
/plugins/quickicon/extensionupdate/*
|
||||||
/plugins/quickicon/joomlaupdate/*
|
/plugins/quickicon/joomlaupdate/*
|
||||||
/plugins/quickicon/phpversioncheck/*
|
|
||||||
/plugins/quickicon/privacycheck/*
|
|
||||||
/plugins/quickicon/index.html
|
/plugins/quickicon/index.html
|
||||||
/plugins/sampledata/blog/*
|
|
||||||
/plugins/search/categories/*
|
/plugins/search/categories/*
|
||||||
/plugins/search/contacts/*
|
/plugins/search/contacts/*
|
||||||
/plugins/search/content/*
|
/plugins/search/content/*
|
||||||
/plugins/search/newsfeeds/*
|
/plugins/search/newsfeeds/*
|
||||||
/plugins/search/tags/*
|
|
||||||
/plugins/search/weblinks/*
|
/plugins/search/weblinks/*
|
||||||
|
/plugins/search/tags/*
|
||||||
/plugins/search/index.html
|
/plugins/search/index.html
|
||||||
/plugins/system/actionlogs/*
|
|
||||||
/plugins/system/cache/*
|
/plugins/system/cache/*
|
||||||
/plugins/system/debug/*
|
/plugins/system/debug/*
|
||||||
/plugins/system/fields/*
|
|
||||||
/plugins/system/highlight/*
|
/plugins/system/highlight/*
|
||||||
/plugins/system/languagecode/*
|
/plugins/system/languagecode/*
|
||||||
/plugins/system/languagefilter/*
|
/plugins/system/languagefilter/*
|
||||||
/plugins/system/log/*
|
/plugins/system/log/*
|
||||||
/plugins/system/logout/*
|
/plugins/system/logout/*
|
||||||
/plugins/system/logrotation/*
|
|
||||||
/plugins/system/p3p/*
|
/plugins/system/p3p/*
|
||||||
/plugins/system/privacyconsent/*
|
|
||||||
/plugins/system/redirect/*
|
/plugins/system/redirect/*
|
||||||
/plugins/system/remember/*
|
/plugins/system/remember/*
|
||||||
/plugins/system/sef/*
|
/plugins/system/sef/*
|
||||||
/plugins/system/sessiongc/*
|
|
||||||
/plugins/system/stats/*
|
/plugins/system/stats/*
|
||||||
/plugins/system/updatenotification/*
|
/plugins/system/updatenotification/*
|
||||||
/plugins/system/index.html
|
/plugins/system/index.html
|
||||||
/plugins/twofactorauth/totp/*
|
/plugins/twofactorauth/*
|
||||||
/plugins/twofactorauth/yubikey/*
|
|
||||||
/plugins/user/contactcreator/*
|
/plugins/user/contactcreator/*
|
||||||
/plugins/user/example/*
|
/plugins/user/example/*
|
||||||
/plugins/user/joomla/*
|
/plugins/user/joomla/*
|
||||||
/plugins/user/profile/*
|
/plugins/user/profile/*
|
||||||
/plugins/user/terms/*
|
|
||||||
/plugins/user/index.html
|
/plugins/user/index.html
|
||||||
/plugins/index.html
|
/plugins/index.html
|
||||||
/templates/beez3/*
|
/templates/beez3/*
|
||||||
@ -696,10 +528,7 @@
|
|||||||
/templates/index.html
|
/templates/index.html
|
||||||
/tmp/*
|
/tmp/*
|
||||||
/configuration.php
|
/configuration.php
|
||||||
/htaccess.txt
|
|
||||||
/index.php
|
/index.php
|
||||||
/joomla.xml
|
/joomla.xml
|
||||||
/LICENSE.txt
|
/*.txt
|
||||||
/README.txt
|
|
||||||
/robots.txt.dist
|
/robots.txt.dist
|
||||||
/web.config.txt
|
|
||||||
|
@ -1,24 +1,4 @@
|
|||||||
# Files generated by invoking Julia with --code-coverage
|
|
||||||
*.jl.cov
|
*.jl.cov
|
||||||
*.jl.*.cov
|
*.jl.*.cov
|
||||||
|
|
||||||
# Files generated by invoking Julia with --track-allocation
|
|
||||||
*.jl.mem
|
*.jl.mem
|
||||||
|
|
||||||
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
|
|
||||||
# They contain absolute paths specific to the host computer, and so should not be committed
|
|
||||||
deps/deps.jl
|
deps/deps.jl
|
||||||
deps/build.log
|
|
||||||
deps/downloads/
|
|
||||||
deps/usr/
|
|
||||||
deps/src/
|
|
||||||
|
|
||||||
# Build artifacts for creating documentation generated by the Documenter package
|
|
||||||
docs/build/
|
|
||||||
docs/site/
|
|
||||||
|
|
||||||
# File generated by Pkg, the package manager, based on a corresponding Project.toml
|
|
||||||
# It records a fixed state of all packages used by the project. As such, it should not be
|
|
||||||
# committed for packages, but should be committed for applications that require a static
|
|
||||||
# environment.
|
|
||||||
Manifest.toml
|
|
||||||
|
@ -1,21 +1,18 @@
|
|||||||
# For PCBs designed using KiCad: https://www.kicad.org/
|
# For PCBs designed using KiCad: http://www.kicad-pcb.org/
|
||||||
# Format documentation: https://kicad.org/help/file-formats/
|
# Format documentation: http://kicad-pcb.org/help/file-formats/
|
||||||
|
|
||||||
# Temporary files
|
# Temporary files
|
||||||
*.000
|
*.000
|
||||||
*.bak
|
*.bak
|
||||||
*.bck
|
*.bck
|
||||||
*.kicad_pcb-bak
|
*.kicad_pcb-bak
|
||||||
*.kicad_sch-bak
|
|
||||||
*-backups
|
|
||||||
*.kicad_prl
|
|
||||||
*.sch-bak
|
|
||||||
*~
|
*~
|
||||||
_autosave-*
|
_autosave-*
|
||||||
*.tmp
|
*.tmp
|
||||||
|
*-cache.lib
|
||||||
|
*-rescue.lib
|
||||||
*-save.pro
|
*-save.pro
|
||||||
*-save.kicad_pcb
|
*-save.kicad_pcb
|
||||||
fp-info-cache
|
|
||||||
|
|
||||||
# Netlist files (exported from Eeschema)
|
# Netlist files (exported from Eeschema)
|
||||||
*.net
|
*.net
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Java.gitignore
|
|
@ -1,7 +1,6 @@
|
|||||||
/vendor/
|
vendor/
|
||||||
node_modules/
|
node_modules/
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
yarn-error.log
|
|
||||||
|
|
||||||
# Laravel 4 specific
|
# Laravel 4 specific
|
||||||
bootstrap/compiled.php
|
bootstrap/compiled.php
|
||||||
@ -10,14 +9,12 @@ app/storage/
|
|||||||
# Laravel 5 & Lumen specific
|
# Laravel 5 & Lumen specific
|
||||||
public/storage
|
public/storage
|
||||||
public/hot
|
public/hot
|
||||||
|
|
||||||
# Laravel 5 & Lumen specific with changed public path
|
|
||||||
public_html/storage
|
|
||||||
public_html/hot
|
|
||||||
|
|
||||||
storage/*.key
|
storage/*.key
|
||||||
|
.env.*.php
|
||||||
|
.env.php
|
||||||
.env
|
.env
|
||||||
Homestead.yaml
|
Homestead.yaml
|
||||||
Homestead.json
|
Homestead.json
|
||||||
/.vagrant
|
|
||||||
.phpunit.result.cache
|
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
|
||||||
|
.rocketeer/
|
||||||
|
2
Leiningen.yml
Normal file
2
Leiningen.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
aliases:
|
||||||
|
- Clojure
|
@ -2,8 +2,6 @@
|
|||||||
# Magento Default Files #
|
# Magento Default Files #
|
||||||
#--------------------------#
|
#--------------------------#
|
||||||
|
|
||||||
/PATCH_*.sh
|
|
||||||
|
|
||||||
/app/etc/local.xml
|
/app/etc/local.xml
|
||||||
|
|
||||||
/media/*
|
/media/*
|
||||||
|
@ -7,11 +7,6 @@ release.properties
|
|||||||
dependency-reduced-pom.xml
|
dependency-reduced-pom.xml
|
||||||
buildNumber.properties
|
buildNumber.properties
|
||||||
.mvn/timing.properties
|
.mvn/timing.properties
|
||||||
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
|
|
||||||
.mvn/wrapper/maven-wrapper.jar
|
|
||||||
|
|
||||||
# Eclipse m2e generated files
|
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
|
||||||
# Eclipse Core
|
!/.mvn/wrapper/maven-wrapper.jar
|
||||||
.project
|
|
||||||
# JDT-specific (Eclipse Java Development Tools)
|
|
||||||
.classpath
|
|
||||||
|
@ -1,3 +1 @@
|
|||||||
nimcache/
|
nimcache/
|
||||||
nimblecache/
|
|
||||||
htmldocs/
|
|
||||||
|
@ -4,11 +4,6 @@ logs
|
|||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
lerna-debug.log*
|
|
||||||
.pnpm-debug.log*
|
|
||||||
|
|
||||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
||||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
||||||
|
|
||||||
# Runtime data
|
# Runtime data
|
||||||
pids
|
pids
|
||||||
@ -21,12 +16,11 @@ lib-cov
|
|||||||
|
|
||||||
# Coverage directory used by tools like istanbul
|
# Coverage directory used by tools like istanbul
|
||||||
coverage
|
coverage
|
||||||
*.lcov
|
|
||||||
|
|
||||||
# nyc test coverage
|
# nyc test coverage
|
||||||
.nyc_output
|
.nyc_output
|
||||||
|
|
||||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
||||||
.grunt
|
.grunt
|
||||||
|
|
||||||
# Bower dependency directory (https://bower.io/)
|
# Bower dependency directory (https://bower.io/)
|
||||||
@ -42,11 +36,8 @@ build/Release
|
|||||||
node_modules/
|
node_modules/
|
||||||
jspm_packages/
|
jspm_packages/
|
||||||
|
|
||||||
# Snowpack dependency directory (https://snowpack.dev/)
|
# TypeScript v1 declaration files
|
||||||
web_modules/
|
typings/
|
||||||
|
|
||||||
# TypeScript cache
|
|
||||||
*.tsbuildinfo
|
|
||||||
|
|
||||||
# Optional npm cache directory
|
# Optional npm cache directory
|
||||||
.npm
|
.npm
|
||||||
@ -54,15 +45,6 @@ web_modules/
|
|||||||
# Optional eslint cache
|
# Optional eslint cache
|
||||||
.eslintcache
|
.eslintcache
|
||||||
|
|
||||||
# Optional stylelint cache
|
|
||||||
.stylelintcache
|
|
||||||
|
|
||||||
# Microbundle cache
|
|
||||||
.rpt2_cache/
|
|
||||||
.rts2_cache_cjs/
|
|
||||||
.rts2_cache_es/
|
|
||||||
.rts2_cache_umd/
|
|
||||||
|
|
||||||
# Optional REPL history
|
# Optional REPL history
|
||||||
.node_repl_history
|
.node_repl_history
|
||||||
|
|
||||||
@ -72,59 +54,20 @@ web_modules/
|
|||||||
# Yarn Integrity file
|
# Yarn Integrity file
|
||||||
.yarn-integrity
|
.yarn-integrity
|
||||||
|
|
||||||
# dotenv environment variable files
|
# dotenv environment variables file
|
||||||
.env
|
.env
|
||||||
.env.development.local
|
|
||||||
.env.test.local
|
|
||||||
.env.production.local
|
|
||||||
.env.local
|
|
||||||
|
|
||||||
# parcel-bundler cache (https://parceljs.org/)
|
# parcel-bundler cache (https://parceljs.org/)
|
||||||
.cache
|
.cache
|
||||||
.parcel-cache
|
|
||||||
|
|
||||||
# Next.js build output
|
# next.js build output
|
||||||
.next
|
.next
|
||||||
out
|
|
||||||
|
|
||||||
# Nuxt.js build / generate output
|
# nuxt.js build output
|
||||||
.nuxt
|
.nuxt
|
||||||
dist
|
|
||||||
|
|
||||||
# Gatsby files
|
|
||||||
.cache/
|
|
||||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
|
||||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
|
||||||
# public
|
|
||||||
|
|
||||||
# vuepress build output
|
# vuepress build output
|
||||||
.vuepress/dist
|
.vuepress/dist
|
||||||
|
|
||||||
# vuepress v2.x temp and cache directory
|
|
||||||
.temp
|
|
||||||
.cache
|
|
||||||
|
|
||||||
# Docusaurus cache and generated files
|
|
||||||
.docusaurus
|
|
||||||
|
|
||||||
# Serverless directories
|
# Serverless directories
|
||||||
.serverless/
|
.serverless
|
||||||
|
|
||||||
# FuseBox cache
|
|
||||||
.fusebox/
|
|
||||||
|
|
||||||
# DynamoDB Local files
|
|
||||||
.dynamodb/
|
|
||||||
|
|
||||||
# TernJS port file
|
|
||||||
.tern-port
|
|
||||||
|
|
||||||
# Stores VSCode versions used for testing VSCode extensions
|
|
||||||
.vscode-test
|
|
||||||
|
|
||||||
# yarn v2
|
|
||||||
.yarn/cache
|
|
||||||
.yarn/unplugged
|
|
||||||
.yarn/build-state.yml
|
|
||||||
.yarn/install-state.gz
|
|
||||||
.pnp.*
|
|
||||||
|
@ -21,9 +21,3 @@ setup.log
|
|||||||
|
|
||||||
# Merlin configuring file for Vim and Emacs
|
# Merlin configuring file for Vim and Emacs
|
||||||
.merlin
|
.merlin
|
||||||
|
|
||||||
# Dune generated files
|
|
||||||
*.install
|
|
||||||
|
|
||||||
# Local OPAM switch
|
|
||||||
_opam/
|
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
# Xcode
|
|
||||||
#
|
|
||||||
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
|
||||||
|
|
||||||
## User settings
|
|
||||||
xcuserdata/
|
|
||||||
|
|
||||||
## Obj-C/Swift specific
|
|
||||||
*.hmap
|
|
||||||
|
|
||||||
## App packaging
|
|
||||||
*.ipa
|
|
||||||
*.dSYM.zip
|
|
||||||
*.dSYM
|
|
||||||
|
|
||||||
# CocoaPods
|
|
||||||
#
|
|
||||||
# We recommend against adding the Pods directory to your .gitignore. However
|
|
||||||
# you should judge for yourself, the pros and cons are mentioned at:
|
|
||||||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
||||||
#
|
|
||||||
# Pods/
|
|
||||||
#
|
|
||||||
# Add this line if you want to avoid checking in source code from the Xcode workspace
|
|
||||||
# *.xcworkspace
|
|
||||||
|
|
||||||
# Carthage
|
|
||||||
#
|
|
||||||
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
|
||||||
# Carthage/Checkouts
|
|
||||||
|
|
||||||
Carthage/Build/
|
|
||||||
|
|
||||||
# fastlane
|
|
||||||
#
|
|
||||||
# It is recommended to not store the screenshots in the git repo.
|
|
||||||
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
|
|
||||||
# For more information about the recommended setup visit:
|
|
||||||
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
|
||||||
|
|
||||||
fastlane/report.xml
|
|
||||||
fastlane/Preview.html
|
|
||||||
fastlane/screenshots/**/*.png
|
|
||||||
fastlane/test_output
|
|
@ -1,16 +1,5 @@
|
|||||||
# Cache objects
|
# Cache objects
|
||||||
packer_cache/
|
packer_cache/
|
||||||
|
|
||||||
# Crash log
|
|
||||||
crash.log
|
|
||||||
|
|
||||||
# https://www.packer.io/guides/hcl/variables
|
|
||||||
# Exclude all .pkrvars.hcl files, which are likely to contain sensitive data,
|
|
||||||
# such as password, private keys, and other secrets. These should not be part of
|
|
||||||
# version control as they are data points which are potentially sensitive and
|
|
||||||
# subject to change depending on the environment.
|
|
||||||
#
|
|
||||||
*.pkrvars.hcl
|
|
||||||
|
|
||||||
# For built boxes
|
# For built boxes
|
||||||
*.box
|
*.box
|
||||||
|
@ -13,7 +13,7 @@ cover_db/
|
|||||||
# Devel::NYTProf
|
# Devel::NYTProf
|
||||||
nytprof.out
|
nytprof.out
|
||||||
|
|
||||||
# Dist::Zilla
|
# Dizt::Zilla
|
||||||
/.build/
|
/.build/
|
||||||
|
|
||||||
# Module::Build
|
# Module::Build
|
||||||
|
@ -1,173 +1,34 @@
|
|||||||
# Cache, temp and personal files
|
# Private files
|
||||||
|
# The following files contain your database credentials and other personal data.
|
||||||
|
|
||||||
/.htaccess
|
config/settings.*.php
|
||||||
*.log
|
|
||||||
|
|
||||||
# Cache
|
# Cache, temp and generated files
|
||||||
|
# The following files are generated by PrestaShop.
|
||||||
|
|
||||||
|
admin-dev/autoupgrade/
|
||||||
/cache/*
|
/cache/*
|
||||||
!/cache/.htaccess
|
|
||||||
!/cache/cachefs/index.php
|
|
||||||
!/cache/deprecated.txt
|
|
||||||
!/cache/index.php
|
!/cache/index.php
|
||||||
|
!/cache/*/
|
||||||
|
/cache/*/*
|
||||||
|
!/cache/cachefs/index.php
|
||||||
!/cache/purifier/index.php
|
!/cache/purifier/index.php
|
||||||
!/cache/push/activity
|
|
||||||
!/cache/push/index.php
|
!/cache/push/index.php
|
||||||
!/cache/push/trends
|
|
||||||
!/cache/sandbox/index.php
|
!/cache/sandbox/index.php
|
||||||
!/cache/smarty/cache/index.php
|
|
||||||
!/cache/smarty/compile/index.php
|
|
||||||
!/cache/smarty/index.php
|
!/cache/smarty/index.php
|
||||||
!/cache/tcpdf/index.php
|
!/cache/tcpdf/index.php
|
||||||
|
config/xml/*.xml
|
||||||
# Download
|
/log/*
|
||||||
/download/*
|
|
||||||
!/download/.htaccess
|
|
||||||
!/download/index.php
|
|
||||||
|
|
||||||
# Images
|
|
||||||
/img/*
|
|
||||||
!/img/.htaccess
|
|
||||||
!/img/index.php
|
|
||||||
!/img/404.gif
|
|
||||||
!/img/bg_500.png
|
|
||||||
!/img/bg_loader.png
|
|
||||||
!/img/favicon.ico
|
|
||||||
!/img/loader.gif
|
|
||||||
!/img/loadingAnimation.gif
|
|
||||||
!/img/logo.jpg
|
|
||||||
!/img/logo.png
|
|
||||||
!/img/logo_invoice.jpg
|
|
||||||
!/img/logo_stores.png
|
|
||||||
!/img/macFFBgHack.png
|
|
||||||
!/img/prestashop-avatar.png
|
|
||||||
!/img/prestashop@2x.png
|
|
||||||
!/img/preston-login-wink@2x.png
|
|
||||||
!/img/preston-login@2x.png
|
|
||||||
!/img/questionmark.png
|
|
||||||
!/img/genders/index.php
|
|
||||||
!/img/admin/index.php
|
|
||||||
!/img/c/index.php
|
|
||||||
!/img/cms/index.php
|
|
||||||
!/img/co/index.php
|
|
||||||
!/img/jquery-ui
|
|
||||||
!/img/l/index.php
|
|
||||||
!/img/m/index.php
|
|
||||||
!/img/os/index.php
|
|
||||||
!/img/p/index.php
|
|
||||||
!/img/s/index.php
|
|
||||||
!/img/scenes
|
|
||||||
!/img/st/index.php
|
|
||||||
!/img/su/index.php
|
|
||||||
!/img/t/index.php
|
|
||||||
!/img/tmp/index.php
|
|
||||||
|
|
||||||
# Upload
|
|
||||||
/upload/*
|
|
||||||
!/upload/.htaccess
|
|
||||||
|
|
||||||
/vendor/*
|
|
||||||
/docs/phpdoc-sf/
|
|
||||||
/composer.lock
|
|
||||||
*.hot-update.js
|
|
||||||
*.hot-update.json
|
|
||||||
|
|
||||||
|
|
||||||
/admin-dev/autoupgrade/*
|
|
||||||
!/admin-dev/autoupgrade/index.php
|
|
||||||
!/admin-dev/autoupgrade/backup/index.php
|
|
||||||
|
|
||||||
/admin-dev/backups/*
|
|
||||||
!/admin-dev/backups/.htaccess
|
|
||||||
|
|
||||||
/admin-dev/import/*
|
|
||||||
!/admin-dev/import/.htaccess
|
|
||||||
!/admin-dev/import/index.php
|
|
||||||
|
|
||||||
/admin-dev/export/*
|
|
||||||
!/admin-dev/export/.htaccess
|
|
||||||
!/admin-dev/export/index.php
|
|
||||||
|
|
||||||
# Downloaded RTL files
|
|
||||||
/admin-dev/themes/default/css/bundle/default_rtl.css
|
|
||||||
/admin-dev/themes/default/css/bundle/shared_rtl.css
|
|
||||||
/admin-dev/themes/default/css/font_rtl.css
|
|
||||||
/admin-dev/themes/default/css/overrides_rtl.css
|
|
||||||
/admin-dev/themes/default/css/vendor/font-awesome/font-awesome_rtl.css
|
|
||||||
/admin-dev/themes/default/css/vendor/nv.d3_rtl.css
|
|
||||||
/admin-dev/themes/default/css/vendor/titatoggle-min_rtl.css
|
|
||||||
/admin-dev/themes/default/public/theme_rtl.css
|
|
||||||
/admin-dev/themes/new-theme/css/module/drop_rtl.css
|
|
||||||
/admin-dev/themes/new-theme/css/right-sidebar_rtl.css
|
|
||||||
|
|
||||||
themes/*/cache/*
|
|
||||||
|
|
||||||
# Config
|
|
||||||
|
|
||||||
config/settings.inc.php
|
|
||||||
config/settings.old.php
|
|
||||||
config/xml/*
|
|
||||||
config/themes/*
|
|
||||||
!config/xml/themes/default.xml
|
|
||||||
themes/*/config/settings_*.json
|
|
||||||
app/config/parameters.old.yml
|
|
||||||
app/config/config.php
|
|
||||||
|
|
||||||
# Themes, modules and overrides
|
|
||||||
|
|
||||||
modules/*
|
|
||||||
override/*
|
|
||||||
themes/*/
|
|
||||||
!themes/classic
|
|
||||||
!themes/_core
|
|
||||||
!themes/_libraries
|
|
||||||
|
|
||||||
# Vendors and dependencies
|
|
||||||
|
|
||||||
bower_components/
|
|
||||||
node_modules/
|
|
||||||
composer.phar
|
|
||||||
php-cs-fixer
|
|
||||||
.grunt/*
|
|
||||||
|
|
||||||
# Translations and emails templates
|
|
||||||
|
|
||||||
translations/*
|
|
||||||
mails/*
|
|
||||||
!mails/themes/
|
|
||||||
!mails/_partials/
|
|
||||||
themes/default-bootstrap/lang/*
|
|
||||||
themes/default-bootstrap/modules/*/translations/*.php
|
|
||||||
themes/default-bootstrap/mails/*
|
|
||||||
!themes/default-bootstrap/mails/en/
|
|
||||||
themes/default-bootstrap/modules/*/mails/*
|
|
||||||
!themes/default-bootstrap/modules/*/mails/en
|
|
||||||
|
|
||||||
# MISC
|
|
||||||
|
|
||||||
*sitemap.xml
|
*sitemap.xml
|
||||||
/robots.txt
|
themes/*/cache/
|
||||||
|
modules/*/config*.xml
|
||||||
|
|
||||||
# Symfony
|
# Site content
|
||||||
|
# The following folders contain product images, virtual products, CSV's, etc.
|
||||||
/bin/
|
|
||||||
/app/Resources/geoip/GeoLite2-City.mmdb
|
|
||||||
/app/Resources/translations/*
|
|
||||||
!/app/Resources/translations/default
|
|
||||||
/app/config/parameters.yml
|
|
||||||
/app/config/parameters.php
|
|
||||||
/build/
|
|
||||||
/phpunit.xml
|
|
||||||
/var/*
|
|
||||||
!/var/cache
|
|
||||||
/var/cache/*
|
|
||||||
!var/cache/.gitkeep
|
|
||||||
!/var/logs
|
|
||||||
/var/logs/*
|
|
||||||
!var/logs/.gitkeep
|
|
||||||
!/var/sessions
|
|
||||||
/var/sessions/*
|
|
||||||
!var/sessions/.gitkeep
|
|
||||||
!var/SymfonyRequirements.php
|
|
||||||
/vendor/
|
|
||||||
/web/bundles/
|
|
||||||
|
|
||||||
|
admin-dev/backups/
|
||||||
|
admin-dev/export/
|
||||||
|
admin-dev/import/
|
||||||
|
download/
|
||||||
|
/img/*
|
||||||
|
upload/
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
applet
|
applet
|
||||||
application.linux-arm64
|
|
||||||
application.linux-armv6hf
|
|
||||||
application.linux32
|
application.linux32
|
||||||
application.linux64
|
application.linux64
|
||||||
application.windows32
|
application.windows32
|
||||||
application.windows64
|
application.windows64
|
||||||
application.macosx
|
application.macosx
|
||||||
out
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
# Dependencies
|
# Dependencies
|
||||||
.psci_modules
|
.psci_modules
|
||||||
.spago
|
|
||||||
bower_components
|
bower_components
|
||||||
node_modules
|
node_modules
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@ parts/
|
|||||||
sdist/
|
sdist/
|
||||||
var/
|
var/
|
||||||
wheels/
|
wheels/
|
||||||
share/python-wheels/
|
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
.installed.cfg
|
.installed.cfg
|
||||||
*.egg
|
*.egg
|
||||||
@ -39,17 +38,14 @@ pip-delete-this-directory.txt
|
|||||||
# Unit test / coverage reports
|
# Unit test / coverage reports
|
||||||
htmlcov/
|
htmlcov/
|
||||||
.tox/
|
.tox/
|
||||||
.nox/
|
|
||||||
.coverage
|
.coverage
|
||||||
.coverage.*
|
.coverage.*
|
||||||
.cache
|
.cache
|
||||||
nosetests.xml
|
nosetests.xml
|
||||||
coverage.xml
|
coverage.xml
|
||||||
*.cover
|
*.cover
|
||||||
*.py,cover
|
|
||||||
.hypothesis/
|
.hypothesis/
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
cover/
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
*.mo
|
*.mo
|
||||||
@ -59,7 +55,6 @@ cover/
|
|||||||
*.log
|
*.log
|
||||||
local_settings.py
|
local_settings.py
|
||||||
db.sqlite3
|
db.sqlite3
|
||||||
db.sqlite3-journal
|
|
||||||
|
|
||||||
# Flask stuff:
|
# Flask stuff:
|
||||||
instance/
|
instance/
|
||||||
@ -72,51 +67,16 @@ instance/
|
|||||||
docs/_build/
|
docs/_build/
|
||||||
|
|
||||||
# PyBuilder
|
# PyBuilder
|
||||||
.pybuilder/
|
|
||||||
target/
|
target/
|
||||||
|
|
||||||
# Jupyter Notebook
|
# Jupyter Notebook
|
||||||
.ipynb_checkpoints
|
.ipynb_checkpoints
|
||||||
|
|
||||||
# IPython
|
|
||||||
profile_default/
|
|
||||||
ipython_config.py
|
|
||||||
|
|
||||||
# pyenv
|
# pyenv
|
||||||
# For a library or package, you might want to ignore these files since the code is
|
.python-version
|
||||||
# intended to run in multiple environments; otherwise, check them in:
|
|
||||||
# .python-version
|
|
||||||
|
|
||||||
# pipenv
|
# celery beat schedule file
|
||||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
||||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
||||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
||||||
# install all needed dependencies.
|
|
||||||
#Pipfile.lock
|
|
||||||
|
|
||||||
# poetry
|
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
||||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
||||||
# commonly ignored for libraries.
|
|
||||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
||||||
#poetry.lock
|
|
||||||
|
|
||||||
# pdm
|
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
||||||
#pdm.lock
|
|
||||||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
||||||
# in version control.
|
|
||||||
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
|
||||||
.pdm.toml
|
|
||||||
.pdm-python
|
|
||||||
.pdm-build/
|
|
||||||
|
|
||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
||||||
__pypackages__/
|
|
||||||
|
|
||||||
# Celery stuff
|
|
||||||
celerybeat-schedule
|
celerybeat-schedule
|
||||||
celerybeat.pid
|
|
||||||
|
|
||||||
# SageMath parsed files
|
# SageMath parsed files
|
||||||
*.sage.py
|
*.sage.py
|
||||||
@ -142,21 +102,3 @@ venv.bak/
|
|||||||
|
|
||||||
# mypy
|
# mypy
|
||||||
.mypy_cache/
|
.mypy_cache/
|
||||||
.dmypy.json
|
|
||||||
dmypy.json
|
|
||||||
|
|
||||||
# Pyre type checker
|
|
||||||
.pyre/
|
|
||||||
|
|
||||||
# pytype static type analyzer
|
|
||||||
.pytype/
|
|
||||||
|
|
||||||
# Cython debug symbols
|
|
||||||
cython_debug/
|
|
||||||
|
|
||||||
# PyCharm
|
|
||||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
||||||
#.idea/
|
|
||||||
|
3
Python.yml
Normal file
3
Python.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
editors:
|
||||||
|
- Global/JetBrains.gitignore
|
||||||
|
- Global/VisualStudioCode.gitignore
|
11
Qt.gitignore
11
Qt.gitignore
@ -6,7 +6,6 @@
|
|||||||
*.la
|
*.la
|
||||||
*.lai
|
*.lai
|
||||||
*.so
|
*.so
|
||||||
*.so.*
|
|
||||||
*.dll
|
*.dll
|
||||||
*.dylib
|
*.dylib
|
||||||
|
|
||||||
@ -29,8 +28,6 @@ ui_*.h
|
|||||||
*.jsc
|
*.jsc
|
||||||
Makefile*
|
Makefile*
|
||||||
*build-*
|
*build-*
|
||||||
*.qm
|
|
||||||
*.prl
|
|
||||||
|
|
||||||
# Qt unit tests
|
# Qt unit tests
|
||||||
target_wrapper.*
|
target_wrapper.*
|
||||||
@ -44,11 +41,3 @@ target_wrapper.*
|
|||||||
|
|
||||||
# QtCreator CMake
|
# QtCreator CMake
|
||||||
CMakeLists.txt.user*
|
CMakeLists.txt.user*
|
||||||
|
|
||||||
# QtCreator 4.8< compilation database
|
|
||||||
compile_commands.json
|
|
||||||
|
|
||||||
# QtCreator local machine specific files for imported projects
|
|
||||||
*creator.user*
|
|
||||||
|
|
||||||
*_qmlcache.qrc
|
|
||||||
|
17
R.gitignore
17
R.gitignore
@ -4,10 +4,6 @@
|
|||||||
|
|
||||||
# Session Data files
|
# Session Data files
|
||||||
.RData
|
.RData
|
||||||
.RDataTmp
|
|
||||||
|
|
||||||
# User-specific files
|
|
||||||
.Ruserdata
|
|
||||||
|
|
||||||
# Example code in package build process
|
# Example code in package build process
|
||||||
*-Ex.R
|
*-Ex.R
|
||||||
@ -29,21 +25,12 @@ vignettes/*.pdf
|
|||||||
.httr-oauth
|
.httr-oauth
|
||||||
|
|
||||||
# knitr and R markdown default cache directories
|
# knitr and R markdown default cache directories
|
||||||
*_cache/
|
/*_cache/
|
||||||
/cache/
|
/cache/
|
||||||
|
|
||||||
# Temporary files created by R markdown
|
# Temporary files created by R markdown
|
||||||
*.utf8.md
|
*.utf8.md
|
||||||
*.knit.md
|
*.knit.md
|
||||||
|
|
||||||
# R Environment Variables
|
# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html
|
||||||
.Renviron
|
|
||||||
|
|
||||||
# pkgdown site
|
|
||||||
docs/
|
|
||||||
|
|
||||||
# translation temp files
|
|
||||||
po/*~
|
|
||||||
|
|
||||||
# RStudio Connect folder
|
|
||||||
rsconnect/
|
rsconnect/
|
||||||
|
101
README.md
101
README.md
@ -18,46 +18,10 @@ the following resources are a great place to start:
|
|||||||
|
|
||||||
## Folder structure
|
## Folder structure
|
||||||
|
|
||||||
We support a collection of templates, organized in this way:
|
The files in the root directory are for `.gitignore` templates that are
|
||||||
|
project specific, such as language or framework specific templates.
|
||||||
- The root folder contains templates in common use, to help people get started
|
Global (operating system or editor specific) templates should go into the
|
||||||
with popular programming languages and technologies. These define a meaningful
|
[`Global/`](./Global) directory.
|
||||||
set of rules to help get started, and ensure you are not committing
|
|
||||||
unimportant files into your repository.
|
|
||||||
- [`Global`](./Global) contains templates for various editors, tools and
|
|
||||||
operating systems that can be used in different situations. It is recommended
|
|
||||||
that you either [add these to your global template](https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer)
|
|
||||||
or merge these rules into your project-specific templates if you want to use
|
|
||||||
them permanently.
|
|
||||||
- [`community`](./community) contains specialized templates for other popular
|
|
||||||
languages, tools and project, which don't currently belong in the mainstream
|
|
||||||
templates. These should be added to your project-specific templates when you
|
|
||||||
decide to adopt the framework or tool.
|
|
||||||
|
|
||||||
## What makes a good template?
|
|
||||||
|
|
||||||
A template should contain a set of rules to help Git repositories work with a
|
|
||||||
specific programming language, framework, tool or environment.
|
|
||||||
|
|
||||||
If it's not possible to curate a small set of useful rules for this situation,
|
|
||||||
then the template is not a good fit for this collection.
|
|
||||||
|
|
||||||
If a template is mostly a list of files installed by a particular version of
|
|
||||||
some software (e.g. a PHP framework), it could live under the `community`
|
|
||||||
directory. See [versioned templates](#versioned-templates) for more details.
|
|
||||||
|
|
||||||
If you have a small set of rules, or want to support a technology that is not
|
|
||||||
widely in use, and still believe this will be helpful to others, please read the
|
|
||||||
section about [specialized templates](#specialized-templates) for more details.
|
|
||||||
|
|
||||||
Include details when opening pull request if the template is important and visible. We
|
|
||||||
may not accept it immediately, but we can promote it to the root at a later date
|
|
||||||
based on interest.
|
|
||||||
|
|
||||||
Please also understand that we can’t list every tool that ever existed.
|
|
||||||
Our aim is to curate a collection of the _most common and helpful_ templates,
|
|
||||||
not to make sure we cover every project possible. If we choose not to
|
|
||||||
include your language, tool, or project, it’s not because it’s not awesome.
|
|
||||||
|
|
||||||
## Contributing guidelines
|
## Contributing guidelines
|
||||||
|
|
||||||
@ -75,7 +39,7 @@ high quality, we request that contributions adhere to the following guidelines.
|
|||||||
|
|
||||||
- **Explain why you’re making a change**. Even if it seems self-evident, please
|
- **Explain why you’re making a change**. Even if it seems self-evident, please
|
||||||
take a sentence or two to tell us why your change or addition should happen.
|
take a sentence or two to tell us why your change or addition should happen.
|
||||||
It’s especially helpful to articulate why this change applies to _everyone_
|
It’s especially helpful to articulate why this change applies to *everyone*
|
||||||
who works with the applicable technology, rather than just you or your team.
|
who works with the applicable technology, rather than just you or your team.
|
||||||
|
|
||||||
- **Please consider the scope of your change**. If your change is specific to a
|
- **Please consider the scope of your change**. If your change is specific to a
|
||||||
@ -83,56 +47,21 @@ high quality, we request that contributions adhere to the following guidelines.
|
|||||||
template for that language or framework, rather than to the template for an
|
template for that language or framework, rather than to the template for an
|
||||||
editor, tool, or operating system.
|
editor, tool, or operating system.
|
||||||
|
|
||||||
- **Please only modify _one template_ per pull request**. This helps keep pull
|
- **Please only modify *one template* per pull request**. This helps keep pull
|
||||||
requests and feedback focused on a specific project or technology.
|
requests and feedback focused on a specific project or technology.
|
||||||
|
|
||||||
In general, the more you can do to help us understand the change you’re making,
|
In general, the more you can do to help us understand the change you’re making,
|
||||||
the more likely we’ll be to accept your contribution quickly.
|
the more likely we’ll be to accept your contribution quickly.
|
||||||
|
|
||||||
## Versioned templates
|
If a template is mostly a list of files installed by a particular version of
|
||||||
|
some software (e.g. a PHP framework) then it's brittle and probably no more
|
||||||
|
helpful than a simple `ls`. If it's not possible to curate a small set of
|
||||||
|
useful rules, then the template might not be a good fit for this collection.
|
||||||
|
|
||||||
Some templates can change greatly between versions, and if you wish to contribute
|
Please also understand that we can’t list every tool that ever existed.
|
||||||
to this repository we need to follow this specific flow:
|
Our aim is to curate a collection of the *most common and helpful* templates,
|
||||||
|
not to make sure we cover every project possible. If we choose not to
|
||||||
- the template at the root should be the current supported version
|
include your language, tool, or project, it’s not because it’s not awesome.
|
||||||
- the template at the root should not have a version in the filename (i.e.
|
|
||||||
"evergreen")
|
|
||||||
- previous versions of templates should live under `community/`
|
|
||||||
- previous versions of the template should embed the version in the filename,
|
|
||||||
for readability
|
|
||||||
|
|
||||||
This helps ensure users get the latest version (because they'll use whatever is
|
|
||||||
at the root) but helps maintainers support older versions still in the wild.
|
|
||||||
|
|
||||||
## Specialized templates
|
|
||||||
|
|
||||||
If you have a template that you would like to contribute, but it isn't quite
|
|
||||||
mainstream, please consider adding this to the `community` directory under a
|
|
||||||
folder that best suits where it belongs.
|
|
||||||
|
|
||||||
The rules in your specialized template should be specific to the framework or
|
|
||||||
tool, and any additional templates should be mentioned in a comment in the
|
|
||||||
header of the template.
|
|
||||||
|
|
||||||
For example, this template might live at `community/DotNet/InforCRM.gitignore`:
|
|
||||||
|
|
||||||
```
|
|
||||||
# gitignore template for InforCRM (formerly SalesLogix)
|
|
||||||
# website: https://www.infor.com/product-summary/cx/infor-crm/
|
|
||||||
#
|
|
||||||
# Recommended: VisualStudio.gitignore
|
|
||||||
|
|
||||||
# Ignore model files that are auto-generated
|
|
||||||
ModelIndex.xml
|
|
||||||
ExportedFiles.xml
|
|
||||||
|
|
||||||
# Ignore deployment files
|
|
||||||
[Mm]odel/[Dd]eployment
|
|
||||||
|
|
||||||
# Force include portal SupportFiles
|
|
||||||
!Model/Portal/*/SupportFiles/[Bb]in/
|
|
||||||
!Model/Portal/PortalTemplates/*/SupportFiles/[Bb]in
|
|
||||||
```
|
|
||||||
|
|
||||||
## Contributing workflow
|
## Contributing workflow
|
||||||
|
|
||||||
@ -141,7 +70,7 @@ Here’s how we suggest you go about proposing a change to this project:
|
|||||||
1. [Fork this project][fork] to your account.
|
1. [Fork this project][fork] to your account.
|
||||||
2. [Create a branch][branch] for the change you intend to make.
|
2. [Create a branch][branch] for the change you intend to make.
|
||||||
3. Make your changes to your fork.
|
3. Make your changes to your fork.
|
||||||
4. [Send a pull request][pr] from your fork’s branch to our `main` branch.
|
4. [Send a pull request][pr] from your fork’s branch to our `master` branch.
|
||||||
|
|
||||||
Using the web-based interface to make changes is fine too, and will help you
|
Using the web-based interface to make changes is fine too, and will help you
|
||||||
by automatically forking the project and prompting to send a pull request too.
|
by automatically forking the project and prompting to send a pull request too.
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
.DS_Store
|
|
||||||
compiled/
|
|
||||||
/doc/
|
|
||||||
*~
|
|
||||||
*.bak
|
|
||||||
\#*
|
|
||||||
.\#*
|
|
@ -1,9 +1,10 @@
|
|||||||
*.rbc
|
*.rbc
|
||||||
capybara-*.html
|
capybara-*.html
|
||||||
.rspec
|
.rspec
|
||||||
|
/log
|
||||||
|
/tmp
|
||||||
/db/*.sqlite3
|
/db/*.sqlite3
|
||||||
/db/*.sqlite3-journal
|
/db/*.sqlite3-journal
|
||||||
/db/*.sqlite3-[0-9]*
|
|
||||||
/public/system
|
/public/system
|
||||||
/coverage/
|
/coverage/
|
||||||
/spec/tmp
|
/spec/tmp
|
||||||
@ -11,12 +12,6 @@ capybara-*.html
|
|||||||
rerun.txt
|
rerun.txt
|
||||||
pickle-email-*.html
|
pickle-email-*.html
|
||||||
|
|
||||||
# Ignore all logfiles and tempfiles.
|
|
||||||
/log/*
|
|
||||||
/tmp/*
|
|
||||||
!/log/.keep
|
|
||||||
!/tmp/.keep
|
|
||||||
|
|
||||||
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
||||||
config/initializers/secret_token.rb
|
config/initializers/secret_token.rb
|
||||||
config/master.key
|
config/master.key
|
||||||
@ -24,10 +19,9 @@ config/master.key
|
|||||||
# Only include if you have production secrets in this file, which is no longer a Rails default
|
# Only include if you have production secrets in this file, which is no longer a Rails default
|
||||||
# config/secrets.yml
|
# config/secrets.yml
|
||||||
|
|
||||||
# dotenv, dotenv-rails
|
# dotenv
|
||||||
# TODO Comment out these rules if environment variables can be committed
|
# TODO Comment out this rule if environment variables can be committed
|
||||||
.env
|
.env
|
||||||
.env*.local
|
|
||||||
|
|
||||||
## Environment normalization:
|
## Environment normalization:
|
||||||
/.bundle
|
/.bundle
|
||||||
@ -53,17 +47,3 @@ bower.json
|
|||||||
# Ignore node_modules
|
# Ignore node_modules
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
# Ignore precompiled javascript packs
|
|
||||||
/public/packs
|
|
||||||
/public/packs-test
|
|
||||||
/public/assets
|
|
||||||
|
|
||||||
# Ignore yarn files
|
|
||||||
/yarn-error.log
|
|
||||||
yarn-debug.log*
|
|
||||||
.yarn-integrity
|
|
||||||
|
|
||||||
# Ignore uploaded files in development
|
|
||||||
/storage/*
|
|
||||||
!/storage/.keep
|
|
||||||
/public/uploads
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
# Gitignore for Raku (https://raku.org)
|
|
||||||
# As part of https://github.com/github/gitignore
|
|
||||||
|
|
||||||
# precompiled files
|
|
||||||
.precomp
|
|
||||||
lib/.precomp
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
/node_modules/
|
|
||||||
/lib/
|
|
||||||
.bsb.lock
|
|
@ -13,9 +13,6 @@
|
|||||||
# Used by dotenv library to load environment variables.
|
# Used by dotenv library to load environment variables.
|
||||||
# .env
|
# .env
|
||||||
|
|
||||||
# Ignore Byebug command history file.
|
|
||||||
.byebug_history
|
|
||||||
|
|
||||||
## Specific to RubyMotion:
|
## Specific to RubyMotion:
|
||||||
.dat*
|
.dat*
|
||||||
.repl_history
|
.repl_history
|
||||||
@ -51,6 +48,3 @@ build-iPhoneSimulator/
|
|||||||
|
|
||||||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
||||||
.rvmrc
|
.rvmrc
|
||||||
|
|
||||||
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
|
||||||
# .rubocop-https?--*
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
# Generated by Cargo
|
# Generated by Cargo
|
||||||
# will have compiled files and executables
|
# will have compiled files and executables
|
||||||
debug/
|
/target/
|
||||||
target/
|
|
||||||
|
|
||||||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
||||||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||||||
@ -9,13 +8,3 @@ Cargo.lock
|
|||||||
|
|
||||||
# These are backup files generated by rustfmt
|
# These are backup files generated by rustfmt
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
|
|
||||||
# MSVC Windows builds of rustc generate these, which store debugging information
|
|
||||||
*.pdb
|
|
||||||
|
|
||||||
# RustRover
|
|
||||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
||||||
#.idea/
|
|
@ -1,6 +1,2 @@
|
|||||||
# for projects that use SCons for building: http://http://www.scons.org/
|
# for projects that use SCons for building: http://http://www.scons.org/
|
||||||
.sconsign.dblite
|
.sconsign.dblite
|
||||||
|
|
||||||
# When configure fails, SCons outputs these
|
|
||||||
config.log
|
|
||||||
.sconf_temp
|
|
||||||
|
@ -1,5 +1,2 @@
|
|||||||
*.class
|
*.class
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
||||||
hs_err_pid*
|
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
*/Files/binder.autosave
|
/Files/binder.autosave
|
||||||
*/Files/binder.backup
|
/Files/binder.backup
|
||||||
*/Files/search.indexes
|
/Files/search.indexes
|
||||||
*/Files/user.lock
|
/Files/user.lock
|
||||||
*/Files/Docs/docs.checksum
|
/Files/Docs/docs.checksum
|
||||||
*/Files/Data/docs.checksum
|
/QuickLook/
|
||||||
*/QuickLook/
|
/Settings/ui.plist
|
||||||
*/Settings/ui.plist
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
# changes file
|
# changes file
|
||||||
*.changes
|
*.changes
|
||||||
*.chg
|
|
||||||
|
|
||||||
# system image
|
# system image
|
||||||
*.image
|
*.image
|
||||||
*.img7
|
|
||||||
*.img
|
|
||||||
|
|
||||||
# Pharo Smalltalk Debug log file
|
# Pharo Smalltalk Debug log file
|
||||||
PharoDebug.log
|
PharoDebug.log
|
||||||
@ -13,12 +10,6 @@ PharoDebug.log
|
|||||||
# Squeak Smalltalk Debug log file
|
# Squeak Smalltalk Debug log file
|
||||||
SqueakDebug.log
|
SqueakDebug.log
|
||||||
|
|
||||||
# Dolphin Smalltalk source file
|
|
||||||
*.sml
|
|
||||||
|
|
||||||
# Dolphin Smalltalk error file
|
|
||||||
*.errors
|
|
||||||
|
|
||||||
# Monticello package cache
|
# Monticello package cache
|
||||||
/package-cache
|
/package-cache
|
||||||
|
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
# Xcode
|
|
||||||
#
|
|
||||||
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
|
||||||
|
|
||||||
## User settings
|
|
||||||
xcuserdata/
|
|
||||||
|
|
||||||
## Obj-C/Swift specific
|
|
||||||
*.hmap
|
|
||||||
|
|
||||||
## App packaging
|
|
||||||
*.ipa
|
|
||||||
*.dSYM.zip
|
|
||||||
*.dSYM
|
|
||||||
|
|
||||||
## Playgrounds
|
|
||||||
timeline.xctimeline
|
|
||||||
playground.xcworkspace
|
|
||||||
|
|
||||||
# Swift Package Manager
|
|
||||||
#
|
|
||||||
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
|
||||||
# Packages/
|
|
||||||
# Package.pins
|
|
||||||
# Package.resolved
|
|
||||||
# *.xcodeproj
|
|
||||||
#
|
|
||||||
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
|
|
||||||
# hence it is not needed unless you have added a package configuration file to your project
|
|
||||||
# .swiftpm
|
|
||||||
|
|
||||||
.build/
|
|
||||||
|
|
||||||
# CocoaPods
|
|
||||||
#
|
|
||||||
# We recommend against adding the Pods directory to your .gitignore. However
|
|
||||||
# you should judge for yourself, the pros and cons are mentioned at:
|
|
||||||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
||||||
#
|
|
||||||
# Pods/
|
|
||||||
#
|
|
||||||
# Add this line if you want to avoid checking in source code from the Xcode workspace
|
|
||||||
# *.xcworkspace
|
|
||||||
|
|
||||||
# Carthage
|
|
||||||
#
|
|
||||||
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
|
||||||
# Carthage/Checkouts
|
|
||||||
|
|
||||||
Carthage/Build/
|
|
||||||
|
|
||||||
# fastlane
|
|
||||||
#
|
|
||||||
# It is recommended to not store the screenshots in the git repo.
|
|
||||||
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
|
|
||||||
# For more information about the recommended setup visit:
|
|
||||||
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
|
||||||
|
|
||||||
fastlane/report.xml
|
|
||||||
fastlane/Preview.html
|
|
||||||
fastlane/screenshots/**/*.png
|
|
||||||
fastlane/test_output
|
|
@ -15,10 +15,6 @@
|
|||||||
!var/logs/.gitkeep
|
!var/logs/.gitkeep
|
||||||
!var/sessions/.gitkeep
|
!var/sessions/.gitkeep
|
||||||
|
|
||||||
# Logs (Symfony4)
|
|
||||||
/var/log/*
|
|
||||||
!var/log/.gitkeep
|
|
||||||
|
|
||||||
# Parameters
|
# Parameters
|
||||||
/app/config/parameters.yml
|
/app/config/parameters.yml
|
||||||
/app/config/parameters.ini
|
/app/config/parameters.ini
|
||||||
|
@ -39,8 +39,6 @@
|
|||||||
*.synctex.gz
|
*.synctex.gz
|
||||||
*.synctex.gz(busy)
|
*.synctex.gz(busy)
|
||||||
*.pdfsync
|
*.pdfsync
|
||||||
*.rubbercache
|
|
||||||
rubber.cache
|
|
||||||
|
|
||||||
## Build tool directories for auxiliary files
|
## Build tool directories for auxiliary files
|
||||||
# latexrun
|
# latexrun
|
||||||
@ -66,9 +64,6 @@ acs-*.bib
|
|||||||
# changes
|
# changes
|
||||||
*.soc
|
*.soc
|
||||||
|
|
||||||
# comment
|
|
||||||
*.cut
|
|
||||||
|
|
||||||
# cprotect
|
# cprotect
|
||||||
*.cpt
|
*.cpt
|
||||||
|
|
||||||
@ -111,25 +106,12 @@ acs-*.bib
|
|||||||
*.glo
|
*.glo
|
||||||
*.gls
|
*.gls
|
||||||
*.glsdefs
|
*.glsdefs
|
||||||
*.lzo
|
|
||||||
*.lzs
|
|
||||||
*.slg
|
|
||||||
*.slo
|
|
||||||
*.sls
|
|
||||||
|
|
||||||
# uncomment this for glossaries-extra (will ignore makeindex's style files!)
|
|
||||||
# *.ist
|
|
||||||
|
|
||||||
# gnuplot
|
|
||||||
*.gnuplot
|
|
||||||
*.table
|
|
||||||
|
|
||||||
# gnuplottex
|
# gnuplottex
|
||||||
*-gnuplottex-*
|
*-gnuplottex-*
|
||||||
|
|
||||||
# gregoriotex
|
# gregoriotex
|
||||||
*.gaux
|
*.gaux
|
||||||
*.glog
|
|
||||||
*.gtex
|
*.gtex
|
||||||
|
|
||||||
# htlatex
|
# htlatex
|
||||||
@ -140,28 +122,23 @@ acs-*.bib
|
|||||||
*.trc
|
*.trc
|
||||||
*.xref
|
*.xref
|
||||||
|
|
||||||
# hypdoc
|
|
||||||
*.hd
|
|
||||||
|
|
||||||
# hyperref
|
# hyperref
|
||||||
*.brf
|
*.brf
|
||||||
|
|
||||||
# knitr
|
# knitr
|
||||||
*-concordance.tex
|
*-concordance.tex
|
||||||
# TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
|
# TODO Comment the next line if you want to keep your tikz graphics files
|
||||||
# *.tikz
|
*.tikz
|
||||||
*-tikzDictionary
|
*-tikzDictionary
|
||||||
|
|
||||||
# listings
|
# listings
|
||||||
*.lol
|
*.lol
|
||||||
|
|
||||||
# luatexja-ruby
|
|
||||||
*.ltjruby
|
|
||||||
|
|
||||||
# makeidx
|
# makeidx
|
||||||
*.idx
|
*.idx
|
||||||
*.ilg
|
*.ilg
|
||||||
*.ind
|
*.ind
|
||||||
|
*.ist
|
||||||
|
|
||||||
# minitoc
|
# minitoc
|
||||||
*.maf
|
*.maf
|
||||||
@ -179,9 +156,6 @@ _minted*
|
|||||||
# morewrites
|
# morewrites
|
||||||
*.mw
|
*.mw
|
||||||
|
|
||||||
# newpax
|
|
||||||
*.newpax
|
|
||||||
|
|
||||||
# nomencl
|
# nomencl
|
||||||
*.nlg
|
*.nlg
|
||||||
*.nlo
|
*.nlo
|
||||||
@ -201,9 +175,6 @@ _minted*
|
|||||||
# scrwfile
|
# scrwfile
|
||||||
*.wrt
|
*.wrt
|
||||||
|
|
||||||
# svg
|
|
||||||
svg-inkscape/
|
|
||||||
|
|
||||||
# sympy
|
# sympy
|
||||||
*.sout
|
*.sout
|
||||||
*.sympy
|
*.sympy
|
||||||
@ -217,9 +188,6 @@ sympy-plots-for-*.tex/
|
|||||||
*.pytxcode
|
*.pytxcode
|
||||||
pythontex-files-*/
|
pythontex-files-*/
|
||||||
|
|
||||||
# tcolorbox
|
|
||||||
*.listing
|
|
||||||
|
|
||||||
# thmtools
|
# thmtools
|
||||||
*.loe
|
*.loe
|
||||||
|
|
||||||
@ -228,31 +196,20 @@ pythontex-files-*/
|
|||||||
*.md5
|
*.md5
|
||||||
*.auxlock
|
*.auxlock
|
||||||
|
|
||||||
# titletoc
|
|
||||||
*.ptc
|
|
||||||
|
|
||||||
# todonotes
|
# todonotes
|
||||||
*.tdo
|
*.tdo
|
||||||
|
|
||||||
# vhistory
|
|
||||||
*.hst
|
|
||||||
*.ver
|
|
||||||
|
|
||||||
# easy-todo
|
# easy-todo
|
||||||
*.lod
|
*.lod
|
||||||
|
|
||||||
# xcolor
|
|
||||||
*.xcp
|
|
||||||
|
|
||||||
# xmpincl
|
# xmpincl
|
||||||
*.xmpi
|
*.xmpi
|
||||||
|
|
||||||
# xindy
|
# xindy
|
||||||
*.xdy
|
*.xdy
|
||||||
|
|
||||||
# xypic precompiled matrices and outlines
|
# xypic precompiled matrices
|
||||||
*.xyc
|
*.xyc
|
||||||
*.xyd
|
|
||||||
|
|
||||||
# endfloat
|
# endfloat
|
||||||
*.ttt
|
*.ttt
|
||||||
@ -269,21 +226,12 @@ TSWLatexianTemp*
|
|||||||
# Texpad
|
# Texpad
|
||||||
.texpadtmp
|
.texpadtmp
|
||||||
|
|
||||||
# LyX
|
|
||||||
*.lyx~
|
|
||||||
|
|
||||||
# Kile
|
# Kile
|
||||||
*.backup
|
*.backup
|
||||||
|
|
||||||
# gummi
|
|
||||||
.*.swp
|
|
||||||
|
|
||||||
# KBibTeX
|
# KBibTeX
|
||||||
*~[0-9]*
|
*~[0-9]*
|
||||||
|
|
||||||
# TeXnicCenter
|
|
||||||
*.tps
|
|
||||||
|
|
||||||
# auto folder when using emacs and auctex
|
# auto folder when using emacs and auctex
|
||||||
./auto/*
|
./auto/*
|
||||||
*.el
|
*.el
|
||||||
@ -294,13 +242,5 @@ TSWLatexianTemp*
|
|||||||
# standalone packages
|
# standalone packages
|
||||||
*.sta
|
*.sta
|
||||||
|
|
||||||
# Makeindex log files
|
# generated if using elsarticle.cls
|
||||||
*.lpz
|
*.spl
|
||||||
|
|
||||||
# xwatermark package
|
|
||||||
*.xwm
|
|
||||||
|
|
||||||
# REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
|
|
||||||
# option is specified. Footnotes are the stored in a file with suffix Notes.bib.
|
|
||||||
# Uncomment the next line to have this generated file ignored.
|
|
||||||
#*Notes.bib
|
|
||||||
|
@ -7,31 +7,9 @@
|
|||||||
|
|
||||||
# Crash log files
|
# Crash log files
|
||||||
crash.log
|
crash.log
|
||||||
crash.*.log
|
|
||||||
|
|
||||||
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
|
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
|
||||||
# password, private keys, and other secrets. These should not be part of version
|
# .tfvars files are managed as part of configuration and so should be included in
|
||||||
# control as they are data points which are potentially sensitive and subject
|
# version control.
|
||||||
# to change depending on the environment.
|
#
|
||||||
*.tfvars
|
# example.tfvars
|
||||||
*.tfvars.json
|
|
||||||
|
|
||||||
# Ignore override files as they are usually used to override resources locally and so
|
|
||||||
# are not checked in
|
|
||||||
override.tf
|
|
||||||
override.tf.json
|
|
||||||
*_override.tf
|
|
||||||
*_override.tf.json
|
|
||||||
|
|
||||||
# Ignore transient lock info files created by terraform apply
|
|
||||||
.terraform.tfstate.lock.info
|
|
||||||
|
|
||||||
# Include override files you do wish to add to version control using negated pattern
|
|
||||||
# !example_override.tf
|
|
||||||
|
|
||||||
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
|
|
||||||
# example: *tfplan*
|
|
||||||
|
|
||||||
# Ignore CLI configuration files
|
|
||||||
.terraformrc
|
|
||||||
terraform.rc
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user